/* Sri Shyam Organic - Core Stylesheet */

:root {
    --primary-color: #0f361a;      /* Deep Forest Green */
    --primary-light: #1c522b;
    --primary-dark: #061e0d;
    --accent-color: #d4a327;       /* Warm Honey Gold */
    --accent-light: #f7d581;
    --accent-dark: #b58210;
    --text-color: #2c322d;         /* Charcoal Green-Grey */
    --text-muted: #6e7a70;
    --bg-color: #faf8f5;           /* Off-White Cream */
    --card-bg: #ffffff;
    --white: #ffffff;
    --border-color: #e5ece6;
    --success: #287a3c;
    --error: #b71c1c;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 10px rgba(15, 54, 26, 0.05);
    --shadow-md: 0 10px 25px rgba(15, 54, 26, 0.08);
    --shadow-lg: 0 20px 45px rgba(15, 54, 26, 0.15);
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
}

/* Reset and Core Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* General Layout Elements */
section {
    padding: 5rem 1.5rem; /* Default mobile safe padding */
}

@media (min-width: 768px) {
    section {
        padding: 7rem 4rem;
    }
}

@media (min-width: 1200px) {
    section {
        padding: 8rem 0;
    }
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

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

.text-gold {
    color: var(--accent-color);
}

.text-green {
    color: var(--primary-color);
}

/* Section Headers */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.85rem;
    }
}

.title-divider {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-divider::before,
.title-divider::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--accent-light);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.25rem 0;
    background-color: transparent;
}

.navbar.sticky {
    padding: 0.75rem 0;
    background-color: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    padding: 3px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.navbar:not(.sticky) .brand-title {
    color: var(--white);
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-dark);
}

.navbar:not(.sticky) .brand-sub {
    color: var(--accent-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

.navbar:not(.sticky) .nav-toggle {
    color: var(--white);
}

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

.nav-list {
    display: flex;
    gap: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    padding: 0.25rem 0;
    position: relative;
}

.navbar:not(.sticky) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.navbar:not(.sticky) .nav-link.active {
    color: var(--accent-light);
}

.navbar:not(.sticky) .nav-link.active::after {
    background-color: var(--accent-light);
}

/* Mobile Navbar Styles */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--card-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 3rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        color: var(--text-color) !important;
        font-size: 1.15rem;
        display: block;
        width: 100%;
    }

    .nav-cta-wrapper {
        width: 100%;
    }

    .nav-btn {
        width: 100%;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 30, 13, 0.55) 0%, rgba(15, 54, 26, 0.35) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-card {
    max-width: 650px;
    color: var(--white);
    animation: fadeInUp 1s var(--transition);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(212, 163, 39, 0.2);
    border: 1px solid rgba(212, 163, 39, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 480px) {
    .hero-actions .btn {
        width: 100%;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
}

/* Why Us Section */
.why-us-section {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-color);
    padding: 2.5rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    background-color: var(--white);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(15, 54, 26, 0.06);
    color: var(--primary-color);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

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

/* Process & Timeline Section */
.process-section {
    background-color: var(--bg-color);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

/* Horizontal Timeline Layout & Scroll Tracks */
.process-banners-container {
    display: flex;
    flex-direction: row; /* Side-by-side on all screens */
    gap: 0.5rem;
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
}

@media (min-width: 992px) {
    .process-banners-container {
        gap: 2rem;
        margin-bottom: 3.5rem;
    }
}

.process-banner-box {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 460px; /* Centered & enlarged on mobile */
    margin: 0 auto 1.5rem auto;
}

@media (min-width: 992px) {
    .process-banner-box {
        padding: 0.5rem;
        max-width: 480px; /* Even spacing on desktop */
        margin: 0 auto 2rem auto;
    }
}

.banner-title {
    display: block;
    font-size: 0.52rem; /* Small font to fit side-by-side on mobile */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
    background-color: var(--bg-color);
    padding: 0.3rem 0.15rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 576px) {
    .banner-title {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        padding: 0.3rem;
    }
}

@media (min-width: 992px) {
    .banner-title {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        padding: 0.4rem;
    }
}

.process-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-md) - 6px);
}

.process-columns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
    width: 100%;
    min-width: 0;
}

@media (min-width: 992px) {
    .process-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.process-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0; /* Solves grid cell flex stretch issues */
}

.column-timeline-title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin: 2rem 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .column-timeline-title {
        font-size: 0.95rem;
    }
}

.timeline-scroll-wrapper {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden; /* Restricts horizontal expansion */
}

.timeline-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 100%;
}

.timeline-track::-webkit-scrollbar {
    display: none;
}

.timeline-progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.timeline-progress-bar-fill {
    width: 0%;
    height: 100%;
    background-color: var(--accent-color);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.timeline-progress-bar-fill.active {
    width: 100%;
}

.timeline-step-card {
    flex: 0 0 175px;
    height: 195px;
    scroll-snap-align: center;
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
}

.timeline-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.step-badge {
    margin-bottom: 0.5rem !important;
}

.timeline-step-label {
    text-align: left;
}

/* Step Card Styles */
.timeline-step-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.timeline-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.step-badge {
    width: 36px; /* Scaled down from 50px */
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-light);
    margin-bottom: 0.75rem; /* Scaled down */
    transition: var(--transition);
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .step-badge {
        margin-bottom: 0.75rem;
    }
}

.timeline-step-card:hover .step-badge {
    transform: scale(1.1);
    background-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 54, 26, 0.2);
}

.timeline-step-label {
    display: block;
    font-size: 0.65rem; /* Scaled down */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.timeline-step-card h4 {
    font-size: 0.90rem; /* Scaled down from 1.15rem */
    margin-bottom: 0.4rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.timeline-step-card p {
    color: var(--text-muted);
    font-size: 0.75rem; /* Scaled down from 0.90rem */
    line-height: 1.4;
}

/* Scroll indicators dots for mobile auto scroll / swipe */
.scroll-indicators-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .scroll-indicators-dots {
        display: flex;
    }
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Products Section (WhatsApp Cart Flow) */
.products-section {
    background-color: var(--white);
}

.products-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.product-badge.accent-badge {
    background-color: var(--accent-dark);
}

.product-image-placeholder {
    height: 240px;
    background: linear-gradient(135deg, #f3ebdb 0%, #e0d4be 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder.honey-bg {
    background: linear-gradient(135deg, #fdf1d5 0%, #f7dfa7 100%);
}

.product-icon {
    font-size: 5.5rem;
    color: rgba(15, 54, 26, 0.15);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    color: rgba(15, 54, 26, 0.22);
}

.floating-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-sparkles i {
    position: absolute;
    font-size: 1.2rem;
    animation: pulse 2.5s infinite alternate;
}

.floating-sparkles i:nth-child(1) {
    top: 25%;
    right: 25%;
    animation-delay: 0.5s;
}

.floating-sparkles i:nth-child(2) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.2s;
}

.product-details {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 480px) {
    .product-details {
        padding: 1.5rem;
    }
}

.product-details h3 {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-bullets {
    margin-bottom: 2rem;
}

.product-bullets li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-color);
    line-height: 1.45;
    text-align: left;
}

.product-bullets li i {
    margin-top: 0.15rem; /* Aligns exactly with first text line */
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.product-size-select {
    margin-bottom: 1.5rem;
}

.product-size-select label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.size-dropdown {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.size-dropdown:focus {
    border-color: var(--accent-color);
}

.product-pricing {
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-size {
    font-weight: 700;
    font-size: 0.9rem;
    background-color: rgba(15, 54, 26, 0.08);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.discount-pill {
    background-color: #e53935;
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.order-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
}

@media (max-width: 480px) {
    .order-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .order-controls .btn {
        width: 100%;
    }
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--bg-color);
    overflow: hidden;
    height: 48px;
    min-width: 120px;
    justify-content: space-between;
}

.qty-btn {
    border: none;
    background: none;
    width: 38px;
    height: 100%;
    cursor: pointer;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: rgba(15, 54, 26, 0.08);
}

.qty-input {
    width: 40px;
    border: none;
    background: none;
    text-align: center;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Remove numeric arrows */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .title-divider::before,
.testimonials-section .title-divider::after {
    background-color: rgba(255, 255, 255, 0.3);
}

.testimonials-scroll-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 280px; /* Mobile width */
    scroll-snap-align: center;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .testimonial-card {
        flex: 0 0 350px; /* Desktop width */
        padding: 2.5rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.rating {
    color: var(--accent-color);
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 1;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-details strong {
    font-size: 1.05rem;
    color: var(--white);
}

.client-details span {
    font-size: 0.8rem;
    color: var(--accent-light);
}

/* FAQ Section (Accordion) */
.faq-section {
    background-color: var(--bg-color);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-light);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 1.8rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
    cursor: pointer;
    gap: 1.5rem;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--accent-dark);
    transition: var(--transition);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-color: rgba(15, 54, 26, 0.02);
}

.faq-panel p {
    padding: 0 1.8rem 1.8rem 1.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ panel styles */
.faq-item.active .faq-trigger {
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Us Section with PHP Form */
.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.3fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-text a:hover {
    color: var(--primary-color);
}

.map-placeholder-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.delivery-badge-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.delivery-badge-box i {
    font-size: 3rem;
    color: var(--accent-color);
}

.delivery-badge-box span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Form Styling */
.contact-form-container {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.8rem;
    }
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.required {
    color: var(--error);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.input-icon-textarea {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(15, 54, 26, 0.08);
}

textarea {
    resize: vertical;
}

.form-response {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-response.success {
    display: block;
    background-color: rgba(40, 122, 60, 0.08);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-response.error {
    display: block;
    background-color: rgba(183, 28, 28, 0.08);
    border: 1px solid var(--error);
    color: var(--error);
}

.btn-submit {
    width: 100%;
    height: 52px;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Styling */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 1.5rem 2rem 1.5rem;
    border-top: 3px solid var(--accent-color);
}

@media (min-width: 768px) {
    .footer {
        padding: 6rem 4rem 2rem 4rem;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    padding: 2px;
}

.footer-logo-text h4 {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.footer-logo-text span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
}

.brand-pitch {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-container h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-container h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul,
.footer-products ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-products a {
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Reveal on Scroll trigger classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Product Image and Box Custom Styles */
.product-image-box {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #faf7f2 0%, #f5f1e9 100%);
}

.product-image-box .product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 1.25rem;
}

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

@media (min-width: 992px) {
    .products-container {
        justify-items: center;
        gap: 4rem 2rem;
    }
    
    .product-card {
        max-width: 380px !important;
        width: 100%;
        margin: 0 auto;
    }
    
    .product-image-box {
        height: 400px !important;
    }
    
    .product-image-box .product-img {
        padding: 0 !important;
    }
}

/* WhatsApp Order button text wrapping & sizing controls */
.btn-order-wa {
    white-space: nowrap !important;
    font-size: 0.95rem !important;
    padding: 0.8rem 1.2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

@media (max-width: 1200px) {
    .btn-order-wa {
        font-size: 0.85rem !important;
        padding: 0.8rem 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .btn-order-wa {
        font-size: 0.95rem !important;
        padding: 0.8rem 1.2rem !important;
    }
}

/* Why Choose Us Icon Custom Relevant Colors */
.feature-icon-box.icon-raw {
    background-color: rgba(229, 169, 40, 0.1);
    color: #e5a928;
}
.feature-card:hover .feature-icon-box.icon-raw {
    background-color: #e5a928;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(229, 169, 40, 0.3);
}

.feature-icon-box.icon-bilona {
    background-color: rgba(197, 85, 41, 0.1);
    color: #c55529;
}
.feature-card:hover .feature-icon-box.icon-bilona {
    background-color: #c55529;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(197, 85, 41, 0.3);
}

.feature-icon-box.icon-ethical {
    background-color: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}
.feature-card:hover .feature-icon-box.icon-ethical {
    background-color: #2e7d32;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.feature-icon-box.icon-certified {
    background-color: rgba(21, 101, 192, 0.1);
    color: #1565c0;
}
.feature-card:hover .feature-icon-box.icon-certified {
    background-color: #1565c0;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}


/* Benefits Section Styling */
.benefits-section {
    background-color: var(--bg-color);
}

.benefits-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .benefits-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.benefit-tag {
    display: inline-block;
    background-color: rgba(212, 163, 39, 0.1);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.benefit-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.benefit-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.benefit-list-preview {
    margin: 0 auto 2.2rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    max-width: max-content;
}

.benefit-list-preview li {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.benefit-list-preview li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.benefit-card .btn {
    margin-top: auto;
    width: 100%;
}


/* Modal Overlay & Card System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 30, 13, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 576px) {
    .modal-card {
        padding: 2rem 1.5rem;
    }
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--bg-color);
    color: var(--primary-dark);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header-icon {
    font-size: 2.5rem;
}

.modal-header h3 {
    font-size: 1.6rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-dark);
    display: block;
    margin-top: 0.2rem;
}

.modal-body {
    margin-bottom: 2.5rem;
}

.modal-body-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.modal-body-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-benefit-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-benefit-items li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.modal-benefit-items li .item-icon {
    font-size: 1.4rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.modal-benefit-items li strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.modal-benefit-items li p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.8rem;
    border-top: 1px solid var(--border-color);
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .modal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
    }
}

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

.modal-price-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.modal-price-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
}

.modal-price-value small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.modal-wa-cta {
    padding: 0.85rem 1.6rem;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .modal-wa-cta {
        width: 100%;
    }
}

/* Mobile Screens Typography & Alignment Safeguards */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
    }
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    .section-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }
    .benefit-content h3 {
        font-size: 1.35rem !important;
    }
    .product-details h3 {
        font-size: 1.45rem !important;
    }
    .feature-card h3 {
        font-size: 1.15rem !important;
    }
    .features-grid {
        gap: 1rem !important;
    }
    .feature-card {
        padding: 1.5rem 1rem !important;
    }
    .timeline-step-card h4 {
        font-size: 0.85rem !important;
    }
    .timeline-step-card p {
        font-size: 0.72rem !important;
    }
}

/* WhatsApp Pulse Button Animation */
@keyframes pulse-btn-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp {
    animation: pulse-btn-green 2.5s infinite;
}

/* Premium Product Card Revamp Details */
.product-card {
    border: 2px solid var(--border-color) !important;
    box-shadow: var(--shadow-md) !important;
}
.product-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-lg) !important;
}
.product-image-box {
    border-bottom: 2px solid var(--border-color);
}

/* Daily Wellness Calculator Section Styles */
.calculator-section {
    background-color: var(--bg-color);
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .calculator-section {
        padding: 6rem 4rem;
    }
}

@media (min-width: 1200px) {
    .calculator-section {
        padding: 7rem 0;
    }
}

.calculator-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .calculator-card {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.calc-inputs {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    border-bottom: 2px solid var(--border-color);
}

@media (min-width: 992px) {
    .calc-inputs {
        border-bottom: none;
        border-right: 2px solid var(--border-color);
        padding: 3rem;
    }
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.calc-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-food-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-calc-food {
    flex: 1;
    min-width: 130px;
    padding: 0.7rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.btn-calc-food:hover, .btn-calc-food.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.range-slider-wrapper {
    width: 100%;
    padding: 0.4rem 0;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--border-color);
    outline: none;
    margin-bottom: 0.6rem;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--primary-color);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

.calc-select {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.calc-select:focus {
    border-color: var(--primary-color);
}

.calc-results {
    padding: 2.5rem;
    background-color: rgba(15, 54, 26, 0.015);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .calc-results {
        padding: 3rem;
    }
}

.calc-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.75rem;
}

.calc-results-header h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.calc-badge {
    background-color: rgba(212, 163, 39, 0.15);
    color: var(--accent-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.metric-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.75rem 0.3rem;
    border-radius: var(--radius-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: var(--shadow-sm);
}

.metric-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    font-weight: 600;
}

.metric-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
}

.calc-verdict-box {
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.calc-verdict-box h5 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-verdict-box p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.calc-order-btn {
    width: 100%;
    padding: 0.85rem !important;
    font-weight: 700;
    font-size: 0.9rem !important;
}

/* Mobile Screen Layout & Spacing Fixes */
@media (max-width: 991px) {
    .contact-wrapper {
        gap: 2rem !important;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .info-card {
        padding: 1.25rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .order-controls .btn-whatsapp {
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .product-pricing {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    .price-box {
        width: 100%;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
    }
    .current-price {
        font-size: 1.4rem !important;
    }
    .old-price {
        font-size: 1rem !important;
    }
    .btn {
        padding: 0.75rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

/* Typewriter Blinking Cursor */
.typewriter-cursor {
    border-right: 3px solid var(--accent-color);
    animation: blink-cursor 0.75s step-end infinite;
    padding-right: 2px;
    color: var(--accent-light) !important;
}

@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-color); }
}

/* Clickable Flowchart Zoom & Overlay Hints */
.image-zoom-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-md) - 6px);
    cursor: pointer;
    background-color: var(--primary-dark);
}

.image-zoom-wrapper img {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-zoom-wrapper:hover img {
    transform: scale(1.04);
}

.zoom-overlay-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 54, 26, 0.88);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    padding: 0.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    z-index: 5;
}

.image-zoom-wrapper:hover .zoom-overlay-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Fullscreen Lightbox Overlay Gallery */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 30, 13, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay[aria-hidden="false"] {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    z-index: 10020;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.8rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10010;
}

.lightbox-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(15, 54, 26, 0.5);
}

.prev-arrow {
    left: 2rem;
}

.next-arrow {
    right: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox-caption {
    color: var(--white);
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .prev-arrow {
        left: 0.5rem;
    }
    .next-arrow {
        right: 0.5rem;
    }
    .lightbox-close {
        top: 1.25rem;
        right: 1.25rem;
        font-size: 2.5rem;
    }
    #lightbox-img {
        max-height: 60vh;
    }
}

/* Premium Glassmorphic Wellness Calculator */
.calculator-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(15, 54, 26, 0.08) !important;
    box-shadow: 0 20px 40px rgba(15, 54, 26, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.calc-inputs {
    background-color: transparent;
}

.calc-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
}

.btn-calc-food {
    background-color: var(--white);
    border: 2px solid var(--border-color) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    padding: 0.8rem 1rem !important;
    box-shadow: var(--shadow-sm);
}

.btn-calc-food.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 8px 15px rgba(15, 54, 26, 0.15) !important;
}

.calc-slider {
    background: var(--border-color) !important;
}

.calc-slider::-webkit-slider-thumb {
    width: 22px !important;
    height: 22px !important;
    background: var(--accent-color) !important;
    border: 3px solid var(--white) !important;
    box-shadow: 0 0 10px rgba(212, 163, 39, 0.5) !important;
}

.calc-slider::-webkit-slider-thumb:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(15, 54, 26, 0.4) !important;
}

.calc-select {
    border: 2px solid var(--border-color) !important;
    background-color: var(--white) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    padding: 0.85rem 1rem 0.85rem 2.5rem !important;
}

.calc-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 8px rgba(15, 54, 26, 0.1);
}

.calc-results {
    background: linear-gradient(135deg, rgba(15, 54, 26, 0.03) 0%, rgba(212, 163, 39, 0.03) 100%) !important;
    border-left: none;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .calc-results {
        border-left: 2px solid rgba(15, 54, 26, 0.05);
    }
}

.calc-results-header {
    border-bottom: 2px solid rgba(15, 54, 26, 0.08) !important;
}

.calc-results-header h4 {
    font-weight: 700 !important;
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

.calc-badge {
    background-color: rgba(212, 163, 39, 0.18) !important;
    color: var(--accent-dark) !important;
    font-weight: 800 !important;
}

.calc-metrics-grid {
    gap: 0.75rem !important;
}

.metric-box {
    border: 2px solid rgba(15, 54, 26, 0.06) !important;
    padding: 1rem 0.5rem !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.metric-box:hover {
    border-color: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.04);
}

.metric-label {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.5px !important;
}

.metric-value {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
}

.calc-verdict-box {
    background-color: var(--white) !important;
    border-left: 4px solid var(--accent-color) !important;
    border: 2px solid rgba(15, 54, 26, 0.06);
    border-left-width: 4px;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem !important;
}

.calc-verdict-box h5 {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.calc-verdict-box p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: var(--text-color) !important;
}

.calc-order-btn {
    box-shadow: 0 8px 20px rgba(15, 54, 26, 0.25) !important;
    transition: var(--transition);
}

.calc-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 54, 26, 0.35) !important;
}

/* Reviews Heading Mobile Override */
@media (max-width: 576px) {
    .testimonials-section .section-title {
        font-size: 1.45rem !important;
        white-space: nowrap !important;
        letter-spacing: -0.5px !important;
    }
}

/* Calculator Responsive Overrides */
@media (max-width: 768px) {
    .calc-inputs, .calc-results {
        padding: 1.8rem 1.25rem !important;
    }
    
    .calc-food-buttons {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .btn-calc-food {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
    }
    
    .calc-metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important;
    }
    
    .metric-box {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.85rem 1.25rem !important;
        text-align: left !important;
    }
    
    .metric-label {
        margin-bottom: 0 !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.3px !important;
    }
    
    .metric-value {
        font-size: 0.95rem !important;
        text-align: right !important;
    }
}

@media (max-width: 480px) {
    .calc-inputs, .calc-results {
        padding: 1.5rem 1rem !important;
    }
    
    .calc-badge {
        font-size: 0.65rem !important;
    }
    
    .calc-results-header h4 {
        font-size: 1rem !important;
    }
    
    .calc-verdict-box {
        padding: 1rem !important;
    }
    
    .calc-verdict-box p {
        font-size: 0.78rem !important;
    }
}

/* Infinite Scrolling Trust Ticker Styles */
.ticker-section {
    background-color: var(--primary-dark);
    padding: 1.25rem 0;
    overflow: hidden;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    width: 100%;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-ticker 25s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 2.5rem;
    white-space: nowrap;
}

.ticker-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

@keyframes scroll-ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Pause animation on hover */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

/* Calculator Section Mobile Padding Shrink */
@media (max-width: 576px) {
    .calculator-section {
        padding: 5rem 0.5rem !important; /* Reduced to expand card width */
    }
}

/* Homepage Gallery Section Grid Layout */
.gallery-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 260px;
    cursor: pointer;
    background-color: var(--bg-color);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 54, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

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

.gallery-zoom {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-color);
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    transform: translateY(12px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    transform: translateY(0);
}

/* E-Commerce Product Cards button view details */
.btn-view-details {
    width: 100%;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-view-details:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Unified Product Details Modal (Full Page View) */
.product-detail-card {
    max-width: 1000px !important;
    width: 95% !important;
    padding: 0 !important;
    overflow: hidden !important;
    background-color: var(--white) !important;
    border: none !important;
    box-shadow: var(--shadow-xl) !important;
}

.modal-body-wrapper {
    display: flex;
    flex-direction: column;
    height: 90vh;
    max-height: 820px;
}

@media (min-width: 992px) {
    .modal-body-wrapper {
        flex-direction: row;
        height: auto;
        max-height: none;
    }
}

.modal-image-gallery {
    width: 100%;
    background: linear-gradient(135deg, #faf7f2 0%, #f5f1e9 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 992px) {
    .modal-image-gallery {
        width: 45%;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        padding: 3rem;
    }
}

.detail-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.detail-image-box {
    width: 100%;
    height: 250px;
}

@media (min-width: 992px) {
    .detail-image-box {
        height: 420px;
    }
}

.detail-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-product-info {
    width: 100%;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .modal-product-info {
        width: 55%;
        padding: 3rem;
        max-height: 680px;
    }
}

.modal-product-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.modal-product-tagline {
    font-size: 1rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.modal-rating i {
    color: #ffb300;
    font-size: 0.9rem;
}

.modal-rating span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 0.5rem;
}

.modal-product-desc-box h4,
.modal-product-bullets-box h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.modal-product-desc-box {
    margin-bottom: 1.5rem;
}

.modal-product-desc-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.modal-product-bullets-box {
    margin-bottom: 1.5rem;
}

.modal-product-bullets-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-product-bullets-box li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-color);
}

.modal-product-bullets-box li i {
    margin-top: 0.15rem;
    color: var(--primary-color);
}

.modal-product-extra-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--bg-color);
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

@media (min-width: 576px) {
    .modal-product-extra-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

.extra-info-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.extra-info-col strong {
    color: var(--primary-dark);
}

.extra-info-col span {
    color: var(--text-color);
    line-height: 1.4;
}

.modal-purchase-controls {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .purchase-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.modal-size-select-box {
    flex-grow: 1;
    max-width: 320px;
}

.modal-size-select-box label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.modal-price-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.purchase-row.actions-row {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.purchase-row.actions-row .quantity-selector {
    flex-shrink: 0;
}

.purchase-row.actions-row .btn-whatsapp {
    flex-grow: 1;
    height: 48px;
}
