/* ========================================
   PČELINJI DAROVI ŽIVKOVIĆ - STYLE.CSS
   Complete Design System with CSS Variables
   ======================================== */

/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ------------------------------------------------------------ */

:root {
    /* Color Palette - Honey Theme */
    --color-honey-50: #FFFBEB;
    --color-honey-100: #FEF3C7;
    --color-honey-200: #FDE68A;
    --color-cream: #FFFBF0;

    --color-amber-100: #FEF9C3;
    --color-amber-200: #FDE047;
    --color-amber-300: #FACC15;
    --color-amber-400: #EAB308;
    --color-amber-500: #D97706;
    --color-amber-600: #B45309;
    --color-amber-700: #92400E;
    --color-amber-800: #78350F;
    --color-amber-900: #451A03;
    --color-amber-950: #2a0f02;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-400: #A3A3A3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    --color-black: #000000;

    /* Semantic Colors */
    --color-primary: var(--color-amber-600);
    --color-primary-dark: var(--color-amber-700);
    --color-primary-light: var(--color-amber-500);
    --color-secondary: var(--color-amber-800);
    --color-accent: var(--color-amber-400);
    --color-background: var(--color-cream);
    --color-surface: var(--color-white);
    --color-text: var(--color-gray-800);
    --color-text-light: var(--color-gray-600);
    --color-text-muted: var(--color-gray-500);
    --color-border: var(--color-gray-200);

    /* Typography Scale */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.65vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5rem);

    /* Spacing Scale */
    --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;

    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;

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

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(234, 179, 8, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-header: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* ------------------------------------------------------------
   2. RESET & BASE STYLES
   ------------------------------------------------------------ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Accessibility */
.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;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-3) var(--space-6);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ------------------------------------------------------------
   ICONS
   ------------------------------------------------------------ */

.lucide {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    vertical-align: middle;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: #EAB308;
    fill: #EAB308;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--color-gray-400);
    cursor: pointer;
    padding: var(--space-1);
    transition: color 0.2s;
    margin-left: auto;
}

.btn-remove-item:hover {
    color: #ef4444; /* red-500 */
}

.btn-remove-item i {
    width: 18px;
    height: 18px;
}

/* ------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------ */

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

/* Generic Grid Utilities */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

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

@media (min-width: 640px) and (max-width: 991px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .container {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

/* ------------------------------------------------------------
   4. ANNOUNCEMENT BAR
   ------------------------------------------------------------ */

.announcement-bar {
    background: linear-gradient(90deg, var(--color-amber-800), var(--color-amber-700), var(--color-amber-800));
    color: var(--color-white);
    text-align: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ------------------------------------------------------------
   5. HEADER & NAVIGATION
   ------------------------------------------------------------ */

.header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background-color: var(--color-surface);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

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

.logo-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-amber-800);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

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

.nav-links-list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-header,
.nav-menu-footer {
    display: none;
}

.nav-link {
    position: relative;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    z-index: calc(var(--z-header) + 10);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    color: var(--color-text);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.icon-btn:hover {
    background-color: var(--color-honey-100);
    color: var(--color-primary);
}

.icon {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(180, 83, 9, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
}

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

.btn-small {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn-full {
    width: 100%;
}

/* ------------------------------------------------------------
   7. HERO SECTION (Split-Screen Layout)
   ------------------------------------------------------------ */

.hero-split {
    display: grid;
    grid-template-columns: 1fr; /* Подразумевано за мобилни је једна колона */
    min-height: auto;
    background-color: var(--color-surface);
    overflow: hidden;
}

/* Лева страна са текстом */
.hero-split-text {
    background-color: var(--color-cream); /* Премијум крем чврста подлога */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-5) var(--space-12) var(--space-5);
    order: 2; /* На мобилном текст иде ИСПОД слике */
}

.hero-split-content-wrapper {
    max-width: 580px;
    width: 100%;
    text-align: center; /* Центрирано на мобилном */
}

.hero-split-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-honey-100);
    color: var(--color-amber-800);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-split-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl); /* Reduced from 3xl */
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-amber-900);
    margin-bottom: var(--space-4);
}

.hero-split-title .accent {
    color: var(--color-primary);
}

.hero-split-description {
    font-size: var(--text-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

/* Велики дугмићи у Thumb Зони на мобилном */
.hero-split-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    width: 100%;
}

.hero-split-actions .btn {
    width: 100%; /* Пуна ширина за лакши клик палцем */
}

/* Траст значке прилагођене за светлу крем подлогу */
.hero-split-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-4); /* Безбедан размак од ФАБ дугмића */
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-amber-950);
    background: rgba(217, 119, 6, 0.05);
    border: 1px solid rgba(217, 119, 6, 0.12);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    justify-content: center;
}

.trust-pill i, .trust-pill svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Десна страна са сликом */
.hero-split-image {
    height: 38vh; /* Слика заузима горњи део екрана на мобилном */
    width: 100%;
    order: 1; /* На мобилном слика иде ПРВА на врх */
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   DESKTOP UPGRADE (Рачунари и већи екрани)
   ============================================================ */
@media (min-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr 1fr; /* Савршен сплит 50/50 */
        min-height: 820px;
        height: 85vh;
    }

    .hero-split-text {
        order: 1; /* Текст иде лево */
        padding: var(--space-12) var(--space-16) var(--space-12) var(--space-20);
        text-align: left; /* Поравнање улево на ПЦ-ју */
    }

    .hero-split-content-wrapper {
        text-align: left;
    }

    .hero-split-title {
        font-size: var(--text-4xl); /* Reduced from 5xl */
        line-height: 1.1;
        margin-bottom: var(--space-6);
    }

    .hero-split-description {
        font-size: var(--text-lg);
        margin-bottom: var(--space-8);
    }

    .hero-split-actions {
        flex-direction: row; /* Дугмићи стоје један поред другог */
        width: auto;
    }

    .hero-split-actions .btn {
        width: auto;
    }

    .hero-split-trust-grid {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-3);
        margin-bottom: 0;
    }

    .trust-pill {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-4);
    }

    .hero-split-image {
        height: 100%;
        order: 2; /* Слика иде десно */
    }
}

/* ------------------------------------------------------------
   TIMELINE SECTION
   ------------------------------------------------------------ */

.timeline-section {
    padding: var(--space-24) 0;
    background-color: var(--color-surface);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

/* The vertical line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    /* Remove solid width */
    border-left: 2px dashed var(--color-amber-300);
    /* Dashed path */
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: var(--space-6) var(--space-8);
}

/* Odd items left, Even items right */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: var(--space-8);
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border: none;
    border-radius: 0;
    z-index: 1;
    transition: filter var(--transition-base), transform var(--transition-base);
}

.timeline-element.animate-in .timeline-dot {
    animation: timeline-pulse 2s infinite ease-in-out;
}

@keyframes timeline-pulse {
    0% {
        filter: drop-shadow(0 0 0 rgba(245, 158, 11, 0.4));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.8));
        transform: scale(1.1);
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(245, 158, 11, 0.4));
        transform: scale(1);
    }
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: rgba(255, 251, 240, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    right: 10px;
    font-family: var(--font-display);
    font-size: 140px;
    font-weight: 900;
    color: var(--color-amber-900);
    opacity: 0.04;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: auto;
    left: 10px;
}

.timeline-content>* {
    position: relative;
    z-index: 1;
}

.timeline-content p {
    color: var(--color-text);
    /* Slightly darker text for contrast on glass */
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.1);
}

.timeline-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-amber-900);
    margin-bottom: var(--space-3);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding: var(--space-4) 0 var(--space-4) 50px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
}

/* ------------------------------------------------------------
   8. VALUES SECTION
   ------------------------------------------------------------ */

.values {
    padding: var(--space-24) 0;
    background-color: var(--color-surface);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 1000px;
    margin: 0 auto;
}

/* Outer amber hexagon = the 'border' frame */
.value-hex-border {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: var(--color-amber-400);
    aspect-ratio: 1 / 1.1;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 6px rgba(217, 119, 6, 0.2));
    transition: transform var(--transition-base), filter var(--transition-base);
}

.value-hex-border:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 22px rgba(217, 119, 6, 0.5));
}

/* Inner cream hexagon = the content area */
.value-card {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: var(--color-honey-50);
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    overflow: hidden;
}

@media (min-width: 768px) {
    .values-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 50px;
    }

    .value-hex-border {
        padding: 0;
        width: calc(48% - var(--space-4));
    }

    .value-hex-border:nth-child(even) {
        transform: translateY(50px);
    }

    .value-hex-border:nth-child(even):hover {
        transform: scale(1.05) translateY(45px);
    }
}

@media (min-width: 1024px) {
    .value-hex-border {
        width: calc(33.333% - var(--space-4));
    }
}

.value-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2);
}

.value-icon {
    width: 48px;
    height: 48px;
}

.value-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-amber-900);
    margin-bottom: var(--space-1);
}

.value-text {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    line-height: 1.4;
    max-width: 170px;
}

/* ------------------------------------------------------------
   PRODUCT GRID (Centered Featured Selection)
   ------------------------------------------------------------ */

.featured-products-slider {
    padding: 100px 0;
    background: var(--color-white);
}

.product-slider-wrapper {
    position: relative;
    max-width: 1550px;
    margin: 0 auto;
}

.product-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
    overflow-x: hidden; /* Prevent manual scroll on PC if not needed */
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--color-amber-600);
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--color-amber-600);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev { left: -25px; }
.slider-nav.next { right: -25px; }

@media (max-width: 992px) {
    .slider-nav { display: flex; } /* Ensure visible on mobile */
    .slider-nav.prev { left: 10px; }
    .slider-nav.next { right: 10px; }
}

.slider-item {
    flex: 1 1 280px;
    min-width: 220px;
    max-width: 280px;
}

@media (max-width: 992px) {
    .product-slider-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .product-slider-track::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .product-slider-track {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .slider-item {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }
}

@media (max-width: 600px) {
    .slider-item {
        flex: 0 0 85%;
        max-width: none;
    }
}

@media (min-width: 768px) {
    .value-icon {
        width: 56px;
        height: 56px;
    }

    .value-title {
        font-size: var(--text-lg);
        margin-bottom: var(--space-2);
    }

    .value-text {
        font-size: var(--text-sm);
        line-height: 1.5;
        max-width: 190px;
    }
}

/* ------------------------------------------------------------
   9. FEATURED PRODUCTS SECTION
   ------------------------------------------------------------ */

.featured {
    padding: var(--space-24) 0;
    background-color: var(--color-honey-50);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-16);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-amber-100);
    color: var(--color-amber-700);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-amber-900);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.product-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #451a03;
    font-weight: 700;
    text-align: center;
    gap: 8px;
}

.product-image-placeholder::before {
    content: '🐝';
    font-size: 2.8rem;
    animation: floatBee 3s ease-in-out infinite;
}

.product-image-placeholder::after {
    content: 'Pčelinji Darovi';
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d97706;
    font-weight: 800;
}

.product-image-text {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 800;
    color: #451a03;
    text-align: center;
    padding: var(--space-2);
    z-index: 2;
}

@keyframes floatBee {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(5deg); }
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.product-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-amber-900);
    margin-bottom: var(--space-3);
}

.product-description {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.product-footer .btn-cart {
    flex: 1;
    min-width: 100px;
    height: 48px;
    padding: 0 var(--space-4);
}

.product-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-amber-800);
    flex-shrink: 0;
    min-width: 80px;
}

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

/* ------------------------------------------------------------
   10. STORY / ABOUT SECTION
   ------------------------------------------------------------ */

.story {
    padding: var(--space-24) 0;
    background-color: var(--color-surface);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.story-media {
    position: relative;
}

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

.story-image {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.story-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-text {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-amber-900);
}

.story-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 140px;
}

.float-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.float-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-content .section-badge {
    margin-bottom: var(--space-4);
}

.story-content .section-title {
    margin-bottom: var(--space-6);
}

.story-text {
    margin-bottom: var(--space-8);
}

.story-text p {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-features {
    margin-bottom: var(--space-8);
}

.story-feature {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-text);
}

.feature-check {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ------------------------------------------------------------
   FAQ SECTION
   ------------------------------------------------------------ */
.faq {
    padding: var(--space-24) 0;
    background-color: var(--color-surface);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-6) 0;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-amber-900);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-4);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-base);
}

.faq-question[aria-expanded="true"]+.faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom var(--transition-base);
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-question[aria-expanded="true"]+.faq-answer .faq-answer-content {
    padding-bottom: var(--space-6);
}

/* ------------------------------------------------------------
   DELIVERY MAP SECTION
   ------------------------------------------------------------ */
.delivery-map {
    padding: var(--space-20) 0;
    position: relative;
    width: 100%;
    background-color: var(--color-surface);
}

.map-container-interactive {
    max-width: 1200px;
    width: calc(100% - var(--space-8));
    height: 500px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(217, 119, 6, 0.25);
    border: 4px solid var(--color-honey-50);
    transform: translateY(0);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.map-container-interactive:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px -15px rgba(217, 119, 6, 0.35);
}

.interactive-map-iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: sepia(35%) hue-rotate(-10deg) saturate(140%) contrast(105%);
    transition: filter 0.5s ease;
}

.map-container-interactive:hover .interactive-map-iframe {
    filter: sepia(0%) hue-rotate(0deg) saturate(100%) contrast(100%);
}

/* ========================================
   PREMIUM CTA SECTION STYLES
   ======================================== */
.premium-cta-section {
    background-color: var(--color-amber-950); /* Ultra tamna braon/med boja */
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

/* Suptilni pozadinski geometrijski patern (saće osjećaj) */
.premium-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, var(--color-white) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
}

.premium-cta-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

/* Tekstualni sadržaj levo */
.premium-cta-content {
    color: var(--color-white);
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(254, 243, 199, 0.1);
    color: var(--color-amber-300);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.premium-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    color: var(--color-honey-100);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.premium-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    max-width: 600px;
    margin-bottom: var(--space-8);
}

/* E-commerce trust tagovi */
.cta-trust-tags {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.trust-tag {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
}

.trust-tag svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-amber-400);
}

/* Dugmići */
.premium-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.btn-cta-primary {
    background-color: var(--color-amber-500);
    color: var(--color-amber-950);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-cta-primary .arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-cta-primary:hover {
    background-color: var(--color-amber-400);
    transform: translateY(-2px);
}

.btn-cta-primary:hover .arrow-icon {
    transform: translateX(4px); /* Strelica se suptilno pomijera desno */
}

.btn-cta-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--transition-base);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-white);
}

/* Desna strana: Vizuelni bento element */
.premium-cta-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.cta-card-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-amber-500), var(--color-amber-800));
    border-radius: var(--radius-2xl);
    transform: rotate(-2deg); /* Blagi fensi nagib u pozadini */
    opacity: 0.15;
}

.cta-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.cta-floating-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--color-cream);
    color: var(--color-amber-950);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: 3;
    border: 1px solid var(--color-honey-200);
}

.badge-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-amber-600);
    line-height: 1;
}

.badge-text {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Responsive prelom za PC (Desktop) */
@media (min-width: 992px) {
    .premium-cta-container {
        grid-template-columns: 1.2fr 0.8fr; /* Podela na dve kolone na PC-u */
        gap: var(--space-16);
    }
    
    .cta-trust-tags {
        flex-direction: row; /* Trust ikonice idu jedna pored druge na desktopu */
        gap: var(--space-8);
    }
}

/* ------------------------------------------------------------
   12. FOOTER
   ------------------------------------------------------------ */

.footer {
    background-color: var(--color-gray-900);
    color: var(--color-gray-300);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-white);
}

.footer-description {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-gray-800);
    color: var(--color-gray-400);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.footer-heading {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: var(--text-base);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-amber-400);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
}

.contact-item a {
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-amber-400);
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--color-amber-500);
    flex-shrink: 0;
}

/* Footer Form */
.footer-form .form-group {
    margin-bottom: var(--space-4);
}

.form-input {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-base);
    color: var(--color-text);
    background-color: var(--color-gray-800);
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder {
    color: var(--color-gray-500);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-gray-800);
    text-align: center;
}

.copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--space-2);
}

.disclaimer {
    font-size: var(--text-xs);
    color: var(--color-gray-600);
}

/* ------------------------------------------------------------
   13. NOTIFICATION COMPONENT
   ------------------------------------------------------------ */

.notification {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: translateX(calc(100% + var(--space-6)));
    transition: transform var(--transition-base);
    z-index: var(--z-toast);
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: #10B981;
    color: var(--color-white);
}

.notification-error {
    background-color: #EF4444;
    color: var(--color-white);
}

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

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    flex-shrink: 0;
}

.notification-message {
    font-size: var(--text-base);
    font-weight: 500;
}

/* ------------------------------------------------------------
   16. NEW SECTIONS (TESTIMONIALS & ALLERGY)
   ------------------------------------------------------------ */

.testimonials {
    padding: var(--space-24) 0 var(--space-8);
    background-color: var(--color-surface);
    position: relative;
    overflow: hidden;
}

/* Slider wrapper: clips cards + edge dissolve mask */
.testimonials-slider-wrapper {
    position: relative;
    /* Fade edges for dissolve effect */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Scroll-snap track */
.testimonials-track {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--space-4) var(--space-8) var(--space-8);
    cursor: grab;
}

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

.testimonials-track:active {
    cursor: grabbing;
}

/* Individual glass card */
.testimonial-card {
    flex: 0 0 min(380px, 85vw);
    scroll-snap-align: center;
    background: rgba(255, 251, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.12);
}

/* Giant ambient quote mark */
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    right: 16px;
    font-family: Georgia, serif;
    font-size: 160px;
    color: var(--color-amber-400);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   PRODUCT SPOTLIGHT & BENTO OVERLAY
   ======================================== */

.featured-product-bento {
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bento-overlay-content {
    background: linear-gradient(to top, rgba(35, 18, 11, 0.95) 0%, rgba(35, 18, 11, 0.4) 100%);
    width: 100%;
    padding: 40px;
    color: white;
    transition: transform 0.3s ease;
}

.bento-overlay-content h3,
.bento-overlay-content p {
    color: white !important;
}

.bento-card:hover .bento-overlay-content {
    transform: translateY(-5px);
}

.bento-badge-hot {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.btn-bento-white {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: white;
    color: #23120b;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-bento-white:hover {
    background: var(--color-amber-400);
}

/* Catalog Spotlight */
.product-spotlight-section {
    background: #fdfbf7;
    padding: 80px 0;
    border-bottom: 1px solid rgba(35, 18, 11, 0.05);
    margin-bottom: 0;
}

.spotlight-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.spotlight-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(35, 18, 11, 0.08);
}

.spotlight-tag {
    display: inline-block;
    color: #d97706;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.spotlight-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #23120b;
    line-height: 1.1;
    margin-bottom: 20px;
}

.spotlight-price {
    font-size: 1.75rem;
    color: #d97706;
    margin-left: 15px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    vertical-align: middle;
}

.spotlight-lead {
    font-size: 1.25rem;
    color: #57534e;
    margin-bottom: 32px;
    line-height: 1.6;
}

.spotlight-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #44403c;
    font-size: 1.05rem;
}

.benefit-item svg {
    color: #d97706;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.btn-spotlight-cart {
    background: #23120b;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(35, 18, 11, 0.15);
}

.btn-spotlight-cart:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.25);
}

.btn-spotlight-cart svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .spotlight-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .benefit-item {
        text-align: left;
    }
    .spotlight-info h2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .spotlight-price {
        margin-left: 0;
    }
}

.testimonial-card>* {
    position: relative;
    z-index: 1;
}

/* Gold SVG stars */
.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: var(--text-base);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    flex: 1;
}

/* Footer: name + verified badge */
.testimonial-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.testimonial-author {
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-amber-900);
    font-size: var(--text-base);
}

.verified-badge {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary-dark);
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Arrow navigation (Thumb Zone) */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.08);
}

.allergy-warning {
    width: 100%;
    background-image: url("allergy-bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.allergy-warning::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.04;
    background-image: radial-gradient(var(--color-primary) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
}

.allergy-container {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: var(--space-10) var(--space-12);
    border-radius: var(--radius-xl);
    border-left: 12px solid var(--color-amber-500);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
    color: var(--color-amber-950);
}

.allergy-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--color-amber-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-amber-600);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.allergy-icon svg {
    width: 40px;
    height: 40px;
}

.allergy-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-amber-900);
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.allergy-content p {
    font-size: var(--text-lg);
    color: var(--color-amber-950);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .allergy-warning {
        padding: var(--space-10) var(--space-4);
    }

    .allergy-container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
        padding: var(--space-5) var(--space-4);
        border-left: none;
        border-top: 6px solid var(--color-amber-500);
        margin: 0 auto;
        width: 92%;
        max-width: 400px;
    }

    .allergy-icon {
        width: 50px;
        height: 50px;
    }

    .allergy-icon svg {
        width: 24px;
        height: 24px;
    }

    .allergy-content h3 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-2);
    }

    .allergy-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(100px);
}

.animate-slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-element:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonial-element:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonial-element:nth-child(3) {
    transition-delay: 0.3s;
}

/* ------------------------------------------------------------
   14. ANIMATIONS
   ------------------------------------------------------------ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes float {

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

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

.story-float-card {
    animation: float 3s ease-in-out infinite;
}

/* ------------------------------------------------------------
   15. FORMS
   ------------------------------------------------------------ */

.form-group {
    margin-bottom: var(--space-6);
    text-align: left;
}

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

.form-input {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--text-base);
    background-color: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px var(--color-honey-100);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.field-error {
    display: block;
    margin-top: var(--space-2);
    font-size: var(--text-sm);
    color: #EF4444;
}

/* ------------------------------------------------------------
   16. CONTACT COMPONENTS
   ------------------------------------------------------------ */

.contact-card {
    background-color: var(--color-surface);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-honey-100);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-info-item {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--color-honey-100);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: transform var(--transition-base), background-color var(--transition-fast);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
    background-color: var(--color-amber-200);
}

.contact-info-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-amber-900);
    margin-bottom: var(--space-1);
}

.contact-info-content p {
    color: var(--color-text-light);
    line-height: 1.5;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-white);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ------------------------------------------------------------
   16. RESPONSIVE DESIGN
   ------------------------------------------------------------ */

@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .story-media {
        max-width: 500px;
        margin: 0 auto;
    }

    .story-float-card {
        right: 0;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0;
        overflow-y: auto;
        /* Honeycomb pattern surprise */
        background-image: 
            radial-gradient(circle at center, rgba(251, 191, 36, 0.03) 0%, transparent 70%),
            url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L37.32 10V30L20 40L2.68 30V10L20 0Z' fill='none' stroke='%23fbbf24' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E");
    }

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

    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--space-6) var(--space-8);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 0.5);
    }

    .nav-menu-logo img {
        height: 40px;
        width: auto;
    }

    .nav-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: var(--radius-full);
        background: var(--color-honey-50);
        color: var(--color-amber-900);
        border: none;
        cursor: pointer;
        transition: all 0.2s;
    }

    .nav-menu-close:hover {
        background: var(--color-honey-100);
        transform: rotate(90deg);
    }

    .nav-links-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-6) 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: var(--space-4) var(--space-8);
        font-size: var(--text-lg);
        font-weight: 600;
        color: var(--color-text);
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: all 0.2s;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(to right, var(--color-honey-50), transparent);
        color: var(--color-primary);
        padding-left: calc(var(--space-8) + 8px);
    }

    .nav-link::after {
        display: none;
    }

    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
        padding: var(--space-10) var(--space-8);
        margin-top: auto;
        background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.05));
    }

    .nav-menu-social {
        display: flex;
        gap: var(--space-4);
    }

    .nav-menu-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-lg);
        background: var(--color-white);
        color: var(--color-amber-900);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.2s;
    }

    .nav-menu-social a svg {
        width: 20px;
        height: 20px;
        stroke-width: 2px;
    }

    .nav-menu-social a:hover {
        background: var(--color-primary);
        color: var(--color-white);
        transform: translateY(-3px);
    }

    .nav-menu-copy {
        font-size: var(--text-xs);
        color: var(--color-text-muted);
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }



    .btn {
        width: 100%;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }



    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }

    .footer-brand {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-description {
        max-width: none;
    }

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

@media (max-width: 480px) {
    .logo-title {
        font-size: var(--text-base);
    }

    .logo-subtitle {
        font-size: var(--text-xs);
    }



    .section-title {
        font-size: var(--text-3xl);
    }

    .story-float-card {
        bottom: -16px;
        right: 16px;
    }
}

@media (max-width: 375px) {


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

    .btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
}

@media (min-width: 376px) and (max-width: 639px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ------------------------------------------------------------
   17. ACCESSIBILITY & PREFERENCES
   ------------------------------------------------------------ */

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ------------------------------------------------------------
   18. SCROLLBAR STYLES
   ------------------------------------------------------------ */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-amber-400);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-amber-500);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-amber-400) var(--color-gray-100);
}

/* ------------------------------------------------------------
   FAB BUTTONS
   ------------------------------------------------------------ */

.fab-container {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    display: flex;
    flex-direction: column-reverse;
    gap: var(--space-2);
    z-index: var(--z-sticky);
}

.fab-btn {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-base), background-color var(--transition-fast), box-shadow var(--transition-fast);
    border: none;
    cursor: pointer;
}

.fab-btn i,
.fab-btn svg {
    width: 20px;
    height: 20px;
}

.fab-call {
    background-color: var(--color-primary);
}

.fab-email {
    background-color: var(--color-amber-500);
}

.fab-allergen {
    background-color: #EF4444; /* Alert red */
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ------------------------------------------------------------
   ALLERGEN MODAL
   ------------------------------------------------------------ */

.allergen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: var(--space-4);
}

.allergen-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.allergen-modal {
    width: 100%;
    max-width: 400px;
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-honey-100);
    text-align: center;
}

.allergen-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: var(--space-1);
    transition: color 0.2s;
}

.allergen-close:hover {
    color: var(--color-primary);
}

.allergen-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-amber-900);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.allergen-slider {
    position: relative;
    min-height: 220px;
    margin-bottom: var(--space-6);
}

.allergen-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.allergen-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.allergen-card h3 {
    color: var(--color-primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.allergen-card p {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-text);
}

.allergen-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
}

.allergen-nav {
    background: var(--color-honey-50);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-amber-900);
    cursor: pointer;
    transition: all 0.2s;
}

.allergen-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.allergen-dots {
    display: flex;
    gap: var(--space-2);
}

.allergen-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--color-honey-200);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.allergen-dot.active {
    background: var(--color-primary);
    width: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ------------------------------------------------------------
   19. SELECTION STYLES
   ------------------------------------------------------------ */

::selection {
    background-color: var(--color-amber-300);
    color: var(--color-amber-900);
}

::-moz-selection {
    background-color: var(--color-amber-300);
    color: var(--color-amber-900);
}

/* ------------------------------------------------------------
   20. HEALTH & BENEFITS
   ------------------------------------------------------------ */

.health-hero {
    position: relative;
    padding: var(--space-24) 0 var(--space-16);
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.png') center/cover;
    color: var(--color-white);
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin: var(--space-16) 0;
}

.benefit-card {
    background-color: var(--color-surface);
    padding: var(--space-10) var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--color-primary);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-align: center;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-honey-100);
    color: var(--color-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-amber-900);
    margin-bottom: var(--space-4);
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.expert-statement {
    background: linear-gradient(135deg, var(--color-amber-800), var(--color-amber-900));
    color: var(--color-white);
    padding: var(--space-16) var(--space-12);
    border-radius: var(--radius-2xl);
    margin: var(--space-20) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.expert-statement::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: var(--font-display);
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.expert-statement h2 {
    color: var(--color-amber-300);
    font-family: var(--font-display);
    margin-bottom: var(--space-6);
}

.expert-content {
    font-size: var(--text-xl);
    line-height: 1.8;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto var(--space-8);
}

.expert-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.expert-name {
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--color-amber-200);
}

.expert-title {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    .expert-statement {
        padding: var(--space-10) var(--space-6);
    }
}

/* ------------------------------------------------------------
   21. FEATURE SECTIONS (Alternating)
   ------------------------------------------------------------ */

.feature-section {
    padding: var(--space-20) 0;
    overflow: hidden;
}

.feature-section:nth-child(even) {
    background-color: var(--color-surface);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.feature-media {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-section:hover .feature-media img {
    transform: scale(1.05);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.feature-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background-color: var(--color-honey-100);
    color: var(--color-amber-900);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    width: fit-content;
}

.feature-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--color-amber-900);
    line-height: 1.2;
}

.feature-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-light);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--color-gray-700);
}

.feature-list-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .feature-grid {
        gap: var(--space-10);
    }
    .feature-title {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-section:nth-child(even) .feature-media {
        order: -1;
    }
    .feature-media {
        aspect-ratio: 16/9;
    }
}

/* ------------------------------------------------------------
   22. FEATURED PRODUCTS (Minimal)
   ------------------------------------------------------------ */

.featured-products {
    padding: var(--space-20) 0;
    background-color: var(--color-background);
}

.product-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.product-card-mini {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: var(--space-4);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card-mini .btn-mini {
    margin-top: auto;
}

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

.product-img-mini {
    aspect-ratio: 1;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-name-mini {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-amber-900);
}

.product-price-mini {
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--text-lg);
}

.btn-mini {
    width: 100%;
    padding: var(--space-3);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

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

.btn-mini-primary:hover {
    background-color: var(--color-amber-600);
}

.btn-mini-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

/* ------------------------------------------------------------
   23. PREMIUM HEALTH HERO & WIZARD
   ------------------------------------------------------------ */

.health-hero {
    position: relative;
    padding: var(--space-24) 0;
    background: #331302; /* Deep solid fallback */
    background: linear-gradient(135deg, #451A03 0%, #1a0a01 100%);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.health-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("pcelinjidarovi.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: multiply; /* Better for dark backgrounds */
}

.health-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-honey-100);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-main {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

/* Order Wizard Card */
.order-wizard-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: relative;
}

.wizard-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-4);
}

.wizard-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-amber-900);
    margin-bottom: var(--space-1);
}

.wizard-step-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.wizard-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.wizard-select {
    width: 100%;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    font-size: var(--text-base);
    color: var(--color-amber-950);
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
}

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

.wizard-price-display {
    text-align: center;
    padding: var(--space-4);
    background: var(--color-honey-50);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-primary);
}

.wizard-btn-order {
    background: var(--color-amber-900);
    color: var(--color-white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--text-lg);
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    border: none;
    cursor: pointer;
}

.wizard-btn-order:hover {
    background: #2c1102;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .health-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        text-align: center;
    }
    .hero-content-left {
        align-items: center;
    }
    .order-wizard-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.8rem;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-group .btn {
        width: 100%;
    }
}

/* ------------------------------------------------------------
   24. THE HOLY TRIAD (Premium Section)
   ------------------------------------------------------------ */

.triad-section {
    padding: var(--space-32) 0;
    background: radial-gradient(circle at top, var(--color-honey-50), var(--color-background));
    position: relative;
    overflow: hidden;
}

.triad-section::after {
    content: 'HEALTH';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(69, 26, 3, 0.03);
    z-index: 0;
    pointer-events: none;
}

.triad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 10;
}

.triad-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    box-shadow: var(--shadow-md);
}

.triad-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(69, 26, 3, 0.1);
    border-color: var(--color-primary);
}

.triad-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-2xl);
    background: var(--color-honey-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: transform 0.4s;
    position: relative;
}

.triad-card:hover .triad-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-honey-100);
}

.triad-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 2px dashed var(--color-amber-200);
    opacity: 0.5;
}

.triad-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-amber-900);
    position: relative;
}

.triad-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.triad-text {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .triad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .triad-grid {
        grid-template-columns: 1fr;
    }
    .triad-section {
        padding: var(--space-20) 0;
    }
}

/* ------------------------------------------------------------
   25. GLASSMORPHISM BENEFIT CARDS & MODALS
   ------------------------------------------------------------ */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(69, 26, 3, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-6);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--color-primary);
    opacity: 0.5;
}

.benefit-card.highlight {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 25px 50px rgba(180, 83, 9, 0.15);
}

.benefit-card.highlight::before {
    opacity: 1;
    height: 8px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(69, 26, 3, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.benefit-card.highlight:hover {
    transform: scale(1.08) translateY(-10px);
}

.hex-icon {
    width: 80px;
    height: 80px;
    background: var(--color-honey-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.5);
    position: relative;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-amber-900);
}

.benefit-card p {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: 1.6;
}

.btn-learn-more { color: var(--color-primary);
    margin-top: auto;
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--text-sm);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Modal System */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-4);
}

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

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    width: 100%;
    max-width: 500px;
    padding: var(--space-10);
    position: relative;
    box-shadow: var(--shadow-2xl);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--color-gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--color-gray-200);
}

.modal-header {
    margin-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-4);
}

.modal-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-amber-900);
}

.modal-body {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

.modal-usage-list {
    margin-top: var(--space-4);
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.modal-usage-list li {
    display: flex;
    gap: var(--space-3);
}

.modal-usage-list li::before {
    content: '🍯';
}

/* Comparison Table (Infographic) */
.comparison-wrapper {
    margin-top: var(--space-20);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-xl);
}

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

.comparison-table th {
    text-align: left;
    padding: var(--space-4);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-amber-900);
    border-bottom: 2px solid var(--color-amber-100);
}

.comparison-table td {
    padding: var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--color-gray-100);
    vertical-align: top;
}

.comp-feature {
    font-weight: 700;
    color: var(--color-amber-800);
    width: 30%;
}

.comp-value {
    width: 35%;
}

.comp-value.perga {
    background: var(--color-honey-50);
    font-weight: 600;
}

@media (max-width: 768px) {
    .benefit-card.highlight {
        transform: none;
    }
    .benefit-card.highlight:hover {
        transform: translateY(-10px);
    }
    .comparison-wrapper {
        padding: var(--space-6);
        overflow-x: auto;
    }
    .comparison-table {
        min-width: 600px;
    }
}

/* ------------------------------------------------------------
   14. GLOBAL CART UI (Drawer, Overlay, Items, Buttons)
   ------------------------------------------------------------ */

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: min(420px, 100vw);
    height: 100vh;
    background: var(--color-white);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

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

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

.cart-drawer-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-amber-900);
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.cart-close-btn:hover {
    background: var(--color-gray-100);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cart-empty {
    text-align: center;
    padding: var(--space-16) var(--space-6);
    color: var(--color-text-light);
}

.cart-empty-icon {
    font-size: 56px;
    margin-bottom: var(--space-4);
}

.cart-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    background: var(--color-honey-50);
    border: 1px solid var(--color-honey-100);
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--color-white);
    flex-shrink: 0;
    padding: 4px;
}

.cart-item-emoji {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    color: var(--color-amber-900);
    font-size: var(--text-sm);
}

.cart-item-variant {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

.cart-item-price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--text-sm);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-1);
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.qty-count {
    font-weight: 700;
    font-size: var(--text-sm);
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    border-top: 1px solid var(--color-border);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total-label {
    font-size: var(--text-base);
}

.cart-total-amount {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-amber-900);
}

.cart-shipping-note {
    font-size: var(--text-xs);
    color: #22c55e;
    text-align: center;
    font-weight: 600;
}

.btn-order-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--color-amber-900);
    color: var(--color-white);
    font-size: var(--text-base);
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-order-call:hover {
    background: var(--color-amber-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(69, 26, 3, 0.2);
}

.btn-order-call svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke-width: 2.5px;
}

.btn-clear-cart {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    cursor: pointer;
    text-decoration: underline;
    margin-top: var(--space-2);
    align-self: center;
}

/* Add to Cart Button styles */
.btn-cart {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-cart:hover,
.btn-cart.added {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Health Page Wizard specific overrides */
.order-wizard-card .wizard-btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.order-wizard-card .wizard-btn-order:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.3);
}

/* ========================================
   Premium Info Cards (zdravlje.html)
   ======================================== */
.info-card-premium {
    position: relative;
    border-radius: var(--radius-2xl, 32px);
    padding: var(--space-12, 60px) var(--space-10, 40px);
    overflow: hidden;
    color: var(--color-white, #ffffff);
    margin-bottom: var(--space-10, 40px);
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.3);
}

.info-card-premium .card-tag {
    color: var(--color-amber-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-card-premium .feature-title, 
.info-card-premium h2, 
.info-card-premium h3 {
    color: #ffffff !important;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.info-card-premium .feature-description, 
.info-card-premium p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    max-width: 750px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-card-premium .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.info-card-premium .feature-list-item {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-card-premium .feature-list-item::before {
    content: '•';
    color: var(--color-amber-400);
    font-weight: bold;
}

.info-card-premium .section-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.info-card-premium .btn-add-cart {
    background: var(--color-amber-500) !important;
    color: var(--color-amber-950) !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 180px;
}

.info-card-premium .btn-learn-more.text-link {
    color: var(--color-amber-200) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 1rem 0 !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 180px;
}

.info-card-premium .btn-learn-more.text-link:hover {
    color: var(--color-white) !important;
    border-color: rgba(255,255,255,0.4) !important;
    background: rgba(255,255,255,0.05) !important;
}

@media (max-width: 768px) {
    .info-card-premium {
        padding: var(--space-8) var(--space-6);
        border-radius: var(--radius-xl);
    }
    
    .info-card-premium .section-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-card-premium .section-actions button {
        width: 100%;
    }
}

/* ==========================================================================
   NEW PREMIUM HERO STYLES
   ========================================================================== */
.premium-hero-editorial {
    padding: 80px 0;
    background: #fdfbf7; /* Prefinjena topla organic pozadina */
    overflow: hidden;
}

.hero-editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge-minimal {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b45309;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.hero-title-editorial {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #23120b;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title-editorial .accent {
    color: #d97706;
    font-style: italic;
}

.hero-desc-editorial {
    font-size: 1.15rem;
    color: #57534e;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions-editorial {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn-editorial-primary {
    background: #23120b;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.btn-editorial-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-editorial-link {
    color: #23120b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.btn-editorial-link:hover {
    color: #d97706;
}

/* Image Composition with Overlaps */
.hero-editorial-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f59e0b;
    opacity: 0.08;
    border-radius: 40px;
    transform: rotate(-3deg) scale(0.98);
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 32px;
    z-index: 2;
    box-shadow: 0 30px 60px -15px rgba(35, 18, 11, 0.15);
}

.floating-trust-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(35, 18, 11, 0.08);
    z-index: 3;
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: #fef3c7;
    color: #d97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-trust-card h4 {
    font-size: 1rem;
    color: #23120b;
    margin: 0 0 2px 0;
}

.floating-trust-card p {
    font-size: 0.85rem;
    color: #78716c;
    margin: 0;
}

/* ==========================================================================
   NEW NUMBERED STEPS STYLES (TIMELINE REPLACEMENT)
   ========================================================================== */
.editorial-steps-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-header-minimal {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge-minimal {
    font-size: 0.9rem;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title-editorial {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #23120b;
    margin-top: 8px;
}

.steps-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-editorial-card {
    position: relative;
    padding: 40px 30px;
    background: #fdfbf7;
    border-radius: 24px;
    border: 1px solid rgba(35, 18, 11, 0.03);
    transition: transform 0.3s;
}

.step-editorial-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(217, 119, 6, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.step-editorial-card h3 {
    font-size: 1.3rem;
    color: #23120b;
    margin-bottom: 12px;
}

.step-editorial-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   NEW BENTO SHOWCASE STYLES
   ========================================================================== */
.brand-bento-section {
    padding: 60px 0 100px 0;
    background: #ffffff;
}

.bento-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: repeat(2, minmax(200px, auto));
    gap: 24px;
}

.bento-card {
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: box-shadow 0.3s;
}

.bento-card-large {
    grid-row: span 2;
}

/* Bento Variants */
.bg-warm { background: #fefaf2; border: 1px solid rgba(217, 119, 6, 0.08); }
.bg-soft-amber { background: #fef3c7; }
.border-subtle { border: 1px solid rgba(35, 18, 11, 0.08); background: #ffffff; }

.bento-tag {
    font-size: 0.8rem;
    background: #f59e0b;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 20px;
}

.bento-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #23120b;
    margin-bottom: 16px;
}

.bento-card p {
    color: #57534e;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 24px;
}

.bento-link {
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bento-link:hover {
    text-decoration: underline;
}

/* Center Content Bento Card */
.bento-content-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bento-icon-box {
    width: 48px;
    height: 48px;
    color: #d97706;
    margin-bottom: 16px;
}

.bento-icon-box svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   RESPONSIVE FIXES (Kraj "antigravity" problemima)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-editorial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-desc-editorial {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions-editorial {
        justify-content: center;
    }
    .hero-main-img {
        height: 400px;
    }
    .floating-trust-card {
        left: 20px;
        bottom: -20px;
    }
    .steps-editorial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bento-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .bento-card-large {
        grid-row: auto;
    }
}
/* ==========================================================================
   TIMELINE CARDS BACKGROUND IMAGES
   ========================================================================== */
.step-card-bg-1, .step-card-bg-2, .step-card-bg-3 {
    background-size: cover;
    background-position: center;
    border: none;
    overflow: hidden;
    color: #ffffff;
}

.step-card-bg-1::before, .step-card-bg-2::before, .step-card-bg-3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(35, 18, 11, 0.6), rgba(35, 18, 11, 0.85));
    z-index: 1;
    border-radius: inherit;
    transition: background 0.3s;
}

.step-editorial-card:hover.step-card-bg-1::before, 
.step-editorial-card:hover.step-card-bg-2::before, 
.step-editorial-card:hover.step-card-bg-3::before {
    background: linear-gradient(to bottom, rgba(35, 18, 11, 0.4), rgba(35, 18, 11, 0.7));
}

.step-card-bg-1 .step-number, .step-card-bg-2 .step-number, .step-card-bg-3 .step-number,
.step-card-bg-1 h3, .step-card-bg-2 h3, .step-card-bg-3 h3,
.step-card-bg-1 p, .step-card-bg-2 p, .step-card-bg-3 p {
    position: relative;
    z-index: 2;
}

.step-card-bg-1 h3, .step-card-bg-2 h3, .step-card-bg-3 h3 {
    color: #ffffff !important;
}

.step-card-bg-1 p, .step-card-bg-2 p, .step-card-bg-3 p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.step-card-bg-1 .step-number, .step-card-bg-2 .step-number, .step-card-bg-3 .step-number {
    color: rgba(255, 255, 255, 0.25) !important;
}

.step-card-bg-1 {
    background-image: url('images/pcelinjak.jpg');
}

.step-card-bg-2 {
    background-image: url('images/livadski-med.jpg');
}

.step-card-bg-3 {
    background-image: url('images/bagremov-med.jpg');
}
