/* ======================================= */
/* === CSS VARIABLES & RESET           === */
/* ======================================= */
:root {
    --primary:        #6C44FC;
    --primary-dark:   #4E2BC4;
    --primary-light:  #8B6AFD;
    --accent:         #C5A9FF;
    --light-bg:       #F6F3FF;
    --surface:        #ffffff;
    --text:           #1A1625;
    --text-muted:     #6B6480;
    --text-light:     #9B92B8;
    --border:         #E8E2FF;
    --shadow-sm:      0 2px 8px rgba(108, 68, 252, 0.12);
    --shadow-md:      0 6px 24px rgba(108, 68, 252, 0.18);
    --shadow-lg:      0 12px 40px rgba(108, 68, 252, 0.22);
    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      24px;
    --radius-full:    999px;
    --transition:     0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display:   'Sora', sans-serif;
    --font-body:      'DM Sans', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    background-color: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ======================================= */
/* === TYPOGRAPHY                      === */
/* ======================================= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

/* ======================================= */
/* === LAYOUT                          === */
/* ======================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================================= */
/* === PRELOADER                       === */
/* ======================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    height: 64px;
    width: auto;
    animation: pulse-logo 1.2s ease-out forwards;
}

@keyframes pulse-logo {
    0%   { transform: scale(0.85); opacity: 0; }
    50%  { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1);    opacity: 1; }
}

.preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: var(--radius-full);
    animation: fill-bar 1.1s ease forwards;
}

@keyframes fill-bar {
    0%   { width: 0%; }
    100% { width: 100%; }
}

/* ======================================= */
/* === HEADER                          === */
/* ======================================= */
#site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 1px 0 rgba(255,255,255,0.1), 0 4px 24px rgba(78, 43, 196, 0.25);
    transition: background var(--transition);
}

/* Blur cez pseudo-element – header sám nesmie mať backdrop-filter,
   inak sa stane containing block pre position:fixed potomkov (mobile nav). */
#site-header.scrolled {
    background: rgba(108, 68, 252, 0.92);
}

#site-header.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
    pointer-events: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    gap: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Nav – centred */
#main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-nav ul li a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.80);
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

#main-nav ul li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

#main-nav ul li a.active {
    color: #fff;
    background: rgba(255,255,255,0.14);
}

/* Header CTA button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    padding: 9px 20px;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    letter-spacing: -0.01em;
}

.header-cta:hover {
    background: var(--light-bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

.header-cta svg {
    transition: transform var(--transition);
}

.header-cta:hover svg {
    transform: translateX(3px);
}

/* Mobile-only nav CTA – skryté na desktope */
.nav-mobile-cta { display: none; }

/* Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--transition);
}

.hamburger-btn:hover {
    background: rgba(255,255,255,0.2);
}

.hamburger-btn span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================= */
/* === HERO                            === */
/* ======================================= */
.hero {
    padding: 60px 0 72px;
    background: var(--surface);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Image slider */
.hero-image { position: relative; }

.product-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: grab;
    user-select: none;
    background: var(--light-bg);
}

.product-slider:active { cursor: grabbing; }

.slider-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.slider-track {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.slide.active { opacity: 1; }

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-md);
}

.slider-btn-prev { left: 14px; }
.slider-btn-next { right: 14px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    padding: 4px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), width var(--transition), transform var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 24px;
    transform: none;
}

.dot:hover:not(.active) {
    background: var(--accent);
}

/* Hero text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--light-bg);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.hero-title { color: var(--text); margin: 0; }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.trust-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--primary);
    background: var(--light-bg);
    padding: 3px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.guarantee-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 10px 14px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: fit-content;
}

.guarantee-strip svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ======================================= */
/* === CTA BUTTON (global)             === */
/* ======================================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.cta-button:active { transform: translateY(0); }

/* ======================================= */
/* === PRODUCT COLLECTION SECTION      === */
/* ======================================= */
.collection-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* Product card */
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-card--dark {
    background: #1A1625;
    border-color: #2e2644;
}

.product-card--dark .product-card-body h3 { color: #fff; }
.product-card--dark .product-card-body p { color: rgba(255,255,255,0.65); }
.product-card--dark .product-features li { color: rgba(255,255,255,0.7); }
.product-card--dark .product-price-tag { color: #c5a9ff; }

.product-card--special {
    background: linear-gradient(135deg, #fff 0%, #f6f3ff 100%);
    border: 2px solid var(--primary);
}

.product-card-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    background: var(--light-bg);
    border-color: var(--primary);
}

.product-card--dark .product-card-image {
    background: #bdbdbd;
}

.product-card--special .product-card-image {
    background: linear-gradient(135deg, #f0ebff, #e8e0ff);
}

.product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    
}

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

.product-card-image--special {
    padding-bottom: 75%;
}

/* Special edition preview dots */
.special-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.special-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}

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

/* Card body */
.product-card-body {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-card-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--light-bg);
    border: 1px solid var(--primary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.product-card--dark .product-card-badge {
    background: rgba(108, 68, 252, 0.2);
    border-color: rgba(108, 68, 252, 0.4);
    color: #c5a9ff;
}

.product-card-badge--premium {
    color: #b8860b;
    background: #fff9e6;
    border-color: #f0d060;
}

.product-card--dark .product-card-badge--premium {
    background: rgba(255, 200, 0, 0.1);
    border-color: rgba(255, 200, 0, 0.3);
    color: #ffd700;
}

.product-card-badge--special {
    color: var(--primary);
    background: linear-gradient(90deg, #f0ebff, #e4d9ff);
    border-color: var(--primary);
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.product-card-body > p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 4px 0;
    flex: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.product-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

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

.product-card--dark .product-card-footer {
    border-top-color: rgba(255,255,255,0.1);
}

.product-card--special .product-card-footer {
    border-top-color: var(--border);
}

.product-price-tag {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

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

/* Style picker (index page special edition card) */
.special-style-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.picker-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.picker-options {
    display: flex;
    gap: 6px;
}

.picker-btn {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.picker-btn.active,
.picker-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ======================================= */
/* === HOW IT WORKS SECTION            === */
/* ======================================= */
.how-it-works {
    padding: 80px 0;
    background: var(--surface);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 52px;
    font-size: 1.05rem;
}

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

.step-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition);
}

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

.step-card:hover::before { opacity: 1; }

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--surface);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 16px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======================================= */
/* === WHY UVEE SECTION                === */
/* ======================================= */
.why-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.why-badge {
    display: inline-flex;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 18px;
}

.why-text h2 { color: var(--text); margin-bottom: 20px; }

.why-text > p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.bacteria-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.bacteria-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bacteria-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 7px;
}

.bacteria-item strong {
    display: block;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.bacteria-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.solution-block {
    padding: 20px;
    border-left: 3px solid var(--primary);
    background: var(--surface);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 28px;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.solution-block strong { color: var(--primary); }

.source-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.source-link a {
    color: var(--text-light);
    border-bottom: 1px dashed var(--border);
    transition: color var(--transition);
}

.source-link a:hover { color: var(--primary); }

.specs-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: sticky;
    top: 90px;
}

.specs-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.spec-value {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

.spec-price {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--primary);
    font-weight: 800;
}

/* ======================================= */
/* === FOOTER                          === */
/* ======================================= */
footer {
    background: var(--text);
    color: rgba(255,255,255,0.75);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 64px 24px 48px;
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}

.social-link:hover { color: #fff; }

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-col a[href^="mailto"] {
    color: var(--accent);
    font-size: 0.9rem;
}

.footer-col a[href^="mailto"]:hover { color: #fff; }

.footer-address {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ======================================= */
/* === STICKY MOBILE CTA              === */
/* ======================================= */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 20px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    z-index: 400;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px 24px;
}

/* ======================================= */
/* === SCROLL REVEAL                   === */
/* ======================================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }

/* ======================================= */
/* === ORDER PAGE                      === */
/* ======================================= */
.order-process {
    padding: 48px 0 80px;
    min-height: 100vh;
    background: var(--light-bg);
}

.order-process h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 32px;
}

/* Steps indicator */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 36px;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
    transition: all 0.3s ease;
}

.step-circle.active-step {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(108, 68, 252, 0.2);
}

.step.completed .step-circle {
    background: var(--primary-dark);
    color: #fff;
}

.step-line {
    width: 52px;
    height: 2px;
    background: var(--border);
    margin-top: 21px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.step-line.completed { background: var(--primary); }

.step-label {
    font-size: 0.78rem;
    text-align: center;
    color: var(--text-muted);
    max-width: 80px;
    font-weight: 500;
}

.step.active .step-label { color: var(--primary); font-weight: 600; }

/* Form box */
.order-form-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.form-step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

/* ======================================= */
/* === TIER TABS (order page)          === */
/* ======================================= */
.tier-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
    flex-wrap: wrap;
}

.tier-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 20px 12px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--transition);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.tier-tab:hover {
    background: var(--light-bg);
}

.tier-tab.active {
    border-bottom-color: var(--primary);
    background: var(--light-bg);
}

.tier-tab-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color var(--transition);
}

.tier-tab.active .tier-tab-name { color: var(--primary); }

.tier-tab-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color var(--transition);
}

.tier-tab.active .tier-tab-price { color: var(--primary); }

/* Tier panels */
.tier-panel {
    display: none;
    animation: fadePanel 0.25s ease;
}

.tier-panel.active { display: block; }

@keyframes fadePanel {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Product info within panel */
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.product-info-left { flex: 1; }

.product-info-left h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.product-info-right img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

/* Tier feature list */
.tier-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 0 0 20px;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.feat-check {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}

.feat-premium {
    color: #b8860b;
}

.feat-special {
    color: var(--primary);
}

/* Special edition style selector */
.special-style-selector {
    margin-bottom: 16px;
}

.selector-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.style-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.style-option {
    cursor: pointer;
    position: relative;
}

.style-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.style-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: all var(--transition);
    min-width: 90px;
}

.style-box img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.style-box strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.style-option input:checked + .style-box {
    border-color: var(--primary);
    background: var(--light-bg);
    box-shadow: 0 0 0 3px rgba(108, 68, 252, 0.15);
}

.style-option:hover .style-box {
    border-color: var(--primary-light);
}

.style-option input:checked + .style-box strong {
    color: var(--primary);
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.quantity-selector small {
    width: 100%;
    margin-top: -8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quantity-selector label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary);
    transition: background var(--transition);
    flex-shrink: 0;
}

.quantity-control button:hover { background: var(--border); }

.quantity-control input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    background: var(--surface);
}

.quantity-control input:focus {
    outline: none;
    background: var(--light-bg);
}

/* Form groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 68, 252, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

/* Delivery & payment options */
.delivery-section,
.payment-section {
    margin-bottom: 24px;
}

.delivery-section > label,
.payment-section > label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 12px;
}

.delivery-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-option,
.payment-option {
    cursor: pointer;
}

.delivery-option input[type="radio"],
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.delivery-box,
.payment-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: all var(--transition);
    gap: 12px;
}

.delivery-box strong,
.payment-box strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.payment-box small {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.delivery-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.delivery-option input:checked + .delivery-box,
.payment-option input:checked + .payment-box {
    border-color: var(--primary);
    background: var(--light-bg);
    box-shadow: 0 0 0 3px rgba(108, 68, 252, 0.12);
}

.delivery-option:hover .delivery-box,
.payment-option:hover .payment-box {
    border-color: var(--primary-light);
}

/* Packeta map */
.map-placeholder {
    padding: 20px;
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 10px;
    background: var(--light-bg);
}

.map-placeholder p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-select-packeta {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-select-packeta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.packeta-info {
    margin-top: 14px;
    padding: 14px;
    background: #f0fff0;
    border: 1px solid #b2dfdb;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: left;
    color: var(--text);
}

/* Summary box */
.summary-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.summary-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #ccc;
}

.summary-section h4 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.summary-section p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.summary-price {
    font-weight: 700 !important;
    color: var(--text) !important;
}

.summary-total {
    grid-column: 1 / -1;
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total h3 {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 600;
}

.total-amount {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

/* Form navigation buttons */
.form-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.btn-next, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-next:hover, .btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-back:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--surface);
}

/* Standalone step 1 next button */
.form-step > .btn-next {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    padding: 15px 32px;
    font-size: 1.05rem;
}

/* ======================================= */
/* === INFO PAGES (o-nas, gdpr, vop)   === */
/* ======================================= */
.info-page-content {
    padding: 2rem 0 1rem 0;
    min-height: 35vh;
}

.info-box {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.info-box h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.info-box h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.info-box > p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.info-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.info-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.info-section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.info-section p, .info-section li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-section ul {
    padding-left: 20px;
    list-style: disc;
}

.info-box blockquote {
    background: var(--light-bg);
    border-left: 3px solid var(--primary);
    padding: 14px 18px;
    margin: 16px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ======================================= */
/* === O-NAS PAGE                      === */
/* ======================================= */
.events .gallery-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
}

.member-bio {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.gallery-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 300px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(108, 68, 252, 0.35);
}

.gallery-item .image-wrapper {
    overflow: hidden;
    height: 220px;
}

.gallery-item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.9;
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.4s ease;
    cursor: zoom-in;
}

.gallery-item:hover .image-wrapper img {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-item .item-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.gallery-item .item-content h3 {
    color: var(--primary-color-dark, #4E2BC4);
    min-height: 3.6em;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-item .item-content p {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.team-photo-section {
    padding: 4rem 0;
    text-align: center;
}

.team-photo-wrapper {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-photo-wrapper:hover img {
    transform: scale(1.03);
}

.team-photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================================= */
/* === LIGHTBOX                        === */
/* ======================================= */
#lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#lightbox-overlay.active {
    display: flex;
}

#lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

#lightbox-close:hover {
    opacity: 1;
}

/* ======================================= */
/* === HIDDEN UTILITY                  === */
/* ======================================= */
.hidden { display: none !important; }

/* ======================================= */
/* === RESPONSIVE                      === */
/* ======================================= */
@media (max-width: 1024px) {
    .why-layout {
        grid-template-columns: 1fr;
    }

    .specs-card { position: static; }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .summary-box {
        grid-template-columns: 1fr;
    }
}

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

    /* Hide desktop CTA on mobile */
    .header-cta { display: none; }

    #main-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(300px, 80vw);
        background: var(--primary-dark);
        padding: 90px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 500;
        box-shadow: -8px 0 32px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    #main-nav.active { transform: translateX(0); }

    #main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    #main-nav ul li a {
        display: block;
        font-size: 1.05rem;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        color: rgba(255,255,255,0.85);
    }

    /* Mobile CTA inside nav panel */
    #main-nav::after {
        display: none;
    }

    .nav-mobile-cta {
        display: block;
        margin-top: 24px;
        text-align: center;
        background: #fff;
        color: var(--primary);
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.95rem;
        padding: 13px 24px;
        border-radius: var(--radius-full);
        text-decoration: none;
    }

    .nav-mobile-cta:hover {
        background: var(--light-bg);
        color: var(--primary-dark);
    }

    .hero { padding: 40px 0 48px; }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-image {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card { padding: 28px 22px; }

    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 48px auto 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 24px 36px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sticky-cta { display: block; }

    .order-form-box {
        padding: 24px 20px;
    }

    .tier-tabs { gap: 4px; }
    .tier-tab { padding: 8px 14px 10px; }
    .tier-tab-name { font-size: 0.85rem; }

    .form-buttons { flex-direction: column-reverse; }
    .btn-next, .btn-back, .btn-submit { width: 100%; justify-content: center; }

    .summary-box { grid-template-columns: 1fr; }

    .info-box {
        padding: 28px 20px;
    }

    .steps-container {
        gap: 0;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .step-line { width: 28px; }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .style-options {
        gap: 8px;
    }

    .style-box {
        min-width: 75px;
    }

    .style-box img {
        width: 56px;
        height: 56px;
    }
}
/* ======================================= */
/* === LAB SECTION                     === */
/* ======================================= */
.lab-section {
    padding: 100px 0;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.lab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lab-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8fff4;
    color: #1a9e5c;
    border: 1px solid #a3e6c4;
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lab-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.lab-text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.75;
}

.lab-steps {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lab-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lab-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}

.lab-step strong {
    display: block;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.lab-step span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.lab-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    grid-auto-flow: dense;
}

.lab-photo {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: zoom-in;
    background: var(--light-bg);
    aspect-ratio: 4/3;
}

.lab-photo--tall {
    grid-column: 2;
    grid-row: 2 / 4;
    aspect-ratio: unset;
}

.lab-photo--main {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

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

.lab-photo:hover img {
    transform: scale(1.04);
}

.lab-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,22,37,0.75) 0%, transparent 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 20px 12px 10px;
}

.lab-photo-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .lab-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ======================================= */
/* === INSTAGRAM GALLERY               === */
/* ======================================= */
.instagram-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ig-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    background: var(--border);
}

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

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

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 68, 252, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.ig-item--cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    cursor: pointer;
}

.ig-follow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 8px;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.ig-follow-card svg {
    opacity: 0.9;
}

.ig-follow-card span {
    font-size: 0.9rem;
    opacity: 0.85;
}

.ig-follow-card strong {
    font-family: var(--font-display);
    font-size: 1rem;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-top: 4px;
}

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

/* ======================================= */
/* === FAQ SECTION                     === */
/* ======================================= */
.faq-section {
    padding: 100px 0;
    background: var(--surface);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
}

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

.faq-question[aria-expanded="true"] {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

/* ======================================= */
/* === COOKIE BANNER                   === */
/* ======================================= */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 780px;
    background: var(--text);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    z-index: 9998;
    animation: cookieSlideUp 0.4s cubic-bezier(0.4,0,0.2,1) both;
}

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

.cookie-banner.hiding {
    animation: cookieSlideDown 0.35s cubic-bezier(0.4,0,0.2,1) both;
}

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

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn--accept {
    background: var(--primary);
    color: #fff;
}

.cookie-btn--accept:hover {
    background: var(--primary-light);
}

.cookie-btn--reject {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--reject:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 500px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-actions {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================================
   LANGUAGE SWITCHER – Modern Pill Style
   ================================================ */

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 10px;
    background: rgba(255, 255, 255, 0.15); /* Spoločné jemné pozadie */
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(8px);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border-radius: 50px;
    padding: 6px 12px 6px 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    
    /* Neaktívny stav - biela farba s dobrou viditeľnosťou */
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
}

.lang-btn img {
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: grayscale(40%) opacity(0.85); /* Iba jemné stlmenie vlajky */
}

/* Hover efekt pre neaktívne tlačidlo */
.lang-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.lang-btn:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Aktívny stav - výrazný kontrastný "Pill" */
.lang-btn--active {
    background: #ffffff;
    color: #1a1a1a; /* Tmavý text na bielom pozadí pre okamžitú jasnosť */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-btn--active img {
    filter: grayscale(0%) opacity(1);
}

/* Responzivita pre mobilné zariadenia */
@media (max-width: 768px) {
    .header-inner > .lang-switcher {
        display: none;
    }

    #main-nav .lang-switcher {
        display: inline-flex;
        justify-content: center;
        margin: 16px auto 0;
    }
}

@media (min-width: 769px) {
    #main-nav .lang-switcher {
        display: none;
    }
}
/* ======================================= */
/* === PARTNERS / SPOLUPRÁCA           === */
/* ======================================= */

#spolupraca .section-label {
    display: none;
}

.partners-section {
    padding: 80px 0 60px;
    background: var(--surface);
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.partners-title {
    text-align: center;
    margin-bottom: 8px;
    color: var(--text);
}

.partners-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 1rem;
}

.partners-track-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    position: relative;
    /* Fade edges */
    -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%);
}

.partners-track-wrapper:active {
    cursor: grabbing;
}

.partners-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: partnersScroll 28s linear infinite;
    padding: 8px 0 16px;
}

.partners-track:hover,
.partners-track.paused {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 160px;
    flex-shrink: 0;
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 16px 20px;
    text-decoration: none;
    color: var(--text);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.partner-logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.partner-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.partner-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    text-align: center;
    color: var(--text);
    line-height: 1.3;
}