/* ============================================================
   DXN TIENDA NATURAL — Design System & Component Styles
   Apple-First Premium Aesthetic
   ============================================================ */

/* ----------------------------------------------------------
   Fonts — Apple System Stack + Inter (Google Fonts fallback)
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ----------------------------------------------------------
   Design Tokens
   ---------------------------------------------------------- */
:root {
    /* Colors */
    --color-primary:      #1a1a1a;
    --color-secondary:    #2d5016;
    --color-accent:       #4a7c2e;
    --color-accent-dark:  #1f4009;
    --color-accent-soft:  #e8f5e0;
    --color-bg:           #fafafa;
    --color-surface:      #ffffff;
    --color-surface-2:    #f5f5f7;
    --color-text:         #1a1a1a;
    --color-text-light:   #6b7280;
    --color-text-xlight:  #9ca3af;
    --color-gold:         #b8860b;
    --color-gold-soft:    #fef9e7;
    --color-border:       #e5e7eb;
    --color-border-light: #f3f4f6;
    --color-success:      #16a34a;
    --color-error:        #dc2626;
    --color-warning:      #d97706;

    /* Gradients */
    --gradient-primary:   linear-gradient(135deg, #2d5016 0%, #4a7c2e 100%);
    --gradient-hero:      linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.2) 100%);
    --gradient-card:      linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);
    --gradient-gold:      linear-gradient(135deg, #b8860b 0%, #d4a017 100%);

    /* Typography — Apple System Stack */
    --font-heading: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono:    'SF Mono', SFMono-Regular, ui-monospace, 'Cascadia Code', Consolas, monospace;
    --font-size-xs: 0.6875rem;  /* 11px — Apple's small label */
    --font-size-sm: 0.8125rem;  /* 13px — Apple's secondary */
    --font-size-base: 0.9375rem; /* 15px — Apple's body */
    --font-size-lg: 1.0625rem;  /* 17px — Apple's headline */
    --font-size-xl: 1.1875rem;  /* 19px */
    --font-size-2xl: 1.375rem;  /* 22px — Apple's title3 */
    --font-size-3xl: 1.75rem;   /* 28px — Apple's title2 */
    --font-size-4xl: 2.125rem;  /* 34px — Apple's large title */
    --font-size-5xl: 2.875rem;  /* 46px */
    --font-size-6xl: 3.625rem;  /* 58px — Hero display */

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Shadows */
    --shadow-xs:  0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:  0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg:  0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.04);
    --shadow-xl:  0 20px 25px rgba(0,0,0,0.07), 0 10px 10px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.10), 0 24px 64px rgba(0,0,0,0.10);
    --shadow-green: 0 4px 24px rgba(74, 124, 46, 0.30);

    /* Border Radius */
    --radius-sm:   0.375rem;
    --radius-md:   0.75rem;
    --radius-lg:   1rem;
    --radius-xl:   1.5rem;
    --radius-2xl:  2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1280px;
    --container-px:  clamp(1rem, 5vw, 2.5rem);
    --header-h:      72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* ── Media Protection ── */
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none; /* overridden selectively below */
}

/* Allow pointer events on clickable images inside links/buttons */
a img, button img, .product-card img, .card img { pointer-events: none; }

video {
    /* ── Video Protection ── */
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* Prevent context menu on protected media (reinforced by JS) */
.media-protected {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* ----------------------------------------------------------
   Layout
   ---------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-px);
}

.section {
    padding-block: var(--space-20);
}

.section-sm {
    padding-block: var(--space-12);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.625rem, 3.5vw, var(--font-size-4xl));
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    max-width: 580px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* ----------------------------------------------------------
   Typography — Apple-style scale
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, var(--font-size-6xl)); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, var(--font-size-4xl)); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.125rem, 2.5vw, var(--font-size-2xl)); font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: clamp(1rem, 2vw, var(--font-size-xl)); font-weight: 600; letter-spacing: -0.01em; }

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.75rem 1.75rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    white-space: nowrap;
    user-select: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #1f4009 0%, #2d5016 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 124, 46, 0.40);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent-soft);
    transform: translateY(-1px);
}

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

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-white:hover {
    background: var(--color-surface-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-light);
    border-color: var(--color-border);
}

.btn-ghost:hover { background: var(--color-surface-2); }

.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--font-size-xs); }
.btn-lg { padding: 1rem 2.5rem; font-size: var(--font-size-base); }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.btn[disabled], .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Loading state */
.btn-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}
.btn-loading::after {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    translate: -50% -50%;
    width: 1.2em;
    height: 1.2em;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ----------------------------------------------------------
   Badges
   ---------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge-green   { background: var(--color-accent-soft); color: var(--color-accent-dark); }
.badge-gold    { background: var(--color-gold-soft); color: var(--color-gold); }
.badge-primary { background: var(--color-primary); color: white; }
.badge-red     { background: #fee2e2; color: #dc2626; }
.badge-gray    { background: var(--color-border-light); color: var(--color-text-light); }

/* ----------------------------------------------------------
   Cards
   ---------------------------------------------------------- */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

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

/* Product Card */
.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
    cursor: pointer;
}

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

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--color-surface-2);
}

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

.product-card:hover .product-card__image { transform: scale(1.06); }

.product-card__badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
}

.product-card__quick-add {
    position: absolute;
    bottom: var(--space-3);
    left: var(--space-3);
    right: var(--space-3);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.product-card:hover .product-card__quick-add {
    opacity: 1;
    transform: translateY(0);
}

.product-card__body {
    padding: var(--space-4) var(--space-5) var(--space-5);
}

.product-card__category {
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-1);
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.product-card__price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-accent);
}

.product-card__price-old {
    font-size: var(--font-size-sm);
    color: var(--color-text-xlight);
    text-decoration: line-through;
}

.product-card__points {
    font-size: var(--font-size-xs);
    color: var(--color-gold);
    font-weight: 600;
    margin-top: var(--space-1);
}

/* ----------------------------------------------------------
   Header / Navbar
   ---------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition-base);
}

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

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-6);
}

.header__logo {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    flex-shrink: 0;
}

.header__logo span { color: var(--color-accent); }

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
}

.header__nav-link {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: -0.008em;
    color: var(--color-text-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: var(--space-3);
    right: var(--space-3);
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.header__nav-link:hover { color: var(--color-primary); }
.header__nav-link:hover::after { transform: scaleX(1); }
.header__nav-link.active { color: var(--color-accent); }
.header__nav-link.active::after { transform: scaleX(1); }

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.header__cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border: none;
    transition: all var(--transition-base);
}

.header__cart-btn:hover { background: var(--color-accent); color: white; }

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding-inline: 0.25rem;
    background: var(--color-accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition-spring);
}

.cart-badge.bump {
    animation: cart-bump var(--transition-spring) forwards;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ----------------------------------------------------------
   Hero Slider
   ---------------------------------------------------------- */
#hero-slider {
    width: 100%;
    aspect-ratio: 21 / 9;
    height: auto;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.swiper-slide-active .hero-slide__bg { transform: scale(1); }

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-24) var(--container-px);
    max-width: var(--container-max);
    margin-inline: auto;
    width: 100%;
}

.hero-slide__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-4);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: white;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: var(--space-5);
}

.hero-slide__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin-bottom: var(--space-4);
}

.hero-slide__desc {
    font-size: clamp(1rem, 2vw, var(--font-size-lg));
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.hero-slide__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ----------------------------------------------------------
   Cart Sidebar
   ---------------------------------------------------------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: var(--color-surface);
    z-index: 200;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.cart-sidebar__body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-4) var(--space-6);
    overscroll-behavior: contain;
}

.cart-sidebar__footer {
    padding: var(--space-5) var(--space-6);
    border-top: 1px solid var(--color-border);
    background: var(--color-surface-2);
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: var(--space-3);
    align-items: start;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.cart-header { padding: var(--space-4) var(--space-6); border-bottom: 1px solid var(--color-border-light); }
.cart-header h3 { margin: 0; font-size: var(--font-size-lg); }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-text-light); }

/* Dynamic Section */
.dynamic-section-grid { grid-template-columns: 1fr 1fr; }

.cart-item__image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: var(--color-surface-2);
}

.cart-item__name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-primary);
}

.cart-item__price { font-size: var(--font-size-sm); color: var(--color-accent); font-weight: 700; }

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

.quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    font-size: var(--font-size-base);
    font-weight: 700;
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.quantity-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.quantity-value { font-size: var(--font-size-sm); font-weight: 600; min-width: 24px; text-align: center; }

/* ----------------------------------------------------------
   Forms
   ---------------------------------------------------------- */
.form-group { margin-bottom: var(--space-5); }

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-label .required { color: var(--color-error); margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
    font-family: var(--font-body);
    color: var(--color-text);
    background: white;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(74, 124, 46, 0.12);
}

.form-control.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-error {
    font-size: var(--font-size-xs);
    color: var(--color-error);
    margin-top: var(--space-1);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-accent);
    margin-top: 2px;
    cursor: pointer;
}

/* ----------------------------------------------------------
   WhatsApp Float Button
   ---------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-6);
    z-index: 98;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    /* Evitar que la animación expanda el layout */
    pointer-events: none;
}

.whatsapp-float > * {
    pointer-events: auto;
}

.whatsapp-float__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    font-size: 1.75rem;
    transition: transform var(--transition-spring), box-shadow var(--transition-spring);
    will-change: transform;
    flex-shrink: 0;
}

/* Ring pulse using pseudo-element — no layout impact */
.whatsapp-float__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: rgba(37, 211, 102, 0.4);
    animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
    pointer-events: none;
}

.whatsapp-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 36px rgba(37,211,102,0.55);
}

.whatsapp-float__tooltip {
    background: var(--color-primary);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ----------------------------------------------------------
   Status Badges
   ---------------------------------------------------------- */
.status-pending   { background: #fff7ed; color: #c2410c; }
.status-confirmed { background: #eff6ff; color: #1d4ed8; }
.status-shipped   { background: #f0fdf4; color: #15803d; }
.status-delivered { background: #f0fdf4; color: #065f46; }
.status-cancelled { background: #fff1f2; color: #be123c; }

/* ----------------------------------------------------------
   Utility Classes
   ---------------------------------------------------------- */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.flex         { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4        { gap: var(--space-4); }
.gap-6        { gap: var(--space-6); }
.mt-2         { margin-top: var(--space-2); }
.mt-4         { margin-top: var(--space-4); }
.mt-8         { margin-top: var(--space-8); }
.mb-2         { margin-bottom: var(--space-2); }
.mb-4         { margin-bottom: var(--space-4); }
.mb-6         { margin-bottom: var(--space-6); }
.mb-8         { margin-bottom: var(--space-8); }
.w-full       { width: 100%; }
.hidden       { display: none !important; }
.sr-only      {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-block: var(--space-4);
}
.divider.center { margin-inline: auto; }

/* Stars */
.stars { display: flex; gap: 2px; color: #f59e0b; font-size: var(--font-size-sm); }

/* Section header with divider */
.section-header { margin-bottom: var(--space-12); }
.section-header.center { text-align: center; }
.section-header.center .divider { margin-inline: auto; }
.section-header.center .section-subtitle { margin-inline: auto; }

/* Alert banners */
.alert {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    border-left: 4px solid;
}

.alert-success { background: #f0fdf4; border-color: #16a34a; color: #166534; }
.alert-error   { background: #fff1f2; border-color: #dc2626; color: #991b1b; }
.alert-warning { background: #fffbeb; border-color: #d97706; color: #92400e; }
.alert-info    { background: #eff6ff; border-color: #2563eb; color: #1e40af; }

/* Skeleton loader */
.skeleton {
    background: linear-gradient(90deg, var(--color-border-light) 25%, var(--color-surface-2) 50%, var(--color-border-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* Grid systems */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes cart-bump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}


/* pulse-ring: anima el pseudo-elemento ::before, sin tocar el layout */
@keyframes pulse-ring {
    0%   { transform: scale(1);    opacity: 0.6; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

@keyframes skeleton-loading {
    to { background-position: -200% 0; }
}

/* ----------------------------------------------------------
   Mobile Navigation Panel
   ---------------------------------------------------------- */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 300;
}

.mobile-nav.hidden { display: none !important; }

.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-surface);
    padding: var(--space-6);
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    overflow-y: auto;
    animation: slideInRight 0.3s ease-out;
}

.mobile-nav__panel .header__nav-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.mobile-nav__panel .header__nav-link:hover,
.mobile-nav__panel .header__nav-link.active {
    background: var(--color-accent-soft);
    color: var(--color-accent);
}

.mobile-nav__panel .header__nav-link::after { display: none; }

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

/* ----------------------------------------------------------
   Toast Notifications
   ---------------------------------------------------------- */
.toast {
    position: fixed;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    background: var(--color-primary);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-2xl);
    animation: toastIn 0.3s ease-out;
    max-width: 90vw;
    text-align: center;
}

.toast-success { background: var(--color-success); }
.toast-error   { background: var(--color-error); }
.toast-info    { background: #1d4ed8; }

.toast.out {
    animation: toastOut 0.3s ease-in forwards;
}

@keyframes toastIn {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(-50%) translateY(0); opacity: 1; }
    to   { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* ----------------------------------------------------------
   Flash Promo Bar
   ---------------------------------------------------------- */
.flash-promo-bar {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 30%, #991b1b 60%, #dc2626 100%);
    background-size: 200% 100%;
    animation: flashShimmer 4s ease-in-out infinite;
    color: white;
    padding: 0.6rem var(--container-px);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.flash-promo-bar__text {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    justify-content: center;
}

.flash-promo-bar__countdown {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.flash-promo-bar__digit {
    background: rgba(0,0,0,0.3);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    min-width: 2ch;
    text-align: center;
    letter-spacing: 0.05em;
}

.flash-promo-bar__sep {
    font-weight: 700;
    opacity: 0.7;
}

.flash-promo-bar__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0.25rem 0.85rem;
    background: white;
    color: #dc2626;
    font-size: var(--font-size-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.flash-promo-bar__cta:hover {
    background: #fef2f2;
    transform: scale(1.05);
}

.flash-promo-bar__close {
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: var(--space-1);
    line-height: 1;
    transition: color var(--transition-fast);
}

.flash-promo-bar__close:hover { color: white; }

@keyframes flashShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ----------------------------------------------------------
   Mobile Filter Toggle Button (Products Page)
   ---------------------------------------------------------- */
.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: white;
    color: var(--color-text);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: var(--space-4);
}

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

/* ----------------------------------------------------------
   Responsive — Page-Level Layouts
   ---------------------------------------------------------- */

/* >>> Product Detail <<<  */
.layout-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

/* >>> Checkout <<< */
.layout-checkout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* >>> Cart <<< */
.layout-cart {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* >>> Contact <<< */
.layout-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

/* >>> Products Catalog <<< */
.layout-products {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* >>> Home Promo <<< */
.layout-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

/* >>> Checkout inner form grids <<< */
.layout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.layout-form-row-city {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4);
}

/* >>> Footer <<< */
.layout-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
}

/* >>> Section header with action button <<< */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ----------------------------------------------------------
   Responsive Breakpoints
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .layout-footer { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .header__nav { display: none; }
    .hamburger { display: flex; }

    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }

    .section { padding-block: var(--space-12); }

    /* Hero */
    #hero-slider { aspect-ratio: 16 / 9; height: auto; background-color: transparent; }
    .hero-slide { height: 100%; }
    .hero-slide__bg { object-fit: cover; }
    .hero-slide__actions { flex-direction: column; align-items: flex-start; }
    .hero-slide__content { padding: var(--space-12) var(--container-px); }
    .hero-slide__title { font-size: clamp(1.5rem, 6vw, 2.5rem); }

    /* WhatsApp */
    .whatsapp-float__tooltip { display: none; }
    .whatsapp-float__btn { width: 52px; height: 52px; font-size: 1.5rem; }

    /* Page layouts → single column */
    .layout-product-detail,
    .layout-checkout,
    .layout-cart,
    .layout-contact,
    .layout-promo {
        grid-template-columns: 1fr !important;
        gap: var(--space-6);
    }

    /* Footer */
    .layout-footer { grid-template-columns: 1fr !important; gap: var(--space-6); }

    /* Product filters → mobile toggle */
    .layout-products { grid-template-columns: 1fr !important; }
    .filters-sidebar { display: none; }
    .filters-sidebar.open { display: block !important; }
    .filter-toggle-btn { display: inline-flex; }

    /* Form rows */
    .layout-form-row,
    .layout-form-row-city {
        grid-template-columns: 1fr !important;
    }

    /* Section header flex — stack */
    .section-header-flex { flex-direction: column; align-items: flex-start; }

    /* Products topbar — stack on small */
    .products-topbar {
        flex-direction: column;
        align-items: flex-start !important;
        gap: var(--space-3);
    }

    /* Buttons shrink */
    .btn-lg { padding: 0.85rem 1.75rem; font-size: var(--font-size-sm); }

    /* Cart item grid — tighter on mobile */
    .cart-item { grid-template-columns: 64px 1fr auto; gap: var(--space-2); }
    .cart-item__image { width: 64px; height: 64px; }

    /* Flash promo bar */
    .flash-promo-bar { font-size: var(--font-size-xs); padding: 0.5rem var(--space-4); gap: var(--space-2); }
    .flash-promo-bar__close { right: var(--space-1); }
    
    /* Testimonial slider */
    .testimonial-slide { max-width: 100%; padding-inline: var(--space-4); }

    /* Dynamic Section Grid */
    .dynamic-section-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }

    /* Product cards on very small screens */
    .product-card__body { padding: var(--space-3) var(--space-3) var(--space-4); }
    .product-card__name { font-size: var(--font-size-base); }
    .product-card__price { font-size: var(--font-size-base); }
    .product-card__category { font-size: 0.65rem; }

    /* Section title size */
    .section-title { font-size: clamp(1.3rem, 5vw, 1.75rem); }
    .layout-grid {
        grid-template-columns: 1fr !important;
    }

    /* Hero */
    #hero-slider { aspect-ratio: 4 / 3; height: auto; background-color: transparent; }
    .hero-slide { height: 100%; }
    .hero-slide__bg { object-fit: cover; }
    .hero-slide__tag { font-size: 0.6rem; padding: 0.15rem var(--space-3); }

    /* Buttons */
    .btn { padding: 0.6rem 1.25rem; font-size: var(--font-size-xs); }
    .btn-lg { padding: 0.75rem 1.5rem; font-size: var(--font-size-sm); }

    /* Badge */
    .badge { font-size: 0.65rem; padding: 0.15rem 0.45rem; }

    /* Cart sidebar */
    .cart-sidebar { width: 100vw; }
    .cart-sidebar__header { padding: var(--space-4); }
    .cart-sidebar__body { padding: var(--space-3) var(--space-4); }
    .cart-sidebar__footer { padding: var(--space-4); }

    /* Flash promo bar on tiny screens */
    .flash-promo-bar__cta { display: none; }
}

/* ============================================================
   2026 PROFESSIONAL UI REFINEMENT
   Shared polish for every storefront section and interaction.
   ============================================================ */
:root {
    --color-primary: #10251c;
    --color-secondary: #174d38;
    --color-accent: #197a54;
    --color-accent-dark: #0e4c34;
    --color-accent-soft: #e9f6f0;
    --color-bg: #f7f9f8;
    --color-surface-2: #f0f5f2;
    --color-text: #17221d;
    --color-text-light: #58665f;
    --color-border: #dce5e0;
    --gradient-primary: linear-gradient(135deg, #0f5238 0%, #1d8b60 100%);
    --shadow-card: 0 1px 2px rgba(11, 42, 29, .04), 0 12px 36px rgba(11, 42, 29, .08);
    --shadow-card-hover: 0 20px 50px rgba(11, 42, 29, .16);
}

body {
    background:
        radial-gradient(circle at 8% 4%, rgba(29, 139, 96, .055), transparent 25rem),
        var(--color-bg);
    color: var(--color-text);
}

::selection { background: #bfe8d5; color: #082b1d; }
:focus-visible { outline: 3px solid rgba(29, 139, 96, .42); outline-offset: 3px; }

.skip-link {
    position: fixed; top: .75rem; left: .75rem; z-index: 9999;
    padding: .75rem 1rem; border-radius: .65rem; background: #fff; color: var(--color-primary);
    box-shadow: var(--shadow-xl); transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.header {
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(23,77,56,.1);
    box-shadow: 0 5px 24px rgba(10,50,33,.055);
    backdrop-filter: saturate(150%) blur(18px);
    -webkit-backdrop-filter: saturate(150%) blur(18px);
}
.header__inner { min-height: var(--header-h); }
.header__nav-link { position: relative; font-weight: 600; }
.header__nav-link::after {
    content: ''; position: absolute; right: .75rem; bottom: .35rem; left: .75rem; height: 2px;
    border-radius: 2px; background: var(--color-accent); transform: scaleX(0); transition: transform .2s ease;
}
.header__nav-link:hover::after, .header__nav-link.active::after { transform: scaleX(1); }
.header__more-menu { border: 1px solid var(--color-border); box-shadow: var(--shadow-xl); }

#main-content { min-height: 52vh; overflow: clip; }
.section { padding-block: clamp(4.25rem, 8vw, 7.5rem); }
.section-sm { padding-block: clamp(2.25rem, 5vw, 4rem); }
.section-title { max-width: 20ch; text-wrap: balance; }
.section-subtitle { text-wrap: pretty; }
.section-header.center .section-title, .text-center .section-title { margin-inline: auto; }
.divider { height: 4px; width: 64px; border-radius: 99px; background: linear-gradient(90deg, var(--color-accent), #d5a72d); }

.card, .product-card, .testimonial-card, .blog-card, .filters-sidebar {
    border: 1px solid rgba(23,77,56,.1) !important;
    box-shadow: var(--shadow-card) !important;
}
.card, .product-card, .blog-card { border-radius: 1.35rem; overflow: hidden; }
.product-card { background: rgba(255,255,255,.96); transform: translateZ(0); }
.product-card:hover, .blog-card:hover, .hover-lift:hover {
    transform: translateY(-7px); box-shadow: var(--shadow-card-hover) !important;
}
.product-card__image-wrap { background: linear-gradient(145deg, #f8fbf9, #edf3f0); }
.product-card__image { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__image { transform: scale(1.035); }
.product-card__body { padding: 1.15rem; }
.product-card__category { letter-spacing: .08em; font-weight: 750; }
.product-card__price { color: var(--color-accent-dark); }

.btn { font-weight: 700; letter-spacing: .005em; box-shadow: none; }
.btn-primary { border-color: rgba(255,255,255,.12); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(15,82,56,.28); }
.btn-secondary:hover { border-color: var(--color-accent); }
.form-control, input:not([type="checkbox"]):not([type="radio"]), select, textarea {
    border-color: var(--color-border); border-radius: .8rem; background-color: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-control:focus, input:focus, select:focus, textarea:focus {
    border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(29,139,96,.11); outline: none;
}

.badge { font-weight: 750; letter-spacing: .045em; }
.assistant-panel { border: 1px solid rgba(29,139,96,.2); box-shadow: 0 25px 70px rgba(7,39,26,.25); }
.assistant-launcher { box-shadow: 0 12px 32px rgba(15,82,56,.28); }
.cart-sidebar { box-shadow: -24px 0 60px rgba(7,39,26,.18); }

footer { position: relative; background: linear-gradient(145deg, #091a13, #102d21) !important; }
footer::before { content: ''; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); }
footer h3, footer h4 { letter-spacing: -.01em !important; }
footer a { display: inline-flex; padding-block: .14rem; }

.article-content { max-width: 72ch; margin-inline: auto; }
.article-content img { border-radius: 1.1rem; margin-block: 2rem; }
.article-content a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }
.article-content p { text-wrap: pretty; }
details { background: rgba(255,255,255,.55); }
details summary { border-radius: .6rem; }

@media (max-width: 768px) {
    .section { padding-block: 4rem; }
    .section-sm { padding-block: 2.25rem; }
    .container { --container-px: 1.1rem; }
    .btn { white-space: normal; text-align: center; }
    .product-card__body { padding: .95rem; }
    footer { padding-top: 3.5rem !important; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Hero: copy aligned to the safe area instead of floating in the center. */
.hero-slide__content {
    max-width: none;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(4rem, 8vh, 6.5rem) max(1.25rem, calc((100vw - var(--container-max)) / 2 + 2.5rem));
    pointer-events: none;
}
.hero-slide__copy {
    width: min(600px, 47vw);
    padding: clamp(1.25rem, 2.5vw, 2.25rem);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(5,29,20,.72), rgba(5,29,20,.42));
    box-shadow: 0 24px 65px rgba(3,20,13,.24);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
    pointer-events: auto;
}
.hero-slide__title { font-size: clamp(2rem, 4vw, 3.8rem); text-wrap: balance; text-shadow: 0 3px 18px rgba(0,0,0,.25); }
.hero-slide__desc { max-width: 52ch; line-height: 1.55; text-wrap: pretty; }
.hero-slide__overlay { background: linear-gradient(90deg, rgba(4,25,17,.62) 0%, rgba(4,25,17,.26) 46%, rgba(4,25,17,.03) 72%); }
.hero-prev, .hero-next {
    width: 42px !important; height: 42px !important; border-radius: 50%;
    background: rgba(255,255,255,.88); color: var(--color-accent-dark) !important;
    box-shadow: var(--shadow-lg); transform: scale(.9); opacity: 0; transition: opacity .2s ease, transform .2s ease;
}
.hero-prev::after, .hero-next::after { font-size: 1rem !important; font-weight: 900; }
#hero-slider:hover .hero-prev, #hero-slider:hover .hero-next, .hero-prev:focus-visible, .hero-next:focus-visible { opacity: 1; transform: scale(1); }
.hero-pagination { bottom: 1.15rem !important; }
.hero-pagination .swiper-pagination-bullet { width: 9px; height: 9px; background: #fff; opacity: .55; box-shadow: 0 1px 5px rgba(0,0,0,.4); }
.hero-pagination .swiper-pagination-bullet-active { width: 28px; border-radius: 99px; opacity: 1; }

@media (max-width: 768px) {
    .hero-slide__content { justify-content: flex-end; align-items: stretch; padding: 5.5rem 1rem 3.5rem; }
    .hero-slide__copy { width: 100%; padding: 1.25rem; border-radius: 1.15rem; background: rgba(5,29,20,.73); }
    .hero-slide__title { font-size: clamp(1.75rem, 8vw, 2.55rem); margin-bottom: .65rem; }
    .hero-slide__desc { font-size: .95rem; line-height: 1.5; margin-bottom: 1.15rem; }
    .hero-slide__tag { margin-bottom: .75rem; }
    .hero-slide__actions { flex-direction: row; }
    .hero-slide__actions .btn { flex: 1 1 145px; }
    .hero-prev, .hero-next { display: none !important; }
}

/* ============================================================
   MOBILE EXPERIENCE — 360px to 768px
   Touch-first layouts, safe spacing and zero horizontal overflow.
   ============================================================ */
@media (max-width: 768px) {
    html, body { max-width: 100%; overflow-x: clip; }
    body { font-size: 15px; line-height: 1.55; }
    .container { width: 100%; padding-inline: clamp(1rem, 4.5vw, 1.4rem); }
    h1, h2, h3, h4, p { overflow-wrap: anywhere; }
    h1 { font-size: clamp(2rem, 10vw, 3rem); }
    h2, .section-title { font-size: clamp(1.65rem, 7.5vw, 2.35rem); line-height: 1.08; }
    .section-title { max-width: 100%; }
    .section-subtitle { font-size: .96rem; line-height: 1.6; }

    /* Header and full-height drawer */
    .header { position: sticky; top: 0; z-index: 180; }
    .header__inner { min-height: 66px; padding-block: .45rem; }
    .header__brand-mark { width: 44px; height: 44px; }
    .header__actions { gap: .4rem; }
    .header__cart-btn, .hamburger, .mobile-nav__close { min-width: 44px; min-height: 44px; }
    .mobile-nav { position: fixed; inset: 0; z-index: 400; }
    .mobile-nav__panel { width: min(88vw, 360px); height: 100dvh; padding: 1.15rem; overflow-y: auto; overscroll-behavior: contain; }
    .mobile-nav__panel nav { gap: .3rem !important; }
    .mobile-nav__panel .header__nav-link { min-height: 48px; display: flex; align-items: center; padding: .75rem 1rem; border-radius: .75rem; font-size: 1rem; }

    /* Hero stays immersive without swallowing the whole screen */
    #hero-slider { height: clamp(590px, 155vw, 680px); min-height: 0; aspect-ratio: auto; }
    .hero-slide__bg { object-position: 68% center; }
    .hero-slide__overlay { background: linear-gradient(0deg, rgba(4,25,17,.93) 0%, rgba(4,25,17,.58) 47%, rgba(4,25,17,.06) 78%); }
    .hero-slide__content { padding: 4.75rem 1rem 3.35rem; }
    .hero-slide__copy { max-height: calc(100% - 1rem); overflow: auto; padding: 1.15rem; border-color: rgba(255,255,255,.15); box-shadow: 0 16px 45px rgba(2,16,10,.24); }
    .hero-slide__actions { gap: .55rem; }
    .hero-slide__actions .btn { min-height: 46px; padding: .72rem .85rem; }
    .hero-pagination { bottom: .75rem !important; }

    /* Inline desktop grids in editorial pages */
    #main-content [style*="grid-template-columns: 1fr 1fr"],
    #main-content [style*="grid-template-columns: 1fr 1.2fr"],
    #main-content [style*="grid-template-columns: 1fr 1.3fr"] {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1.5rem !important;
    }
    #main-content [style*="minmax(300px"] { grid-template-columns: minmax(0, 1fr) !important; gap: 1.5rem !important; }
    #main-content [style*="padding: 5rem 3rem"] { padding: 2.25rem 1.15rem !important; border-radius: 1.5rem !important; }

    /* Home and campaign modules */
    .trust-strip { overflow-x: auto; scrollbar-width: none; }
    .trust-strip::-webkit-scrollbar { display: none; }
    .trust-strip__grid { display: flex; width: max-content; min-width: 100%; }
    .trust-item { width: min(78vw, 280px); min-height: 76px; flex: 0 0 auto; padding: .9rem 1rem; }
    .category-ad-card { min-height: 205px; border-radius: 1.15rem; }
    .category-ad-card__copy { inset: auto 1.15rem 1.15rem; }
    .category-campaign { min-height: 500px; background-position: 67% center; }
    .category-campaign__content h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
    .store-campaign-tile, .store-campaign-tile:first-child { min-height: 290px; border-radius: 1.25rem; }
    .ingredient-feature__visual, .ingredient-feature__visual img, .income-steps__image, .income-steps__image img { min-height: 300px; }
    .wellness-showcase__grid { grid-template-columns: minmax(0, 1fr); grid-auto-rows: 260px; }

    /* Catalog and cards */
    .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
    .product-card { min-width: 0; border-radius: 1rem; }
    .product-card__body { padding: .85rem; }
    .product-card__name { min-height: 2.7em; font-size: .9rem; line-height: 1.35; }
    .product-card__price-wrap { align-items: flex-start; flex-direction: column; gap: .15rem; }
    .product-card__points { width: fit-content; max-width: 100%; padding: .3rem .45rem; font-size: .66rem; }
    .products-topbar > div { width: 100%; justify-content: space-between; }
    .products-topbar select { max-width: 58%; }
    .filters-sidebar { padding: 1rem !important; border-radius: 1rem !important; }
    .layout-product-detail { gap: 1.75rem; }
    .layout-product-detail .flex.gap-4.items-center { align-items: stretch; flex-wrap: wrap; }
    .layout-product-detail .quantity-control { min-height: 48px; }

    /* Forms, checkout and cart */
    .form-group { margin-bottom: 1rem; }
    .form-control, input:not([type="checkbox"]):not([type="radio"]), select, textarea { min-height: 48px; width: 100%; font-size: 16px; }
    textarea { min-height: 120px; }
    .layout-checkout > aside, .layout-checkout > div { min-width: 0; }
    .checkout-confidence > div { padding: 1rem; }
    .cart-item { grid-template-columns: 70px minmax(0, 1fr); align-items: start; padding-block: 1rem; }
    .cart-item > :last-child { grid-column: 2; justify-self: start; }
    .cart-sidebar { width: 100%; max-width: 100%; height: 100dvh; border-radius: 0; }
    .cart-sidebar__body { overscroll-behavior: contain; }

    /* Floating tools stay reachable without colliding */
    .assistant-panel { right: .65rem; bottom: 5.25rem; left: .65rem; width: auto; max-height: calc(100dvh - 6.5rem); border-radius: 1.15rem; }
    .assistant-panel__messages { max-height: min(31vh, 240px); }
    .assistant-launcher { right: .8rem; bottom: 1rem; width: 50px; height: 50px; }
    .whatsapp-float { left: .8rem; right: auto; bottom: 1rem; }
    .promo-ticker { display: none; }

    /* Footer */
    .layout-footer { gap: 2rem !important; }
    footer { padding-top: 3rem !important; padding-bottom: 1.5rem !important; }
    footer .layout-footer > div:first-child p { max-width: 100% !important; }
    footer .container:last-child { align-items: flex-start !important; flex-direction: column; }
}

@media (max-width: 390px) {
    .container { padding-inline: .9rem; }
    #hero-slider { height: 610px; }
    .hero-slide__content { padding-inline: .75rem; }
    .hero-slide__actions { flex-direction: column; }
    .hero-slide__actions .btn { width: 100%; flex-basis: auto; }
    .grid-4, .grid-3, .grid-2 { gap: .6rem; }
    .product-card__body { padding: .7rem; }
    .product-card__points { display: none; }
}

/* Mobile bottom navigation — native app feeling */
.mobile-app-nav { display: none; }

@media (max-width: 768px) {
    body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
    .hamburger { display: none !important; }
    .mobile-app-nav {
        position: fixed; z-index: 350; right: 0; bottom: 0; left: 0;
        display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: calc(68px + env(safe-area-inset-bottom));
        padding: .4rem .35rem calc(.35rem + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(12,61,43,.12);
        background: rgba(255,255,255,.94);
        box-shadow: 0 -12px 35px rgba(7,39,26,.12);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
    }
    .mobile-app-nav__item {
        position: relative; min-width: 0; min-height: 58px; padding: .25rem .15rem;
        display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .22rem;
        border: 0; border-radius: .85rem; color: #68736d; background: transparent;
        font-family: var(--font-body); font-size: .64rem; font-weight: 750; line-height: 1;
        transition: color .18s ease, background .18s ease, transform .18s ease;
    }
    .mobile-app-nav__item svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
    .mobile-app-nav__item.active { color: var(--color-accent-dark); background: var(--color-accent-soft); }
    .mobile-app-nav__item:active { transform: scale(.94); }
    .mobile-app-nav__icon-wrap { position: relative; display: flex; }
    .mobile-app-nav__badge {
        position: absolute; top: -7px; right: -10px; min-width: 17px; height: 17px; padding-inline: 4px;
        display: grid; place-items: center; border: 2px solid #fff; border-radius: 99px;
        background: #d8483e; color: #fff; font-size: .56rem; line-height: 1;
    }

    /* Mobile banners: dedicated image stage + compact copy stage */
    #hero-slider { height: 680px; background: #092b1f; }
    .hero-slide { background: #092b1f; }
    .hero-slide__bg {
        inset: 0 0 auto; height: 58%;
        object-fit: cover; object-position: 70% center;
        transform: none !important;
    }
    .hero-slide__overlay {
        background: linear-gradient(180deg, transparent 0%, transparent 47%, rgba(6,31,22,.75) 58%, #092b1f 72%);
    }
    .hero-slide__content {
        inset: auto 0 0; height: 49%;
        justify-content: flex-end; padding: 1rem 1rem 3.2rem;
    }
    .hero-slide__copy {
        width: 100%; max-height: none; overflow: visible; padding: 1.05rem;
        border-color: rgba(255,255,255,.12); background: rgba(9,43,31,.86);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    }
    .hero-slide__title { font-size: clamp(1.6rem, 7vw, 2.25rem); line-height: 1.06; }
    .hero-slide__desc { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .hero-pagination { bottom: .7rem !important; }

    .assistant-launcher { bottom: calc(80px + env(safe-area-inset-bottom)); }
    .assistant-panel { bottom: calc(140px + env(safe-area-inset-bottom)); max-height: calc(100dvh - 155px - env(safe-area-inset-bottom)); }
    .whatsapp-float { bottom: calc(80px + env(safe-area-inset-bottom)); }
    .cart-sidebar { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}

@media (max-width: 390px) {
    #hero-slider { height: 650px; }
    .hero-slide__bg { height: 55%; object-position: 72% center; }
    .hero-slide__content { height: 52%; padding-inline: .7rem; }
    .hero-slide__copy { padding: .9rem; }
    .mobile-app-nav__item { font-size: .59rem; }
}

/* Benefits directly below the hero */
.trust-strip {
    position: relative;
    z-index: 3;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1.2rem 1rem;
    border-right: 1px solid var(--color-border);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    color: var(--color-accent-dark);
    background: var(--color-accent-soft);
    font-weight: 800;
}
.trust-item strong, .trust-item small { display: block; line-height: 1.35; }
.trust-item strong { font-size: .82rem; color: var(--color-primary); }
.trust-item small { margin-top: .15rem; font-size: .72rem; color: var(--color-text-light); }

/* Persistent side promotions on desktop */
.side-promo { display: none; }
@media (min-width: 1360px) {
    .side-promo {
        display: block;
        position: fixed;
        z-index: 90;
        left: 8px;
        top: 50%;
        width: 112px;
        transform: translateY(-42%);
        border: 1px solid rgba(16,32,25,.1);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 18px 50px rgba(16,32,25,.16);
        overflow: visible;
        animation: sidePromoIn .5s ease-out;
    }
}
@media (min-width: 1530px) {
    .side-promo { left: 14px; width: 142px; }
    .side-promo--right { right: 14px !important; }
}
@media (min-width: 1740px) {
    .side-promo { left: 22px; width: 170px; }
    .side-promo--right { right: 22px !important; }
}
.side-promo__close {
    position: absolute;
    z-index: 2;
    top: -9px;
    right: -9px;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}
.side-promo__link { display: block; overflow: hidden; border-radius: inherit; }
.side-promo__label {
    display: block;
    padding: .6rem .7rem;
    color: #fff;
    background: var(--gradient-primary);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-align: center;
    text-transform: uppercase;
}
.side-promo__image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.side-promo__visual {
    display: grid;
    place-items: center;
    min-height: 145px;
    background: radial-gradient(circle at 50% 40%, #fff 0 28%, #eaf6ef 29% 58%, #d8eee1 59% 100%);
}
.side-promo__visual img { width: 86px; height: 86px; filter: drop-shadow(0 10px 18px rgba(16,32,25,.14)); }
.side-promo__content { display: block; padding: .8rem; }
.side-promo__content strong { display: -webkit-box; overflow: hidden; font-size: .78rem; line-height: 1.35; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.side-promo__content small { display: block; margin-top: .5rem; color: var(--color-accent-dark); font-size: .7rem; font-weight: 750; }
@keyframes sidePromoIn { from { opacity: 0; transform: translate(-20px, -42%); } }

/* Catalog, forms and content pages */
.layout-products { align-items: start; }
.filters-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
    border-color: var(--color-border) !important;
    border-radius: 18px !important;
    box-shadow: var(--shadow-card) !important;
}
.form-control {
    min-height: 46px;
    border-color: var(--color-border);
    border-radius: 11px;
    background: #fff;
}
.form-control:focus { border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(23,132,84,.11); }
.products-topbar { padding: .9rem 0 1.2rem !important; }
.cart-sidebar { border-radius: 22px 0 0 22px; }
.cart-sidebar__header { padding: 1.3rem 1.5rem; }
.cart-sidebar__footer { background: #f7faf7; }
.flash-promo-bar { background: var(--color-primary); }

@media (max-width: 900px) {
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
    .trust-item:first-child { padding-left: 1rem; }
}

@media (max-width: 520px) {
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-item { padding: .85rem 0; border-right: 0; border-bottom: 1px solid var(--color-border); }
    .trust-item:first-child { padding-left: 0; }
    .trust-item:last-child { border-bottom: 0; }
    .trust-item small { display: none; }
}

/* Rich promotional layer and guided assistant */
.side-promo--right { left: auto; right: 8px; }
.side-promo__label--gold { background: linear-gradient(135deg, #a16f00, #d5a21d); }
.side-promo__visual--points {
    min-height: 145px;
    background: radial-gradient(circle at 50% 35%, #fff8d9, #f1d77d 55%, #c18b12);
    color: #624300;
    text-align: center;
}
.side-promo__visual--points b { display: block; font-size: 1.25rem; line-height: 1; }
.side-promo__visual--points em { display: block; margin-top: .35rem; font-size: .7rem; font-style: normal; font-weight: 700; }

.promo-ticker {
    width: 100%;
    overflow: hidden;
    padding: .72rem 0;
    color: #fff;
    background: linear-gradient(90deg, #0d5d3a, #178454, #0d5d3a);
    border-block: 1px solid rgba(255,255,255,.12);
}
.promo-ticker__track {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    width: max-content;
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .05em;
    text-transform: uppercase;
    animation: promoTicker 26s linear infinite;
}
.promo-ticker:hover .promo-ticker__track { animation-play-state: paused; }
@keyframes promoTicker { to { transform: translateX(-50%); } }

.assistant-launcher {
    position: fixed;
    z-index: 180;
    right: 24px;
    bottom: 105px;
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 48px;
    padding: .7rem 1rem;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 12px 34px rgba(8,30,19,.3);
    font-size: .78rem;
    font-weight: 750;
    transition: transform var(--transition-base), background var(--transition-base);
}
.assistant-launcher:hover { transform: translateY(-3px); background: var(--color-accent-dark); }
.assistant-launcher__pulse {
    position: absolute;
    top: 4px;
    right: 7px;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #35d778;
}
.assistant-panel {
    position: fixed;
    z-index: 181;
    right: 24px;
    bottom: 165px;
    width: min(360px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid rgba(16,32,25,.1);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(8,30,19,.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(.97);
    transform-origin: bottom right;
    transition: all var(--transition-base);
}
.assistant-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.assistant-panel__header { display: flex; align-items: center; gap: .7rem; padding: 1rem; color: #fff; background: var(--gradient-primary); }
.assistant-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: #fff; color: var(--color-accent-dark); font-size: .7rem; font-weight: 900; }
.assistant-panel__header > span:nth-child(2) { flex: 1; }
.assistant-panel__header strong, .assistant-panel__header small { display: block; }
.assistant-panel__header strong { font-size: .87rem; }
.assistant-panel__header small { margin-top: .18rem; font-size: .67rem; opacity: .88; }
.assistant-panel__header small i { display: inline-block; width: 7px; height: 7px; margin-right: 3px; border-radius: 50%; background: #6cf0a5; }
.assistant-panel__header button { border: 0; background: transparent; color: #fff; font-size: 1.45rem; }
.assistant-panel__messages { max-height: 250px; overflow-y: auto; padding: 1rem; background: #f6f9f7; }
.assistant-message { width: fit-content; max-width: 86%; margin-bottom: .7rem; padding: .7rem .85rem; border-radius: 14px; font-size: .78rem; line-height: 1.5; }
.assistant-message--bot { border-bottom-left-radius: 4px; background: #fff; box-shadow: var(--shadow-xs); }
.assistant-message--user { margin-left: auto; border-bottom-right-radius: 4px; color: #fff; background: var(--color-accent); }
.assistant-message a { display: block; margin-top: .4rem; color: var(--color-accent-dark); font-weight: 800; }
.assistant-message--typing { color: var(--color-text-light); font-style: italic; }
.assistant-products { display: grid; gap: .35rem; margin-top: .65rem; }
.assistant-message a.assistant-product { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin: 0; padding: .5rem .6rem; border: 1px solid var(--color-border); border-radius: 9px; background: #f8fbf9; }
.assistant-product span { overflow: hidden; color: var(--color-text); font-size: .69rem; text-overflow: ellipsis; white-space: nowrap; }
.assistant-product b { flex: 0 0 auto; color: var(--color-accent-dark); font-size: .66rem; }
.assistant-panel__form { display: flex; gap: .45rem; padding: .85rem; }
.assistant-panel__form input {
    min-width: 0;
    flex: 1;
    height: 42px;
    padding: 0 .8rem;
    border: 1px solid var(--color-border);
    border-radius: 11px;
    outline: none;
    color: var(--color-text);
    background: #fff;
    font-size: .75rem;
}
.assistant-panel__form input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(23,132,84,.1); }
.assistant-panel__form button { width: 42px; border: 0; border-radius: 11px; color: #fff; background: var(--color-accent); font-size: 1rem; }
.assistant-disclaimer { padding: 0 .9rem .8rem; color: var(--color-text-xlight); font-size: .58rem; line-height: 1.35; text-align: center; }

main { background-image: radial-gradient(circle at 5% 20%, rgba(23,132,84,.045), transparent 24%), radial-gradient(circle at 95% 70%, rgba(213,162,29,.045), transparent 22%); }

/* Consistent visual rhythm across every public page */
main > .section:nth-of-type(even) { background-color: rgba(243,247,244,.72); }
main > .section { position: relative; overflow: clip; }
main > .section::before {
    content: '';
    position: absolute;
    top: 14%;
    right: -90px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(23,132,84,.08);
    border-radius: 50%;
    pointer-events: none;
}
.section-header .badge { padding: .34rem .72rem; letter-spacing: .07em; }
.layout-promo { position: relative; }
.layout-promo img { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.layout-promo:hover img { transform: scale(1.025); }
.filters-sidebar a, footer li a { transition: color var(--transition-fast), transform var(--transition-fast); }
.filters-sidebar a:hover { color: var(--color-accent-dark); transform: translateX(3px); }

.wellness-showcase { padding: clamp(4rem, 8vw, 7rem) 0; background: linear-gradient(145deg, #eef7f1, #fff 52%, #fff8e5); }
.wellness-showcase__heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.wellness-showcase__heading h2 { margin-top: .75rem; font-size: clamp(2rem, 4vw, 3.6rem); max-width: 650px; }
.wellness-showcase__grid { display: grid; grid-template-columns: 1.45fr repeat(2, 1fr); grid-auto-rows: 280px; gap: 1rem; }
.wellness-product { position: relative; display: flex; align-items: end; overflow: hidden; border: 1px solid rgba(16,32,25,.08); border-radius: 24px; background: #fff; box-shadow: var(--shadow-card); }
.wellness-product--featured { grid-row: span 2; }
.wellness-product::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,20,12,.88)); }
.wellness-product img { position: absolute; inset: 0; width: 100%; height: 100%; padding: 1.5rem; object-fit: contain; transition: transform .55s ease; }
.wellness-product:hover img { transform: scale(1.07) rotate(-1deg); }
.wellness-product__number { position: absolute; z-index: 2; top: 1rem; left: 1rem; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--color-accent-dark); background: rgba(255,255,255,.9); font-size: .68rem; font-weight: 800; }
.wellness-product__info { position: relative; z-index: 2; display: block; width: 100%; padding: 1.25rem; color: #fff; }
.wellness-product__info small, .wellness-product__info strong, .wellness-product__info b { display: block; }
.wellness-product__info small { opacity: .7; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.wellness-product__info strong { margin-top: .2rem; font-size: 1rem; line-height: 1.25; }
.wellness-product__info b { margin-top: .5rem; color: #8ee3b7; font-size: .76rem; }
.wellness-product__info b span { float: right; }

@media (max-width: 900px) {
    .wellness-showcase__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .wellness-product--featured { grid-row: span 1; }
}

@media (max-width: 768px) {
    .assistant-launcher { right: 14px; bottom: 88px; width: 48px; padding: 0; justify-content: center; }
    .assistant-launcher > span:last-child { display: none; }
    .assistant-panel { right: 14px; bottom: 146px; }
    .promo-ticker__track { animation-duration: 20s; }
    .wellness-showcase__heading { align-items: flex-start; flex-direction: column; }
    .wellness-showcase__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
}

@media (max-width: 480px) {
    .wellness-showcase__grid { grid-auto-rows: 190px; gap: .7rem; }
    .wellness-product { border-radius: 16px; }
    .wellness-product img { padding: 1rem; }
    .wellness-product__info { padding: .85rem; }
    .wellness-product__info strong { font-size: .78rem; }
}

@media (max-width: 360px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .header__logo { font-size: var(--font-size-base); }
    .section { padding-block: var(--space-10); }
    h1 { font-size: 1.75rem; letter-spacing: -0.02em; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1.125rem; }
}

/* ----------------------------------------------------------
   Apple-Style Refinements
   ---------------------------------------------------------- */

/* SF Pro kerning improvement for headings */
.section-title,
.hero-slide__title,
.product-card__name {
    font-kerning: auto;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
}

/* Print protection — hide all media when printing */
@media print {
    img, video, iframe {
        display: none !important;
    }
}

/* ----------------------------------------------------------
   Accessibility
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 3px;
}

/* ----------------------------------------------------------
   2026 Storefront refresh — clear, calm and practical
   ---------------------------------------------------------- */
:root {
    --color-primary: #102019;
    --color-secondary: #174f37;
    --color-accent: #178454;
    --color-accent-dark: #0d5d3a;
    --color-accent-soft: #eaf6ef;
    --color-bg: #fbfcfa;
    --color-surface-2: #f3f7f4;
    --color-text: #18231d;
    --color-text-light: #627068;
    --color-border: #e1e9e3;
    --gradient-primary: linear-gradient(135deg, #168557 0%, #0e6842 100%);
    --shadow-card: 0 1px 2px rgba(16, 32, 25, .04), 0 10px 32px rgba(16, 32, 25, .06);
    --shadow-card-hover: 0 16px 44px rgba(16, 32, 25, .12);
    --container-max: 1240px;
    --header-h: 76px;
}

body { line-height: 1.65; }

.header {
    background: rgba(255, 255, 255, .94);
    border-bottom-color: rgba(16, 32, 25, .08);
}

.header__inner { gap: clamp(1rem, 2vw, 2rem); }

.header__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
}

.header__brand-mark {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.header__nav { gap: .15rem; }

.header__nav-link {
    padding: .65rem .8rem;
    font-size: .84rem;
    font-weight: 600;
    border: 0;
    background: transparent;
}

.header__nav-link::after { display: none; }
.header__nav-link:hover { color: var(--color-accent-dark); background: var(--color-accent-soft); }
.header__nav-link.active { color: var(--color-accent-dark); background: var(--color-accent-soft); }

.header__more { position: relative; }
.header__more-trigger { display: flex; align-items: center; gap: .3rem; }
.header__more-menu {
    position: absolute;
    top: calc(100% + .65rem);
    right: 0;
    width: 180px;
    padding: .5rem;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--transition-base);
}
.header__more:hover .header__more-menu,
.header__more:focus-within .header__more-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.header__more-menu a { display: block; padding: .65rem .75rem; border-radius: 9px; font-size: .84rem; font-weight: 550; }
.header__more-menu a:hover { color: var(--color-accent-dark); background: var(--color-accent-soft); }

.header__join {
    padding: .62rem 1rem;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    transition: transform var(--transition-fast), background var(--transition-fast);
}
.header__join:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

.header__cart-btn { min-width: 44px; min-height: 44px; justify-content: center; padding: .6rem; }
.cart-badge { position: absolute; top: -3px; right: -4px; box-shadow: 0 0 0 2px #fff; }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-header { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-title { font-weight: 750; letter-spacing: -.035em; }
.section-subtitle { margin-top: 1rem; font-size: 1rem; }
.divider { width: 38px; height: 3px; margin-top: 1rem; border-radius: 10px; }

.card, .product-card {
    border: 1px solid rgba(16, 32, 25, .08);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}
.card:hover, .product-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); }
.product-card__image-wrap { background: #f5f8f5; }
.product-card__image { padding: .35rem; }
.product-card__body { padding: 1.15rem 1.2rem 1.3rem; }
.product-card__category { color: var(--color-accent-dark); font-weight: 700; }

/* Category campaigns */
.category-campaign {
    min-height: clamp(390px, 48vw, 610px);
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: #123d2d var(--campaign-image) center / cover no-repeat;
}
.category-campaign::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(6, 32, 23, .96) 0%, rgba(8, 43, 30, .84) 36%, rgba(8, 43, 30, .22) 70%, rgba(8, 43, 30, .08) 100%);
}
.category-campaign__content { padding-block: clamp(4rem, 8vw, 7.5rem); }
.category-campaign__content h1 { max-width: 620px; color: #fff; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .98; letter-spacing: -.045em; margin: .75rem 0 1.25rem; }
.category-campaign__content p { max-width: 540px; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.6; margin-bottom: 1.75rem; }
.category-campaign__eyebrow { display: inline-flex; padding: .5rem .8rem; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.category-ad-section { padding-block: clamp(3.5rem, 7vw, 6rem); background: linear-gradient(180deg, #f3f8f4 0%, #fff 100%); }
.category-ad-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.category-ad-card { min-height: 250px; grid-column: span 2; position: relative; overflow: hidden; border-radius: 1.5rem; color: #fff; box-shadow: 0 18px 45px rgba(14, 55, 39, .13); }
.category-ad-card:nth-child(4), .category-ad-card:nth-child(5) { grid-column: span 3; }
.category-ad-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.category-ad-card:hover img { transform: scale(1.055); }
.category-ad-card__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 28, 20, .88), rgba(5, 28, 20, .2) 75%); }
.category-ad-card__copy { position: absolute; inset: auto 1.5rem 1.5rem; display: flex; flex-direction: column; align-items: flex-start; }
.category-ad-card__copy small { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; opacity: .78; }
.category-ad-card__copy strong { color: #fff; font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.15; margin: .25rem 0 .7rem; }
.category-ad-card__copy em { font-style: normal; font-size: .86rem; font-weight: 800; }
@media (max-width: 820px) {
    .category-ad-card, .category-ad-card:nth-child(4), .category-ad-card:nth-child(5) { grid-column: span 3; }
    .category-campaign { background-position: 62% center; }
}
@media (max-width: 560px) {
    .category-ad-grid { grid-template-columns: 1fr; }
    .category-ad-card, .category-ad-card:nth-child(4), .category-ad-card:nth-child(5) { grid-column: auto; min-height: 220px; }
    .category-campaign::before { background: linear-gradient(90deg, rgba(6,32,23,.94), rgba(6,32,23,.62)); }
    .category-campaign__content { padding-block: 4rem; }
}

/* Full-store campaign layer */
.store-campaigns { padding-block: clamp(4rem, 7vw, 7rem); background: #eef5f0; border-top: 1px solid rgba(18,61,45,.08); }
.store-campaigns__header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.75rem; }
.store-campaigns__header h2 { font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.04em; margin-top: .35rem; }
.store-campaigns__header > a { color: var(--color-accent-dark); font-weight: 800; white-space: nowrap; }
.store-campaigns__eyebrow { color: var(--color-accent-dark); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.store-campaigns__grid { display: grid; grid-template-columns: 1.25fr .85fr .85fr; gap: 1rem; }
.store-campaign-tile { min-height: 390px; position: relative; overflow: hidden; border-radius: 1.6rem; color: #fff; box-shadow: 0 22px 55px rgba(12,45,32,.14); }
.store-campaign-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.store-campaign-tile:hover img { transform: scale(1.06); }
.store-campaign-tile__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,27,19,.94), rgba(5,27,19,.08) 75%); }
.store-campaign-tile__copy { position: absolute; inset: auto 1.5rem 1.5rem; display: flex; flex-direction: column; align-items: flex-start; }
.store-campaign-tile__copy small { opacity: .75; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.store-campaign-tile__copy strong { max-width: 390px; color: #fff; font-size: clamp(1.35rem, 2.2vw, 2.15rem); line-height: 1.1; margin: .45rem 0 1rem; }
.store-campaign-tile__copy em { font-size: .82rem; font-weight: 800; font-style: normal; }
.store-benefits { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 1rem; border-radius: 1.2rem; background: #fff; box-shadow: 0 10px 35px rgba(12,45,32,.07); overflow: hidden; }
.store-benefits a { display: flex; align-items: center; gap: .8rem; min-height: 100px; padding: 1.2rem; border-right: 1px solid var(--color-border-light); }
.store-benefits a:last-child { border-right: 0; }
.store-benefits b { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--color-accent); }
.store-benefits span { display: flex; flex-direction: column; }
.store-benefits strong { font-size: .95rem; }
.store-benefits small { margin-top: .2rem; color: var(--color-text-light); font-size: .75rem; }
.journey-ad { min-height: 340px; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; margin-top: clamp(3rem, 6vw, 6rem); border-radius: 1.8rem; color: #fff; background: #123d2d; box-shadow: 0 25px 60px rgba(12,45,32,.18); }
.journey-ad__copy { padding: clamp(2rem, 5vw, 4.5rem); align-self: center; }
.journey-ad__copy > span { font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; color: #a9e7bf; }
.journey-ad__copy h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 3.25rem); line-height: 1.05; letter-spacing: -.04em; margin: .7rem 0 1rem; }
.journey-ad__copy p { color: rgba(255,255,255,.76); line-height: 1.65; margin-bottom: 1.4rem; }
.journey-ad__copy > div { display: flex; flex-wrap: wrap; gap: .65rem; }
.journey-ad__assistant { color: #fff; border-color: rgba(255,255,255,.45); }
.journey-ad > img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.purchase-hero { color: #fff; background: linear-gradient(90deg, rgba(5,31,21,.94), rgba(5,31,21,.5)), url('/images/banners/category-suplementos.png') center 62% / cover no-repeat; }
.purchase-hero__inner { min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; }
.purchase-hero__inner > div { display: flex; flex-direction: column; max-width: 650px; padding-block: 2.5rem; text-shadow: 0 2px 22px rgba(0,0,0,.5); }
.purchase-hero__inner span { font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.purchase-hero__inner strong { color: #fff; font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1.05; margin: .5rem 0; }
.purchase-hero__inner small { font-size: 1rem; color: rgba(255,255,255,.83); }
.checkout-confidence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-block: 1.5rem; }
.checkout-confidence > div { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; border-radius: 1rem; background: #fff; border: 1px solid var(--color-border-light); box-shadow: var(--shadow-sm); }
.checkout-confidence b { color: var(--color-accent); font-size: 1.35rem; }
.checkout-confidence span { display: flex; flex-direction: column; }
.checkout-confidence small { margin-top: .25rem; color: var(--color-text-light); line-height: 1.4; }
@media (max-width: 900px) {
    .store-campaigns__grid { grid-template-columns: 1fr 1fr; }
    .store-campaign-tile:first-child { grid-column: 1 / -1; }
    .store-benefits { grid-template-columns: 1fr 1fr; }
    .journey-ad { grid-template-columns: 1fr; }
    .journey-ad > img { max-height: 300px; }
    .checkout-confidence { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .store-campaigns__header { align-items: flex-start; flex-direction: column; gap: .75rem; }
    .store-campaigns__grid { grid-template-columns: 1fr; }
    .store-campaign-tile, .store-campaign-tile:first-child { grid-column: auto; min-height: 320px; }
    .store-benefits { grid-template-columns: 1fr; }
    .store-benefits a { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--color-border-light); }
    .purchase-hero__inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 2rem; }
}

/* Income opportunity and livelier home advertising */
.home-business-ad, .income-opportunity-hero { min-height: clamp(430px, 52vw, 650px); position: relative; display: flex; align-items: center; overflow: hidden; color: #fff; }
.home-business-ad > img, .income-opportunity-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-business-ad__shade, .income-opportunity-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,29,20,.95), rgba(5,29,20,.72) 42%, rgba(5,29,20,.08) 76%); }
.home-business-ad__content, .income-opportunity-hero__content { position: relative; z-index: 1; padding-block: clamp(4rem, 8vw, 7rem); }
.home-business-ad__content > span, .income-opportunity-hero__content > span { font-size: .76rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; color: #aceac2; }
.home-business-ad__content h2, .income-opportunity-hero__content h2 { max-width: 680px; color: #fff; font-size: clamp(2.5rem, 5.5vw, 5.5rem); line-height: .98; letter-spacing: -.05em; margin: .8rem 0 1.25rem; }
.home-business-ad__content p, .income-opportunity-hero__content p { max-width: 600px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.65; margin-bottom: 1.75rem; }
.income-steps { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.income-steps__image { min-height: 560px; overflow: hidden; border-radius: 1.8rem; box-shadow: 0 24px 60px rgba(10,50,34,.16); }
.income-steps__image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.income-steps h2 { font-size: clamp(2.1rem, 4vw, 4rem); letter-spacing: -.045em; line-height: 1.03; margin: .8rem 0 2rem; }
.income-step-list { display: flex; flex-direction: column; gap: .85rem; }
.income-step-list article { display: flex; gap: 1rem; padding: 1.25rem; border: 1px solid var(--color-border-light); border-radius: 1rem; background: #fff; box-shadow: var(--shadow-sm); }
.income-step-list article > b { color: var(--color-accent); font-size: 1.25rem; }
.income-step-list article span { display: flex; flex-direction: column; }
.income-step-list article strong { font-size: 1.05rem; }
.income-step-list article small { color: var(--color-text-light); line-height: 1.5; margin-top: .25rem; }
@media (max-width: 800px) {
    .home-business-ad__shade, .income-opportunity-hero__overlay { background: linear-gradient(90deg, rgba(5,29,20,.92), rgba(5,29,20,.58)); }
    .income-steps { grid-template-columns: 1fr; }
    .income-steps__image, .income-steps__image img { min-height: 380px; }
}

/* Ingredient education and social proof */
.ingredient-feature { padding-block: clamp(4rem, 8vw, 7rem); color: #fff; background: linear-gradient(135deg, #092e20, #14583b); overflow: hidden; }
.ingredient-feature__layout { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.ingredient-feature__visual { min-height: 520px; position: relative; overflow: hidden; border-radius: 1.8rem; box-shadow: 0 25px 60px rgba(0,0,0,.2); }
.ingredient-feature__visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.ingredient-feature__visual::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.68)); }
.ingredient-feature__visual span { position: absolute; z-index: 1; left: 1.5rem; bottom: 1.4rem; color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ingredient-feature__content h2 { max-width: 700px; color: #fff; font-size: clamp(2.1rem, 4.5vw, 4.7rem); line-height: .98; letter-spacing: -.05em; margin: .8rem 0 1.25rem; }
.ingredient-feature__content > p { max-width: 620px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 1.4rem; }
.ingredient-feature__cards { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.5rem; }
.ingredient-feature__cards article { padding: 1.1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: rgba(255,255,255,.08); }
.ingredient-feature__cards b { color: #a9e7bf; font-size: .78rem; }
.ingredient-feature__cards strong, .ingredient-feature__cards small { display: block; }
.ingredient-feature__cards strong { margin: .5rem 0 .35rem; color: #fff; }
.ingredient-feature__cards small { color: rgba(255,255,255,.68); font-size: .78rem; line-height: 1.45; }
.ingredient-feature__note { display: block; margin-top: 1rem; color: rgba(255,255,255,.55); font-size: .72rem; }
.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.5rem, 3vw, 2.25rem); border: 1px solid var(--color-border-light); border-radius: 1.3rem; background: #fff; box-shadow: 0 15px 35px rgba(16,32,25,.07); }
.testimonial-card__top { display: flex; align-items: center; justify-content: space-between; }
.testimonial-card__quote { color: var(--color-accent); font-family: Georgia, serif; font-size: 4rem; line-height: .5; opacity: .7; }
.testimonial-card__text { min-height: 100px; color: var(--color-text-light); font-size: .98rem; line-height: 1.7; font-style: italic; margin-block: 1rem 1.5rem; }
.testimonial-card__person { border-top: 1px solid var(--color-border-light); padding-top: 1rem; }
.testimonials-cta { display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap; margin-top: 1.25rem; padding: 1rem 1.25rem; border: 1px dashed rgba(23,132,84,.35); border-radius: 1rem; color: var(--color-text-light); font-size: .88rem; }
.testimonials-cta a { color: var(--color-accent-dark); font-weight: 800; }
.assistant-follow-up { display: block; margin-top: .75rem; color: rgba(255,255,255,.68); font-size: .76rem; line-height: 1.45; }
@media (max-width: 800px) {
    .ingredient-feature__layout { grid-template-columns: 1fr; }
    .ingredient-feature__visual, .ingredient-feature__visual img { min-height: 360px; }
}
@media (max-width: 520px) {
    .ingredient-feature__cards { grid-template-columns: 1fr; }
}

/* Contact conversion page */
.contact-hero { min-height: clamp(440px, 52vw, 650px); display: flex; align-items: center; position: relative; overflow: hidden; color: #fff; }
.contact-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,32,23,.96), rgba(6,32,23,.7) 46%, rgba(6,32,23,.12) 84%); }
.contact-hero__content { position: relative; z-index: 1; padding-block: 5rem; }
.contact-hero__content > span { color: #b2eac6; font-size: .75rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.contact-hero__content h1 { max-width: 720px; color: #fff; font-size: clamp(2.7rem, 6vw, 6rem); line-height: .96; letter-spacing: -.06em; margin: .8rem 0 1.2rem; }
.contact-hero__content p { max-width: 590px; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.6; margin-bottom: 1.7rem; }
.contact-hero__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.contact-hero__outline { color: #fff; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.contact-followup { padding-block: clamp(3.5rem, 7vw, 6rem); background: #edf5ef; }
.contact-followup__header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.6rem; }
.contact-followup__header h2 { max-width: 600px; margin-top: .65rem; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.045em; }
.contact-followup__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-followup__grid article { padding: 1.5rem; border-radius: 1.2rem; background: #fff; border: 1px solid rgba(18,61,45,.08); box-shadow: var(--shadow-sm); }
.contact-followup__grid b { color: var(--color-accent); font-size: 1.35rem; }
.contact-followup__grid strong { display: block; margin: 1.1rem 0 .45rem; font-size: 1.1rem; }
.contact-followup__grid p { color: var(--color-text-light); font-size: .9rem; line-height: 1.55; }
@media (max-width: 760px) {
    .contact-hero__overlay { background: linear-gradient(90deg, rgba(6,32,23,.94), rgba(6,32,23,.62)); }
    .contact-followup__header { align-items: flex-start; flex-direction: column; }
    .contact-followup__grid { grid-template-columns: 1fr; }
}

/* Editorial blog */
.blog-hero { min-height: clamp(430px, 52vw, 650px); display: flex; align-items: center; position: relative; overflow: hidden; color: #fff; }
.blog-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,32,23,.94), rgba(7,32,23,.68) 45%, rgba(7,32,23,.08) 82%); }
.blog-hero__content { position: relative; z-index: 1; padding-block: 5rem; }
.blog-hero__eyebrow { color: #b0ebc6; font-size: .75rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.blog-hero h1 { max-width: 680px; color: #fff; font-size: clamp(2.8rem, 6vw, 6.2rem); line-height: .95; letter-spacing: -.06em; margin: .8rem 0 1.2rem; }
.blog-hero p { max-width: 570px; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.6; margin-bottom: 1.6rem; }
.blog-hero__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.btn-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.blog-topics { padding-block: 1rem; background: #edf5ef; }
.blog-topics__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.blog-topics__grid a { display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: 1fr 1fr; column-gap: .8rem; padding: 1.2rem 1.35rem; border-radius: 1rem; background: #fff; border: 1px solid rgba(18,61,45,.08); }
.blog-topics__grid span { grid-row: 1 / 3; color: var(--color-accent); font-weight: 850; font-size: 1.2rem; }
.blog-topics__grid strong { font-size: 1rem; }
.blog-topics__grid small { color: var(--color-text-light); }
.blog-topics__grid em { grid-column: 3; grid-row: 1 / 3; align-self: center; color: var(--color-accent-dark); font-size: .75rem; font-style: normal; font-weight: 800; }
.blog-count { color: var(--color-text-light); font-size: .85rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; min-height: 100%; cursor: pointer; border: 1px solid var(--color-border-light); border-radius: 1.35rem; background: #fff; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; }
.blog-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(18,61,45,.14); }
.blog-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1.15fr .85fr; }
.blog-card__image { min-height: 235px; position: relative; overflow: hidden; background: var(--color-surface-2); }
.blog-card--featured .blog-card__image { min-height: 350px; }
.blog-card__image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .55s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.06); }
.blog-card__tag { position: absolute; top: 1rem; left: 1rem; padding: .45rem .65rem; border-radius: 99px; color: #fff; background: rgba(8,52,35,.83); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.blog-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.45rem; }
.blog-card__body small { color: var(--color-text-xlight); font-size: .72rem; }
.blog-card__body h3 { margin: .7rem 0 .6rem; color: var(--color-primary); font-size: clamp(1.15rem, 2vw, 1.7rem); line-height: 1.18; }
.blog-card__body p { display: -webkit-box; overflow: hidden; flex: 1; color: var(--color-text-light); font-size: .9rem; line-height: 1.6; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }
.blog-card__body > span { margin-top: 1.2rem; color: var(--color-accent-dark); font-size: .85rem; font-weight: 800; }
.blog-card__body > span b { margin-left: .35rem; }
@media (max-width: 850px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card--featured { grid-column: span 2; }
    .blog-topics__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card--featured { grid-column: auto; display: flex; }
    .blog-card--featured .blog-card__image { min-height: 250px; }
    .blog-hero__overlay { background: linear-gradient(90deg, rgba(7,32,23,.9), rgba(7,32,23,.55)); }
}
.product-card__name { line-height: 1.35; }
.product-card__points { border-radius: 8px; background: #fff9e8; color: #8a6200; }

#hero-slider { max-height: 700px; min-height: 520px; }
.hero-slide__overlay { background: linear-gradient(90deg, rgba(7, 20, 14, .78) 0%, rgba(7, 20, 14, .45) 48%, rgba(7, 20, 14, .08) 78%); }
.hero-slide__content { padding-inline: max(var(--container-px), calc((100vw - var(--container-max)) / 2 + var(--container-px))); }
.hero-slide__title { font-weight: 760; max-width: 650px; }
.hero-slide__desc { color: rgba(255,255,255,.9); }
.hero-slide__tag { background: rgba(255,255,255,.12); }

.btn { border-width: 1px; min-height: 44px; }
.btn-primary { box-shadow: 0 8px 22px rgba(23, 132, 84, .24); }
.btn-secondary { background: #fff; border-color: var(--color-border); }

footer { background: #0d1c15 !important; }
footer a { transition: color var(--transition-fast); }
footer a:hover { color: #fff !important; }

@media (max-width: 1100px) {
    .header nav { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 768px) {
    :root { --header-h: 68px; }
    .header__brand-mark { width: 45px; height: 45px; }
    .header__join { display: none; }
    #hero-slider { min-height: 520px; aspect-ratio: auto; }
    .hero-slide__content { justify-content: flex-end; padding: 3.5rem 1.25rem; }
    .hero-slide__overlay { background: linear-gradient(0deg, rgba(7,20,14,.88), rgba(7,20,14,.08) 80%); }
    .hero-slide__actions { gap: .65rem; }
    .mobile-nav__panel { padding: 1.25rem; }
}

@media (max-width: 480px) {
    .grid-4, .grid-3 { gap: .75rem; }
    .product-card { border-radius: 15px; }
    .product-card__quick-add { display: none; }
    .section-header-flex .btn { width: 100%; }
}
