/* ===================================
   ZIELONE DELIKATESY - COMPLETE WEBSITE
   Design System & Global Styles
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --green-primary: #4CAF50;
    --green-dark: #2E7D32;
    --green-light: #81C784;
    --green-pale: #C8E6C9;
    --green-bg: #E8F5E9;
    --orange: #FF9800;
    --orange-dark: #F57C00;
    --brown: #5D4037;
    --brown-light: #8D6E63;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F5F5DC;
    --beige: #FFF8E1;
    --gray-light: #F5F5F5;
    --gray: #9E9E9E;
    --gray-dark: #616161;
    --text-dark: #333333;
    --text-light: #666666;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 80px;
    --container-width: 1200px;
    --header-height: 80px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height)
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden
}

html {
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast)
}

ul {
    list-style: none
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 10000;
    font-weight: 600
}

.skip-link:focus {
    top: 0
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark)
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--orange));
    margin: 16px auto 0;
    border-radius: 2px
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    min-height: 48px
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5)
}

.btn-secondary {
    background: var(--white);
    color: var(--green-dark);
    border: 2px solid var(--green-primary)
}

.btn-secondary:hover {
    background: var(--green-pale);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-primary);
    padding: 12px 24px
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white)
}

.btn-cta-large {
    padding: 18px 36px;
    font-size: 1.15rem;
    border-radius: var(--radius-lg);
    gap: 10px
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: var(--header-height)
}

.navbar.scrolled {
    box-shadow: var(--shadow-md)
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%
}

.nav-logo img {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-link {
    padding: 10px 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    white-space: nowrap
}

.nav-link:hover,
.nav-link:focus {
    color: var(--green-primary);
    background: var(--green-pale)
}

.nav-link.active {
    color: var(--green-primary);
    font-weight: 600
}

.nav-social-item {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.nav-social-link {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1877F2;
    background: rgba(24, 119, 242, 0.12);
    border: 1px solid rgba(24, 119, 242, 0.2);
    border-radius: 999px
}

.nav-social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor
}

.nav-social-link:hover,
.nav-social-link:focus {
    color: var(--white);
    background: #1877F2
}

.nav-social-link:focus-visible {
    outline: 2px solid var(--green-light);
    outline-offset: 2px
}

.nav-cta {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    margin-left: 8px;
    border-radius: var(--radius-md)
}

.nav-cta:hover,
.nav-cta:focus {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: var(--white)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-fast)
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--green-pale) 100%);
    overflow: hidden;
    padding-top: var(--header-height)
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

/* Floating Leaves */
.leaf {
    position: absolute;
    width: var(--leaf-size, 60px);
    height: var(--leaf-size, 60px);
    border-radius: 0 70% 0 70%;
    opacity: 0;
    animation: floatLeaf var(--leaf-duration, 20s) linear infinite;
    animation-delay: var(--leaf-delay, 0s);
    pointer-events: none;
    z-index: 1
}

.leaf-solid {
    border: none
}

.leaf-outline {
    background: transparent !important;
    border: 2px solid var(--leaf-color, #81C784)
}

/* Leaf variants - moved from inline styles */
.leaf-1 {
    --leaf-size: 90px;
    --leaf-opacity: 0.2;
    --leaf-duration: 24s;
    --leaf-delay: -2s;
    --leaf-drift: 40px;
    left: 5%;
    background: #C8E6C9
}

.leaf-2 {
    --leaf-size: 55px;
    --leaf-opacity: 0.3;
    --leaf-duration: 18s;
    --leaf-delay: -5s;
    --leaf-drift: -25px;
    left: 85%;
    background: #A5D6A7
}

.leaf-3 {
    --leaf-size: 75px;
    --leaf-opacity: 0.2;
    --leaf-duration: 26s;
    --leaf-delay: -8s;
    --leaf-drift: 35px;
    left: 20%;
    --leaf-color: #81C784
}

.leaf-4 {
    --leaf-size: 110px;
    --leaf-opacity: 0.15;
    --leaf-duration: 30s;
    --leaf-delay: -1s;
    --leaf-drift: -50px;
    left: 70%;
    --leaf-color: #A5D6A7
}

.leaf-5 {
    --leaf-size: 45px;
    --leaf-opacity: 0.35;
    --leaf-duration: 16s;
    --leaf-delay: -12s;
    --leaf-drift: 20px;
    left: 2%;
    background: #E8F5E9
}

.leaf-6 {
    --leaf-size: 80px;
    --leaf-opacity: 0.2;
    --leaf-duration: 22s;
    --leaf-delay: -15s;
    --leaf-drift: -30px;
    left: 92%;
    background: #C8E6C9
}

.leaf-7 {
    --leaf-size: 65px;
    --leaf-opacity: 0.25;
    --leaf-duration: 20s;
    --leaf-delay: -4s;
    --leaf-drift: 45px;
    left: 45%;
    --leaf-color: #66BB6A
}

.leaf-8 {
    --leaf-size: 85px;
    --leaf-opacity: 0.2;
    --leaf-duration: 28s;
    --leaf-delay: -9s;
    --leaf-drift: -35px;
    left: 60%;
    background: #DCEDC8
}

.leaf-9 {
    --leaf-size: 100px;
    --leaf-opacity: 0.15;
    --leaf-duration: 32s;
    --leaf-delay: -18s;
    --leaf-drift: 55px;
    left: 15%;
    --leaf-color: #81C784
}

.leaf-10 {
    --leaf-size: 50px;
    --leaf-opacity: 0.3;
    --leaf-duration: 17s;
    --leaf-delay: -6s;
    --leaf-drift: -15px;
    left: 35%;
    background: #A5D6A7
}

.leaf-11 {
    --leaf-size: 70px;
    --leaf-opacity: 0.2;
    --leaf-duration: 25s;
    --leaf-delay: -11s;
    --leaf-drift: 30px;
    left: 78%;
    --leaf-color: #AED581
}

.leaf-12 {
    --leaf-size: 60px;
    --leaf-opacity: 0.25;
    --leaf-duration: 19s;
    --leaf-delay: -3s;
    --leaf-drift: -40px;
    left: 50%;
    background: #C8E6C9
}

.leaf-13 {
    --leaf-size: 95px;
    --leaf-opacity: 0.12;
    --leaf-duration: 35s;
    --leaf-delay: -14s;
    --leaf-drift: 25px;
    left: 8%;
    --leaf-color: #A5D6A7
}

.leaf-14 {
    --leaf-size: 40px;
    --leaf-opacity: 0.3;
    --leaf-duration: 15s;
    --leaf-delay: -20s;
    --leaf-drift: -20px;
    left: 88%;
    background: #E8F5E9
}

.leaf-15 {
    --leaf-size: 55px;
    --leaf-opacity: 0.2;
    --leaf-duration: 21s;
    --leaf-delay: -7s;
    --leaf-drift: 35px;
    left: 30%;
    --leaf-color: #81C784
}

.leaf-16 {
    --leaf-size: 70px;
    --leaf-opacity: 0.18;
    --leaf-duration: 27s;
    --leaf-delay: -16s;
    --leaf-drift: -45px;
    left: 65%;
    background: #DCEDC8
}

.leaf-17 {
    --leaf-size: 60px;
    --leaf-opacity: 0.2;
    --leaf-duration: 24s;
    --leaf-delay: -10s;
    --leaf-drift: 28px;
    left: 12%;
    --leaf-color: #9CCC65
}

.leaf-18 {
    --leaf-size: 48px;
    --leaf-opacity: 0.22;
    --leaf-duration: 19s;
    --leaf-delay: -13s;
    --leaf-drift: -26px;
    left: 74%;
    background: #B2DF8A
}

.leaf-19 {
    --leaf-size: 78px;
    --leaf-opacity: 0.14;
    --leaf-duration: 31s;
    --leaf-delay: -5s;
    --leaf-drift: 42px;
    left: 40%;
    --leaf-color: #AED581
}

.leaf-20 {
    --leaf-size: 52px;
    --leaf-opacity: 0.2;
    --leaf-duration: 23s;
    --leaf-delay: -17s;
    --leaf-drift: -18px;
    left: 82%;
    background: #C5E1A5
}

@keyframes floatLeaf {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.7);
        opacity: 0
    }

    5% {
        opacity: var(--leaf-opacity, 0.25)
    }

    50% {
        transform: translateY(50vh) translateX(var(--leaf-drift, 30px)) rotate(180deg) scale(0.9)
    }

    90% {
        opacity: var(--leaf-opacity, 0.25)
    }

    100% {
        transform: translateY(-10vh) translateX(calc(var(--leaf-drift, 30px) * -1)) rotate(360deg) scale(1);
        opacity: 0
    }
}

@media(prefers-reduced-motion:reduce) {
    .leaf {
        animation: none;
        opacity: var(--leaf-opacity, 0.15)
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    max-width: 700px
}

.hero-quote {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6
}

.hero-author {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 24px
}

.hero-logo-container {
    margin-bottom: 24px;
    display: flex;
    justify-content: center
}

.hero-logo-img {
    max-width: 500px;
    width: 85%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(93, 64, 55, 0.15));
    animation: fadeInDown 1s ease-out
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--brown);
    margin-bottom: 14px
}

.hero-description {
    max-width: 720px;
    margin: 0 auto 28px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem
}

.scroll-indicator {
    width: 24px;
    height: 36px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    margin: 6px auto 0;
    position: relative
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 6px;
        opacity: 1
    }

    50% {
        top: 18px;
        opacity: 0.3
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white)
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.about-text .section-title {
    text-align: left
}

.about-text .section-title::after {
    margin: 16px 0 0
}

.about-lead {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-dark)
}

.about-text p {
    margin-bottom: 14px;
    color: var(--text-light)
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--gray-light);
    border: 1px solid rgba(76, 175, 80, 0.08);
    border-radius: var(--radius-md);
    cursor: default;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast)
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform var(--transition-fast)
}

.feature:hover .feature-icon {
    transform: translateY(-1px)
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500
}

.about-image {
    position: relative
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg)
}

.about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--green-primary);
    border-radius: var(--radius-lg);
    z-index: -1
}

.leaf-divider {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: -8px;
    margin-bottom: -14px;
    pointer-events: none
}

.divider-leaf {
    width: 26px;
    height: 26px;
    border-radius: 0 70% 0 70%;
    transform: rotate(-10deg);
    background: rgba(129, 199, 132, 0.4)
}

.divider-leaf-2 {
    transform: rotate(8deg);
    background: rgba(174, 213, 129, 0.45)
}

.divider-leaf-3 {
    transform: rotate(-16deg);
    background: rgba(165, 214, 167, 0.45)
}

.divider-leaf-4 {
    transform: rotate(14deg);
    background: rgba(129, 199, 132, 0.35)
}

/* ===== Products / Category Grid ===== */
.products,
.categories {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%)
}

.products-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px
}

.product-card,
.category-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04)
}

.product-card:hover,
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-pale)
}

.product-icon,
.category-icon {
    font-size: 2.5rem;
    margin-bottom: 12px
}

.product-card h3,
.category-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark)
}

.product-card p,
.category-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5
}

.category-card {
    text-decoration: none;
    display: block;
    cursor: pointer
}

.advice-teaser {
    padding: 44px 0 28px;
    background: linear-gradient(180deg, rgba(232, 245, 233, 0.7) 0%, rgba(232, 245, 233, 0.5) 100%);
    text-align: center
}

.advice-teaser-inner {
    max-width: 900px;
    margin: 0 auto
}

.advice-teaser-inner h2 {
    margin-bottom: 12px;
    color: var(--green-dark)
}

.advice-teaser-inner p {
    color: var(--text-light);
    margin-bottom: 22px;
    font-size: 1.2rem
}

.category-card .card-arrow {
    color: var(--green-primary);
    font-weight: 600;
    margin-top: 12px;
    display: inline-block;
    transition: var(--transition-fast)
}

.category-card:hover .card-arrow {
    transform: translateX(4px)
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    text-align: center;
    color: var(--white)
}

.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 1.05rem
}

.cta-banner .btn {
    background: var(--white);
    color: var(--green-dark);
    font-weight: 600
}

.cta-banner .btn:hover {
    background: var(--beige);
    transform: translateY(-2px)
}

/* ===== Delivery Schedule ===== */
.schedule {
    padding: var(--section-padding) 0;
    background: var(--white)
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap
}

.schedule-tab {
    padding: 12px 24px;
    border: 2px solid var(--green-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    background: var(--white);
    color: var(--green-dark);
    transition: var(--transition-fast);
    font-family: var(--font-heading);
    min-height: 48px
}

.schedule-tab.active,
.schedule-tab:hover {
    background: var(--green-primary);
    color: var(--white)
}

.schedule-week {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.schedule-day {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent
}

.schedule-day.today {
    border-color: var(--green-primary);
    background: var(--green-bg);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.15)
}

.schedule-day.today .day-name {
    color: var(--green-dark)
}

.schedule-day.today::before {
    content: '📍 Dziś!';
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 8px
}

.day-name {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: var(--font-heading)
}

.day-items {
    list-style: none
}

.day-items li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.day-items li:last-child {
    border-bottom: none
}

.day-items .item-icon {
    margin-right: 6px
}

.schedule-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px
}

.schedule-product {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.schedule-product .product-emoji {
    font-size: 1.8rem;
    flex-shrink: 0
}

.schedule-product h4 {
    font-size: 0.95rem;
    margin-bottom: 4px
}

.schedule-product .product-days {
    font-size: 0.85rem;
    color: var(--green-dark);
    font-weight: 500
}

.schedule-notice {
    background: var(--beige);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--brown);
    line-height: 1.6;
    border-left: 4px solid var(--orange)
}

.schedule-view {
    display: none
}

.schedule-view.active {
    display: block
}

/* ===== Reviews ===== */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--gray-light)
}

.reviews-row {
    margin-bottom: 40px
}

.reviews-row:last-child {
    margin-bottom: 0
}

.reviews-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px
}

.reviews-row-header h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark)
}

.reviews-platform-icon {
    width: 28px;
    height: 28px
}

.reviews-row-links {
    display: flex;
    align-items: center;
    gap: 16px
}

.reviews-row-links a {
    color: var(--green-primary);
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.95rem
}

.reviews-row-links a.btn {
    text-decoration: none
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem
}

.reviews-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory
}

@supports (scrollbar-width: thin) {
    .reviews-scroll {
        scrollbar-width: thin;
        scrollbar-color: var(--green-primary) var(--gray-light)
    }
}

.reviews-scroll::-webkit-scrollbar {
    height: 8px
}

.reviews-scroll::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px
}

.reviews-scroll::-webkit-scrollbar-thumb {
    background: var(--green-primary);
    border-radius: 4px
}

.review-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start
}

.review-stars {
    color: #FFC107;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem
}

.trust-badge a:hover {
    color: var(--green-dark)
}

/* ===== Gallery ===== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--white)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.gallery-item:hover img {
    transform: scale(1.05)
}

/* ===== Contact ===== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-light)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.contact-info {
    display: grid;
    gap: 16px
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm)
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem
}

.contact-card a {
    color: var(--green-primary);
    font-weight: 500
}

.contact-card a:hover {
    color: var(--green-dark);
    text-decoration: underline
}

.contact-coffee {
    background: var(--beige);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.95rem
}

/* Map placeholder */
.map-placeholder {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed var(--gray)
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 0.95rem
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--radius-md)
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark)
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--text-dark);
    min-height: 48px
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15)
}

.form-group textarea {
    min-height: 140px;
    resize: vertical
}

.form-hidden {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
    visibility: hidden
}

.form-submit {
    margin-top: 8px
}

/* ===== Newsletter ===== */
.newsletter {
    padding: 48px 0;
    background: var(--green-bg);
    text-align: center
}

.newsletter h2 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    margin-bottom: 8px
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.95rem
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 240px;
    padding: 14px 16px;
    border: 2px solid var(--green-light);
    border-radius: var(--radius-md);
    font-size: 1rem
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--green-primary);
    outline: none
}

.newsletter-form .btn {
    flex-shrink: 0
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    white-space: nowrap;
    max-width: 100%
}

.store-button-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: block;
    object-fit: contain
}

.store-button span {
    display: block;
    line-height: 1
}

.bioappka-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
    align-items: center
}


/* ===== Category Card Thumbnails ===== */
.category-icon {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.category-card:hover .category-icon img {
    transform: scale(1.08)
}

/* ===== Category Page ===== */
.breadcrumb {
    padding: 100px 0 16px;
    background: var(--gray-light)
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    flex-wrap: wrap
}

.breadcrumb-list a {
    color: var(--green-primary)
}

.breadcrumb-list a:hover {
    text-decoration: underline
}

.breadcrumb-list .separator {
    color: var(--gray)
}

.breadcrumb-list .current {
    color: var(--text-light)
}

/* Keep breadcrumb markup for SEO, but hide it on all subpages. */
.breadcrumb,
.breadcrumb-list {
    display: none !important
}

.breadcrumb + section {
    padding-top: calc(var(--header-height) + 32px)
}

.category-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--header-height) + 20px) 20px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden
}

.category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1
}

.category-hero .container {
    position: relative;
    z-index: 2;
    text-align: center
}

.category-hero .breadcrumb-list {
    display: none
}

.category-hero .breadcrumb-list a {
    color: rgba(255, 255, 255, 0.8)
}

.category-hero .breadcrumb-list a:hover {
    color: var(--white)
}

.category-hero .breadcrumb-list .separator {
    color: rgba(255, 255, 255, 0.5)
}

.category-hero .breadcrumb-list .current {
    color: rgba(255, 255, 255, 0.9)
}

.category-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4)
}

.category-description {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px
}

.category-hero .category-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3)
}

@media (max-width: 768px) {
    .category-hero {
        min-height: 50vh;
        padding: calc(var(--header-height) + 16px) 16px 40px
    }

    .category-hero h1 {
        font-size: clamp(1.5rem, 6vw, 2.2rem)
    }

    .category-hero .category-description p {
        font-size: 1rem
    }
}

.category-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px
}

.category-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px
}

.category-offer {
    padding: var(--section-padding) 0;
    background: var(--white)
}

.category-offer h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center
}

.offer-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none
}

.offer-list li {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px
}

.offer-list li::before {
    content: '✓';
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1.1rem
}


/* ===== Category Article Section ===== */
.category-article {
    padding: var(--section-padding) 0;
    background: var(--gray-light)
}

.category-article .container {
    max-width: 800px
}

.article-content {
    line-height: 1.8
}

.article-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px
}

.article-content h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin: 32px 0 16px;
    font-family: var(--font-heading)
}

.article-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px
}

.article-content ul li {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px
}

.article-content ul li::before {
    content: '✓';
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0
}

.article-content ul li:last-child {
    border-bottom: none
}

/* ===== Category Prev / Next Navigation ===== */
.category-nav {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch
}

.category-nav--next-only {
    justify-content: flex-end
}

.category-nav-card {
    flex: 1 1 0;
    max-width: 340px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast)
}

.category-nav-card:hover,
.category-nav-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.category-nav-card:focus-visible {
    outline: 2px solid var(--green-light);
    outline-offset: 3px
}

.category-nav-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-light)
}

.category-nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal)
}

.category-nav-card:hover .category-nav-thumb img,
.category-nav-card:focus-visible .category-nav-thumb img {
    transform: scale(1.03)
}

.category-nav-copy {
    display: grid;
    gap: 6px;
    padding: 14px 16px 18px
}

.category-nav-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-dark)
}

.category-nav-copy strong {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-dark)
}

/* ===== FAQ Accordion ===== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--gray-light)
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    min-height: 48px;
    transition: var(--transition-fast)
}

.faq-question:hover {
    background: var(--green-bg)
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-primary);
    transition: var(--transition-fast);
    flex-shrink: 0
}

.faq-question[aria-expanded="true"]::after {
    content: '−'
}

.faq-question[aria-expanded="true"] {
    background: var(--green-bg);
    color: var(--green-dark)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7
}

/* ===== Global CTA Section ===== */
.global-cta {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center
}

.global-cta h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 12px
}

.global-cta p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1rem
}

.global-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* ===== Thank You Page ===== */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--header-height) 20px 40px
}

.thank-you-content {
    max-width: 500px
}

.thank-you .icon {
    font-size: 4rem;
    margin-bottom: 20px
}

.thank-you h1 {
    font-size: 2rem;
    margin-bottom: 12px
}

.thank-you p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem
}

/* ===== 404 Page ===== */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--header-height) 20px 40px
}

.page-404 .error-code {
    font-size: 6rem;
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1
}

.page-404 h1 {
    font-size: 1.75rem;
    margin: 16px 0 12px
}

.page-404 p {
    color: var(--text-light);
    margin-bottom: 24px
}

/* ===== Legal Pages ===== */
.legal {
    padding: 120px 0 var(--section-padding);
    background: var(--white)
}

.legal .container {
    max-width: 800px
}

.legal h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 32px;
    text-align: center
}

.legal h2 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
    color: var(--green-dark)
}

.legal h3 {
    font-size: 1.1rem;
    margin: 20px 0 8px
}

.legal p,
.legal li {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 0.95rem
}

.legal ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px
}

.legal a {
    color: var(--green-primary)
}

.legal a:hover {
    text-decoration: underline
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0 0
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px
}

.footer-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-bottom: 12px
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 6px
}

.footer-brand a {
    color: rgba(255, 255, 255, 0.8)
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px
}

.footer-links a {
    display: block;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast)
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px)
}

.footer-social .social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 16px
}

.footer-social>p a {
    color: rgba(255, 255, 255, 0.7)
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast)
}

.social-link:hover {
    background: var(--green-primary)
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast)
}

.footer-bottom a:hover {
    color: var(--white)
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5)
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.7)
}

.cookie-settings-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
    transition: var(--transition-fast)
}

.cookie-settings-btn:hover {
    color: var(--white)
}

/* Utility classes (moved from inline styles) */
.section-first {
    padding-top: 32px
}

.contact-form-box {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px
}

.contact-form-box h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: var(--font-heading)
}

.form-submit-full {
    width: 100%
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--green-primary)
}

.cookie-banner.visible {
    transform: translateY(0)
}

.cookie-banner-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5
}

.cookie-banner-text a {
    color: var(--green-primary);
    text-decoration: underline
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid var(--green-primary);
    min-height: 44px;
    font-family: var(--font-body);
    transition: var(--transition-fast)
}

.cookie-btn-accept {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary)
}

.cookie-btn-accept:hover {
    background: var(--green-dark)
}

.cookie-btn-reject {
    background: var(--white);
    color: var(--green-dark)
}

.cookie-btn-reject:hover {
    background: var(--gray-light)
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 900
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    background: var(--green-dark);
    transform: translateY(-4px)
}

/* ===== Bioappka Section ===== */
.bioappka {
    padding: var(--section-padding) 0;
    background: var(--beige)
}

.bioappka-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center
}

.bioappka-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 300px
}

.bioappka-lead {
    font-size: 1.1rem;
    margin-bottom: 16px
}

.bioappka-features {
    margin: 16px 0
}

.bioappka-features li {
    padding: 6px 0;
    font-size: 0.95rem
}

.bioappka-page .bioappka {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.9), rgba(232, 245, 233, 0.95))
}

.bioappka-page .bioappka-content {
    align-items: center
}

.bioappka-page .bioappka-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px
}

.bioappka-page .bioappka-text p {
    color: var(--text-light)
}

.bioappka-page .bioappka-logo {
    width: min(100%, 363px);
    margin: 0 auto
}

.bioappka-page .bioappka-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
}

.bioappka-page .bioappka-cards .contact-card {
    height: 100%;
    text-align: center
}

.bioappka-page .bioappka-cards .contact-card p {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600
}

.bioappka-download {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center
}

.bioappka-download-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center
}

.bioappka-download .bioappka-buttons,
.bioappka .bioappka-buttons {
    justify-content: center;
    align-items: center
}

.bioappka-practical {
    padding: 0 0 var(--section-padding);
    background: var(--white)
}

.bioappka-note {
    max-width: 760px;
    margin: 0 auto;
    background: var(--gray-light);
    border-left: 4px solid var(--green-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px
}

.bioappka-note p {
    margin: 0;
    color: var(--text-light)
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== Delivery Banner (homepage) ===== */
.delivery-banner {
    padding: 40px 0;
    background: var(--beige);
    text-align: center
}

.delivery-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.delivery-banner h2 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    color: var(--brown)
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .about-text {
        padding-right: 0
    }

    .about-text .section-title {
        text-align: center
    }

    .about-text .section-title::after {
        margin: 16px auto 0
    }

    .about-image::before {
        display: none
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-content {
        grid-template-columns: 1fr 1fr
    }

    .schedule-week {
        grid-template-columns: repeat(3, 1fr)
    }

    .bioappka-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .bioappka-image img {
        margin: 0 auto
    }
}

@media(max-width:768px) {
    :root {
        --section-padding: 60px;
        --header-height: 70px
    }

    /* --- Mobile Header --- */
    .nav-toggle {
        display: flex
    }

    .nav-container {
        padding: 0 16px
    }

    .nav-logo img {
        height: 48px
    }

    /* --- Mobile Menu: Full-Width Overlay --- */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px 40px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        gap: 4px;
        z-index: 999
    }

    .nav-menu.open {
        transform: translateX(0)
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1.125rem;
        min-height: 48px;
        border-radius: var(--radius-sm);
        text-align: left;
        display: flex;
        align-items: center
    }

    .nav-link:hover,
    .nav-link:focus {
        background: var(--green-bg)
    }

    .nav-cta {
        margin: 16px 0 0;
        text-align: center;
        width: 100%;
        justify-content: center;
        min-height: 52px;
        font-size: 1.125rem
    }

    .nav-social-item {
        justify-content: flex-start;
        margin-top: 12px;
        padding: 0 20px
    }

    .nav-social-link {
        width: 80px;
        height: 80px
    }

    .nav-social-link svg {
        width: 40px;
        height: 40px
    }

    /* --- Hero Mobile --- */
    .hero {
        padding-top: var(--header-height)
    }

    .hero-logo-img {
        max-width: 320px;
        width: 80%
    }

    /* --- Grids Mobile --- */
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 14px
    }

    .schedule-week {
        grid-template-columns: 1fr
    }

    .schedule-product-list {
        grid-template-columns: 1fr
    }

    .about-features {
        grid-template-columns: 1fr
    }

    .category-nav {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 28px
    }

    .category-nav--next-only {
        justify-content: flex-start
    }

    .category-nav-card {
        max-width: none
    }

    .reviews-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px
    }

    .leaf-divider {
        gap: 14px;
        margin-bottom: -8px
    }

    .advice-teaser-card {
        padding: 22px
    }

    /* --- Footer Mobile --- */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center
    }

    .footer-links a {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .footer-social .social-links {
        justify-content: center
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px
    }

    .footer-legal {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 8px
    }

    .footer-legal a,
    .cookie-settings-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 8px 4px
    }

    /* --- Back-to-top Mobile --- */
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 16px;
        right: 16px;
        font-size: 1rem
    }

    /* --- Contact Mobile --- */
    .contact-grid {
        gap: 24px
    }

    /* --- Bioappka Mobile --- */
    .bioappka-page .bioappka-cards {
        grid-template-columns: 1fr
    }

    .bioappka-page .bioappka-buttons {
        flex-direction: column;
        align-items: stretch
    }

    .bioappka-page .bioappka-buttons .btn {
        width: 100%
    }

    /* --- Cookie Banner Mobile --- */
    .cookie-banner-content {
        flex-direction: column;
        text-align: center
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px
    }

    /* --- Hero Buttons Mobile --- */
    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px
    }

    .breadcrumb {
        padding: 90px 0 12px
    }

    /* --- Typography Mobile --- */
    h1, h2, h3, h4, h5, h6 {
        overflow-wrap: break-word;
        word-wrap: break-word
    }

    /* --- O nas About Points Mobile --- */
    .about-points {
        padding-left: 0;
        margin: 30px 0
    }

    .about-point {
        flex-direction: column;
        padding: 20px;
        gap: 12px
    }

    .about-point-icon {
        font-size: 1.5rem
    }

    .about-point-content {
        padding-left: 0
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    .hero-quote {
        font-size: 1rem
    }

    .hero-logo-img {
        max-width: 260px
    }

    .leaf-divider {
        gap: 10px
    }

    .divider-leaf {
        width: 20px;
        height: 20px
    }

    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .product-card,
    .category-card {
        padding: 20px 14px
    }

    .product-icon,
    .category-icon {
        font-size: 2rem
    }

    .product-card h3,
    .category-card h3 {
        font-size: 0.95rem
    }

    .schedule-tab {
        padding: 10px 16px;
        font-size: 0.9rem
    }

    .global-cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .global-cta-buttons .btn {
        width: 100%;
        max-width: 300px
    }

    /* Small mobile menu adjustments */
    .nav-menu {
        padding: 20px 16px 40px
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1.05rem
    }

    /* Review cards */
    .review-card {
        min-width: 280px;
        max-width: 280px
    }

    /* Footer small mobile */
    .footer {
        padding: 36px 0 0
    }

    .footer-content {
        gap: 24px
    }
}

/* Body scroll lock for mobile menu */
body.menu-open {
    overflow: hidden
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal)
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible
}

.about-cta {
    margin-top: 30px;
}

/* ===== O nas About Points ===== */
.about-points {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(76, 175, 80, 0.08);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast)
}

.about-point:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.about-point-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px
}

.about-point-content {
    flex: 1;
    min-width: 0
}

.about-point-content strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4
}

.about-point-content span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6
}

/* ===== O nas Page Styles ===== */
.onas-section {
    padding-top: 40px
}

.onas-content {
    max-width: 900px;
    margin: 0 auto
}

.onas-header {
    text-align: center;
    margin-bottom: 50px
}

.onas-subtitle {
    font-size: 1.2rem
}

.onas-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--green-dark);
    margin-bottom: 40px;
    text-align: center;
    border-left: 4px solid var(--green-primary);
    padding: 15px 20px;
    background: var(--gray-light);
    border-radius: var(--radius-sm)
}

.onas-h2 {
    margin-top: 40px;
    color: var(--green-dark);
    font-size: 1.8rem;
    margin-bottom: 20px
}

.onas-image-wrap {
    margin: 40px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.onas-image-wrap img {
    width: 100%;
    height: auto;
    display: block
}

.onas-closing {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-top: 30px;
    text-align: center
}

.onas-cta-section {
    margin-top: 80px
}
