
        /* Base Styles */
        :root {
            --primary: #1a1a1a;
            --secondary: #f0f0f0;
            --accent: #ff6b6b;
            --accent2: #4ecdc4;
            --accent3: #e05555ff;
            --text: #333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: var(--secondary);
            color: var(--text);
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
        }
        
        /* Navigation */
        nav {
            /* position: fixed; */
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background-color: rgba(26, 26, 26, 0.95);
            z-index: 1000;
            transition: 0.4s;
        }
        
        .logo {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--secondary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 1.5rem;
        }
        
        .nav-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }

        .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--secondary);
    text-decoration: none;
}

.logo-img {
    height: 80px; /* adjust size */
    width: auto;
}

.hero-logo {
    margin: 1rem auto;
    display: block;
    height: 150px; /* adjust size */
    width: auto;
}


/* Sections */
section {
    padding: 6rem 5%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* Home Section */
        #home {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a1a"/><path d="M0 0L100 100" stroke="%23333" stroke-width="1"/><path d="M100 0L0 100" stroke="%23333" stroke-width="1"/></svg>');
            background-size: cover;
            color: var(--secondary);
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        .hero-title span {
            color: var(--accent);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--accent);
            color: var(--secondary);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 2rem;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Catalogue Section */
        #catalogue {
            background-color: var(--secondary);
        }
        
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .filter-btn {
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background: none;
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary);
            color: var(--secondary);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
    /* Remove old placeholder styling */
.product-img {
    height: auto; /* let Swiper control height */
    background: none;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    width: 100%;
}

/* Swiper container inside product card */
.product-card .swiper {
    width: 100%;
    height: 250px; /* fixed height for all products */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Swiper slides */
.product-card .swiper-slide {
    width: 100%;
    height: 100%;
}

.product-card .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* prevents stretching */
    display: block;
}

/* Swiper navigation arrows */
.product-card .swiper-button-next,
.product-card .swiper-button-prev {
    color: var(--accent);
    width: 30px;
    height: 30px;
}

.product-card .swiper-button-next::after,
.product-card .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper pagination bullets */
.product-card .swiper-pagination {
    bottom: 10px !important;
}

.product-card .swiper-pagination-bullet {
    background: var(--secondary);
    opacity: 0.8;
}

.product-card .swiper-pagination-bullet-active {
    background: var(--accent);
}

        .product-info {
            padding: 1.5rem;
        }
        
        .product-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .product-desc {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .product-price {
            font-weight: bold;
            color: var(--accent);
        }

        
  /* About Section */
#about {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 6rem 5%;
}

.about-content {
    display: flex;
    align-items: flex-start; /* text aligns to top of image */
    gap: 2rem; /* space between image and text */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* stack on smaller screens */
}

/* About Text */
.about-text {
    flex: 1;
    min-width: 300px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary);
}

/* Paragraph spacing */
.about-text p {
    margin-bottom: 1.5rem;
}

/* About Image */
.about-image {
    flex: 1.5; /* slightly larger than text */
    min-width: 400px;
    height: 400px; /* rectangle shape */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: none; /* remove gradient */
}

/* Image fills container */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px; /* match container for rounded corners */
}


/* How to Order Section */
#how-to-order {
    background-color: #e9e9e9ff;
    color: var(--text);
    text-align: center;
    padding: 6rem 5%;
}

#how-to-order .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #060606ff;
}

/* Grid for steps */
.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Individual step cards */
.order-step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.order-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Step icons */
.step-icon {
    width: 70px;
    height: 70px;
    background: var(--accent3);
    color: var(--secondary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, background 0.3s;
}

.order-step-card:hover .step-icon {
    transform: scale(1.2);
    background: var(--accent);
}

/* Step titles */
.order-step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* Step descriptions */
.order-step-card p {
    font-size: 0.95rem;
    color: #555;
}
/* Social order links */
.social-order {
    margin-top: 2rem;
}

.social-order .social-text {
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-order .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-order .social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Generic hover (lift only) */
.social-order .social-links a:hover {
    transform: translateY(-5px);
}

/* Instagram gradient hover */
.social-order .social-links a[aria-label*="Instagram"]:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: #fff;
}

/* TikTok hover */
.social-order .social-links a[aria-label*="TikTok"]:hover {
    background: #000000;
    color: #ffffffff;
}

/* WhatsApp hover */
.social-order .social-links a[aria-label*="WhatsApp"]:hover {
    background: #25D366;
    color: #fff;
}


        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--secondary);
            padding: 3rem 5%;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
       /* Footer Quick Links */
.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    margin-bottom: 0.8rem;
}

.contact-details a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.contact-details a:hover {
    color: var(--accent);
    padding-left: 5px; /* subtle slide-in effect */
}

        
        /* Footer Social Links - same style as How to Order */
.footer-section .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-section .social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Float effect */
.footer-section .social-links a:hover {
    transform: translateY(-5px);
}

/* Instagram gradient */
.footer-section .social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: #fff;
}

/* TikTok hover */
.footer-section .social-links a[aria-label="TikTok"]:hover {
    background: #000000;
    color: #ffffffff;
}

/* WhatsApp hover */
.footer-section .social-links a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    color: #fff;
}

        .copyright {
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        
        
    /* ===== MOBILE & TABLET OPTIMIZATIONS ===== */

/* 1. General Responsive Adjustments */
@media (max-width: 1200px) {
    section {
        padding: 5rem 4%;
    }
    
    nav {
        padding: 1.2rem 4%;
    }
}

@media (max-width: 992px) {
    /* Tablet styles */
    .hero-title {
        font-size: 4rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        min-width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile styles */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--primary);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
        font-size: 1.5rem;
    }
    
    /* Logo adjustment for mobile */
    .logo {
        font-size: 1.7rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .hero-logo {
        height: 120px;
    }
    
    /* Product cards */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card .swiper {
        height: 220px;
    }
    
    /* About section */
    .about-image {
        height: 300px;
        min-width: 100%;
    }
    
    /* How to order section */
    .order-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .order-step-card {
        padding: 1.5rem 1rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Small mobile devices */
    section {
        padding: 4rem 3%;
    }
    
    nav {
        padding: 1rem 3%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .filter-buttons {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }
    
    /* Swiper navigation touch targets */
    .product-card .swiper-button-next,
    .product-card .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .product-card .swiper-button-next::after,
    .product-card .swiper-button-prev::after {
        font-size: 24px;
    }
}

/* 2. Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Improve touch experience */
    .filter-btn, .cta-button, .social-links a {
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a {
        padding: 1rem;
        min-height: 44px;
    }
    
    /* Prevent hover effects from sticking on touch devices */
    .product-card:hover {
        transform: none;
    }
    
    .order-step-card:hover {
        transform: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .order-step-card:hover .step-icon {
        transform: none;
    }
}

/* 3. Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* 4. Responsive font sizes for better readability */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
}

/* 5. Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
}

/* 6. Improve form elements for mobile */
input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* 7. Safe area padding for notched devices */
@supports(padding: max(0px)) {
    body, nav {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}