/* City Dukan - Premium Dates Store */
:root {
    --navy: #0c2d4a;
    --navy-dark: #071e33;
    --navy-light: #13406a;
    --orange: #e85d2b;
    --orange-dark: #c74e1f;
    --orange-darker: #9a3a12;
    --orange-light: #f07040;
    --primary: #e85d2b;
    --primary-dark: #c74e1f;
    --gold: #c9a227;
    --green: #25d366;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --radius: 10px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1.25rem;
}

.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; object-fit: contain; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
}

.nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    white-space: nowrap;
    transition: color 0.2s;
}

.nav a:hover, .nav a.active { color: var(--orange); }

.search-form {
    flex: 1;
    display: flex;
    max-width: 280px;
    margin-left: auto;
}

.search-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.85rem;
    font-family: inherit;
}

.search-form button {
    padding: 0.5rem 0.875rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-icon {
    position: relative;
    color: var(--navy);
    padding: 0.25rem;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alerts */
.alert {
    padding: 0.875rem 1.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

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

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

.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

.btn-cart {
    flex: 1;
    background: var(--navy);
    color: var(--white);
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
}

.btn-cart:hover { background: var(--navy-light); }

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

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

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover { background: var(--navy-light); }

.btn-block { display: block; width: 100%; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-link { background: none; border: none; color: var(--orange); cursor: pointer; font-size: 0.875rem; }
.btn-link.danger { color: #dc2626; }

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(7,30,51,0.94) 0%, rgba(7,30,51,0.75) 45%, rgba(7,30,51,0.35) 100%),
        radial-gradient(ellipse at 80% 50%, rgba(232,93,43,0.15) 0%, transparent 60%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--white);
}

.shape-1 { width: 400px; height: 400px; top: -100px; right: 10%; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; bottom: 10%; right: 30%; animation: float 6s ease-in-out infinite reverse; }
.shape-3 { width: 120px; height: 120px; top: 30%; right: 5%; animation: float 5s ease-in-out infinite; }

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

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem 1.25rem;
    gap: 3rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--orange);
    position: relative;
    white-space: nowrap;
}

.hero-branding {
    margin-bottom: 1.75rem;
}

.hero-branding-quality {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

.hero-branding-gujarati {
    color: var(--orange);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-branding-script {
    font-family: 'Great Vibes', cursive;
    color: rgba(255,255,255,0.95);
    font-size: 1.75rem;
    line-height: 1.2;
}

.hero-lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255,255,255,0.08);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hf-icon {
    color: var(--orange);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-cta {
    box-shadow: 0 8px 30px rgba(232,93,43,0.4);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232,93,43,0.5);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-showcase {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-showcase-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(232,93,43,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 34%;
    transform: scale(1.35);
    animation: heroImgFloat 6s ease-in-out infinite;
}

@keyframes heroImgFloat {
    0%, 100% { transform: scale(1.35) translateY(0); }
    50% { transform: scale(1.35) translateY(-8px); }
}

.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    white-space: nowrap;
    animation: float 5s ease-in-out infinite;
}

.hero-float-badge.badge-blue {
    top: 5%;
    left: -5%;
    background: var(--navy-light);
    animation-delay: 0s;
}

.hero-float-badge.badge-orange {
    top: 40%;
    right: -10%;
    background: var(--orange);
    animation-delay: 1s;
}

.hero-float-badge.badge-green {
    bottom: 15%;
    left: 0;
    background: #16a34a;
    animation-delay: 2s;
}

.hero-float-badge span { font-size: 1rem; }

/* Trust Bar - Mockup */
.trust-bar {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.trust-grid-mockup {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.trust-item-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.trust-icon-svg {
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item-mockup strong {
    display: block;
    font-size: 0.82rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.trust-item-mockup span {
    font-size: 0.72rem;
    color: var(--gray-600);
    line-height: 1.4;
    display: block;
}

/* Section Title Flourishes */
.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.section-title-wrap.center-only {
    margin-bottom: 2.5rem;
}

.title-flourish {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange));
    flex-shrink: 0;
}

.title-flourish:last-of-type {
    background: linear-gradient(90deg, var(--orange), transparent);
}

.products-header-mockup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 0.5rem;
}

.products-header-mockup .view-all {
    justify-self: end;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.section-subtitle-mockup {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

/* Products Section - Mockup */
.products-section {
    padding: 3.5rem 0 4rem;
    background: var(--white);
}

.product-card-home {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: none;
    transition: box-shadow 0.3s;
}

.product-card-home:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: none;
}

.product-card-home .product-image {
    margin: 0;
    padding: 0.5rem 1rem 0;
    aspect-ratio: 1;
    background: var(--white);
}

.product-card-home .product-image img {
    object-fit: cover;
    border-radius: 8px;
}

.product-card-home .product-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
}

.product-card-home .product-weight {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.product-price-home {
    margin-bottom: 1rem;
}

.product-price-home .price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
}

.product-price-home .price-note {
    display: block;
    font-size: 0.72rem;
    color: var(--gray-600);
    margin-left: 0;
    margin-top: 0.1rem;
}

.add-cart-form-home {
    flex-direction: column;
    gap: 0.625rem;
}

.add-cart-form-home .qty-control {
    width: 100%;
    justify-content: center;
}

.add-cart-form-home .btn-cart-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
}

/* Superfood - Mockup */
.superfood-section {
    padding: 2rem 0 3rem;
    background: var(--white);
}

.superfood-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--navy);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    color: var(--white);
    overflow: hidden;
}

.superfood-image img {
    border-radius: 12px;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: 50% 40%;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.superfood-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    line-height: 1.25;
}

.superfood-content h2 span { color: var(--gold); }

.benefits-grid-mockup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.benefit-mockup {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
}

.benefit-icon-gold {
    font-size: 1.15rem;
    filter: sepia(1) saturate(3) hue-rotate(10deg);
}

/* About - Mockup */
.about-section-mockup {
    padding: 3rem 0 4rem;
    background: var(--white);
}

.about-mockup-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--gray-50);
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
}

.about-mockup-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-mockup-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.about-mockup-content h2 span { color: var(--orange); }

.about-mockup-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.about-highlight-mockup {
    font-weight: 700;
    color: var(--orange) !important;
    font-size: 1rem !important;
    margin: 0.5rem 0 1.5rem !important;
}

.about-mockup-image {
    position: relative;
    overflow: hidden;
}

.about-mockup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent 0%, black 25%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

/* Testimonials - Mockup */
.testimonials-section {
    padding: 3rem 0 4rem;
    background: var(--white);
}

.testimonials-track-mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.testimonial-mockup {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.tm-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.testimonial-mockup .stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.testimonial-mockup strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.testimonial-mockup p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
}

@media (min-width: 769px) {
    .testimonials-section .slider-btn,
    .testimonials-section .slider-dots {
        display: none;
    }
}

/* Section Intro */
.section-intro {
    margin-bottom: 2.5rem;
}

.section-intro.center {
    text-align: center;
}

.section-intro .section-title {
    margin: 0.35rem 0 0.75rem;
}

.section-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    max-width: 560px;
}

.section-intro.center .section-desc {
    margin: 0 auto;
}

.section-label.light {
    color: rgba(255,255,255,0.7);
}

/* Categories */
.categories-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
}

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

.category-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s;
}

.category-card:hover .category-card-bg {
    transform: scale(1.05);
}

.cat-0 { background: linear-gradient(135deg, #0c2d4a 0%, #1a5080 100%); }
.cat-1 { background: linear-gradient(135deg, #c2410c 0%, #e85d2b 100%); }
.cat-2 { background: linear-gradient(135deg, #166534 0%, #22c55e 100%); }

.category-card-content {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    width: 100%;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.category-card p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.category-count {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--gray-50); }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
}

.section-title span { color: var(--orange); }
.text-center { text-align: center; }

.section-subtitle {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.section-label {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.view-all {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.view-all:hover { color: var(--orange); }

.page-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-grid-home {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.75rem 0;
    position: relative;
    z-index: 2;
}

.product-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    color: var(--white);
    letter-spacing: 0.03em;
}

.badge-jumbo { background: var(--orange); }
.badge-premium { background: var(--navy); }

.wishlist-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-400);
    cursor: pointer;
    margin-left: auto;
}

.product-image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    margin: -1.5rem 0 0;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-400);
    background: var(--gray-100);
}

.product-info { padding: 1rem 1.25rem 1.25rem; }

.product-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.product-info h3 a:hover { color: var(--orange); }

.product-weight {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.stars { color: #fbbf24; font-size: 0.8rem; }
.rating-count { font-size: 0.75rem; color: var(--gray-400); }

.star-rating {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.5px;
    width: 5.2em;
}

.star-rating-base {
    color: #e2e8f0;
}

.star-rating-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #fbbf24;
    white-space: nowrap;
    width: calc(var(--rating) / 5 * 100%);
}

.product-price {
    margin-bottom: 0.875rem;
}

.product-price .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.price-note {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-left: 0.25rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-400);
    margin-right: 0.5rem;
}

.add-cart-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: var(--gray-50);
    border: none;
    width: 32px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--navy);
}

.qty-input {
    width: 36px;
    text-align: center;
    border: none;
    font-size: 0.85rem;
    font-family: inherit;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.qty-control-lg .qty-btn { width: 40px; height: 48px; font-size: 1.1rem; }
.qty-control-lg .qty-input { width: 48px; height: 48px; font-size: 1rem; }

/* About (legacy - shop pages) */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.25rem;
    color: var(--navy);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.about-content h2 span { color: var(--orange); }

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-points {
    margin-bottom: 2rem;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-800);
    font-weight: 500;
}

.about-point span {
    width: 24px;
    height: 24px;
    background: rgba(232,93,43,0.12);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-img-stack {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
}

.about-img-main {
    grid-row: span 2;
    border-radius: 16px;
    object-fit: cover;
    height: 100%;
    min-height: 320px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    border-radius: 16px;
    object-fit: cover;
    height: 150px;
    width: 100%;
    box-shadow: var(--shadow);
}

.about-float-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(232,93,43,0.4);
    text-align: center;
}

.about-float-card strong {
    display: block;
    font-size: 1.1rem;
}

.about-float-card span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-highlight {
    font-weight: 700;
    color: var(--navy) !important;
    font-size: 1.05rem;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images img {
    border-radius: var(--radius);
    object-fit: cover;
    height: 220px;
    width: 100%;
}

.about-img-main { grid-row: span 2; height: 100% !important; }

.testimonials-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--gray-100);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    flex-shrink: 0;
}

.slider-btn:hover { background: var(--orange); color: var(--white); }

.testimonials-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 160px;
}

.testimonial-card {
    display: none;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.testimonial-card.active { display: block; }

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-card strong { color: var(--navy); }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
}

.dot.active { background: var(--orange); }

/* WhatsApp Banner */
.whatsapp-banner {
    background: var(--navy);
    padding: 2rem 0;
    color: var(--white);
}

.whatsapp-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.whatsapp-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.whatsapp-icon-svg {
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-left h3 { font-size: 1.05rem; font-weight: 600; }
.whatsapp-left p { font-size: 0.82rem; opacity: 0.75; }

.whatsapp-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.btn-whatsapp-cta {
    background: var(--orange);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(232,93,43,0.35);
}

.btn-whatsapp-cta:hover { background: var(--orange-dark); }

.whatsapp-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
}

/* Footer */
.footer { background: var(--navy-dark); color: var(--white); }

.newsletter {
    background: var(--navy);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    min-width: 260px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem;
}

.footer-logo { height: 90px; width: auto; object-fit: contain; margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.shipping-note {
    color: var(--orange) !important;
    font-weight: 600;
    font-size: 0.8rem !important;
}

.footer h4 {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer a {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer a:hover { opacity: 1; color: var(--orange); }

.footer p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.375rem; }

.footer-gstin,
.footer-registered {
    font-size: 0.78rem;
    opacity: 0.7;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Shop Page */
.shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
}

.sidebar {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    height: fit-content;
    border: 1px solid var(--gray-200);
}

.sidebar h3 { color: var(--navy); margin-bottom: 1rem; font-size: 1rem; }

.category-list { list-style: none; }

.category-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.category-list a:hover,
.category-list a.active {
    background: var(--navy);
    color: var(--white);
}

.shop-header { margin-bottom: 1.5rem; }
.shop-header p { color: var(--gray-600); font-size: 0.9rem; }

/* Product Detail Page */
.product-page { padding-top: 1.5rem; }

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .current { color: var(--navy); font-weight: 500; }

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.product-gallery-wrap {
    display: flex;
    gap: 1rem;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 80px;
    flex-shrink: 0;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--white);
    transition: border-color 0.2s;
}

.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--orange); }

.gallery-thumb img,
.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb--video {
    position: relative;
}

.gallery-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 45, 74, 0.35);
    color: #fff;
    font-size: 1.1rem;
    pointer-events: none;
}

.gallery-main-image,
.gallery-main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-main-image.is-hidden,
.gallery-main-video:not(.is-visible) {
    display: none !important;
}

.gallery-main-video.is-visible {
    display: block;
    position: relative;
    z-index: 2;
    background: #000;
}

.gallery-main {
    flex: 1;
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
    z-index: 2;
}

.product-detail-info { padding-top: 0.5rem; }

.detail-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.badge-category {
    background: #fde8d8 !important;
    color: var(--orange) !important;
    font-size: 0.65rem;
}

.detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 0.375rem;
}

.detail-subtitle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.subtitle-sep {
    color: var(--gray-400);
}

.detail-subtitle-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.detail-subtitle-stock.in-stock { color: #16a34a; }
.detail-subtitle-stock.out-stock { color: #dc2626; }

.detail-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.rating-score {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.trusted-badge {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 500;
}

.detail-price-block {
    margin-bottom: 1rem;
}

.detail-price-block .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}

.shipping-banner {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: var(--orange);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-storage-note {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.35rem 0 0.75rem;
}

.stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.stock.in-stock { color: #16a34a; }
.stock.out-stock { color: #dc2626; }

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.detail-feature {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.detail-feature .feature-icon { font-size: 1.5rem; }

.detail-feature strong {
    display: block;
    font-size: 0.8rem;
    color: var(--navy);
}

.detail-feature span {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.detail-actions {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    flex-wrap: nowrap;
}

.detail-qty { flex-shrink: 0; }

.detail-cart-form {
    flex: 1;
    min-width: 0;
}

.btn-add-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    height: 100%;
    min-height: 52px;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add-cart:hover { background: #fff7ed; }

.btn-add-cart svg { stroke: var(--orange); }

.btn-buy-now {
    flex: 1.2;
    min-height: 52px;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-buy-now:hover { background: var(--orange-dark); }

/* Quick Checkout Modal - Compact */
.quick-checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.quick-checkout-overlay[hidden] { display: none; }

.quick-checkout-modal {
    background: var(--white);
    border-radius: 14px;
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.qc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.qc-logo { height: 32px; width: auto; }

.qc-header h2 {
    flex: 1;
    text-align: center;
    font-size: 1.05rem;
    color: var(--navy);
    margin: 0;
}

.qc-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    line-height: 1;
}

.qc-body {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 0;
    flex-shrink: 0;
}

.qc-form {
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--gray-200);
}

.qc-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.qc-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qc-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.qc-qty { max-width: 120px; }
.qc-qty .qty-btn { width: 32px; height: 36px; }
.qc-qty .qty-input { width: 36px; height: 36px; }

.qc-top-total {
    text-align: right;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.qc-top-total em {
    display: block;
    font-style: normal;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--orange);
}

.qc-section { margin-bottom: 0.875rem; }

.qc-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.qc-section-title span {
    width: 22px;
    height: 22px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.qc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.qc-field {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0 0.625rem;
    background: var(--white);
}

.qc-field input {
    width: 100%;
    border: none;
    padding: 0.6rem 0;
    font-size: 0.8rem;
    font-family: inherit;
    outline: none;
    background: transparent;
}

.qc-field-full {
    grid-column: 1 / -1;
}

.qc-field-error {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    color: #dc2626;
}

.qc-society-hint {
    margin: 0.35rem 0 0;
    font-size: 0.7rem;
    color: var(--gray-600);
}

.qc-delivery-note {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: #16a34a;
    font-weight: 500;
}

.qc-payment-single {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 2px solid var(--orange);
    border-radius: 8px;
    background: #fffbf7;
}

.qc-payment-single strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
}

.qc-payment-single span {
    font-size: 0.72rem;
    color: var(--gray-600);
}

.qc-payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

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

.payment-methods-single-card {
    cursor: default;
}

.qc-payment-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.qc-payment-card input { display: none; }

.qc-payment-card.active {
    border-color: var(--orange);
    background: #fffbf7;
}

.qc-payment-icon { font-size: 1.25rem; flex-shrink: 0; }

.qc-payment-card strong {
    display: block;
    font-size: 0.8rem;
    color: var(--navy);
}

.qc-payment-card span:not(.qc-save-badge) {
    font-size: 0.65rem;
    color: var(--gray-600);
}

.qc-save-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #dcfce7;
    color: #166534;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
}

.qc-sidebar {
    padding: 1rem;
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.qc-product-compact {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.qc-product-compact img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.qc-product-compact h3 {
    font-size: 0.8rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.qc-product-compact p {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.qc-side-price {
    font-weight: 700;
    color: var(--navy) !important;
    margin-top: 0.25rem;
}

.qc-side-price small { font-weight: 400; color: var(--gray-500); }

.qc-summary-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.75rem;
}

.qc-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-600);
    padding: 0.25rem 0;
}

.qc-summary-total {
    font-weight: 700;
    color: var(--navy);
    border-top: 1px solid var(--gray-200);
    margin-top: 0.375rem;
    padding-top: 0.5rem;
}

.qc-summary-total span:last-child {
    color: var(--orange);
    font-size: 1.1rem;
}

.text-green { color: #16a34a !important; font-weight: 600; }

.btn-confirm-order {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
}

.btn-confirm-order:hover { background: var(--orange-dark); }

.qc-secure-note {
    text-align: center;
    font-size: 0.65rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.qc-footer-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 500;
    flex-shrink: 0;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    overflow-x: auto;
}

.tab-btn {
    padding: 1rem 1.25rem;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
    background: var(--white);
}

.tab-panels { padding: 1.5rem; }

.tab-panel { display: none; color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.tab-panel.active { display: block; }

.about-list {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.about-list li { margin-bottom: 0.5rem; }

.health-benefits-block {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.health-benefits-content h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.health-benefits-list {
    list-style: none;
    padding: 0;
}

.health-benefits-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.625rem;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.health-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.health-benefits-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.about-intro p { margin-bottom: 0.75rem; }
.about-intro strong { color: var(--navy); }
.product-description-body { margin-bottom: 0.75rem; line-height: 1.65; color: #444; }
.product-description-body p { margin-bottom: 0.65rem; }
.product-description-body ul,
.product-description-body ol { margin: 0.5rem 0 0.75rem 1.25rem; }
.product-description-body li { margin-bottom: 0.35rem; }
.product-description-body a { color: var(--orange, #e85d04); }

.nutrition-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.nutrition-table td {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.nutrition-table td:first-child { font-weight: 600; color: var(--navy); }

.tab-note { font-size: 0.8rem; color: var(--gray-400); }

.review-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.review-item:last-child { border-bottom: none; }
.review-item p { margin: 0.5rem 0; font-style: italic; }

.detail-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.detail-trust-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-align: left;
}

.detail-trust-item span { font-size: 1.5rem; }

.detail-trust-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--navy);
}

.detail-trust-item span:last-child,
.detail-trust-item div span {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.product-category {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.product-price.large .price { font-size: 2rem; }

.product-description { margin: 1.5rem 0; color: var(--gray-600); }
.product-description h3 { color: var(--navy); margin-bottom: 0.5rem; }

.add-to-cart-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    margin-top: 1.5rem;
}

.add-to-cart-form label {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.add-to-cart-form input {
    width: 80px;
    padding: 0.625rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
}

/* Cart & Checkout */
.cart-page .page-title {
    margin-bottom: 1.5rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
}

.cart-items-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(12, 45, 74, 0.06);
}

.cart-item-image {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
}

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

.cart-item-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.cart-item-name:hover {
    color: var(--orange);
}

.cart-item-price {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.cart-qty-form {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cart-qty-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.cart-item-actions {
    text-align: right;
    min-width: 90px;
}

.cart-item-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cart-remove-btn:hover {
    color: #b91c1c;
}

.cart-summary-panel {
    position: sticky;
    top: 1.5rem;
}

.cart-summary-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 14px;
    width: 100%;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(12, 45, 74, 0.08);
}

.cart-summary-box h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cart-summary-rows {
    margin-bottom: 1rem;
}

.cart-summary-box .btn {
    margin-top: 0.65rem;
}

.cart-cod-note {
    font-size: 0.8rem;
    color: var(--gray-600);
    background: var(--gray-50);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    max-width: 480px;
    margin: 0 auto;
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cart-table-wrap { overflow-x: auto; margin-bottom: 2rem; }

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.cart-table th {
    background: var(--gray-50);
    color: var(--navy);
    font-size: 0.875rem;
}

.cart-summary { display: flex; justify-content: flex-end; }

.summary-box {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    width: 100%;
    max-width: 380px;
    border: 1px solid var(--gray-200);
}

.summary-box h3 { color: var(--navy); margin-bottom: 1rem; }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.summary-row.total {
    font-size: 1.125rem;
    font-weight: 700;
    border-top: 2px solid var(--gray-200);
    margin-top: 0.5rem;
    padding-top: 1rem;
    color: var(--navy);
}

.summary-row.discount {
    color: var(--orange);
    font-weight: 600;
}

.coupon-box {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.coupon-box h3 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.coupon-hint {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.coupon-form .form-group {
    margin-bottom: 0.75rem;
}

.coupon-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--orange);
    border-radius: 8px;
    padding: 0.875rem 1rem;
}

.coupon-applied strong {
    display: block;
    color: var(--navy);
}

.coupon-applied span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.optional-label {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.form-hint-inline {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.society-code-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.35rem;
    letter-spacing: 0.03em;
}

.society-offers-section {
    background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.section-subtitle.center {
    text-align: center;
    color: var(--gray-600);
    margin: -0.5rem auto 2rem;
    max-width: 520px;
}

.society-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.society-offer-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.society-offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.society-offer-header h3 {
    font-size: 1rem;
    color: var(--navy);
    margin: 0;
}

.society-city-badge {
    font-size: 0.7rem;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.society-offer-location {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.society-offer-codes {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 0.875rem;
    margin-bottom: 1rem;
}

.society-code-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.society-code-row span {
    color: var(--gray-600);
}

.society-code-row strong {
    color: var(--navy);
    font-family: monospace;
    font-size: 0.9rem;
}

.society-code-row.offer strong {
    color: var(--orange);
}

.society-offer-discount {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    text-align: center;
}

.society-offer-discount.muted {
    color: var(--gray-500);
    font-weight: 400;
}

.checkout-payment-options {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkout-payment-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.checkout-payment-option input {
    margin-top: 0.2rem;
    accent-color: var(--orange);
}

.checkout-payment-option.active {
    border-color: var(--orange);
    background: #fffbf7;
}

.checkout-payment-option strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.checkout-payment-option span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Checkout Page */
.checkout-page .page-title {
    margin-bottom: 0.35rem;
}

.checkout-page-header {
    margin-bottom: 1.5rem;
}

.checkout-subtitle {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-alert {
    margin-bottom: 0;
}

.checkout-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(12, 45, 74, 0.06);
}

.checkout-card-offer {
    background: linear-gradient(135deg, #fffbf7 0%, #fff 100%);
    border-color: #fde8d8;
}

.checkout-card-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.checkout-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checkout-card-offer .checkout-step {
    background: var(--orange);
    font-size: 1rem;
}

.checkout-card-header h3 {
    color: var(--navy);
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
}

.checkout-card-header p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.coupon-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.coupon-form-grid .coupon-apply-btn {
    grid-column: 1 / -1;
}

.checkout-form .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #fff;
    color: var(--navy);
}

.checkout-payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

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

.checkout-payment-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.checkout-payment-card input {
    display: none;
}

.checkout-payment-card.active {
    border-color: var(--orange);
    background: #fffbf7;
}

.checkout-payment-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.checkout-payment-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.1rem;
}

.checkout-payment-card span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.checkout-submit-btn {
    margin-bottom: 0.65rem;
}

.checkout-secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
}

.checkout-sidebar {
    position: sticky;
    top: 1.5rem;
}

.checkout-summary-box {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(12, 45, 74, 0.08);
}

.checkout-summary-box h3 {
    color: var(--navy);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.checkout-order-items {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.checkout-order-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.checkout-order-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.checkout-order-item-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.checkout-order-item-info span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.checkout-order-item em {
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.checkout-summary-rows {
    margin-bottom: 1rem;
}

.checkout-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.checkout-trust-badges span {
    font-size: 0.72rem;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
}

.checkout-form h3 { color: var(--navy); margin-bottom: 1.25rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
}

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

.error { color: #dc2626; font-size: 0.8rem; margin-top: 0.25rem; display: block; }
.field-hint { display: block; margin-top: 0.25rem; color: #64748b; font-size: 0.78rem; }

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.checkout-summary .summary-box { position: sticky; top: 100px; }
.success-page {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #16a34a;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.order-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    text-align: left;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state h3 { color: var(--navy); margin-bottom: 0.5rem; }
.empty-state p { color: var(--gray-600); margin-bottom: 1.5rem; }

.pagination { margin-top: 2rem; display: flex; justify-content: center; }
.pagination nav { width: 100%; display: flex; justify-content: center; }
.pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination .page-item { display: inline-flex; }
.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.65rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1;
}
.pagination .page-item.active .page-link {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    font-weight: 600;
}
.pagination .page-item.disabled .page-link {
    color: #aaa;
    background: #f5f5f5;
    cursor: not-allowed;
}
.pagination .page-link:hover:not([aria-hidden="true"]) {
    border-color: var(--orange);
    color: var(--orange);
}
.pagination svg {
    width: 1rem;
    height: 1rem;
}

/* Static Pages */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.page-section {
    padding: 3rem 0 4rem;
    background: var(--gray-50);
}

.page-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    color: var(--navy);
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.page-content a {
    color: var(--orange);
    font-weight: 500;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-lead {
    font-size: 1rem !important;
    color: var(--gray-800) !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.page-highlight {
    font-weight: 700;
    color: var(--orange) !important;
    font-size: 1.05rem !important;
    margin: 1.5rem 0 !important;
}

.page-company-block {
    background: var(--gray-100);
    border-left: 4px solid var(--navy);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.page-company-block p {
    margin: 0 !important;
    color: var(--gray-800) !important;
    font-size: 0.95rem !important;
}

.about-company-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.page-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.page-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.25rem;
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
}

.page-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.page-list.ordered {
    counter-reset: page-ol;
}

.page-list.ordered li {
    counter-increment: page-ol;
    padding-left: 1.75rem;
}

.page-list.ordered li::before {
    content: counter(page-ol) ".";
    background: none;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
    top: 0.4rem;
    width: auto;
    height: auto;
    border-radius: 0;
}

/* About Page */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 100%;
}

.about-page-grid .page-lead {
    border-bottom: none;
    padding-bottom: 0;
}

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

.about-page-image > img:first-child {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    min-height: 320px;
}

.about-page-float {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

/* Contact Page */
.contact-page-grid {
    max-width: 100%;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.contact-card p {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-info-block h2 {
    margin-top: 1.5rem;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .page-content { padding: 1.5rem; }
    .page-hero h1 { font-size: 1.75rem; }
    .about-page-grid { grid-template-columns: 1fr; }
    .about-page-float { width: 90px; height: 90px; right: 0; }
    .contact-cards { grid-template-columns: 1fr; }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .trust-grid-mockup { grid-template-columns: repeat(3, 1fr); }
    .product-grid-home { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { order: -1; }
    .hero-showcase { width: 260px; height: 260px; }
    .hero-float-badge.badge-orange { right: 0; }
    .superfood-inner { grid-template-columns: 1fr; padding: 2rem; }
    .about-mockup-inner { grid-template-columns: 1fr; }
    .about-mockup-image { min-height: 240px; }
    .about-mockup-image img { mask-image: none; -webkit-mask-image: none; }
    .products-header-mockup { grid-template-columns: 1fr; gap: 0.75rem; }
    .products-header-mockup .view-all { justify-self: center; }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--gray-200);
    }

    .nav.open { display: flex; }

    .header-inner { flex-wrap: wrap; position: relative; }

    .logo-link { order: 1; }
    .menu-toggle { order: 0; }
    .header-actions { order: 2; margin-left: auto; }

    .search-form {
        order: 4;
        max-width: 100%;
        width: 100%;
    }

    .nav { order: 5; }

    .hero { min-height: auto; }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 3rem;
        gap: 2rem;
    }

    .hero-visual { order: -1; }
    .hero-showcase { width: 220px; height: 220px; }
    .hero-float-badge { font-size: 0.7rem; padding: 0.4rem 0.75rem; }
    .hero-float-badge.badge-blue { left: 0; top: 0; }
    .hero-float-badge.badge-orange { right: 0; }
    .hero-float-badge.badge-green { bottom: 0; left: 10%; }

    .hero-content h1 { font-size: 2rem; }
    .hero-branding-gujarati { font-size: 2rem; }
    .hero-branding-script { font-size: 1.4rem; }

    .hero-features { grid-template-columns: 1fr; max-width: 100%; }

    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .hero-stat-divider { display: none; }

    .trust-bar { margin-top: 0; padding: 2rem 0; }
    .trust-grid-mockup { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

    .products-header-mockup { grid-template-columns: 1fr; text-align: center; }
    .products-header-mockup > div:first-child { display: none; }
    .products-header-mockup .view-all { justify-self: center; }

    .superfood-inner { padding: 1.5rem; border-radius: 16px; }
    .benefits-grid-mockup { grid-template-columns: 1fr; }

    .about-mockup-content { padding: 2rem 1.5rem; }
    .about-mockup-image { min-height: 200px; }

    .testimonials-track-mockup {
        display: block;
        min-height: 220px;
    }

    .testimonial-mockup {
        display: none;
    }

    .testimonial-mockup.active {
        display: block;
    }

    .slider-btn { display: flex; }

    .product-grid-home,
    .product-grid { grid-template-columns: 1fr; }

    .superfood-grid,
    .about-grid,
    .shop-layout,
    .product-detail-layout,
    .checkout-layout,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar,
    .cart-summary-panel {
        position: static;
    }

    .coupon-form-grid,
    .checkout-payment-row {
        grid-template-columns: 1fr;
    }

    .cart-item-card {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "image details"
            "actions actions";
    }

    .cart-item-image { grid-area: image; }
    .cart-item-image img { width: 80px; height: 80px; }
    .cart-item-details { grid-area: details; }
    .cart-item-actions {
        grid-area: actions;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-top: 0.75rem;
        border-top: 1px solid var(--gray-200);
        margin-top: 0.25rem;
    }

    .product-gallery-wrap { flex-direction: column-reverse; }
    .gallery-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    .gallery-thumb { flex-shrink: 0; }

    .detail-features { grid-template-columns: 1fr; }
    .detail-trust-bar { grid-template-columns: 1fr 1fr; }
    .detail-actions {
        flex-wrap: wrap;
    }

    .detail-qty { width: 100%; max-width: 140px; }
    .detail-cart-form, .btn-buy-now { flex: 1; min-width: calc(50% - 0.5rem); }

    .qc-body { grid-template-columns: 1fr; }
    .qc-form { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .qc-grid { grid-template-columns: 1fr; }
    .qc-payment-row { grid-template-columns: 1fr; }

    .health-benefits-block { grid-template-columns: 1fr; }
    .health-benefits-img { max-width: 280px; margin: 0 auto; }

    .about-images { grid-template-columns: 1fr; }
    .about-img-main { grid-row: auto; height: 220px !important; }

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

    .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

    .whatsapp-inner { flex-direction: column; text-align: center; }
    .whatsapp-left { flex-direction: column; }
    .whatsapp-img { display: none; }

    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; flex-direction: column; }
    .newsletter-form input { min-width: auto; width: 100%; }

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

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

    .add-cart-form { flex-direction: column; }
    .btn-cart { width: 100%; }
}

@media (max-width: 480px) {
    .trust-grid-mockup { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}

/* Auth */
.auth-section { padding: 3rem 0; }
.auth-container { max-width: 420px; margin: 0 auto; }
.auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.auth-card h1 { margin: 0 0 0.25rem; font-size: 1.5rem; }
.auth-card > p { color: #666; margin: 0 0 1.5rem; }
.auth-form .btn-block { width: 100%; margin-top: 0.5rem; }
.auth-switch { text-align: center; margin-top: 1.25rem; font-size: 0.9rem; color: #666; }
.auth-switch a { color: var(--orange); font-weight: 500; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }

/* Account */
.account-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
}
.account-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 1rem;
}
.account-sidebar h3 { margin: 0 0 1rem; font-size: 1rem; }
.account-sidebar nav { display: flex; flex-direction: column; gap: 0.25rem; }
.account-sidebar a,
.account-sidebar button {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}
.account-sidebar a:hover,
.account-sidebar a.active { background: rgba(232, 93, 4, 0.1); color: var(--orange); }
.sidebar-logout { color: #999 !important; margin-top: 0.5rem; }
.account-content { min-width: 0; }
.account-welcome { color: #666; margin: 0 0 1.5rem; }
.account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
}
.stat-card strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; word-break: break-all; }
.stat-card span { font-size: 0.8rem; color: #666; }
.section-subtitle { font-size: 1.1rem; margin: 0 0 1rem; }
.account-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.account-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 720px;
}
.address-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.address-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.address-card--default {
    border-color: #fed7aa;
    box-shadow: 0 0 0 1px rgba(232, 93, 4, 0.15);
}
.address-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.address-type-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}
.address-type-badge--home { background: #dcfce7; color: #166534; }
.address-type-badge--office { background: #dbeafe; color: #1d4ed8; }
.address-type-badge--other { background: #f3e8ff; color: #7c3aed; }
.address-default-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange);
}
.address-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: var(--navy);
}
.address-card-phone,
.address-card-lines,
.address-card-society {
    margin: 0 0 0.35rem;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
}
.address-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}
.address-card-actions form { display: inline; }
.link-btn-danger { color: #b91c1c !important; }
.address-type-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.address-type-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}
.address-type-option:has(input:checked) {
    border-color: var(--orange);
    background: #fffbf7;
}
.address-type-option input { accent-color: var(--orange); }
.address-default-check { margin-top: 0.5rem; }

/* Tables */
.orders-table-wrap {
    background: #fff;
    border-radius: 12px;
    overflow-x: auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
    text-align: left;
    padding: 0.875rem 1rem;
    background: #f8f8f8;
    font-weight: 600;
    font-size: 0.8rem;
    color: #666;
    border-bottom: 1px solid #eee;
}
.data-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table small { color: #888; }
.order-datetime { white-space: nowrap; font-size: 0.85rem; }
.link-btn {
    color: var(--orange);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}
.link-btn.danger { color: #dc3545; }
.back-link { display: inline-block; color: #666; font-size: 0.9rem; text-decoration: none; margin-bottom: 0.75rem; }
.back-link:hover { color: var(--orange); }

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.status-badge.lg { font-size: 0.85rem; padding: 0.35rem 0.85rem; }
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #cce5ff; color: #004085; }
.status-shipped { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* Order detail */
.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.order-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}
.order-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.order-detail-card h3 { margin: 0 0 1rem; font-size: 1rem; }
.order-detail-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.order-detail-item span { display: block; font-size: 0.85rem; color: #666; margin-top: 0.15rem; }
.order-detail-totals { margin-top: 1rem; padding-top: 0.75rem; border-top: 2px solid #f0f0f0; }
.order-detail-totals > div {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.9rem;
}
.order-detail-totals .total { font-weight: 700; font-size: 1rem; margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid #eee; }

/* Order success */
.order-success-page { padding: 2rem 0 4rem; }
.success-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.success-icon-lg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #d4edda;
    color: #28a745;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-weight: 700;
}
.success-card h1 { margin: 0 0 0.5rem; font-size: 1.75rem; }
.success-subtitle { color: #666; margin: 0 0 1.5rem; }
.success-order-box {
    text-align: left;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.success-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.success-label { display: block; font-size: 0.8rem; color: #666; }
.success-order-no { font-size: 1.25rem; color: var(--orange); }
.success-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.success-order-grid span { display: block; font-size: 0.8rem; color: #666; }
.success-items h3,
.success-address h3 { font-size: 0.9rem; margin: 0 0 0.75rem; }
.success-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}
.success-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.success-help { font-size: 0.85rem; color: #666; margin: 0; }
.success-help a { color: var(--orange); }

/* Payment instructions (order success) */
.payment-instructions {
    text-align: left;
    background: #fffbf7;
    border: 2px solid #fed7aa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.payment-instructions h2 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    color: var(--navy);
}
.payment-instructions p {
    margin: 0 0 1rem;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}
.payment-details-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.payment-details-card--highlight {
    border-color: var(--orange);
    background: #fff;
}
.payment-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}
.payment-detail-row:last-child { border-bottom: none; }
.payment-detail-row span { color: #666; }
.payment-detail-row strong { color: var(--navy); text-align: right; }
.payment-upi-id {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--orange);
    text-align: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #fff8f3;
    border-radius: 8px;
    word-break: break-all;
}
.payment-instructions-note {
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-bottom: 0 !important;
}
.payment-qr-wrap {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}
.payment-qr-image {
    width: min(100%, 280px);
    height: auto;
    object-fit: contain;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem;
}
.payment-upi-id--below-qr {
    font-size: 1rem;
    padding: 0.65rem 0.75rem;
    margin: 0 0 0.75rem;
}
.payment-qr-amount {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important;
}
.success-card--qr {
    max-width: 480px;
}
.success-card--qr .payment-instructions {
    margin-top: 0.5rem;
    text-align: center;
}
.success-card--qr .payment-instructions h2 {
    text-align: center;
}
.success-card--qr .payment-instructions p {
    text-align: center;
}
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.empty-state h3 { margin: 0 0 0.5rem; }
.empty-state p { color: #666; margin: 0 0 1rem; }

@media (max-width: 768px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .order-detail-grid { grid-template-columns: 1fr; }
    .success-order-grid { grid-template-columns: 1fr; }
}
