/* =============================================
   AVVA'S HOME FOODS — Premium Design System
   Color Palette: Deep greens, warm golds, rich browns
   ============================================= */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
    /* Primary Colors */
    --primary: #c8962e;
    --primary-light: #e4b84d;
    --primary-dark: #9a7322;
    --primary-glow: rgba(200, 150, 46, 0.3);

    /* Accent Colors */
    --accent-green: #2d6a4f;
    --accent-green-light: #40916c;
    --accent-green-dark: #1b4332;

    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-elevated: #252525;

    /* Text Colors */
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c8962e, #e4b84d, #c8962e);
    --gradient-green: linear-gradient(135deg, #1b4332, #2d6a4f, #40916c);
    --gradient-dark: linear-gradient(180deg, #0a0a0a, #111111);
    --gradient-card: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1b4332 50%, #0a0a0a 100%);

    /* Glass Effect */
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(200, 150, 46, 0.15);
    --glass-blur: blur(20px);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(200, 150, 46, 0.2);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --card-padding: 28px;
    --card-radius: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-display: 'Comfortaa', cursive;
    --font-body: 'Manrope', sans-serif;
    --font-alt: 'Manrope', sans-serif;
}

/* Override for Price - Keep clean */
.product-price,
.cart-item-price,
#subtotal,
#deliveryCharge,
#totalAmount,
.stat-number,
.weight-select,
.weight-display {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

body {
    font-weight: 200;
    /* ExtraLight */
}

/* --- LIGHT THEME OVERRIDES --- */
body.light-theme {
    /* Primary Colors - adjusted for light bg */
    --primary: #b8860b;
    /* Dark Golden Rod */
    --primary-light: #d4af37;
    --primary-dark: #8b6508;
    --primary-glow: rgba(184, 134, 11, 0.2);

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f3f5;
    --bg-elevated: #e9ecef;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6c757d;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #b8860b, #d4af37, #b8860b);
    --gradient-green: linear-gradient(135deg, #2d6a4f, #40916c, #52b788);
    --gradient-dark: linear-gradient(180deg, #ffffff, #f8f9fa);
    --gradient-card: linear-gradient(145deg, #ffffff, #f8f9fa);
    --gradient-hero: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    /* Darker border for visibility */

    /* Borders */
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.highlight {
    color: var(--primary);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Font handled by .logo-text */
    font-size: 1.3rem;
    font-weight: normal;
    /* Cooper Black is already bold */
    text-decoration: none;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    color: var(--text-primary);
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(200, 150, 46, 0.1);
}

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

.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    background: rgba(200, 150, 46, 0.1);
    color: var(--primary);
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 150, 46, 0.1);
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.cart-btn:hover {
    background: rgba(200, 150, 46, 0.2);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Only Menu Items */
.mobile-only {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 150, 46, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 106, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(200, 150, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 46, 0.1);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image {
    width: 480px;
    height: 480px;
    object-fit: cover;
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.hero-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 150, 46, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0a0a0a;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 35px rgba(200, 150, 46, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.3);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    transition: var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-danger {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.btn-danger:hover {
    background: rgba(220, 53, 69, 0.25);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 10px;
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    text-align: center;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-family: var(--font-alt);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(200, 150, 46, 0.1);
    border: 1px solid var(--glass-border);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.products-grid-full {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-gold);
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--bg-elevated);
}

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

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 22px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-alt);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-price {
    font-family: var(--font-alt);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.product-weight {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 4px 10px;
    border-radius: 6px;
}

.weight-select {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    cursor: pointer;
    width: auto;
    min-width: 120px;
    margin-bottom: 5px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    transition: var(--transition-fast);
}

.weight-select:hover {
    border-color: var(--primary);
    background-color: var(--bg-card-hover);
}

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

.weight-display {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    /* Visually similar to select but disabled look */
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: default;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.rating-stars {
    color: #f5c518;
}

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

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

/* Quantity Control in Product Card */
.qty-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 4px;
    flex: 1;
    /* Take same space as button */
    height: 45px;
    /* Match button height approx */
}

.qty-btn-card {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.qty-btn-card:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.qty-val-card {
    font-family: var(--font-alt);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-frame:hover .about-image {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: #0a0a0a;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-content .section-tag {
    margin-bottom: 14px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.highlight-icon {
    font-size: 1.1rem;
}

/* =============================================
   HOW IT WORKS — STEPS
   ============================================= */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-gold);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 150, 46, 0.15);
    position: absolute;
    top: 16px;
    right: 20px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.step-card h3 {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    width: 60px;
    position: relative;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.connector-dot {
    position: absolute;
    right: -4px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

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

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0a0a;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: var(--gradient-green);
    border-radius: 30px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
}

.cta-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    right: -50px;
    top: -50px;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    right: 100px;
    bottom: -30px;
    top: auto;
}

/* =============================================
   PAGE HEADER (Products & Order pages)
   ============================================= */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 80%, rgba(200, 150, 46, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

.page-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* =============================================
   FILTERS
   ============================================= */
.filters-section {
    padding: 0;
    margin-bottom: 40px;
}

.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 12px 16px;
}

.filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.filter-tab.active {
    color: #0a0a0a;
    background: var(--gradient-gold);
    font-weight: 600;
}

.search-box {
    position: relative;
}

.search-input {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 10px 40px 10px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    width: 240px;
    transition: var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 150, 46, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
}

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: var(--font-alt);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* =============================================
   ORDER PAGE
   ============================================= */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.order-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 32px;
}

.order-card-title {
    font-family: var(--font-alt);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

/* Cart Items */
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--bg-elevated);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: rgba(200, 150, 46, 0.2);
    border-color: var(--primary);
}

.cart-item-qty {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #ff6b7a;
}

/* Cart Summary */
.cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.summary-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--border-subtle);
}

.summary-total span:last-child {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Order Form */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 150, 46, 0.1);
}

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

/* Payment Options */
.payment-options {
    display: flex;
    gap: 12px;
}

.payment-option {
    flex: 1;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--border-subtle);
    background: var(--bg-elevated);
    transition: var(--transition-fast);
    font-weight: 500;
}

.payment-option input:checked+.payment-label {
    border-color: var(--primary);
    background: rgba(200, 150, 46, 0.1);
}

.payment-icon {
    font-size: 1.3rem;
}

/* =============================================
   SUCCESS MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

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

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: modalSlideUp 0.4s ease;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-order-id {
    background: var(--bg-elevated);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 16px;
    display: inline-block;
}

.modal-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 30px;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    text-decoration: none;
    color: var(--text-primary);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-link:hover {
    border-color: var(--primary);
    background: rgba(200, 150, 46, 0.1);
}

.footer-links-col h4 {
    font-family: var(--font-alt);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.footer-links-col a,
.footer-links-col p {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ScrollReveal classes */
/* ScrollReveal classes */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: toastSlideIn 0.4s ease, toastSlideOut 0.4s ease 2.5s forwards;
    font-size: 0.95rem;
    font-weight: 500;
}

.toast-icon {
    font-size: 1.2rem;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 24px;
    }

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

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

    .hero-image {
        width: 300px;
        height: 300px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    .navbar {
        padding: 15px 0;
    }

    .nav-logo-img {
        height: 35px;
        /* Smaller logo on mobile */
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid var(--border-subtle);
        gap: 20px;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        animation: fadeInUp 0.3s ease;
    }

    /* Steps Grid - Vertical Stack for Mobile */
    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .step-connector {
        flex-direction: column;
        height: 50px;
        width: 2px;
        margin: 0 auto;
    }

    .connector-line {
        width: 2px;
        height: 100%;
    }

    .connector-dot {
        left: -3px;
        top: auto;
        bottom: 0;
    }

    .step-card {
        padding: 30px 20px;
        max-width: 100%;
    }

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

    /* Mobile Menu Items */
    .mobile-only {
        display: block;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    /* Hide Header Button on Mobile */
    #authActions {
        display: none;
    }

    /* Adjust Admin Login Button on Mobile */
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.2rem;
        /* Reduce from 3.5rem */
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-image {
        width: 260px;
        height: 260px;
    }

    /* Grids */
    .features-grid,
    .about-grid,
    .testimonials-grid,
    .footer-grid,
    .order-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet/large phone */
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 10px;
    }

    /* Hide Admin text on very small screens if needed, or scale down */
    .logo-text {
        font-size: 1rem;
    }

    .logo-text span.highlight {
        display: inline-block;
        /* Ensure highlight text behaves well */
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-image {
        width: 220px;
        height: 220px;
    }

    /* Force 1 column for products on very small screens if content is tight */
    /* But 2 columns often looks better for e-commerce. Let's stick to 1 if cards are detailed */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }


    /* Increase WhatsApp logo size on mobile */
    .btn .social-icon {
        width: 43px;
        height: 43px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .filters-bar {
        flex-direction: column;
        gap: 15px;
    }

    .search-input {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* --- Review Form Styling --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 30px;
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-gold);
}

.testimonial-stars {
    color: #f5c518;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.add-review-section {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.add-review-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.review-form .form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.rating-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--bg-elevated);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.rating-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Star Rating CSS */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 4px;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #f5c518;
    transform: scale(1.1);
}

.loading-reviews {
    text-align: center;
    color: var(--text-muted);
    grid-column: 1 / -1;
    padding: 40px;
    font-size: 1.1rem;
}

/* --- Product Card Animation --- */
@keyframes card-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 0 10px rgba(255, 215, 0, 0.1);
        border-color: var(--primary);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    }
}

.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover,
.product-card:active,
.product-card:focus-within {
    transform: translateY(-8px) scale(1.02);
    animation: card-glow 2s infinite;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

/* --- Product Details Refined --- */
.pd-weight-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.weight-chip {
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.weight-chip.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 600;
}

.pd-accordion {
    margin-top: 30px;
    border-top: 1px solid var(--border-light);
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-header {
    padding: 16px 0;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* Arbitrary large height */
    padding-bottom: 16px;
}

/* Sticky Bottom Bar */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.sticky-weight {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .product-details-container {
        padding-top: 80px;
        /* Space for fixed header */
        padding-bottom: 80px;
        /* Space for sticky bar */
    }

    .pd-info {
        padding: 0 10px;
    }
}

/* Modal Close Button */
.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--border-subtle);
}