
        :root {
            --primary: #E63946;
            --secondary: #F4A261;
            --accent: #2A9D8F;
            --background:rgb(247, 232, 214);
            --dark: #2B2B2B;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Sour Gummy', sans-serif;
            background-color: var(--background);
            color: var(--dark);
            line-height: 1.6;
        }

      /* --- The "Best Navbar" Styling --- */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 8%;
        background: rgba(255, 248, 240, 0.9); /* Transparent Background */
        backdrop-filter: blur(15px); /* Premium Glass Effect */
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(43, 43, 43, 0.05);
        z-index: 9999;
        transition: all 0.3s ease;
    }

    /* Shrink on scroll */
    nav.scrolled {
        height: 70px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
    }

    .logo span { color: var(--secondary); }

    /* --- Desktop Links --- */
    .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .nav-links a:hover { color: var(--primary); }

    /* Special "Order" Button */
    .nav-cta {
        background: var(--primary);
        color: white !important;
        padding: 10px 25px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }

    .nav-cta:hover {
        background: var(--dark);
        transform: translateY(-2px);
    }

    /* --- Hamburger Button --- */
    .burger {
        display: none; /* Hidden on desktop */
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--dark);
        transition: 0.3s;
    }

    /* --- Responsive Mobile Overlay --- */
    @media (max-width: 992px) {

        .nav {
            padding: 0 5%;
        }

        .burger {
            display: block;
            z-index: 10001;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%; /* Hidden off-screen */
            height: 100vh;
            width: 80%; /* Takes up 80% of screen width */
            max-width: 340px;
            background: var(--white);
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            z-index: 10000;
        }

        .nav-links.active {
            right: 0; /* Slides in from the right */
            
        }

        .nav-links a {
            font-size: 1.2rem;
        }
    }

        /* --- Section 1: New Product Hero --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 8%;
            min-height: 80vh;
        }

        .hero-content {
            flex: 1;
            padding-right: 50px;
        }

        .badge {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-content h1 {
            font-family: 'Pacifico', cursive;
            font-size: 3.5rem;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #555;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: transform 0.3s, background 0.3s;
        }

        .btn:hover {
            background: #d62e3b;
            transform: translateY(-3px);
        }

        .hero-image {
            flex: 1;
            text-align: right;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 20px 20px 0px var(--secondary);
        }

        /* --- Section 2: Greeting --- */
        .greeting-section {
            background-color: var(--white);
            padding: 100px 15%;
            text-align: center;
        }

        .greeting-section h2 {
            font-family: 'Pacifico', cursive;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }

        .greeting-section p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

        .divider {
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 0 auto 30px auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 100px;
            }
            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .nav-links.active {
                right: 0;
            }
        }
    

         /* --- Product Grid --- */
         .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--white);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 15px;
        }

        .product-info h3 { margin: 10px 0; font-size: 1.2rem; }

        /* --- Size Radio Buttons --- */
        .size-selector {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }

        .size-selector label {
            flex: 1;
            text-align: center;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: 0.3s;
        }

        .size-selector input { display: none; }

        .size-selector input:checked + label {
            background: var(--secondary);
            border-color: var(--secondary);
            color: white;
            font-weight: bold;
        }

        .price-tag {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
            margin-bottom: 15px;
        }

        .add-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .add-btn:hover { background: var(--dark); }

        /* --- Cart Drawer --- */
        #cart-drawer {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 320px;
            background: var(--white);
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            border-radius: 20px;
            z-index: 10000;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            border: 2px solid var(--primary);
        }

        #cart-drawer.minimized {
            height: 60px;
            width: 180px;
        }

        .cart-header {
            background: var(--primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .cart-content {
            height: 400px;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
        }

        .cart-footer {
            padding: 20px;
            background: #f9f9f9;
        }

        .checkout-btn {
            width: 100%;
            background: #25D366; /* WhatsApp Green */
            color: white;
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }






        .copy-section {
            padding: 100px 8%;
            background-color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
    
        .copy-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--primary);
            line-height: 1.1;
            margin-bottom: 25px;
        }
    
        .copy-content p {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.8;
        }
    
        .highlight-box {
            border-left: 4px solid var(--secondary);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
        }
    
        .feature-tags {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
    
        .tag {
            background: var(--background);
            color: var(--accent);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
        }
    
        .copy-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
    
        .copy-image-grid img {
            width: 100%;
            border-radius: 15px;
            transition: 0.5s;
        }
    
        .copy-image-grid img:hover {
            transform: scale(1.03);
        }
    
        @media (max-width: 768px) {
            .copy-section { grid-template-columns: 1fr; text-align: center; }
            .highlight-box { border-left: none; border-top: 4px solid var(--secondary); padding: 20px 0; }
            .feature-tags { justify-content: center; }
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        /* --- Form Styling --- */
        .contact-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        }

        .form-group { margin-bottom: 20px; }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
            outline: none;
            transition: 0.3s;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
        }

        .send-btn {
            width: 100%;
            background: #25D366; /* WhatsApp Green */
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1rem;
            transition: 0.3s;
        }

        .send-btn:hover { background: #1da851; transform: translateY(-2px); }

        /* --- Social & Info Styling --- */
        .social-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.2rem;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 40px;
        }

        .social-card {
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            text-decoration: none;
            color: var(--dark);
            transition: 0.3s;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .social-card i { font-size: 1.8rem; margin-bottom: 10px; display: block; }
        .social-card.fb i { color: #1877F2; }
        .social-card.ig i { color: #E4405F; }
        .social-card.tt i { color: #000000; }

        .social-card:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .social-card:hover i { color: white; }

        @media (max-width: 850px) {
            .container { grid-template-columns: 1fr; gap: 50px; }
            body { padding-top: 80px; }
        }

         /* --- Gallery Header --- */
         .gallery-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 10%;
        }

        .gallery-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .gallery-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* --- Masonry Grid Layout --- */
        .gallery-container {
            columns: 3 300px; /* Creates responsive columns */
            column-gap: 20px;
            width: 90%;
            max-width: 1400px;
            margin: 0 auto 80px;
        }

        .gallery-item {
            position: relative;
            margin-bottom: 20px;
            break-inside: avoid;
            border-radius: 20px;
            overflow: hidden;
            background: var(--white);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            display: block;
            transition: 0.5s ease;
        }

        /* Hover Overlay */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: 0.4s;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .overlay h3 {
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
            margin-bottom: 5px;
        }

        .overlay span {
            color: var(--white);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .gallery-header h1 { font-size: 2.5rem; }
            .gallery-container { columns: 1; }
        }



      

footer {
        background-color: var(--dark);
        color: var(--white);
        padding: 80px 8% 30px;
        margin-top: 100px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 2fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-brand h2 {
        font-family: 'Playfair Display', serif;
        color: var(--secondary);
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .footer-brand p {
        color: #bbb;
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .footer-links h3 {
        font-size: 1.1rem;
        margin-bottom: 25px;
        position: relative;
    }

    .footer-links h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 2px;
        background: var(--primary);
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-links ul li a {
        color: #bbb;
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.9rem;
    }

    .footer-links ul li a:hover {
        color: var(--secondary);
        padding-left: 5px;
    }

    .footer-newsletter h3 {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .newsletter-form {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 12px;
        border-radius: 5px;
        border: none;
        outline: none;
    }

    .newsletter-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
    }

    .newsletter-btn:hover {
        background: var(--secondary);
    }

    .footer-bottom {
        margin-top: 60px;
        padding-top: 20px;
        border-top: 1px solid #444;
        text-align: center;
        color: #888;
        font-size: 0.8rem;
    }

    @media (max-width: 992px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {

        .footer-brand1 {
            display: flex;
            justify-content: center; /* Horizontal centering */
            align-items: center;     /* Vertical centering */
            gap: 20px;               /* Space between items */
        }
        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .footer-links h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .newsletter-form {
            flex-direction: column;
        }
    }
    /* --- Nonstop Marquee Container --- */
    .promo-banner {
        background-color: var(--primary); /* #E63946 */
        color: var(--white);
        overflow: hidden;
        white-space: nowrap;
        padding: 10px 0;
   
        top: 0;
        width: 100%;
        z-index: 10001; /* Stays above the navbar */
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .promo-banner:hover .marquee-content {
        animation-play-state: paused;
    }

    .marquee-content {
        display: inline-block;
        animation: marquee 20s linear infinite;
    }

    .promo-item {
        display: inline-block;
        padding: 0 40px;
    }

    .promo-item span {
        color: var(--secondary); /* Adding a splash of #F4A261 */
        margin-right: 10px;
    }

    /* The Animation Logic */
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Adjust main content so it doesn't hide under the banner */
    body { padding-top: 120px; } 


    /* Layout Wrapper */
.main-layout-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: flex-start;
}

.content-side {
    flex: 1; /* Takes up remaining space */
}

/* Skyscraper Ad Styling */
.skyscraper-ad {
    width: 160px;
    position: sticky;
    top: 100px; /* Aligns with your navbar padding */
    display: block;
}

.ad-placeholder {
    width: 160px;
    height: 600px;
    background: #eee;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-placeholder span {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Mobile: Hide ad or move to bottom if screen is too small */
@media (max-width: 1200px) {
    .main-layout-wrapper {
        flex-direction: column;
    }
    .skyscraper-ad {
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
}

.floating-skyscraper {
    position: fixed;
    left: 10px;
    bottom: 120px;
    z-index: 500;
    width: 160px;
}

/* Hide on mobile to prevent overlapping content */
@media (max-width: 1350px) {
    .skyscraper-ad  {
        display: none;
    }
}