    /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: #25D366;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1600269452121-4f2416e55c28?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        /* Featured Products */
        .products {
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: #333;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .product-info .price {
            font-weight: bold;
            color: #25D366;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        /* How to Order */
        .how-to-order {
            background-color: #f8f9fa;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .step {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .step i {
            font-size: 2.5rem;
            color: #25D366;
            margin-bottom: 20px;
        }
        
        .step h3 {
            font-size: 1.3rem;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial p {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial .author {
            font-weight: bold;
            color: #25D366;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .cta h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .social-icons {
            margin-bottom: 20px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .social-icons a:hover {
            color: #25D366;
        }
        
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }
/* Color Selector Styles */
.color-options {
    margin: 15px 0;
}

.color-label {
    font-weight: bold;
    margin-bottom: 8px;
}

.color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-thumb {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
}

.color-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.color-thumb.active {
    border-color: #25D366;
    transform: scale(1.1);
}

/* Navigation Bar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #25D366;
    gap: 10px;
}
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #25D366;
}
.nav-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}
.carousel-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.carousel-slide {
    display: none;
    width: 100vw;
    height: 60vh;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    transition: opacity 0.7s;
}
.carousel-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 1s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.carousel-slide img {
    width: 100vw;
    height: 60vh;
    object-fit: cover;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}
.carousel-controls button {
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
}
.carousel-controls button:hover {
    background: #25D366;
}
.hero-content {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    padding: 2rem 2rem 1.5rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.hero-content h1 {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}
.hero-whatsapp {
    font-size: 1.1rem;
    padding: 12px 30px;
}

/* Gallery Section */
.gallery-section {
    background: #fff;
    padding: 60px 0 40px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
}

.about .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 60px 20px;
  background: #fff;
}

.contact .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #444;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-list li {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #333;
}

.contact-list li i {
  color: #25D366;
  margin-right: 10px;
}

.contact-list a {
  color: #25D366;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.map-embed iframe {
  border-radius: 10px;
  margin-top: 20px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}
.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-info {
    padding: 18px 12px 20px 12px;
    text-align: center;
}
.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}
.product-info .btn {
    margin-top: 10px;
    width: 100%;
}

/* Size Guide Modal */
.size-guide-popup {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.size-guide-modal {
    background: #fff;
    color: #222;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.size-guide-modal h2 {
    margin-bottom: 1rem;
    color: #25D366;
}
.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.size-guide-table th, .size-guide-table td {
    border: 1px solid #eee;
    padding: 8px 12px;
    text-align: center;
}
.close-size-guide {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    padding: 4px 10px;
    cursor: pointer;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #25D366;
    font-weight: bold;
}

/* Testimonials, Benefits, FAQ, Location */
.testimonials, .benefits, .faq, .location {
    background: #f8f9fa;
    padding: 60px 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial .author {
    font-weight: bold;
    color: #25D366;
}
.benefits .steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}
.benefits .step {
    background: #fff;
    padding: 24px 18px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
}
.benefits .step i {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 20px;
}
.benefits .step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 18px;
}
.faq-item h3 {
    color: #25D366;
    margin-bottom: 8px;
}
.map-embed {
    height: 300px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .benefits .steps {
        flex-direction: column;
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .hero-content {
        padding: 1rem;
        font-size: 1rem;
    }
    .carousel-slide img, .carousel-slide {
        height: 35vh;
    }
    .gallery-section, .testimonials, .benefits, .faq, .location {
        padding: 30px 0;
    }
    .product-image {
        height: 120px;
    }
    .size-guide-modal {
        padding: 1rem;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #25D366;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100vw;
        height: 100vh;
        width: 70vw;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px 30px;
        gap: 2rem;
        box-shadow: -2px 0 12px rgba(0,0,0,0.08);
        transition: right 0.3s;
        z-index: 2000;
    }
    .nav-links.open {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
}

/* Hamburger Animation (open/close) */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay for mobile nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.2);
    z-index: 1500;
}
.mobile-nav-overlay.open {
    display: block;
}

/* Lazy loading images */
.product-image img, .carousel-slide img {
    background: #eaeaea;
    min-height: 80px;
    filter: blur(0.5px);
    transition: filter 0.3s;
}
.product-image img.loaded, .carousel-slide img.loaded {
    filter: blur(0);
}

/* Further mobile improvements */
@media (max-width: 600px) {
    .nav-links {
        width: 90vw;
        padding: 80px 10px 10px 10px;
    }
    .logo-img {
        width: 32px;
        height: 32px;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}