/* ========================================
   धनंजय मिल्क सेंटर - Premium Stylesheet
   Professional Design - Pro Developer Level
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Primary Colors */
    --primary: #FF6B35;
    --primary-light: #FF8C5A;
    --primary-dark: #E55A2B;
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    
    /* Secondary Colors */
    --secondary: #F7C548;
    --accent: #FFDD00;
    
    /* Background Colors */
    --cream: #FFF9F0;
    --cream-dark: #FFF3E0;
    --cream-light: #FFFDF9;
    
    /* Brown Shades */
    --brown: #8B4513;
    --dark-brown: #4A2C2A;
    --chocolate: #3D1E1E;
    
    /* Text Colors */
    --text-dark: #2D2D2D;
    --text-medium: #555555;
    --text-light: #777777;
    
    /* Utility Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --success: #22C55E;
    --success-light: #BBF7D0;
    --error: #EF4444;
    --info: #3B82F6;
    --warning: #F59E0B;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 15px 60px rgba(0,0,0,0.15);
    --shadow-primary: 0 8px 30px rgba(255, 107, 53, 0.3);
    --shadow-success: 0 8px 30px rgba(34, 197, 94, 0.3);
    
    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Fonts */
    --font-marathi: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-marathi);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
    border: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #16A34A);
    color: var(--white);
    box-shadow: var(--shadow-success);
}

.btn-success:hover {
    transform: translateY(-3px);
}

.btn-back {
    background: var(--off-white);
    color: var(--text-dark);
    border: 1px solid #E5E5E5;
}

.btn-back:hover {
    background: #EEEEEE;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.top-bar-item i {
    color: var(--secondary);
    font-size: 14px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    padding: 2px;
    background: var(--white);
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-brown);
    line-height: 1.2;
}

.logo-text p {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error);
    color: var(--white);
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--dark-brown);
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 24px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;
}

.mobile-menu-header .logo-img {
    width: 45px;
    height: 45px;
}

.mobile-menu-header .logo-text h1 {
    font-size: 16px;
}

.mobile-menu-close {
    font-size: 28px;
    color: var(--text-dark);
    padding: 8px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav-link i {
    width: 24px;
    color: var(--primary);
}

.mobile-nav-link:hover {
    background: var(--cream);
    color: var(--primary);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--dark-brown) 50%, var(--brown) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-badge span:first-child {
    font-size: 22px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 6px;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255,255,255,0.15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-badge-float {
    position: absolute;
    background: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: bounce 3s ease-in-out infinite;
}

.hero-badge-float.top {
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--dark-brown);
}

.hero-badge-float.bottom {
    bottom: 40px;
    left: -30px;
    color: var(--primary);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 24px;
}

.features-grid {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   Categories Section
   ======================================== */
.categories {
    padding: 100px 0 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-card.active {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}

.category-image {
    height: 140px;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-content i {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.category-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-brown);
}

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

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #E8E8E8;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--cream);
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--error), #DC2626);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 5;
}

.product-badge.new-badge {
    background: linear-gradient(135deg, var(--info), #2563EB);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    left: auto;
    right: 12px;
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.product-content {
    padding: 20px;
}

.product-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Variant Selector */
.variant-selector {
    margin-bottom: 16px;
}

.variant-selector label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.variant-select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-brown);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.variant-select:hover {
    border-color: var(--primary);
}

.variant-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.variant-select option {
    padding: 10px;
    font-weight: 500;
}

/* Cart Indicator */
.cart-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--success-light), #DCFCE7);
    padding: 8px 12px;
    border-radius: var(--radius-full);
}

.cart-qty {
    font-size: 13px;
    font-weight: 700;
    color: var(--success);
}

.add-more-btn {
    width: 30px;
    height: 30px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.add-more-btn:hover {
    background: #16A34A;
    transform: scale(1.1);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-unit {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}

.add-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.add-btn:hover {
    transform: scale(1.05);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    padding: 6px;
    border-radius: var(--radius-full);
}

.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-value {
    font-weight: 700;
    font-size: 16px;
    min-width: 30px;
    text-align: center;
    color: var(--dark-brown);
}

/* ========================================
   Special Banner Section
   ======================================== */
.special-banner {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--dark-brown) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.special-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>') repeat;
    background-size: 50px 50px;
}

.special-banner .container {
    position: relative;
    z-index: 2;
}

.special-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.special-text {
    color: var(--white);
}

.special-text .section-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

.special-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin: 16px 0 20px;
    line-height: 1.15;
}

.special-text h2 span {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.special-text > p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.9;
}

.special-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.special-feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.special-feature i {
    font-size: 28px;
    color: var(--secondary);
}

.special-feature-text h4 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.special-feature-text p {
    font-size: 12px;
    opacity: 0.8;
}

.special-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.special-img-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.special-img-col:last-child {
    margin-top: 40px;
}

.special-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.special-img:hover {
    transform: scale(1.03);
}

.special-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.special-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-main-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-primary);
    text-align: center;
}

.about-experience h3 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.about-experience p {
    font-size: 14px;
    opacity: 0.95;
    margin-top: 4px;
}

.about-text .section-badge {
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text > p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--success-light), #DCFCE7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--success);
    font-size: 20px;
}

.about-feature-text h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   Delivery Info Banner - Matches Theme
   ======================================== */
.delivery-banner {
    background: linear-gradient(135deg, var(--dark-brown), var(--chocolate));
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.delivery-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.delivery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.delivery-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--secondary);
}

.delivery-text p {
    font-size: 16px;
    opacity: 0.95;
}

.delivery-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.delivery-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.delivery-feature i {
    font-size: 28px;
}

.delivery-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
}

.delivery-feature-text p {
    font-size: 12px;
    opacity: 0.85;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #F0F0F0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--secondary);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.author-info h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-brown);
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--dark-brown) 100%);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info .section-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin: 16px 0 16px;
}

.contact-info > p {
    opacity: 0.9;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--secondary);
}

.contact-text h4 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-text p {
    opacity: 0.85;
    font-size: 14px;
    line-height: 1.6;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--dark-brown);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: none;
    height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 16px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #1A1512;
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

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

.footer-brand .logo-text p {
    color: var(--secondary);
}

.footer-brand > p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-column h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ========================================
   Cart Modal
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: var(--white);
    z-index: 3001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid #EEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h2 i {
    color: var(--primary);
}

.cart-close {
    font-size: 30px;
    color: var(--text-light);
    transition: var(--transition);
    padding: 4px;
}

.cart-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 16px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-total {
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
    text-align: right;
}

.cart-item-remove {
    color: var(--error);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.cart-item-remove:hover {
    transform: scale(1.05);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cart-empty-icon i {
    font-size: 42px;
    color: var(--primary);
    opacity: 0.4;
}

.cart-empty h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 14px;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid #EEE;
    background: var(--off-white);
}

.cart-summary {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.cart-summary-row span:first-child {
    color: var(--text-light);
}

.cart-summary-row.free-delivery {
    color: var(--success);
    font-weight: 600;
}

.cart-summary-row.free-delivery span {
    color: var(--success);
}

.cart-summary-row.total {
    border-top: 2px solid #EEE;
    padding-top: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.cart-summary-row.total span {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-brown);
}

.cart-summary-row.total span:last-child {
    color: var(--primary);
}

.delivery-note {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-note i {
    color: var(--warning);
    font-size: 18px;
}

.cart-footer .btn {
    width: 100%;
}

/* ========================================
   Checkout Modal
   ======================================== */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 3001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.checkout-modal.active {
    display: flex;
}

.checkout-container {
    background: var(--white);
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-header {
    padding: 28px;
    border-bottom: 1px solid #EEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-header h2 i {
    color: var(--primary);
}

.checkout-close {
    font-size: 30px;
    color: var(--text-light);
    transition: var(--transition);
}

.checkout-close:hover {
    color: var(--primary);
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 32px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #E8E8E8;
    border-radius: 4px;
    z-index: 1;
}

.step-progress {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    z-index: 2;
    transition: width 0.5s ease;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #E8E8E8;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.checkout-step.active .step-number {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.checkout-step.completed .step-number {
    background: var(--success);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.checkout-step.active .step-label {
    color: var(--dark-brown);
}

.checkout-body {
    padding: 32px;
}

.checkout-section {
    display: none;
}

.checkout-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.checkout-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section h3 i {
    color: var(--primary);
}

/* Order Type Options */
.order-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.order-type-option {
    border: 3px solid #E8E8E8;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.order-type-option:hover {
    border-color: var(--primary);
    background: var(--cream);
}

.order-type-option.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.order-type-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.order-type-option i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.order-type-option h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 6px;
}

.order-type-option p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.order-type-option .delivery-info {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #DDD;
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
}

/* Delivery Address Section */
.delivery-address-section {
    display: none;
    margin-top: 24px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary);
}

.delivery-address-section.active {
    display: block;
}

.delivery-address-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-address-section h4 i {
    color: var(--primary);
}

.order-summary {
    background: var(--cream);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.order-summary-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #FFE0B2;
}

.order-summary-item:last-of-type {
    border-bottom: none;
}

.order-summary-item img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.order-summary-item-info {
    min-width: 0;
}

.order-summary-item-name {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 14px;
}

.order-summary-item-qty {
    font-size: 12px;
    color: var(--text-light);
}

.order-summary-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.order-totals {
    border-top: 2px solid #FFE0B2;
    padding-top: 16px;
    margin-top: 16px;
}

.order-info {
    background: #E8F5E9;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.order-info h4 {
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.order-info p {
    font-size: 14px;
    color: #388E3C;
    line-height: 1.6;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.payment-option {
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary);
}

.payment-option.selected {
    border-color: var(--primary);
    background: var(--cream);
}

.payment-option i {
    font-size: 32px;
}

.payment-option i.fa-money-bill-wave {
    color: var(--success);
}

.payment-option i.fa-qrcode {
    color: var(--info);
}

.payment-option-text h4 {
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 2px;
    font-size: 15px;
}

.payment-option-text p {
    font-size: 12px;
    color: var(--text-light);
}

.checkout-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.checkout-actions .btn {
    flex: 1;
}

/* ========================================
   Success Modal
   ======================================== */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 3001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal.active {
    display: flex;
}

.success-container {
    background: var(--white);
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    padding: 50px 40px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success-light), #DCFCE7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.success-icon i {
    font-size: 60px;
    color: var(--success);
}

.success-container h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.success-container > p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
}

.order-id-box {
    background: var(--cream);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.order-id-box p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.order-id-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.success-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--success);
    color: var(--white);
    padding: 18px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    z-index: 5000;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 22px;
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn i {
    font-size: 36px;
    color: var(--white);
}

/* ========================================
   Responsive Styles
   ======================================== */

/* Large Devices */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-main-image {
        width: 340px;
        height: 340px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-experience {
        right: 20px;
        bottom: -25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .delivery-content {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-features {
        justify-content: center;
    }
}

/* Small Tablets */
@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .cart-btn span:not(.cart-count) {
        display: none;
    }

    .cart-btn {
        padding: 12px 16px;
    }

    .hero {
        min-height: auto;
        padding: 70px 0 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-main-image {
        width: 280px;
        height: 280px;
    }

    .hero-badge-float {
        padding: 10px 18px;
        font-size: 12px;
    }

    .features {
        margin-top: -40px;
    }

    .features-grid {
        padding: 28px;
        gap: 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image {
        height: 160px;
    }

    .product-name {
        font-size: 15px;
    }

    .price-amount {
        font-size: 20px;
    }

    .add-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .special-images {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checkout-steps {
        gap: 50px;
    }

    .order-type-options {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .checkout-actions {
        flex-direction: column;
    }
    
    .delivery-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-badge {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .category-image {
        height: 100px;
    }

    .category-content {
        padding: 16px;
    }

    .category-content i {
        font-size: 24px;
    }

    .category-content h3 {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-footer {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .add-btn, .quantity-controls {
        justify-content: center;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .cart-modal {
        max-width: 100%;
    }

    .cart-item {
        grid-template-columns: 65px 1fr;
        gap: 12px;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        text-align: left;
        padding-top: 10px;
        border-top: 1px solid #EEE;
    }

    .checkout-container {
        border-radius: var(--radius-lg);
    }

    .checkout-header,
    .checkout-body {
        padding: 20px;
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-btn i {
        font-size: 30px;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 90px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 16px;
    }

    .hero-main-image {
        width: 240px;
        height: 240px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .logo-text h1 {
        font-size: 16px;
    }
    
    .variant-select {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .cart-indicator {
        flex-direction: column;
        gap: 6px;
        padding: 10px;
    }
}

/* Print Styles */
/* ========================================
   Search & Filter Styles
   ======================================== */
.search-filter-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-full);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
}

.sort-select {
    padding: 14px 40px 14px 20px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    min-width: 180px;
}

.sort-select:focus {
    border-color: var(--primary);
    outline: none;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.no-products i {
    font-size: 60px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-brown);
}

.no-products p {
    color: var(--text-light);
}

/* ========================================
   Product Rating Stars
   ======================================== */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    color: #FFC107;
    font-size: 12px;
}

.product-rating .rating-count {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   Wishlist Button on Product Card
   ======================================== */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn i {
    font-size: 16px;
    color: var(--text-light);
    transition: var(--transition);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--error);
    transform: scale(1.1);
}

.wishlist-btn:hover i,
.wishlist-btn.active i {
    color: var(--white);
}

/* ========================================
   Quick View Button
   ======================================== */
.quick-view-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   Quick View Modal - Professional Design
   ======================================== */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.quick-view-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quick-view-container {
    background: var(--white);
    width: 100%;
    max-width: 950px;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#quickViewContent {
    display: flex;
    width: 100%;
    height: 100%;
}

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.quick-view-close:hover {
    background: var(--error);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.quick-view-image {
    width: 45%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quick-view-image:hover img {
    transform: scale(1.05);
}

.qv-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qv-badge.bestseller {
    background: linear-gradient(135deg, var(--error), #DC2626);
    color: var(--white);
}

.qv-badge.new {
    background: linear-gradient(135deg, var(--info), #2563EB);
    color: var(--white);
    top: 65px;
}

.quick-view-details {
    width: 55%;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.qv-header {
    margin-bottom: 20px;
}

.qv-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 10px;
    line-height: 1.3;
}

.qv-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.qv-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    border-radius: var(--radius-md);
    border: 1px solid #FDE68A;
}

.qv-rating .stars {
    display: flex;
    gap: 4px;
}

.qv-rating .stars i {
    color: #F59E0B;
    font-size: 18px;
}

.qv-rating .rating-value {
    font-weight: 800;
    color: var(--dark-brown);
    font-size: 18px;
}

.qv-rating .rating-count {
    color: var(--text-light);
    font-size: 14px;
}

.qv-description {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 15px;
}

.qv-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.qv-price .price-label {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

.qv-price .price-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.qv-price .price-unit {
    color: var(--text-light);
    font-size: 15px;
}

.qv-variants {
    margin-bottom: 25px;
}

.qv-variants label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.qv-variants select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23FF6B35' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.qv-variants select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.qv-stock {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    border-radius: var(--radius-md);
    color: #166534;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid #86EFAC;
}

.qv-stock i {
    font-size: 18px;
}

.qv-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.qv-add-btn {
    flex: 1;
    padding: 18px 30px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    border: none;
    cursor: pointer;
}

.qv-add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.qv-wishlist-btn {
    width: 60px;
    height: 60px;
    border: 3px solid #E8E8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-light);
    transition: var(--transition);
    background: var(--white);
    cursor: pointer;
}

.qv-wishlist-btn:hover,
.qv-wishlist-btn.active {
    border-color: var(--error);
    background: var(--error);
    color: var(--white);
    transform: scale(1.1);
}

.qv-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #F0F0F0;
    margin-top: auto;
}

.qv-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-medium);
    padding: 12px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.qv-feature i {
    color: var(--success);
    font-size: 18px;
}

/* ========================================
   Wishlist Modal - Professional Design
   ======================================== */
.wishlist-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--white);
    z-index: 3001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
}

.wishlist-modal.active {
    right: 0;
}

.wishlist-header {
    padding: 28px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-header h2 i {
    color: var(--error);
    font-size: 26px;
}

.wishlist-close {
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    font-size: 28px;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-close:hover {
    background: var(--error);
    color: var(--white);
    transform: rotate(90deg);
}

.wishlist-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    background: #FAFAFA;
}

.wishlist-empty {
    text-align: center;
    padding: 80px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.wishlist-empty i {
    font-size: 80px;
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: block;
}

.wishlist-empty h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-brown);
    font-weight: 700;
}

.wishlist-empty p {
    color: var(--text-light);
    font-size: 15px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
    transition: var(--transition);
}

.wishlist-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.wishlist-item img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid #F0F0F0;
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 6px;
}

.wishlist-item-details p {
    font-size: 18px;
    color: var(--primary);
    font-weight: 800;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

.wishlist-add-btn,
.wishlist-remove-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.wishlist-add-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.wishlist-add-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.wishlist-remove-btn {
    background: #FEE2E2;
    color: var(--error);
}

.wishlist-remove-btn:hover {
    background: var(--error);
    color: var(--white);
    transform: scale(1.15);
}

/* ========================================
   Nav Wishlist Button
   ======================================== */
.wishlist-nav-btn {
    position: relative;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    color: var(--primary);
    padding: 12px;
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.wishlist-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--error);
    color: var(--white);
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* ========================================
   Cart Modal - Enhanced Design
   ======================================== */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: var(--white);
    z-index: 3001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    padding: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header h2 i {
    font-size: 26px;
}

.cart-close {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.cart-close:hover {
    background: var(--white);
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    background: #FAFAFA;
}

.cart-item {
    display: grid;
    grid-template-columns: 85px 1fr auto;
    gap: 18px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 85px;
    height: 85px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid #F0F0F0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-total {
    font-weight: 800;
    color: var(--primary);
    font-size: 20px;
    text-align: right;
}

.cart-item-remove {
    color: var(--error);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: #FEE2E2;
    border: none;
    cursor: pointer;
}

.cart-item-remove:hover {
    background: var(--error);
    color: var(--white);
}

.cart-empty {
    text-align: center;
    padding: 80px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.cart-empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 3px solid rgba(255, 107, 53, 0.2);
}

.cart-empty-icon i {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.5;
}

.cart-empty h3 {
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 700;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.cart-footer {
    padding: 25px;
    border-top: 2px solid #F0F0F0;
    background: var(--white);
}

.cart-summary {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    padding: 22px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
}

.cart-summary-row span:first-child {
    color: var(--text-medium);
}

.cart-summary-row.free-delivery {
    color: var(--success);
    font-weight: 600;
}

.cart-summary-row.free-delivery span {
    color: var(--success);
}

.cart-summary-row.total {
    border-top: 2px dashed rgba(255, 107, 53, 0.3);
    padding-top: 16px;
    margin-top: 14px;
    margin-bottom: 0;
}

.cart-summary-row.total span {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-brown);
}

.cart-summary-row.total span:last-child {
    color: var(--primary);
}

.delivery-note {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    font-size: 14px;
    color: #92400E;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #F59E0B;
}

.delivery-note i {
    color: #D97706;
    font-size: 20px;
}

.cart-footer .btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* ========================================
   Checkout Modal - Enhanced Design
   ======================================== */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 3001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.checkout-modal.active {
    display: flex;
}

.checkout-container {
    background: var(--white);
    width: 100%;
    max-width: 850px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    max-height: 92vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-header {
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-header h2 i {
    font-size: 26px;
}

.checkout-close {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.checkout-close:hover {
    background: var(--white);
    color: var(--primary);
}

/* Success Modal - Enhanced Design */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 3001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.success-modal.active {
    display: flex;
}

.success-container {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 50px 40px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    50% {
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
    animation: bounceIn 0.6s ease 0.2s both;
}

@keyframes bounceIn {
    from {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 65px;
    color: var(--success);
}

.success-container h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.success-container > p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 35px;
}

.order-id-box {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    border: 2px dashed var(--primary);
}

.order-id-box p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-id-box h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.success-note {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.7;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .btn {
    min-width: 160px;
}

/* ========================================
   Stock Indicators
   ======================================== */
.stock-warning {
    display: block;
    font-size: 11px;
    color: #C2410C;
    background: #FFF7ED;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    border: 1px solid #FFEDD5;
    font-weight: 600;
}

.qv-stock.low-stock {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    color: #C2410C;
    border-color: #FED7AA;
}

.qv-stock.low-stock i {
    color: #EA580C;
}

/* ========================================
   Out of Stock Badge
   ======================================== */
.product-badge.out-of-stock {
    background: linear-gradient(135deg, #6B7280, #4B5563);
    color: var(--white);
}

.add-btn.disabled {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    box-shadow: none;
}

.add-btn.disabled:hover {
    transform: none;
}

/* ========================================
   Responsive for Modals
   ======================================== */
@media (max-width: 900px) {
    .quick-view-container {
        flex-direction: column;
        max-height: 95vh;
    }
    
    .quick-view-image {
        width: 100%;
        min-height: 280px;
        height: 280px;
    }
    
    .quick-view-details {
        width: 100%;
        padding: 25px;
    }
    
    .qv-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .qv-header h2 {
        font-size: 22px;
    }
    
    .qv-price .price-value {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .search-filter-bar {
        flex-direction: column;
    }
    
    .search-box {
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .qv-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .product-card:hover .wishlist-btn {
        opacity: 1;
    }
    
    .wishlist-btn {
        opacity: 1;
    }
    
    .cart-modal,
    .wishlist-modal {
        max-width: 100%;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr;
    }
    
    .cart-item-total {
        grid-column: 1 / -1;
        text-align: left;
        padding-top: 12px;
        margin-top: 10px;
        border-top: 1px dashed #E5E5E5;
    }
    
    .success-container {
        padding: 35px 25px;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
    }
    
    .success-icon i {
        font-size: 45px;
    }
    
    .success-container h2 {
        font-size: 24px;
    }
    
    .order-id-box h3 {
        font-size: 26px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .quick-view-image {
        height: 220px;
        min-height: 220px;
    }
    
    .quick-view-details {
        padding: 20px;
    }
    
    .qv-actions {
        flex-direction: column;
    }
    
    .qv-wishlist-btn {
        width: 100%;
        height: 50px;
        border-radius: var(--radius-full);
    }
    
    .qv-price {
        flex-wrap: wrap;
    }
}

@media print {
    .navbar, .top-bar, .whatsapp-btn, .cart-modal, .checkout-modal, .success-modal, .toast {
        display: none !important;
    }
    
    body {
        background: white;
    }
}

/* ========================================
   Festival Menu Section
   ======================================== */
.festival-menu-section {
    background: linear-gradient(135deg, #FFF5F2, #FFF);
    border-top: 5px solid var(--primary);
}

.festival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.festival-menu-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.festival-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
}

.festival-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.f-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 2px dashed #f0f0f0;
    padding-bottom: 12px;
}

.f-card-header h3 {
    font-size: 20px;
    color: var(--dark-brown);
    font-weight: 700;
}

.f-card-header i {
    font-size: 20px;
    color: var(--secondary);
    animation: bounce 2s infinite;
}

.f-card-body p {
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

.f-card-footer {
    margin-top: 20px;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}


/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    background: var(--white);
    border-top: 1px solid #f0f0f0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-card.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-brown);
    margin: 0;
}

.faq-question i {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-card.active .faq-question {
    background: linear-gradient(to right, #FFF5F2, #fff);
}

.faq-card.active .faq-question h3 {
    color: var(--primary);
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
    padding: 0 20px;
}

.faq-card.active .faq-answer {
    max-height: 200px; /* Adjust if needed */
    padding: 0 20px 20px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

