﻿/* ============================================================
   SWEET CRUMBS BY ISHA - MAIN STYLESHEET
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --dusty-rose: #D99A94;
    --blush-pink: #F3D5D0;
    --light-peach: #FBEAE3;
    --ivory-cream: #FFF9F5;
    --warm-brown: #5B3932;
    --dark-chocolate: #2D1815;
    --muted-gold: #C6A15B;
    --white: #FFFFFF;
    --shadow-soft: 0 8px 30px rgba(91, 57, 50, 0.10);
    --shadow-hover: 0 16px 48px rgba(91, 57, 50, 0.15);
    --radius-card: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--ivory-cream);
    color: var(--dark-chocolate);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
.serif {
    font-family: var(--font-serif);
}

.script {
    font-family: var(--font-script);
}

.section-tag {
    display: block; /* 'inline-block' ko 'block' karna zaroori hai taaki center ho sake */
    font-family: var(--font-script);
    font-size: 3.2rem;
    color: var(--dusty-rose);
    margin-bottom: 0px;
    text-align: center; /* <--- YEH LINE ADD KAREIN */
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-chocolate);
    margin-bottom: 12px;
    text-align: center; /* <--- YEH LINE ADD KAREIN */
}

.section-subtitle {
    color: var(--warm-brown);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto; /* Isse text center mein aa jayega */
    text-align: center; /* <--- YEH LINE ADD KAREIN (Safety ke liye) */
}
/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dusty-rose);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--warm-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 154, 148, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--warm-brown);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--warm-brown);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--warm-brown);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Header / Navigation --- */
.announcement-bar {
    background: var(--dark-chocolate);
    color: var(--ivory-cream);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.announcement-bar .script {
    font-size: 1rem;
    color: var(--muted-gold);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 154, 148, 0.15);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(91, 57, 50, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
/* ============================================================
   LOGO - UPDATED WITH CROWN, SCRIPT & SUBLINE
   ============================================================ */

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-chocolate);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; 
}

.logo .fa-crown {
    color: var(--muted-gold);
    font-size: 1.5rem;
    margin-right: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-chocolate);
    letter-spacing: 0.5px;
}
.logo-script {
   font-family: var(--font-script);
  font-size: 1.1rem;
  color: #2d1815;
  font-weight: 400;
  margin-top: -20px;
   padding-left: 170px;
}

.logo-subline {
    font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--warm-brown);
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-top: -0px;
}

/* Mobile Responsive Logo */
@media (max-width: 768px) {
    .logo .fa-crown {
        font-size: 1.2rem;
    }
    .logo-main {
        font-size: 1.2rem;
    }
    .logo-script {
        font-size: 0.9rem;
    }
    .logo-subline {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo .fa-crown {
        font-size: 1rem;
    }
    .logo-main {
        font-size: 1rem;
    }
    .logo-script {
        font-size: 0.75rem;
    }
    .logo-subline {
        font-size: 0.45rem;
    }
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-brown);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dusty-rose);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--dusty-rose);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(217, 154, 148, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background: var(--light-peach);
    color: var(--dusty-rose);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
/* Common style for both Search and Bag icons */
.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.icon-wrapper:hover {
    transform: scale(1.1);
}
/* Icon Style - Dark brown */
.header-icons i {
    font-size: 1.6rem;
    color: #4a2c2a; /* Dark brown color */
}

/* THE PINK BADGE - Exact image 1 jaisa */
.cart-count {
    position: absolute;
    top: -8px;       /* Upar shift */
    right: -10px;    /* Right shift */
    background-color: #e5a9a9; /* Pink/rose color */
    color: white;
    font-size: 11px;
    font-weight: 600;
    font-family: sans-serif;
    border-radius: 50%;
    padding: 3px 7px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    pointer-events: none; /* Taaki click sirf icon par ho, badge par nahi */
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--dusty-rose);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--warm-brown);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 80px 30px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--warm-brown);
    border-bottom: 1px solid rgba(217, 154, 148, 0.1);
}

.mobile-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
}

.mobile-nav .dropdown-menu a {
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

/* ============================================================ */
/* HERO SECTION - IMAGE 1 STYLE */
/* ============================================================ */

.hero {
            position: relative;
            width: 100%;
            height: 75vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background-color: #4a2c2a;
        }
/* 2. Overlay (Text padhne layak banane ke liye) */
 /* Overlay & Borders */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(45, 24, 21, 0.55);
            z-index: 3;
        }
        
        /* ============================================================
           CROSS-FADE SLIDER (Background flash fix)
           ============================================================ */
        .hero-slider-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: -5%;
            left: -5%;
            width: 110%;
            height: 110%;
            background-size: cover;
            background-position: center center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out; /* Smooth fade */
            animation: slowZoom 25s infinite alternate ease-in-out;
            z-index: 1; /* Default z-index background */
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 2; /* Active image hamesha upar rahegi */
        }

        @keyframes slowZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

/* 3. Scalloped Border (Neeche wali wave) */
 .hero-scallop-border {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 40px;
            background: #ffffff;
            z-index: 4;
            mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 20" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 C20,20 40,0 50,10 C60,20 80,0 100,10 L100,20 L0,20 Z" fill="white"/></svg>');
            -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 20" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 C20,20 40,0 50,10 C60,20 80,0 100,10 L100,20 L0,20 Z" fill="white"/></svg>');
            mask-size: 100% 100%;
            -webkit-mask-size: 100% 100%;
            pointer-events: none;
        }

 /* Text Container */
        .hero-container {
            position: relative;
            z-index: 3;
            width: 100%;
        }

        .hero-content {
            max-width: 750px;
            margin: 0 auto;
            color: #ffffff;
            padding: 0 20px;
        }

 /* ============================================================
           TEXT ANIMATIONS (Coming from different angles)
           ============================================================ */
        .hero-content .animate-top {
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeDown 1s ease forwards;
        }
        .hero-content .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeLeft 1s ease forwards;
        }
        .hero-content .animate-right {
            opacity: 0;
            transform: translateX(50px);
            animation: fadeRight 1s ease forwards;
        }
        .hero-content .animate-bottom {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeUp 1s ease forwards;
        }

        /* Delays */
        .hero-content .script { animation-delay: 0.3s; }
        .hero-content h1 { animation-delay: 0.8s; }
        .hero-content p { animation-delay: 1.3s; }
        .hero-content .hero-buttons { animation-delay: 1.8s; }

        @keyframes fadeDown { to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }
        @keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }
        @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
        
        
/* Typography */
        .hero-content .script {
            display: block;
            font-family: var(--font-script, cursive);
            font-size: 1.8rem;
            color: #f1d3ce;
            margin-bottom: 10px;
        }
        .hero-content h1 {
            font-size: 4rem;
            font-family: var(--font-serif);
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 15px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            font-weight: 300;
        }


        /* Buttons */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .hero-content .btn-primary {
            background: var(--dusty-rose, #D99A94);
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
        }
        .hero-content .btn-secondary {
            background: transparent;
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            border: 2px solid #fff;
            font-weight: 600;
        }

/* Arrows & Floating */
        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.4);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }
        .hero-arrow:hover { background: rgba(255,255,255,0.4); }
        .hero-arrow-left { left: 30px; }
        .hero-arrow-right { right: 30px; }

/* 7. Floating Button (Right side round image button) */
 .hero-floating-btn {
            position: absolute;
            bottom: 120px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #5B3932;
            cursor: pointer;
            z-index: 5;
            transition: transform 0.3s;
        }
        .hero-floating-btn:hover { transform: scale(1.1); }

/* ============================================================ */
/* RESPONSIVE (MOBILE) */
/* ============================================================ */
 /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero { height: 70vh; }
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content .script { font-size: 1.4rem; }
            .hero-content p { font-size: 1rem; }
            .hero-arrow { width: 35px; height: 35px; }
            .hero-arrow-left { left: 10px; }
            .hero-arrow-right { right: 10px; }
            .hero-floating-btn { display: none !important; }
        }
        
        
/* --- Category Section --- */
.categories {
    padding: 80px 0;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 25px 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(217, 154, 148, 0.1);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--dusty-rose);
}

.category-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.category-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--dark-chocolate);
}

.category-card p {
    font-size: 0.85rem;
    color: var(--warm-brown);
}

/* --- Products Section --- */
.products {
    padding: 80px 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(217, 154, 148, 0.08);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-card .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-peach);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-bestseller {
    background: var(--muted-gold);
    color: var(--white);
}

.badge-seasonal {
    background: var(--dusty-rose);
    color: var(--white);
}

.badge-eggless {
    background: #4CAF50;
    color: var(--white);
}

.product-card .product-info {
    padding: 18px 20px 20px;
}

.product-card .product-info h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--dark-chocolate);
    margin-bottom: 4px;
}

.product-card .product-info .category {
    font-size: 0.75rem;
    color: var(--dusty-rose);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .product-info .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-brown);
    margin: 8px 0;
}

.product-card .product-info .description {
    font-size: 0.85rem;
    color: var(--warm-brown);
    margin-bottom: 12px;
    opacity: 0.8;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-actions .btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add {
    background: var(--dusty-rose);
    color: var(--white);
}

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

.btn-wishlist {
    background: transparent;
    border: 2px solid var(--dusty-rose);
    color: var(--dusty-rose);
}

.btn-wishlist:hover {
    background: var(--dusty-rose);
    color: var(--white);
}

/* --- Why Choose Us --- */
.why-choose {
    padding: 80px 0;
    background: var(--light-peach);
    text-align: center; /* Center all text */
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns fixed per line */
    gap: 30px;
    max-width: 1000px; /* Limit width so it doesn't stretch too much */
    margin: 40px auto 0; /* Auto margin to center the grid */
    padding: 0 20px;
}

.why-item {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(91, 57, 50, 0.06); /* Soft shadow */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(91, 57, 50, 0.1);
    border: 1px solid rgba(217, 154, 148, 0.2);
}

.why-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1;
}

.why-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--dark-chocolate);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--warm-brown);
    line-height: 1.6;
    max-width: 250px; /* Keep text neat */
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet par 2 columns */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr; /* Mobile par 1 column */
        gap: 15px;
        max-width: 400px;
    }
}

/* --- Special Offer --- */
.special-offer {
    padding: 60px 0;
    background: var(--dark-chocolate);
    text-align: center;
    color: var(--white);
}

.special-offer .script {
    font-size: 2.5rem;
    color: var(--muted-gold);
}

.special-offer h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin: 10px 0 15px;
}

.special-offer .coupon {
    display: inline-block;
    background: var(--muted-gold);
    color: var(--dark-chocolate);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 10px 0 20px;
}

/* ============================================================
   TESTIMONIALS DARK THEME - MATCHING SPECIAL OFFER
   ============================================================ */

.testimonials-dark {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0e0c 0%, #2D1815 40%, #3d221e 70%, #2D1815 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.testimonials-dark::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 12rem;
    color: rgba(198, 161, 91, 0.04);
    font-family: var(--font-serif);
    animation: floatTestimonial 8s ease-in-out infinite;
}

.testimonials-dark::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 5%;
    font-size: 15rem;
    color: rgba(198, 161, 91, 0.03);
    font-family: var(--font-serif);
    animation: floatTestimonial 10s ease-in-out infinite reverse;
}

@keyframes floatTestimonial {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Content */
.testimonials-dark-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-badge {
    display: inline-block;
    background: rgba(198, 161, 91, 0.12);
    color: var(--muted-gold);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(198, 161, 91, 0.15);
}

.testimonial-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-title span {
    color: var(--muted-gold);
    position: relative;
}

.testimonial-title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--muted-gold);
    border-radius: 2px;
    opacity: 0.3;
}

.testimonial-subtitle {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--dusty-rose);
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Slider */
.testimonials-dark-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 5px;
}

.testimonials-dark-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dark-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    flex: 0 0 100%;
}

/* Cards */
.testimonial-dark-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(198, 161, 91, 0.08);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-dark-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--muted-gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-dark-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 161, 91, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.testimonial-dark-card:hover::before {
    opacity: 1;
}

.testimonial-dark-card .stars-dark {
    color: #f4b400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-dark-card blockquote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin: 0 0 15px 0;
}

.testimonial-dark-card blockquote::before {
    content: '"';
    font-size: 1.8rem;
    color: var(--muted-gold);
    opacity: 0.3;
    margin-right: 4px;
}

.testimonial-dark-card blockquote::after {
    content: '"';
    font-size: 1.8rem;
    color: var(--muted-gold);
    opacity: 0.3;
    margin-left: 4px;
}

.testimonial-dark-card .client-dark h5 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-dark-card .client-dark span {
    font-size: 0.8rem;
    color: var(--muted-gold);
    opacity: 0.7;
}

/* Navigation Arrows */
.testimonial-dark-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(198, 161, 91, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--muted-gold);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.testimonial-dark-arrow:hover {
    background: var(--muted-gold);
    border-color: var(--muted-gold);
    color: var(--dark-chocolate);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(198, 161, 91, 0.2);
}

.testimonial-dark-arrow-prev {
    left: -20px;
}

.testimonial-dark-arrow-next {
    right: -20px;
}

/* Dots */
.testimonial-dark-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.testimonial-dark-dots .dot-dark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(198, 161, 91, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dark-dots .dot-dark:hover {
    background: var(--muted-gold);
    opacity: 0.6;
}

.testimonial-dark-dots .dot-dark.active {
    background: var(--muted-gold);
    width: 35px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-dark-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testimonial-dark-arrow-prev {
        left: 5px;
    }
    .testimonial-dark-arrow-next {
        right: 5px;
    }
    .testimonial-dark-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .testimonial-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .testimonial-dark-slide {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .testimonial-dark-card {
        padding: 22px 18px;
    }
    .testimonial-dark-arrow-prev {
        left: 0px;
    }
    .testimonial-dark-arrow-next {
        right: 0px;
    }
    .testimonial-dark-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.7rem;
    }
    .testimonial-dark-dots .dot-dark {
        width: 10px;
        height: 10px;
    }
    .testimonial-dark-dots .dot-dark.active {
        width: 25px;
    }
    .testimonial-title {
        font-size: 1.8rem;
    }
    .testimonial-subtitle {
        font-size: 1.1rem;
    }
    .testimonials-dark::before,
    .testimonials-dark::after {
        font-size: 6rem;
    }
}

/* --- Instagram Gallery --- */
.instagram {
    padding: 60px 0;
    background: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.instagram-grid .insta-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-grid .insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-grid .insta-item:hover img {
    transform: scale(1.08);
}

.instagram-grid .insta-item .insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(217, 154, 148, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-grid .insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* --- FAQ Section --- */
.faq {
    padding: 80px 0;
    background: var(--light-peach);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 18px 25px;
    font-weight: 600;
    color: var(--dark-chocolate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--dusty-rose);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--warm-brown);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- Newsletter --- */
.newsletter {
    padding: 60px 0;
    background: var(--blush-pink);
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 20px auto 0;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(217, 154, 148, 0.3);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--dusty-rose);
}

.newsletter-form .btn-primary {
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--dark-chocolate);
    color: var(--ivory-cream);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer .logo {
    color: var(--white);
}

.footer .logo .script {
    color: var(--muted-gold);
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--white);
}

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

.footer ul li a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--muted-gold);
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--dusty-rose);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .script {
        font-size: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer p {
        max-width: 100%;
    }
    
    .footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   ABOUT SECTION - IMAGE 1 PERFECT DESIGN
   ============================================================ */
.about-section {
    position: relative;
    padding: 80px 0 100px 0; /* Extra bottom padding for wave */
    background: #FFF; /* white Background */
    overflow: hidden;
}

/* 1. Grid Layout with Image Shifted */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start; /* IMPORTANT: Items top se align honge */
    position: relative;
    z-index: 2;
}

/* Left Column */
.about-content {
    padding-top: 30px;
    position: relative;
}

/* Dot Pattern (Top Left) */
.about-pattern-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(#f1d3ce 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.8;
    z-index: 0;
}

/* Heading & SVG */
.about-heading-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    z-index: 1;
}
.about-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--dark-chocolate);
    margin: 0;
    line-height: 1.1;
}
.about-title span {
    color: var(--dusty-rose);
}

/* Leaf SVG (Bottom left corner) */
.about-leaf-svg {
    position: absolute;
    bottom: -50px;
    left: -40px;
    z-index: 0;
    opacity: 0.9;
}

/* Paragraphs */
.about-text {
    color: var(--warm-brown);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}
.about-text:last-of-type {
    margin-bottom: 30px;
}

/* Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* 2. Right Image & Script Overlay */
.about-image-wrapper {
    position: relative;
    margin-top: -40px; /* IMAGE SHIFTED UPWARDS */
    padding-left: 40px; /* Shift right slightly */
}
.about-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* Script "Baking with love" overlay */
.about-script-overlay {
    position: absolu;
    top: -45px;
    right: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 12px 25px 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(91, 57, 50, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(-3deg);
}
.about-script-overlay .script-text {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--dusty-rose);
}
.about-script-overlay .heart-drawn {
    width: 24px;
    height: 24px;
    margin-left: 5px;
}

/* 3. Bottom Pink Wave Border */
.about-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1;
    background: #f3d5d0; /* Blush pink color */
    /* CSS Vector Wave */
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 25" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,15 C30,0 70,30 100,15 L100,25 L0,25 Z" fill="black"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 25" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,15 C30,0 70,30 100,15 L100,25 L0,25 Z" fill="black"/></svg>');
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

/* ============================================================
   RESPONSIVE (MOBILE & TABLET)
   ============================================================ */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
        gap: 40px;
    }
    .about-image-wrapper {
        margin-top: 0; /* Reset top shift */
        padding-left: 0;
        order: 2; /* Image pehle aaye agar chahein toh, ya fir neeche. Image ko neeche rakhna better hai */
    }
    .about-content {
        order: 1;
        padding-top: 0;
        text-align: center;
    }
    .about-title { font-size: 2.2rem; }
    .about-pattern-dots { display: none; } /* Mobile par dots hata diye */
    .about-leaf-svg { display: none; } /* Mobile par leaves hata diye */
    .about-script-overlay {
        top: -30px;
        right: 0;
        padding: 8px 15px;
    }
    .about-script-overlay .script-text { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .about-title { font-size: 1.8rem; }
    .about-text { font-size: 0.95rem; }
    .about-script-overlay { display: none; } /* Extremely small mobile pe script overlay hatwa diya taake image cover ho */
}