/* ==========================================================================
   DESIGN SYSTEM & CONSTANTS (style.css)
   ========================================================================== */

:root {
    /* Color Palette */
    --color-primary: #2E7D32;       /* Forest/Leaf Green */
    --color-primary-light: #E8F5E9; /* Soft Green Tint */
    --color-secondary: #F9A825;     /* Warm Honey Yellow/Amber */
    --color-secondary-dark: #F57F17;/* Dark Amber */
    --color-secondary-light: #FFF9C4;/* Soft Gold Tint */
    --color-accent: #8D6E63;        /* Warm Wood Accent */
    --color-bg: #FFFDF5;            /* Natural Warm Cream */
    --color-bg-card: #FFFFFF;       /* Pure Card White */
    --color-text: #212121;          /* Deep Grey/Off-Black */
    --color-text-muted: #555555;    /* Muted Grey */
    --color-white: #FFFFFF;
    --color-error: #D84315;         /* Dynamic Alert Red */
    
    /* Layout Constants */
    --font-primary: 'Hind Siliguri', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions & Shadows */
    --shadow-soft: 0 8px 30px rgba(46, 125, 50, 0.05);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 20px 50px rgba(249, 168, 37, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    /* Soft organic background leaf pattern using CSS gradients and SVG code */
    background-image: 
        radial-gradient(var(--color-secondary-light) 0.5px, transparent 0.5px), 
        radial-gradient(var(--color-secondary-light) 0.5px, var(--color-bg) 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 768px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: var(--font-primary);
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.text-center { text-align: center; }
.text-success { color: var(--color-primary); }
.text-primary { color: var(--color-primary); }
.bg-light-green { background-color: var(--color-primary-light); }

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.title-underline.left-aligned {
    margin: 10px 0 0;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-top: 15px;
}

/* ==========================================================================
   SECTION 1: STICKY HEADER
   ========================================================================== */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -3px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--border-radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-call {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.btn-facebook {
    background-color: #1877F2;
    color: var(--color-white);
}

.icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Honey drip decorative divider top */
.honey-drip-top {
    width: 100%;
    line-height: 0;
    position: relative;
    z-index: 10;
}

.honey-drip-top svg {
    width: 100%;
    height: 25px;
}

/* ==========================================================================
   SECTION 2: HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 40px 20px 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-info {
    display: flex;
    flex-direction: column;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 168, 37, 0.1);
    border: 1px solid rgba(249, 168, 37, 0.3);
    padding: 6px 14px;
    border-radius: var(--border-radius-md);
    width: fit-content;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-headline {
    font-size: 3.2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.emoji-title {
    font-size: 2.8rem;
    vertical-align: middle;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* Urgency / Timer box */
.offer-timer-box {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-medium);
    border-left: 6px solid var(--color-secondary);
    margin-bottom: 30px;
}

.offer-badge-animated {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-error);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.fire-icon {
    width: 22px;
    height: 22px;
    animation: flame 1.5s infinite alternate;
}

.timer-title {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.timer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 240px;
}

.time-block {
    background: var(--color-primary-light);
    border-radius: var(--border-radius-sm);
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.time-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.time-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Pricing layout */
.price-presentation {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.price-original del {
    font-size: 1.4rem;
    font-weight: 600;
    color: #999;
}

.price-discounted {
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 600;
}

.price-discounted ins {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-error);
    text-decoration: none;
}

.price-save-badge {
    background-color: var(--color-error);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(216, 67, 21, 0.2);
}

/* Stock status bar */
.stock-status {
    margin-bottom: 35px;
    max-width: 480px;
}

.stock-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.stock-count {
    color: var(--color-error);
    font-size: 1.1rem;
}

.stock-bar-outer {
    width: 100%;
    height: 10px;
    background-color: #E0E0E0;
    border-radius: 5px;
    overflow: hidden;
}

.stock-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-error));
    border-radius: 5px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main CTA */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-main-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-secondary), #F57F17);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(249, 168, 37, 0.4);
    transition: var(--transition-smooth);
    width: fit-content;
}

.btn-main-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(249, 168, 37, 0.5);
}

.cta-cart-icon {
    width: 26px;
    height: 26px;
}

.cta-sub-text {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Right Visual Showcases */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.2) 0%, rgba(255, 253, 245, 0) 70%);
    filter: blur(10px);
    z-index: 1;
}

.floating-honeycomb-dec {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.dec-honeycomb {
    position: absolute;
    width: 60px;
    height: 60px;
}

.dec-honeycomb:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: floating-dec 4s infinite ease-in-out;
}

.dec-honeycomb:nth-child(2) {
    bottom: 15%;
    right: 10%;
    animation: floating-dec 5s infinite ease-in-out 1s;
}

.product-showcase-container {
    position: relative;
    z-index: 3;
}

.hero-product-img {
    width: 280px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.visual-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    border: 3px solid var(--color-bg);
    animation: bounce 3s infinite alternate;
}

.visual-badge .percent {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.visual-badge .label {
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================================================
   SECTION 3: WHY CHOOSE US
   ========================================================================== */

.why-choose-us-section {
    background-color: var(--color-primary-light);
    padding: 80px 20px;
    border-top: 1px solid rgba(46, 125, 50, 0.08);
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--color-bg-card);
    padding: 35px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(46, 125, 50, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-secondary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.svg-icon-primary {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SECTION 4: PRODUCT DETAILS
   ========================================================================== */

.products-section {
    padding: 80px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 125, 50, 0.06);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.product-card.recommended {
    border: 3px solid var(--color-secondary);
}

.recommended-badge {
    background-color: var(--color-error);
    box-shadow: 0 4px 10px rgba(216, 67, 21, 0.2);
}

.product-img-wrapper {
    background-color: #FFFDF8;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.product-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
    transition: var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Adjust size styling for 1kg card dynamically */
.product-card.recommended .product-image {
    width: 230px; /* Looks physically larger */
}

.product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.45rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-pricing {
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.product-pricing .old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.product-pricing .current-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-error);
}

.save-tag {
    font-size: 0.95rem;
    font-weight: 700;
}

.btn-product-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.btn-product-order:hover {
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-medium);
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   SECTION 5: BENEFITS
   ========================================================================== */

.benefits-section {
    padding: 80px 20px;
    background-color: #FAF6EE;
    border-top: 1px solid rgba(141, 110, 99, 0.1);
    border-bottom: 1px solid rgba(141, 110, 99, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.benefits-img-box {
    position: relative;
    padding: 20px;
}

.benefits-main-img {
    width: 260px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.benefit-tag-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-sm);
    padding: 10px 18px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    border: 1px solid rgba(46, 125, 50, 0.1);
    white-space: nowrap;
}

.circle-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
}

.tag-1 {
    top: 20%;
    left: -60px;
}

.tag-2 {
    bottom: 20%;
    right: -60px;
}

.benefits-intro-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-num-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.benefit-text h4 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SECTION 6: CUSTOMER REVIEWS
   ========================================================================== */

.reviews-section {
    padding: 80px 20px;
}

.reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) transparent;
}

.reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background-color: rgba(249, 168, 37, 0.4);
    border-radius: 4px;
}

.reviews-slider::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-secondary);
}

.review-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.review-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(46, 125, 50, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reviewer-meta h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.district-badge {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    background-color: var(--color-primary-light);
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

.rating-stars {
    color: var(--color-secondary);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.review-body {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ==========================================================================
   SECTION 7: ORDER FORM (CHECKOUT)
   ========================================================================== */

.order-form-section {
    padding: 80px 20px;
    background-color: var(--color-primary-light);
    position: relative;
}

.checkout-wrapper {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(46, 125, 50, 0.08);
    overflow: hidden;
}

.checkout-header {
    padding: 40px 30px 20px;
    border-bottom: 1px solid #ECEFF1;
}

.checkout-header h2 {
    font-size: 1.9rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.checkout-sub {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.secure-checkout-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(46, 125, 50, 0.06);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
}

.lock-icon {
    width: 14px;
    height: 14px;
}

.checkout-form {
    padding: 30px;
}

.checkout-card-section {
    margin-bottom: 30px;
    padding: 24px;
    border-radius: var(--border-radius-md);
    background-color: #FFFDF9;
    border: 1px solid rgba(141, 110, 99, 0.08);
}

.checkout-card-section h3 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 8px;
}

/* Product list inside checkout */
.product-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.product-selector-label {
    display: block;
    cursor: pointer;
}

.product-selector-label input[type="radio"] {
    display: none;
}

.selector-card-content {
    background-color: var(--color-bg-card);
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: var(--transition-smooth);
}

.selector-radio-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #B0BEC5;
    position: relative;
    flex-shrink: 0;
}

.selector-radio-circle::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transform: scale(0);
    transition: var(--transition-smooth);
}

.selector-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

.selector-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.selector-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-error);
}

.old-inline {
    font-size: 0.9rem;
    color: #999;
    margin-left: 5px;
}

.card-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
}

/* Checked styling for selectors */
.product-selector-label input[type="radio"]:checked + .selector-card-content {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.product-selector-label input[type="radio"]:checked + .selector-card-content .selector-radio-circle {
    border-color: var(--color-primary);
}

.product-selector-label input[type="radio"]:checked + .selector-card-content .selector-radio-circle::after {
    transform: scale(1);
}

/* Quantity controls */
.quantity-controller-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
}

.qty-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--color-white);
}

.qty-btn {
    width: 40px;
    height: 40px;
    background-color: #ECEFF1;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background-color: #CFD8DC;
}

.qty-controls input[type="number"] {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    border-left: 2px solid #E0E0E0;
    border-right: 2px solid #E0E0E0;
    background: transparent;
}

/* Chrome/Safari spinner removal */
.qty-controls input::-webkit-outer-spin-button,
.qty-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Form fields */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.required {
    color: var(--color-error);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.align-top {
    align-items: flex-start;
}

.textarea-icon {
    top: 14px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition-smooth);
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    padding-left: 15px; /* Drop icon is standard right */
    appearance: none;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    color: var(--color-text-muted);
    position: absolute;
    right: 15px;
    top: 18px;
    pointer-events: none;
}

.error-msg {
    color: var(--color-error);
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
    margin-top: 2px;
}

/* Delivery choices */
.delivery-radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.delivery-area-label {
    cursor: pointer;
}

.delivery-area-label input[type="radio"] {
    display: none;
}

.delivery-inner-box {
    background-color: var(--color-white);
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.sel-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #B0BEC5;
    position: relative;
    flex-shrink: 0;
}

.sel-circle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transform: scale(0);
    transition: var(--transition-smooth);
}

.del-text {
    display: flex;
    flex-direction: column;
}

.del-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.del-cost {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-primary);
}

/* Checked styling for delivery */
.delivery-area-label input[type="radio"]:checked + .delivery-inner-box {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.delivery-area-label input[type="radio"]:checked + .delivery-inner-box .sel-circle {
    border-color: var(--color-primary);
}

.delivery-area-label input[type="radio"]:checked + .delivery-inner-box .sel-circle::after {
    transform: scale(1);
}

/* Invoice Box */
.invoice-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
}

.invoice-divider {
    height: 1px;
    background-color: rgba(46, 125, 50, 0.15);
    margin: 4px 0;
}

.grand-total-row {
    font-size: 1.25rem;
}

.invoice-row .highlight {
    color: var(--color-error);
    font-size: 1.5rem;
    font-weight: 800;
}

/* Cash on delivery notice banner */
.cod-notice-banner {
    display: flex;
    gap: 12px;
    background-color: #FFF3E0;
    border: 1px solid #FFE0B2;
    padding: 16px;
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.cod-notice-banner p {
    font-size: 0.85rem;
    color: #E65100;
    line-height: 1.5;
}

/* Partners Courier trust */
.trust-icons-container {
    padding-top: 15px;
    border-top: 1px dashed rgba(46, 125, 50, 0.15);
}

.trust-title {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-badges-flex {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    background-color: rgba(0, 0, 0, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Order submit btn */
.btn-checkout-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #FF6F00, #E65100);
    color: var(--color-white);
    padding: 18px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
    transition: var(--transition-smooth);
}

.btn-checkout-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.4);
}

.cart-submit-icon {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   SECTION 8: FAQ ACCORDION
   ========================================================================== */

.faq-section {
    padding: 80px 20px;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(46, 125, 50, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    background-color: rgba(46, 125, 50, 0.02);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

.faq-icon-arrow {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: #FAFBF9;
}

.faq-answer {
    padding: 0 28px 22px;
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* FAQ Active state style class */
.faq-item.active {
    border-color: var(--color-secondary);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
}

.faq-item.active .faq-panel {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   SECTION 9: FOOTER
   ========================================================================== */

.main-footer {
    background-color: #1B5E20; /* Ultra deep organic green */
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 20px 30px;
    border-top: 5px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.secure-checkout-seal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.shield-icon {
    width: 14px;
    height: 14px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    width: fit-content;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact-link {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 8px 0 20px;
}

.social-flex {
    display: flex;
    gap: 12px;
}

.social-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.social-circle-btn:hover {
    background-color: var(--color-secondary);
    color: #1B5E20;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING INTERACTIVE WIDGETS
   ========================================================================== */

.floating-action-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-icon {
    width: 26px;
    height: 26px;
}

.btn-to-top {
    background-color: var(--color-white);
    border: 1px solid rgba(46, 125, 50, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.btn-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.btn-float-call {
    background-color: var(--color-accent);
}

.btn-float-messenger {
    background-color: #0084FF;
}

.btn-float-whatsapp {
    background-color: #25D366;
}

/* ==========================================================================
   MODAL DIALOG POPUP (SUCCESS)
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(33, 33, 33, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 40px 30px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-success-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.modal-content h2 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.order-summary-modal-box {
    background-color: #F9FBE7;
    border-radius: var(--border-radius-md);
    padding: 18px;
    text-align: left;
    margin-bottom: 25px;
    border: 1px solid rgba(249, 168, 37, 0.15);
}

.order-summary-modal-box p {
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 0.9rem;
}

.order-summary-modal-box p:last-child {
    margin-bottom: 0;
}

.btn-close-modal {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 14px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--border-radius-md);
    width: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.btn-close-modal:hover {
    background-color: var(--color-secondary);
}

/* ==========================================================================
   ANIMATIONS & SCROLL OBSERVER CLASSES
   ========================================================================== */

/* Animation classes initialized by JavaScript */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scroll-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Animation active states */
.animate-active {
    opacity: 1 !important;
    transform: none !important;
}

/* Animation keyframes */
@keyframes pulse-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 168, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0);
    }
}

.pulse-animation {
    animation: pulse-pulse 2s infinite;
}

.animate-pulse {
    animation: text-pulse 1s infinite alternate;
}

@keyframes text-pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes flame {
    0% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50% { transform: scale(1.15) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(-2deg); opacity: 0.9; }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes floating-dec {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(15deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.image-float {
    animation: honey-float 6s ease-in-out infinite;
}

@keyframes honey-float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE FIRST)
   ========================================================================== */

/* Up to Tablet (992px) */
@media (max-width: 992px) {
    /* Sticky Header modifications */
    .brand-tagline {
        display: none;
    }
    .brand-name {
        font-size: 1.25rem;
    }
    .btn-action span {
        display: none; /* Hide labels on mobile to save space */
    }
    .btn-action {
        padding: 10px;
    }
    
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .trust-badge, .cta-wrapper {
        align-self: center;
        align-items: center;
    }
    .price-presentation {
        justify-content: center;
    }
    .stock-status {
        margin: 0 auto 35px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .product-card.recommended .product-image {
        width: 200px; /* Reduce width slightly on small grids */
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .benefits-visual {
        order: 2;
    }
    .benefits-info {
        order: 1;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-flex {
        justify-content: center;
    }
}

/* Mobile Devices (600px) */
@media (max-width: 600px) {
    /* Header adjustments */
    .header-container {
        height: 70px;
    }
    
    /* Hero */
    .hero-headline {
        font-size: 2.2rem;
    }
    .emoji-title {
        font-size: 2rem;
    }
    .hero-product-img {
        width: 220px;
    }
    .btn-main-cta {
        font-size: 1.25rem;
        padding: 15px 25px;
        width: 100%;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits tags hide or shift */
    .benefit-tag-item {
        font-size: 0.8rem;
    }
    .tag-1 {
        left: -20px;
    }
    .tag-2 {
        right: -20px;
    }
    
    /* Reviews slider default card width */
    .review-card {
        flex: 0 0 280px;
        padding: 20px;
    }
    .review-header {
        flex-wrap: wrap;
    }
    
    /* Order form cards padding */
    .checkout-form {
        padding: 15px;
    }
    .checkout-card-section {
        padding: 15px;
    }
    .delivery-radio-grid {
        grid-template-columns: 1fr;
    }
    .btn-checkout-submit {
        font-size: 1.2rem;
    }
    
    /* FAQ padding */
    .faq-trigger {
        padding: 18px;
    }
    .faq-answer {
        padding: 0 18px 18px;
    }
    .faq-question {
        font-size: 1rem;
    }
    
    /* Floating action buttons */
    .floating-action-group {
        bottom: 20px;
        right: 20px;
        gap: 8px;
        transition: bottom 0.3s;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    .floating-icon {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   LAYOUT COMPACTNESS OVERRIDES & MOBILE STICKY CTA
   ========================================================================== */

/* Tighten line-height and typography spacing globally */
body {
    line-height: 1.5 !important;
}

h1, h2, h3, h4 {
    line-height: 1.25 !important;
}

/* Reduce standard section titles margin */
.section-title {
    margin-bottom: 30px !important;
}

/* Tighten Hero Section Elements */
.hero-section {
    padding: 20px 20px 40px !important;
}

.hero-grid {
    gap: 30px !important;
}

.hero-headline {
    margin-bottom: 10px !important;
    font-size: 2.8rem !important;
}

.hero-subheadline {
    margin-top: 5px !important;
    margin-bottom: 15px !important;
    font-size: 1.15rem !important;
}

.offer-timer-box {
    padding: 15px !important;
    margin-bottom: 15px !important;
}

.price-presentation {
    margin-bottom: 15px !important;
}

.stock-status {
    margin-bottom: 15px !important;
}

/* Sticky Bottom Mobile CTA Bar CSS */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 16px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none; /* Hidden by default on desktop */
    justify-content: center;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.btn-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-secondary), #F57F17);
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.3);
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.sticky-cta-icon {
    width: 20px;
    height: 20px;
}

/* Media Query to show sticky CTA bar on mobile screens */
@media (max-width: 768px) {
    .sticky-bottom-cta {
        display: flex;
    }
    
    /* Push back-to-top and other floating actions up so they don't cover the sticky CTA bar */
    .floating-action-group {
        bottom: 80px !important;
    }
    
    /* Hero Title scale down slightly for mobile viewport */
    .hero-headline {
        font-size: 2.2rem !important;
    }
}
