:root {
    --primary-color: #2c3e50;
    --accent-color: #d4af37;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Products Section */
.products-section {
    padding: 4rem 5%;
    background-color: var(--white);
    max-width: 1600px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.products-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2%;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-image-container {
    position: relative;
    cursor: zoom-in;
}

.product-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23ffffff"><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.3-128-128s57.3-128 128-128 128 57.3 128 128-57.3 128-128 128z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-container:hover .product-zoom-icon {
    opacity: 0.8;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background-color: #b38f29;
}

 

header {
    background-color: #000;
    padding: 0.8rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 60px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-whatsapp {
    color: #25d366;
    /* Changed to green for visibility since BG is gone */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.whatsapp-icon-small {
    width: 40px;
    height: 40px;
    fill: #25d366;
}

.header-instagram {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    border: 3px solid #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.header-instagram:hover {
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.05);
}

.instagram-icon-small {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.header-instagram img.instagram-img {
    width: 26px;
    height: 26px;
    display: block;
}

.header-image {
    width: 50px;
    height: 50px;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.header-image-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 12px;
    z-index: 2000;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.85);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.floating-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
}

.floating-icon .whatsapp-icon-floating {
    width: 28px;
    height: 28px;
    fill: #25d366;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 5%;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.top-banner {
    width: 100%;
    height: auto;
    overflow: visible;
    background-color: #000;
}

.top-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        min-height: 80vh;
    }

    .hero-content {
        flex: 1.5;
        padding-right: 2rem;
    }

    .hero-image {
        flex: 1;
        max-width: 640px;
        width: 100%;
    }
}

.hero h1 {
    font-size: 2.5rem;
    /* Larger, more impactful */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    /* More formal/impactful for "Sale" */
}

.hero p {
    font-size: 1.3rem;
    /* Slightly larger for readability */
    margin-bottom: 1.5rem;
    color: #444;
    /* Darker gray for better contrast */
    font-weight: 300;
    /* Lighter weight for elegance */
    max-width: 600px;
    /* Limit line width for readability */
}

/* Hero Image Slider */
.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    min-height: 600px;
    width: 100%;
    /* Ensure height for absolute children */
    background-color: transparent;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero {
    padding: 2rem 5%;
    background-color: #f0f0f0;
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hero-item {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.hero-item--mc2 {
    height: 450px;
    object-position: top center;
}

@media (max-width: 768px) {
    .hero-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Video Section */
.video-section {
    background-color: var(--white);
    padding: 1rem 5%;
}

.video-section h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.video-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .video-content-wrapper {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .video-text {
        flex: 1.5;
        /* Takes up 60% of space */
        padding-right: 3rem;
    }

    .video-container {
        flex: 1;
        /* Takes up 40% of space */
        width: 100%;
        max-width: 450px;
        /* Limit max width */
    }
}

.video-text h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.video-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlight-text {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.reviews-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.reviews-carousel {
    display: flex;
    overflow-x: hidden;
    /* Hide scrollbar but allow JS scroll */
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.review-card {
    flex: 0 0 300px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-summary {
    border: 2px solid var(--accent-color);
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
}

.big-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.total-reviews {
    color: #666;
    font-size: 0.9rem;
}

.review-address {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.review-meta {
    font-size: 0.8rem;
    color: #888;
}

.star-rating {
    color: #f4c150;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
    font-size: 0.8rem;
    color: #999;
}

.google-icon {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

/* Map Section */
.map-section {
    padding: 0;
    background-color: var(--white);
    text-align: center;
}

.map-section h2 {
    color: var(--primary-color);
    margin: 2rem 0;
    /* Add margin since padding was removed */
}

.map-container {
    width: 100%;
    max-width: none;
    margin: 0;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    /* Remove potential inline-block spacing */
}

/* Form Section */
.form-section {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
}

.lead-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.lead-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #b5952f;
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 2rem 5%;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #000;
}

#login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

#login-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 10px;
}

#login-form button:hover {
    background-color: var(--accent-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header {
        justify-content: center;
        padding: 0.5rem 5%;
    }

    .hero,
    .products-section,
    .video-section,
    .reviews-section,
    .map-section,
    .form-section,
    footer {
        padding: 2rem 5%;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        min-height: 250px !important;
        height: 60vw !important;
        width: 100% !important;
        display: block !important;
        margin-top: 1rem;
    }

    .hero-slider,
    .hero-slide {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .products-header h2,
    .video-text h3,
    .reviews-section h2,
    .map-section h2,
    .lead-form h2 {
        font-size: 1.6rem;
    }

    .products-grid {
        gap: 1.5rem;
    }

    .video-text p {
        font-size: 1rem;
    }

    .reviews-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .floating-icons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
    }

    .floating-icon img,
    .floating-icon .whatsapp-icon-floating {
        width: 24px;
        height: 24px;
    }
    
    .floating-icon img {
        width: 45px;
        height: 45px;
    }

    .top-banner-img {
        min-height: 150px;
        object-fit: cover;
    }

    .video-container {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .hero-item--mc2 {
        height: 300px;
    }

    .video-text h3 {
        margin-top: 1rem;
    }

    .video-content-wrapper {
        gap: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .lead-form {
        padding: 1.5rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 1rem;
        padding: 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
    
    .products-header h2,
    .video-text h3 {
        font-size: 1.4rem;
    }

    .product-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .review-card {
        flex: 0 0 95%;
    }
}

/* Mobile Bottom Nav Styles */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-item:active {
    transform: scale(0.9);
    filter: brightness(1.2);
}

.nav-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-color);
    transition: background-color 0.3s ease;
}

.nav-item:hover .nav-icon-wrapper {
    background-color: var(--accent-color);
}

.nav-item:hover .nav-icon-wrapper svg path,
.nav-item:hover .nav-icon-wrapper .nav-icon {
    fill: var(--primary-color);
    filter: brightness(0) saturate(100%) invert(20%) sepia(20%) saturate(1000%) hue-rotate(180deg) brightness(90%) contrast(90%);
}

.nav-icon {
    width: 22px;
    height: 22px;
    fill: var(--accent-color);
}

.nav-icon-wrapper img.nav-icon {
    filter: sepia(100%) hue-rotate(10deg) saturate(500%) brightness(0.8);
}

.nav-item:hover .nav-icon-wrapper img.nav-icon {
    filter: brightness(0);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    .floating-icons {
        display: none !important;
    }
    
    body {
        padding-bottom: 70px;
    }
}
