/* =========================================================
   TimaVida – világos, elegáns, kézműves ásványkarkötő landing
   A CaffeeMandala'D szerkezeti hangulatára építve, TimaVida márkára újratervezve.
   Képek helye: /assets mappa
   - hero-product.jpg
   - hero-bg.jpg
   - bg-collections.jpg
   - bg-steps.jpg
   - bg-cta.jpg
   - product-1.jpg ... product-6.jpg
========================================================= */

:root {
    --color-bg: #f8efe4;
    --color-bg-deep: #ead9c3;
    --color-bg-soft: #fffaf3;

    --color-cream: #fffaf3;
    --color-champagne: #ead3a7;
    --color-gold: #c58b43;
    --color-gold-light: #edc474;
    --color-honey: #d99b52;
    --color-rose: #cf9a91;
    --color-rose-soft: #f2d6cf;
    --color-sage: #9baa8c;
    --color-sage-soft: #dfe6d3;
    --color-linen: #efe0cd;
    --color-wood: #8e5c32;
    --color-cocoa: #4a3324;

    --color-text: #433126;
    --color-text-dark: #2c211b;
    --color-muted: #746456;

    --shadow-soft: 0 24px 70px rgba(90, 61, 35, 0.13);
    --shadow-card: 0 18px 46px rgba(90, 61, 35, 0.13);
    --shadow-hover: 0 34px 82px rgba(90, 61, 35, 0.23);

    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --bg-hero: url("assets/hero-bg.png");
    --bg-products: url("assets/bg-collections.png");
    --bg-process: url("assets/bg-steps.png");
    --bg-cta: url("assets/bg-cta.png");
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(circle at 12% 8%, rgba(237, 196, 116, 0.26), transparent 32%),
        radial-gradient(circle at 86% 16%, rgba(207, 154, 145, 0.20), transparent 36%),
        radial-gradient(circle at 18% 84%, rgba(155, 170, 140, 0.22), transparent 40%),
        linear-gradient(135deg, #fff9ee 0%, #f5e8d7 42%, #edf1e2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,0.58), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(255, 231, 194, 0.26), transparent 38%),
        linear-gradient(120deg, rgba(255,255,255,0.34), transparent 44%, rgba(207,154,145,0.08));
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.1px;
    margin: 0;
    color: var(--color-text-dark);
}

p {
    margin: 0;
}

em {
    color: #9c5e2c;
    font-style: italic;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 112px 0;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    inset: 42px auto auto 4%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, rgba(197,139,67,0.12) 0 1px, transparent 1px 18px);
    opacity: 0.42;
    pointer-events: none;
}

.section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(207,154,145,0.16), transparent 62%),
        radial-gradient(circle at 70% 30%, rgba(155,170,140,0.16), transparent 44%);
    pointer-events: none;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(197, 139, 67, 0.28);
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.78);
    color: #925b2c;
    box-shadow: 0 10px 26px rgba(90, 61, 35, 0.08);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 3.4px;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #74502b;
    border-color: rgba(116, 80, 43, 0.22);
    background: rgba(255, 250, 243, 0.58);
}

.section-title {
    color: var(--color-text-dark);
    font-size: clamp(42px, 5vw, 72px);
    margin-bottom: 18px;
    text-shadow: 0 8px 24px rgba(255,255,255,0.48);
    text-wrap: balance;
}

.section-lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    color: #352516;
    background: linear-gradient(135deg, #efc879, #ffe5ad 52%, #d79b52);
    box-shadow: 0 18px 38px rgba(197, 139, 67, 0.28);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px rgba(197, 139, 67, 0.38);
}

.btn-ghost {
    color: var(--color-text-dark);
    border-color: rgba(142, 92, 50, 0.20);
    background: rgba(255, 250, 243, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(90, 61, 35, 0.08);
}

.btn-ghost:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 139, 67, 0.48);
    background: rgba(255, 244, 226, 0.94);
}

.btn-link {
    min-height: auto;
    padding: 0;
    color: var(--color-text-dark);
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 5px;
    border: 0;
}

.btn-link:hover {
    transform: translateX(4px);
    color: var(--color-wood);
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 243, 0.88);
    border-bottom: 1px solid rgba(142, 92, 50, 0.13);
    backdrop-filter: blur(22px) saturate(1.15);
    box-shadow: 0 10px 34px rgba(90, 61, 35, 0.08);
}

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

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 31px;
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: 0.1px;
}

.brand-tagline {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 6px;
    padding: 4px 11px;
    color: #935c2d;
    background: linear-gradient(135deg, rgba(255,250,243,0.78), rgba(239,196,116,0.32), rgba(207,154,145,0.14));
    border: 1px solid rgba(197,139,67,0.18);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(90,61,35,0.08), inset 0 1px 0 rgba(255,255,255,0.72);
    font-family: var(--font-serif);
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.35px;
    text-transform: none;
    white-space: nowrap;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: rgba(67, 49, 38, 0.78);
    font-size: 15px;
    font-weight: 900;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.main-nav a:hover {
    color: var(--color-wood);
}

.main-nav .nav-cta {
    padding: 12px 21px;
    color: #352516;
    background: linear-gradient(135deg, #efc879, #ffe5ad 55%, #d99b52);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(197, 139, 67, 0.24);
}

.menu-toggle {
    display: none;
}

/* HERO */

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 78px 0 92px;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(255,250,243,0.90) 0%, rgba(255,241,219,0.72) 42%, rgba(255,232,218,0.40) 100%),
        var(--bg-hero);
    background-size: cover;
    background-position: center center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 28%, rgba(237,196,116,0.32), transparent 32%),
        radial-gradient(circle at 76% 24%, rgba(207,154,145,0.20), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(155,170,140,0.16), transparent 38%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -140px;
    z-index: 0;
    pointer-events: none;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, rgba(197,139,67,0.13) 0 1px, transparent 1px 21px),
        radial-gradient(circle, rgba(237,196,116,0.26), transparent 70%);
    opacity: 0.82;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.34;
    filter: blur(1px);
    animation: floatParticle 8s ease-in-out infinite;
}

.particle::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(255, 229, 173, 0.34);
}

.p1 { left: 12%; top: 20%; }
.p2 { left: 44%; top: 18%; animation-delay: 1.2s; }
.p3 { right: 12%; top: 30%; animation-delay: 2.1s; }
.p4 { left: 26%; bottom: 18%; animation-delay: 3s; }
.p5 { right: 28%; bottom: 12%; animation-delay: 4s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0); opacity: 0.24; }
    50% { transform: translateY(-18px); opacity: 0.68; }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 70px;
}

.hero-title {
    max-width: 760px;
    color: var(--color-text-dark);
    font-size: clamp(52px, 6vw, 86px);
    margin-bottom: 24px;
    text-shadow: 0 12px 34px rgba(255,255,255,0.62);
    text-wrap: balance;
}

.hero-title em {
    color: #9e5d2c;
    text-shadow: 0 10px 28px rgba(255, 237, 199, 0.72);
}

.hero-lead {
    max-width: 700px;
    color: rgba(67, 49, 38, 0.78);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 34px;
    font-weight: 500;
}

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

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    min-height: 570px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 196, 116, 0.46), rgba(207, 154, 145, 0.20) 45%, transparent 72%);
    filter: blur(18px);
}

.bracelet-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(197, 139, 67, 0.24);
    animation: slowSpin 28s linear infinite;
}

.orbit-1 {
    width: 520px;
    height: 520px;
}

.orbit-2 {
    width: 410px;
    height: 410px;
    border-style: dashed;
    animation-direction: reverse;
}

@keyframes slowSpin {
    to { transform: rotate(360deg); }
}

.hero-image {
    position: relative;
    z-index: 3;
    width: min(100%, 500px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 34px;
    border: 8px solid rgba(255, 250, 243, 0.86);
    box-shadow:
        0 30px 80px rgba(90, 61, 35, 0.24),
        0 0 0 1px rgba(197, 139, 67, 0.16);
    background: #f0dfc7;
    filter: saturate(1.05) contrast(1.03);
}

.float-card {
    position: absolute;
    z-index: 4;
    padding: 12px 16px;
    border-radius: 999px;
    color: #3a281b;
    background: rgba(255, 250, 243, 0.90);
    border: 1px solid rgba(197, 139, 67, 0.22);
    box-shadow: 0 16px 34px rgba(90, 61, 35, 0.16);
    backdrop-filter: blur(16px);
    font-size: 13px;
    font-weight: 900;
}

.float-card-1 { left: 0; top: 22%; }
.float-card-2 { right: 0; top: 52%; }
.float-card-3 { left: 9%; bottom: 14%; }

/* TERMÉKKÁRTYÁK */

.section-products {
    background:
        linear-gradient(180deg, rgba(255,250,243,0.86), rgba(245,232,214,0.70)),
        var(--bg-products);
    background-size: cover;
    background-position: center center;
}

.product-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 243, 0.84);
    border: 1px solid rgba(142, 92, 50, 0.13);
    box-shadow: var(--shadow-card);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 0%, rgba(237,196,116,0.20), transparent 35%),
        radial-gradient(circle at 100% 90%, rgba(155,170,140,0.18), transparent 40%);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 139, 67, 0.34);
}

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

.product-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4.65;
    background:
        radial-gradient(circle at 50% 30%, rgba(237, 196, 116, 0.24), transparent 45%),
        #f0dfc7;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease), opacity 0.35s var(--ease), filter 0.35s var(--ease);
    filter: saturate(1.06) contrast(1.02) brightness(1.02);
}

.product-card:hover .product-media img {
    transform: scale(1.08);
    filter: saturate(1.12) contrast(1.04) brightness(1.02);
}

.product-body {
    position: relative;
    z-index: 2;
    padding: 23px 21px 25px;
}

.product-body h3 {
    color: var(--color-text-dark);
    font-size: 30px;
    margin-bottom: 12px;
}

.product-body p {
    color: rgba(67, 49, 38, 0.72);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.product-cta {
    color: #9d5e2d;
    font-weight: 900;
    font-size: 14px;
}

/* MIÉRT TIMAVIDA */

.section-why {
    background:
        linear-gradient(90deg, rgba(255,250,243,0.90), rgba(255,238,216,0.78), rgba(238,242,226,0.72)),
        var(--bg-hero);
    background-size: cover;
    background-position: center center;
}

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    min-height: 270px;
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 243, 0.82);
    border: 1px solid rgba(142, 92, 50, 0.13);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 139, 67, 0.34);
    background: rgba(255, 250, 243, 0.94);
}

.why-icon {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    color: #342416;
    background: linear-gradient(135deg, #efc879, #ffe5ad);
    box-shadow: 0 16px 34px rgba(197, 139, 67, 0.24);
}

.why-card h3 {
    color: var(--color-text-dark);
    font-size: 28px;
    margin-bottom: 14px;
}

.why-card p {
    color: rgba(67, 49, 38, 0.72);
}

/* FOLYAMAT */

.section-process {
    background:
        linear-gradient(180deg, rgba(255,250,243,0.88), rgba(239,224,205,0.70)),
        var(--bg-process);
    background-size: cover;
    background-position: center center;
}

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: start;
}

.process-copy {
    position: sticky;
    top: 120px;
}

.process-copy .section-title,
.process-copy .section-lead {
    text-align: left;
    margin-left: 0;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 243, 0.84);
    border: 1px solid rgba(142, 92, 50, 0.13);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.process-card > span {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 22px;
    color: #352516;
    background: linear-gradient(135deg, #efc879, #ffe5ad 55%, #d99b52);
    box-shadow: 0 16px 34px rgba(197, 139, 67, 0.22);
    font-weight: 900;
}

.process-card h3 {
    font-size: 31px;
    margin-bottom: 10px;
}

.process-card p {
    color: rgba(67, 49, 38, 0.72);
}

/* VÉLEMÉNYEK */

.section-reviews {
    background: linear-gradient(180deg, rgba(255,250,243,0.56), rgba(245,232,214,0.26));
}

.review-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    margin: 0;
    padding: 34px 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 243, 0.82);
    border: 1px solid rgba(142, 92, 50, 0.13);
    box-shadow: var(--shadow-card);
}

.review-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(255,250,243,0.88), rgba(223,230,211,0.72));
}

.review-stars {
    width: 100%;
    text-align: center;
    display: block;
    color: #c58b43;
    letter-spacing: 5px;
    margin-left: 2.5px;
    margin-bottom: 22px;
    font-size: 16px;
}

.review-card blockquote {
    margin: 0 0 24px;
    color: rgba(67, 49, 38, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.review-card figcaption {
    color: #9d5e2d;
    font-weight: 900;
}

/* GALÉRIA */

.section-gallery {
    background:
        linear-gradient(180deg, rgba(255,250,243,0.80), rgba(245,232,214,0.62)),
        var(--bg-products);
    background-size: cover;
    background-position: center center;
}

.gallery-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
    filter: saturate(1.04) contrast(1.02);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 30%, rgba(237, 196, 116, 0.22), transparent 45%),
        #f0dfc7;
    border: 7px solid rgba(255, 250, 243, 0.80);
    box-shadow: var(--shadow-card);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease), opacity 0.35s var(--ease), filter 0.35s var(--ease);
    filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fffaf3;
    font-weight: 900;
    font-size: 15px;
    text-shadow: 0 2px 14px rgba(47,36,28,0.62);
    pointer-events: none;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(67,49,38,0.60));
    pointer-events: none;
}

.gi-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.gi-4,
.gi-6 {
    grid-column: span 2;
}

/* CTA */

.section-cta {
    padding-bottom: 86px;
    background:
        linear-gradient(180deg, rgba(255, 244, 226, 0.76), rgba(255, 231, 217, 0.62)),
        var(--bg-cta);
    background-size: cover;
    background-position: center center;
}

.cta-card {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 36px;
    padding: 70px;
    border-radius: 38px;
    color: var(--color-text-dark);
    background:
        radial-gradient(circle at 18% 30%, rgba(255,255,255,0.64), transparent 32%),
        linear-gradient(135deg, #fff1d8 0%, #edc474 48%, #d8a092 100%);
    box-shadow: 0 34px 90px rgba(90, 61, 35, 0.22);
    border: 1px solid rgba(255,255,255,0.62);
}

.cta-card::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, rgba(67,49,38,0.10) 0 1px, transparent 1px 22px);
    opacity: 0.52;
}

.cta-bracelet {
    width: min(100%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(67, 49, 38, 0.18);
    background:
        repeating-radial-gradient(circle, rgba(67,49,38,0.13) 0 1px, transparent 1px 24px),
        radial-gradient(circle, rgba(255,255,255,0.46), transparent 64%);
    justify-self: center;
    animation: slowSpin 34s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-card .section-title {
    color: var(--color-text-dark);
    max-width: 760px;
}

.cta-card .section-lead {
    margin: 0 0 30px;
    color: rgba(67, 49, 38, 0.74);
}

.cta-card em {
    color: #7b5623;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
    padding-top: 70px;
    background:
        linear-gradient(180deg, rgba(255,250,243,0.78), rgba(234,217,195,0.84));
    border-top: 1px solid rgba(142, 92, 50, 0.13);
    box-shadow: inset 0 18px 34px rgba(90, 61, 35, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
    gap: 42px;
    padding-bottom: 54px;
}

.footer-brand p {
    max-width: 390px;
    margin-top: 18px;
    color: rgba(67, 49, 38, 0.70);
}

.footer-col h4 {
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-size: 15px;
    margin: 0 0 18px;
    font-weight: 900;
}

.footer-col li + li {
    margin-top: 9px;
}

.footer-col a {
    color: rgba(67, 49, 38, 0.68);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--color-wood);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(142, 92, 50, 0.13);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p {
    color: rgba(67, 49, 38, 0.54);
    font-size: 14px;
}

.footer-credit {
    font-weight: 600;
    text-align: right;
}

.footer-credit a {
    color: #9d5e2d;
    font-weight: 900;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.footer-credit a:hover {
    color: #7b461f;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* LIGHTBOX */

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background:
        radial-gradient(circle at 20% 20%, rgba(237, 196, 116, 0.18), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(207, 154, 145, 0.16), transparent 34%),
        rgba(35, 24, 16, 0.88);
    backdrop-filter: blur(18px);
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox-inner {
    position: relative;
    width: min(100%, 1180px);
    max-height: 92vh;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 16px;
    animation: lightboxIn 0.28s ease both;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.96) translateY(14px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.image-lightbox-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: calc(92vh - 86px);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 250, 243, 0.12);
    border: 8px solid rgba(255, 250, 243, 0.78);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(237, 196, 116, 0.24);
}

.image-lightbox img {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 110px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.image-lightbox-caption {
    min-height: 34px;
    text-align: center;
    color: #fffaf3;
    font-size: 16px;
    font-weight: 900;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-arrow {
    border: 0;
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #392414;
    background: linear-gradient(135deg, #efc879, #ffe5ad 52%, #d99b52);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    font-size: 28px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lightbox-close:hover {
    transform: scale(1.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #392414;
    background: rgba(255, 250, 243, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    font-size: 36px;
    font-weight: 900;
    transform: translateY(-50%);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lightbox-arrow:hover {
    background: linear-gradient(135deg, #efc879, #ffe5ad 52%, #d99b52);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.lightbox-prev { left: -28px; }
.lightbox-next { right: -28px; }

.lightbox-counter {
    position: absolute;
    left: 22px;
    top: 18px;
    z-index: 5;
    padding: 7px 13px;
    border-radius: 999px;
    color: #392414;
    background: rgba(255, 250, 243, 0.88);
    border: 1px solid rgba(237, 196, 116, 0.28);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    font-size: 13px;
    font-weight: 900;
}

/* RESPONSIVE */

@media (max-width: 1150px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-content,
    .process-copy {
        text-align: center;
    }

    .process-copy {
        position: static;
    }

    .process-copy .section-title,
    .process-copy .section-lead {
        text-align: center;
        margin-inline: auto;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .header-inner {
        min-height: auto;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .hero {
        padding: 70px 0 80px;
    }

    .hero-image-wrap {
        min-height: 480px;
    }

    .orbit-1 { width: 430px; height: 430px; }
    .orbit-2 { width: 330px; height: 330px; }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gi-1,
    .gi-4,
    .gi-6 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 48px 28px;
        text-align: center;
    }

    .cta-card .section-lead {
        margin-inline: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

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

@media (max-width: 650px) {
    body { font-size: 15px; }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .section::before {
        width: 110px;
        height: 110px;
        opacity: 0.32;
    }

    .section-head {
        margin-bottom: 38px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 2.4px;
        padding: 7px 14px;
    }

    .section-title {
        font-size: clamp(36px, 12vw, 48px);
    }

    .section-lead {
        font-size: 16px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
        overflow: visible;
        background: rgba(255, 250, 243, 0.96);
        border-bottom: 1px solid rgba(142, 92, 50, 0.14);
        backdrop-filter: blur(18px);
        box-shadow: 0 12px 34px rgba(90, 61, 35, 0.10);
    }

    .site-header .header-inner {
        position: relative;
        min-height: 76px;
        padding: 14px 0;
        display: grid;
        grid-template-columns: 1fr 50px;
        align-items: center;
        gap: 12px;
        overflow: visible;
    }

    .site-header .brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        min-width: 0;
    }

    .site-header .brand-name {
        display: block;
        font-size: 25px;
        line-height: 1;
        white-space: nowrap;
    }

    .site-header .brand-tagline {
        max-width: 230px;
        white-space: normal;
        font-size: 13px;
        line-height: 1.2;
        padding: 4px 9px;
    }

    .menu-toggle {
        display: flex;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding: 0;
        border: 1px solid rgba(197, 139, 67, 0.32);
        border-radius: 16px;
        background: rgba(255, 244, 226, 0.82);
        box-shadow: 0 12px 28px rgba(90, 61, 35, 0.14);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 23px;
        height: 2px;
        border-radius: 999px;
        background: var(--color-wood);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .site-header .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
        margin: 0;
        padding: 0 12px;
        background: rgba(255, 250, 243, 0.985);
        border: 1px solid rgba(142, 92, 50, 0.14);
        border-radius: 22px;
        box-shadow: 0 24px 70px rgba(90, 61, 35, 0.22);
        backdrop-filter: blur(18px);
        transform: translateY(-8px);
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            padding 0.3s ease,
            transform 0.3s ease;
    }

    .site-header.nav-open .main-nav {
        max-height: 560px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 12px;
        transform: translateY(0);
    }

    .site-header .main-nav ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .site-header .main-nav a {
        display: flex;
        width: 100%;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 16px;
        background: rgba(255, 244, 226, 0.72);
        border: 1px solid rgba(142, 92, 50, 0.12);
        color: var(--color-text-dark);
        font-size: 15px;
        font-weight: 900;
        text-align: center;
    }

    .site-header .main-nav .nav-cta {
        margin-top: 4px;
        background: linear-gradient(135deg, #efc879, #ffe5ad 52%, #d99b52);
        color: #352516;
        border: none;
        border-radius: 999px;
    }

    .site-header.nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 64px 0 76px;
        background-attachment: scroll;
        background-position: center top;
    }

    .hero-title {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-image-wrap {
        min-height: 390px;
    }

    .hero-image {
        width: min(100%, 330px);
        border-radius: 26px;
        border-width: 6px;
    }

    .orbit-1 { width: 340px; height: 340px; }
    .orbit-2 { width: 260px; height: 260px; }

    .float-card {
        display: none;
    }

    .product-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        grid-template-columns: 1fr;
    }

    .product-body h3,
    .why-card h3,
    .process-card h3 {
        font-size: 27px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .cta-card {
        border-radius: 28px;
    }

    .cta-bracelet {
        width: 240px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }

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

    .footer-credit {
        text-align: center;
        font-size: 13px;
    }

    .image-lightbox {
        padding: 18px;
    }

    .image-lightbox-inner {
        width: 100%;
        max-height: 94vh;
    }

    .image-lightbox-image-wrap {
        max-height: calc(94vh - 92px);
        border-width: 5px;
        border-radius: 24px;
    }

    .image-lightbox img {
        max-height: calc(94vh - 120px);
        border-radius: 17px;
    }

    .lightbox-close {
        top: -14px;
        right: -6px;
        width: 44px;
        height: 44px;
        font-size: 26px;
    }

    .lightbox-arrow {
        width: 46px;
        height: 46px;
        font-size: 30px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-counter {
        left: 14px;
        top: 14px;
        font-size: 12px;
    }

    .image-lightbox-caption {
        font-size: 14px;
        line-height: 1.4;
    }
}

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

/* =========================================================
   TIMAVIDA – DESKTOP KOMPAKT SZEKCIÓK
   Cél: minden fő szekció férjen bele egy átlagos desktop képernyőbe
   Ezt a blokkot a fájl végén hagyd, hogy felülírja az előző méreteket.
========================================================= */

@media (min-width: 901px) {
    :root {
        --container: 1180px;
        --radius-xl: 30px;
        --radius-lg: 24px;
    }

    .site-header .header-inner {
        min-height: 72px !important;
    }

    .brand-name {
        font-size: 27px !important;
    }

    .brand-tagline {
        margin-top: 4px !important;
        padding: 3px 10px !important;
        font-size: 13px !important;
    }

    .main-nav ul {
        gap: 24px !important;
    }

    .main-nav a {
        font-size: 14px !important;
    }

    .main-nav .nav-cta {
        padding: 10px 18px !important;
    }

    .section {
        min-height: calc(100vh - 72px) !important;
        padding: 46px 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .section::before {
        width: 118px !important;
        height: 118px !important;
        inset: 28px auto auto 4% !important;
        opacity: 0.25 !important;
    }

    .section::after {
        width: 260px !important;
        height: 260px !important;
        right: -90px !important;
        bottom: -110px !important;
        opacity: 0.6 !important;
    }

    .section > .container {
        width: min(100% - 40px, var(--container)) !important;
    }

    .section-head {
        max-width: 760px !important;
        margin: 0 auto 32px !important;
    }

    .eyebrow {
        margin-bottom: 12px !important;
        padding: 7px 16px !important;
        font-size: 10px !important;
        letter-spacing: 3px !important;
    }

    .section-title {
        font-size: clamp(36px, 4vw, 56px) !important;
        line-height: 0.98 !important;
        margin-bottom: 12px !important;
    }

    .section-lead {
        max-width: 680px !important;
        font-size: 15.5px !important;
        line-height: 1.55 !important;
    }

    .btn {
        min-height: 48px !important;
        padding: 12px 24px !important;
        font-size: 14px !important;
    }

    /* HERO */
    .hero {
        min-height: calc(100vh - 72px) !important;
        padding: 34px 0 42px !important;
        align-items: center !important;
    }

    .hero-grid {
        grid-template-columns: 1.03fr 0.97fr !important;
        gap: 48px !important;
        align-items: center !important;
    }

    .hero-title {
        max-width: 660px !important;
        font-size: clamp(46px, 5.15vw, 70px) !important;
        line-height: 1.01 !important;
        margin-bottom: 16px !important;
    }

    .hero-lead {
        max-width: 620px !important;
        font-size: 16px !important;
        line-height: 1.55 !important;
        margin-bottom: 22px !important;
    }

    .hero-buttons {
        gap: 12px !important;
    }

    .hero-image-wrap {
        min-height: 455px !important;
    }

    .hero-image {
        width: min(100%, 420px) !important;
        border-radius: 28px !important;
        border-width: 7px !important;
    }

    .hero-glow {
        width: 68% !important;
        filter: blur(14px) !important;
    }

    .orbit-1 {
        width: 438px !important;
        height: 438px !important;
    }

    .orbit-2 {
        width: 346px !important;
        height: 346px !important;
    }

    .float-card {
        padding: 9px 13px !important;
        font-size: 12px !important;
    }

    /* KIEMELT KOLLEKCIÓK */
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .product-card {
        border-radius: 22px !important;
    }

    .product-media {
        aspect-ratio: 4 / 3.05 !important;
    }

    .product-body {
        padding: 16px 17px 18px !important;
    }

    .product-body h3 {
        font-size: 25px !important;
        margin-bottom: 8px !important;
    }

    .product-body p {
        font-size: 13px !important;
        line-height: 1.48 !important;
        margin-bottom: 12px !important;
    }

    .product-cta {
        font-size: 13px !important;
    }

    /* MIÉRT TIMAVIDA */
    .why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .why-card {
        min-height: 214px !important;
        padding: 24px 22px !important;
        border-radius: 22px !important;
    }

    .why-icon {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 16px !important;
    }

    .why-card h3 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }

    .why-card p {
        font-size: 13px !important;
        line-height: 1.52 !important;
    }

    /* FOLYAMAT */
    .process-grid {
        grid-template-columns: 0.88fr 1.12fr !important;
        gap: 44px !important;
        align-items: center !important;
    }

    .process-copy {
        top: 96px !important;
    }

    .process-list {
        gap: 14px !important;
    }

    .process-card {
        grid-template-columns: 58px 1fr !important;
        gap: 16px !important;
        padding: 20px 22px !important;
        border-radius: 22px !important;
    }

    .process-card > span {
        width: 52px !important;
        height: 52px !important;
        border-radius: 18px !important;
        font-size: 14px !important;
    }

    .process-card h3 {
        font-size: 27px !important;
        margin-bottom: 6px !important;
    }

    .process-card p {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    /* VÉLEMÉNYEK */
    .review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px !important;
        max-width: 980px !important;
        margin-inline: auto !important;
    }

    .review-card {
        padding: 26px 24px !important;
        border-radius: 22px !important;
    }

    .review-stars {
        margin-bottom: 16px !important;
        font-size: 14px !important;
        letter-spacing: 4px !important;
    }

    .review-card blockquote {
        margin-bottom: 18px !important;
        font-size: 15px !important;
        line-height: 1.62 !important;
    }

    .review-card figcaption {
        font-size: 14px !important;
    }

    /* GALÉRIA */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-rows: 168px !important;
        gap: 14px !important;
    }

    .gallery-item {
        border-width: 5px !important;
        border-radius: 20px !important;
    }

    .gallery-item figcaption {
        left: 14px !important;
        right: 14px !important;
        bottom: 12px !important;
        font-size: 13px !important;
    }

    /* CTA */
    .section-cta {
        padding-top: 46px !important;
        padding-bottom: 46px !important;
    }

    .cta-card {
        min-height: 348px !important;
        grid-template-columns: 0.72fr 1.28fr !important;
        gap: 30px !important;
        padding: 44px 52px !important;
        border-radius: 30px !important;
    }

    .cta-bracelet {
        width: min(100%, 270px) !important;
    }

    .cta-card .section-title {
        max-width: 700px !important;
    }

    .cta-card .section-lead {
        margin-bottom: 22px !important;
    }

    .cta-buttons {
        gap: 16px !important;
    }

    /* FOOTER IS LEGYEN KOMPAKTABB */
    .site-footer {
        padding-top: 46px !important;
    }

    .footer-grid {
        gap: 32px !important;
        padding-bottom: 34px !important;
    }

    .footer-brand p {
        margin-top: 12px !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .footer-col h4 {
        margin-bottom: 12px !important;
    }

    .footer-col li + li {
        margin-top: 6px !important;
    }

    .footer-bottom {
        padding: 16px 0 !important;
    }
}

/* Nagyobb laptopokon még szorosabb, hogy biztosan ne lógjon túl */
@media (min-width: 901px) and (max-height: 820px) {
    .section {
        padding: 34px 0 !important;
    }

    .section-head {
        margin-bottom: 24px !important;
    }

    .section-title {
        font-size: clamp(34px, 3.65vw, 50px) !important;
    }

    .section-lead {
        font-size: 14.5px !important;
        line-height: 1.48 !important;
    }

    .hero {
        padding: 22px 0 30px !important;
    }

    .hero-title {
        font-size: clamp(42px, 4.8vw, 62px) !important;
        margin-bottom: 12px !important;
    }

    .hero-lead {
        font-size: 15px !important;
        line-height: 1.48 !important;
        margin-bottom: 18px !important;
    }

    .hero-image-wrap {
        min-height: 390px !important;
    }

    .hero-image {
        width: min(100%, 370px) !important;
    }

    .orbit-1 {
        width: 392px !important;
        height: 392px !important;
    }

    .orbit-2 {
        width: 310px !important;
        height: 310px !important;
    }

    .product-media {
        aspect-ratio: 4 / 2.75 !important;
    }

    .product-body {
        padding: 14px 15px 16px !important;
    }

    .product-body h3,
    .why-card h3 {
        font-size: 23px !important;
    }

    .product-body p,
    .why-card p {
        font-size: 12.5px !important;
        line-height: 1.42 !important;
    }

    .why-card {
        min-height: 190px !important;
        padding: 20px 18px !important;
    }

    .process-card {
        padding: 17px 20px !important;
    }

    .process-card h3 {
        font-size: 24px !important;
    }

    .process-card p {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .review-card {
        padding: 22px 22px !important;
    }

    .review-card blockquote {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .gallery-grid {
        grid-auto-rows: 148px !important;
    }

    .cta-card {
        min-height: 310px !important;
        padding: 36px 46px !important;
    }

    .cta-bracelet {
        width: min(100%, 230px) !important;
    }
}

/* =========================================================
   TIMAVIDA – HÁTTÉRKÉPEK TISZTÁN, HOMÁLYOSÍTÁS NÉLKÜL
   Cél: a természetközeli szekcióképek ne legyenek kimosva,
   ne legyen rajtuk teljes felületű krém/fehér fátyol.

   Ajánlott képfájlnevek az /assets mappába:
   - hero-bg.png        → hero levendulamező
   - bg-collections.png → kollekciók / termékek háttér
   - bg-steps.png       → rendelési folyamat, csordogáló patak
   - bg-reviews.png     → vélemények, napfényes mező
   - bg-cta.png         → záró CTA természetközeli háttér
========================================================= */

:root {
    --bg-reviews: url("assets/bg-reviews.png");
}

/* Általános dekor-fátylak törlése */
body::before,
.section::before,
.section::after,
.hero::before,
.hero::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body {
    background-color: #f8efe4 !important;
    background-image: none !important;
}

/* HERO – tiszta levendulamező háttér, teljes szekciós fátyol nélkül */
.hero {
    background-image: var(--bg-hero) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* Szöveg olvashatóság helyi kártyával, nem teljes háttérhomályosítással */
.hero-content {
    width: fit-content !important;
    max-width: 720px !important;
    padding: 30px 34px 34px !important;
    border-radius: 30px !important;
    background: rgba(255, 250, 243, 0.82) !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 24px 70px rgba(68, 47, 31, 0.14) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-title,
.section-title {
    text-shadow: 0 6px 20px rgba(255,255,255,0.58) !important;
}

/* TERMÉKEK / KOLLEKCIÓK – háttérkép tisztán */
.section-products {
    background-image: var(--bg-products) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* MIÉRT TIMAVIDA – ne legyen fehér fátyol a háttéren */
.section-why {
    background-image: var(--bg-hero) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* RENDELÉSI FOLYAMAT – csordogáló patak háttér tisztán */
.section-process {
    background-image: var(--bg-process) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* VÉLEMÉNYEK – természetközeli mezős háttér */
.section-reviews {
    background-image: var(--bg-reviews) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* GALÉRIA – háttérkép tisztán */
.section-gallery {
    background-image: var(--bg-products) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* CTA – teljes háttér homályosítása nélkül */
.section-cta {
    background-image: var(--bg-cta) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* A tartalomkártyák maradjanak olvashatóak, de ne legyen rajtuk blur */
.product-card,
.why-card,
.process-card,
.review-card,
.cta-card,
.eyebrow,
.hero-image,
.float-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.product-card,
.why-card,
.process-card,
.review-card {
    background: rgba(255, 250, 243, 0.86) !important;
}

/* Kártyák képein/galérián ne legyen külön szürkítő fátyol */
.product-card::before,
.gallery-item::after {
    opacity: 0 !important;
}

.gallery-item figcaption {
    padding: 8px 10px !important;
    border-radius: 999px !important;
    background: rgba(45, 32, 23, 0.46) !important;
    width: fit-content !important;
    max-width: calc(100% - 28px) !important;
}

/* CTA kártya: ne fedje agyon a háttérképet, de maradjon prémium és olvasható */
.cta-card {
    background: rgba(255, 250, 243, 0.84) !important;
    color: var(--color-text-dark) !important;
}

.cta-card::after {
    display: none !important;
    content: none !important;
}

/* Kompakt desktop override alatt is tiszta háttér maradjon */
@media (min-width: 901px) {
    .hero,
    .section-products,
    .section-why,
    .section-process,
    .section-reviews,
    .section-gallery,
    .section-cta {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }

    .hero-content {
        padding: 26px 30px 30px !important;
        border-radius: 26px !important;
    }
}

@media (max-width: 650px) {
    .hero-content {
        width: 100% !important;
        padding: 24px 20px !important;
        border-radius: 24px !important;
    }

    .hero,
    .section-products,
    .section-why,
    .section-process,
    .section-reviews,
    .section-gallery,
    .section-cta {
        background-attachment: scroll !important;
        background-position: center center !important;
    }
}

/* =========================================================
   TIMAVIDA – HALVÁNY LILA HÁTTÉR-FÁTYOL MINDEN KÉPES SZEKCIÓRA
   Cél: természetközeli képek maradjanak láthatóak, de kapjanak
   egységes, finom levendulás/lilás hangulatot és enyhe lágyítást.
   Ezt a blokkot a CSS legvégén kell hagyni.
========================================================= */

:root {
    --lavender-mist-light: rgba(250, 246, 255, 0.28);
    --lavender-mist: rgba(225, 212, 255, 0.26);
    --lavender-mist-deep: rgba(183, 154, 228, 0.18);
    --lavender-warm: rgba(255, 245, 236, 0.20);
}

/* Minden képes főszekció kapjon saját háttérréteget + lila fátylat */
.hero,
.section-products,
.section-why,
.section-process,
.section-reviews,
.section-gallery,
.section-cta {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background-color: #f7efe7 !important;
    background-image: none !important;
}

/* Háttérkép réteg – csak enyhén lágyítva, nem agyonmosva */
.hero::before,
.section-products::before,
.section-why::before,
.section-process::before,
.section-reviews::before,
.section-gallery::before,
.section-cta::before {
    content: "" !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;

    position: absolute !important;
    inset: -8px !important;
    z-index: 0 !important;

    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    filter: blur(1.6px) saturate(1.02) contrast(1.02) brightness(1.01) !important;
    transform: scale(1.018) !important;
}

.hero::before {
    background-image: var(--bg-hero) !important;
}

.section-products::before,
.section-gallery::before {
    background-image: var(--bg-products) !important;
}

.section-why::before {
    background-image: var(--bg-hero) !important;
}

.section-process::before {
    background-image: var(--bg-process) !important;
}

.section-reviews::before {
    background-image: var(--bg-reviews) !important;
}

.section-cta::before {
    background-image: var(--bg-cta) !important;
}

/* Halvány levendulás fátyol – ez adja az egységes lila hangulatot */
.hero::after,
.section-products::after,
.section-why::after,
.section-process::after,
.section-reviews::after,
.section-gallery::after,
.section-cta::after {
    content: "" !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;

    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;

    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;

    background:
        linear-gradient(115deg,
            rgba(255, 250, 246, 0.42) 0%,
            var(--lavender-mist-light) 24%,
            var(--lavender-mist) 54%,
            rgba(255, 248, 242, 0.34) 100%
        ),
        radial-gradient(circle at 18% 24%, rgba(230, 214, 255, 0.30), transparent 34%),
        radial-gradient(circle at 84% 76%, rgba(186, 158, 232, 0.18), transparent 42%) !important;
}

/* A tartalom mindig a fátyol fölé kerüljön */
.hero-bg,
.hero-grid,
.section > .container,
.section-products > .container,
.section-why > .container,
.section-process > .container,
.section-reviews > .container,
.section-gallery > .container,
.section-cta > .container {
    position: relative !important;
    z-index: 2 !important;
}

/* A szövegkártya és a tartalomkártyák legyenek elegánsan olvashatóak */
.hero-content,
.product-card,
.why-card,
.process-card,
.review-card,
.cta-card,
.eyebrow {
    background-color: rgba(255, 250, 246, 0.84) !important;
    border-color: rgba(197, 139, 67, 0.16) !important;
    box-shadow: 0 18px 48px rgba(70, 48, 31, 0.13) !important;
}

/* A második véleménykártya ne zöldüljön el, kapjon inkább finom lila-krém tónust */
.review-card:nth-child(2) {
    background:
        linear-gradient(145deg,
            rgba(255, 250, 246, 0.88),
            rgba(238, 230, 255, 0.76)
        ) !important;
}

/* CTA kártya maradjon világos, ne sötétedjen be a lila overlay alatt */
.cta-card {
    background:
        linear-gradient(135deg,
            rgba(255, 250, 246, 0.88),
            rgba(239, 230, 255, 0.76)
        ) !important;
    color: var(--color-text-dark) !important;
}

/* Galéria felirat olvasható maradjon */
.gallery-item figcaption {
    background: rgba(45, 32, 23, 0.48) !important;
}

/* Desktop kompakt blokk felett is ez maradjon az utolsó szó */
@media (min-width: 901px) {
    .hero,
    .section-products,
    .section-why,
    .section-process,
    .section-reviews,
    .section-gallery,
    .section-cta {
        background-image: none !important;
    }

    .hero::before,
    .section-products::before,
    .section-why::before,
    .section-process::before,
    .section-reviews::before,
    .section-gallery::before,
    .section-cta::before {
        filter: blur(1.5px) saturate(1.02) contrast(1.02) brightness(1.01) !important;
        transform: scale(1.016) !important;
    }
}

@media (max-width: 650px) {
    .hero::before,
    .section-products::before,
    .section-why::before,
    .section-process::before,
    .section-reviews::before,
    .section-gallery::before,
    .section-cta::before {
        inset: -5px !important;
        filter: blur(1px) saturate(1.02) contrast(1.01) !important;
        transform: scale(1.012) !important;
    }

    .hero::after,
    .section-products::after,
    .section-why::after,
    .section-process::after,
    .section-reviews::after,
    .section-gallery::after,
    .section-cta::after {
        background:
            linear-gradient(135deg,
                rgba(255, 250, 246, 0.48),
                rgba(226, 211, 255, 0.28),
                rgba(255, 248, 242, 0.42)
            ) !important;
    }
}

/* =========================================================
   TIMAVIDA – TISZTÍTOTT PRÉMIUM HEADER
   Cél: egyetlen, egységes fejléc. Nincs külön belső “második header”
   / nagy fehér menükapszula a headeren belül.
========================================================= */

.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    background:
        linear-gradient(135deg,
            rgba(255, 252, 246, 0.92) 0%,
            rgba(255, 246, 232, 0.88) 36%,
            rgba(235, 224, 246, 0.82) 100%
        ) !important;
    border-bottom: 1px solid rgba(166, 126, 76, 0.16) !important;
    box-shadow: 0 12px 34px rgba(62, 42, 28, 0.09) !important;
    backdrop-filter: blur(20px) saturate(1.18) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.18) !important;
    overflow: visible !important;
}

.site-header::before,
.site-header::after {
    display: none !important;
    content: none !important;
}

.site-header .header-inner {
    min-height: 76px !important;
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
}

.site-header .brand {
    display: grid !important;
    grid-template-columns: 48px auto !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
        "mark name"
        "mark tagline" !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 3px !important;
    min-width: 238px !important;
    line-height: 1 !important;
}

.site-header .brand::before {
    content: "TV" !important;
    grid-area: mark !important;
    width: 46px !important;
    height: 46px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    color: #7a4e1f !important;
    font-family: var(--font-serif, Georgia, serif) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,0.95) 0 12%, transparent 13%),
        linear-gradient(145deg, rgba(255, 246, 226, 0.98) 0%, rgba(246, 209, 132, 0.92) 46%, rgba(218, 197, 238, 0.84) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 10px 24px rgba(126, 82, 42, 0.14), inset 0 1px 0 rgba(255,255,255,0.86) !important;
}

.site-header .brand-mark {
    grid-area: mark !important;
    width: 46px !important;
    height: 46px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    color: #7a4e1f !important;
    font-family: var(--font-serif, Georgia, serif) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,0.95) 0 12%, transparent 13%),
        linear-gradient(145deg, rgba(255, 246, 226, 0.98), rgba(246, 209, 132, 0.92), rgba(218, 197, 238, 0.84)) !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 10px 24px rgba(126, 82, 42, 0.14), inset 0 1px 0 rgba(255,255,255,0.86) !important;
}

.site-header .brand:has(.brand-mark)::before {
    display: none !important;
}

.site-header .brand-name,
.site-header .brand-text strong {
    grid-area: name !important;
    margin: 0 !important;
    color: var(--color-text-dark, #2c211b) !important;
    font-family: var(--font-serif, Georgia, serif) !important;
    font-size: 30px !important;
    line-height: 0.92 !important;
    font-weight: 800 !important;
    letter-spacing: -0.018em !important;
    text-shadow: 0 8px 24px rgba(255,255,255,0.50) !important;
}

.site-header .brand-tagline,
.site-header .brand-text small {
    grid-area: tagline !important;
    width: fit-content !important;
    margin: 3px 0 0 !important;
    padding: 4px 10px 5px !important;
    border-radius: 999px !important;
    color: #8b5d35 !important;
    background: rgba(255, 252, 246, 0.66) !important;
    border: 1px solid rgba(199, 144, 63, 0.16) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72) !important;
    font-family: var(--font-serif, Georgia, serif) !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    font-style: italic !important;
    letter-spacing: 0.25px !important;
    text-transform: none !important;
    white-space: nowrap !important;
}

/* Menü: nincs külön óriási belső fejléc/kapszula, csak a linkek és a CTA élnek. */
.site-header .main-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 1 1 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.site-header .main-nav ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.site-header .main-nav li {
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .main-nav a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    color: rgba(54, 39, 31, 0.78) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.01em !important;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible {
    transform: translateY(-1px) !important;
    color: #6f481f !important;
    background: rgba(255, 252, 246, 0.60) !important;
    border-color: rgba(199, 144, 63, 0.18) !important;
    box-shadow: 0 10px 24px rgba(126, 82, 42, 0.09) !important;
    outline: none !important;
}

.site-header .main-nav .nav-cta,
.site-header .header-cta {
    min-height: 44px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    color: #3a2616 !important;
    background: linear-gradient(135deg, #f5c86e 0%, #ffe2a4 48%, #d7b7eb 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.62) !important;
    box-shadow: 0 14px 30px rgba(159, 103, 39, 0.20), inset 0 1px 0 rgba(255,255,255,0.78) !important;
    font-size: 14px !important;
    font-weight: 950 !important;
}

.site-header .main-nav .nav-cta:hover,
.site-header .header-cta:hover {
    transform: translateY(-2px) !important;
    color: #2f2118 !important;
    background: linear-gradient(135deg, #f8d184 0%, #ffe8b6 46%, #cba9e9 100%) !important;
    box-shadow: 0 20px 42px rgba(159, 103, 39, 0.25), inset 0 1px 0 rgba(255,255,255,0.84) !important;
}

.site-header .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    text-decoration: none !important;
}

@media (min-width: 901px) {
    .hero {
        min-height: calc(100vh - 76px) !important;
    }

    .section {
        min-height: calc(100vh - 76px) !important;
    }
}

@media (max-width: 900px) {
    .site-header .header-inner {
        min-height: 76px !important;
        padding: 12px 0 !important;
        display: grid !important;
        grid-template-columns: 1fr 50px !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .site-header .brand {
        min-width: 0 !important;
        grid-template-columns: 46px auto !important;
        column-gap: 10px !important;
    }

    .site-header .brand::before,
    .site-header .brand-mark {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }

    .site-header .brand-name,
    .site-header .brand-text strong {
        font-size: 25px !important;
        line-height: 0.92 !important;
        white-space: nowrap !important;
    }

    .site-header .brand-tagline,
    .site-header .brand-text small {
        max-width: 205px !important;
        margin-top: 4px !important;
        padding: 4px 9px !important;
        font-size: 12px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .menu-toggle {
        display: flex !important;
        width: 50px !important;
        height: 50px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 6px !important;
        padding: 0 !important;
        border: 1px solid rgba(199, 144, 63, 0.28) !important;
        border-radius: 17px !important;
        background: rgba(255, 252, 246, 0.72) !important;
        box-shadow: 0 12px 28px rgba(90, 61, 35, 0.13), inset 0 1px 0 rgba(255,255,255,0.74) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        cursor: pointer !important;
    }

    .menu-toggle span {
        width: 23px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: #7c552a !important;
    }

    .site-header .main-nav {
        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
        pointer-events: none !important;
        padding: 0 12px !important;
        border-radius: 24px !important;
        background: linear-gradient(145deg, rgba(255, 252, 246, 0.96), rgba(238, 226, 247, 0.94)) !important;
        border: 1px solid rgba(151, 112, 84, 0.16) !important;
        box-shadow: 0 24px 70px rgba(62, 42, 28, 0.22) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        transform: translateY(-8px) !important;
        transition: max-height .35s ease, opacity .25s ease, visibility .25s ease, padding .3s ease, transform .3s ease !important;
    }

    .site-header.nav-open .main-nav {
        max-height: 560px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        padding: 12px !important;
        transform: translateY(0) !important;
    }

    .site-header .main-nav ul {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .site-header .main-nav a {
        width: 100% !important;
        min-height: 50px !important;
        padding: 0 16px !important;
        background: rgba(255, 255, 255, 0.58) !important;
        border: 1px solid rgba(151, 112, 84, 0.13) !important;
        border-radius: 17px !important;
        font-size: 15px !important;
    }

    .site-header .main-nav .nav-cta,
    .site-header .header-cta {
        width: 100% !important;
        min-height: 52px !important;
        margin-top: 4px !important;
    }
}

/* =========================================================
   TIMAVIDA – SZEKCIÓ ÁTMENETEK / LAYERED SCROLL HATÁS
   Cél: a természetközeli hátterek ne kemény vágással váltsanak,
   hanem görgetés közben finoman egymás alá csússzanak.
   Fontos: ezt a blokkot a teljes CSS legvégén kell hagyni.
========================================================= */

:root {
    --section-overlap: 52px;
    --section-radius-top: 54px;
    --section-edge-mist: rgba(255, 250, 246, 0.62);
    --section-edge-lavender: rgba(226, 211, 255, 0.34);
    --section-shadow-top: 0 -28px 70px rgba(72, 50, 38, 0.16);
}

main {
    position: relative;
    overflow: hidden;
    background: #f8efe4;
}

.hero,
.section-products,
.section-why,
.section-process,
.section-reviews,
.section-gallery,
.section-cta {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background-image: none !important;
    background-color: #f7efe7 !important;
    transform: translateZ(0);
}

/* Rétegsorrend: a következő szekció vizuálisan az előző fölé csússzon */
.hero { z-index: 1 !important; }
.section-products { z-index: 2 !important; }
.section-why { z-index: 3 !important; }
.section-process { z-index: 4 !important; }
.section-reviews { z-index: 5 !important; }
.section-gallery { z-index: 6 !important; }
.section-cta { z-index: 7 !important; }

/* A háttérképek maradjanak láthatóak, csak finoman egységesítve */
.hero::before,
.section-products::before,
.section-why::before,
.section-process::before,
.section-reviews::before,
.section-gallery::before,
.section-cta::before {
    content: "" !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: none !important;
    position: absolute !important;
    inset: -10px !important;
    z-index: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: inherit !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
    filter: blur(1.15px) saturate(1.04) contrast(1.02) brightness(1.01) !important;
    transform: scale(1.014) !important;
}

.hero::before { background-image: var(--bg-hero) !important; }
.section-products::before,
.section-gallery::before { background-image: var(--bg-products) !important; }
.section-why::before { background-image: var(--bg-hero) !important; }
.section-process::before { background-image: var(--bg-process) !important; }
.section-reviews::before { background-image: var(--bg-reviews) !important; }
.section-cta::before { background-image: var(--bg-cta) !important; }

/* Közös levendulás fényfátyol + felső/alsó átmenet */
.hero::after,
.section-products::after,
.section-why::after,
.section-process::after,
.section-reviews::after,
.section-gallery::after,
.section-cta::after {
    content: "" !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: none !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: auto !important;
    height: auto !important;
    border-radius: inherit !important;
    opacity: 1 !important;
    background:
        linear-gradient(180deg,
            var(--section-edge-mist) 0%,
            rgba(238, 230, 255, 0.34) 9%,
            rgba(255, 250, 246, 0.18) 24%,
            rgba(232, 216, 255, 0.18) 72%,
            rgba(255, 250, 246, 0.58) 100%
        ),
        linear-gradient(115deg,
            rgba(255, 250, 246, 0.24) 0%,
            rgba(226, 211, 255, 0.26) 42%,
            rgba(255, 244, 236, 0.22) 100%
        ),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.26), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(196, 166, 238, 0.18), transparent 44%) !important;
}

/* A hero alja is finoman olvadjon a következő szekcióba */
.hero::after {
    background:
        linear-gradient(180deg,
            rgba(255, 250, 246, 0.24) 0%,
            rgba(226, 211, 255, 0.24) 58%,
            rgba(255, 250, 246, 0.70) 100%
        ),
        linear-gradient(115deg,
            rgba(255, 250, 246, 0.22) 0%,
            rgba(226, 211, 255, 0.24) 52%,
            rgba(255, 244, 236, 0.22) 100%
        ) !important;
}

.hero-bg,
.hero-grid,
.section > .container,
.section-products > .container,
.section-why > .container,
.section-process > .container,
.section-reviews > .container,
.section-gallery > .container,
.section-cta > .container {
    position: relative !important;
    z-index: 2 !important;
}

@media (min-width: 901px) {
    /* A következő szekció rácsúszik az előző aljára, ezért nincs kemény vágás. */
    .section-products,
    .section-why,
    .section-process,
    .section-reviews,
    .section-gallery,
    .section-cta {
        margin-top: calc(var(--section-overlap) * -1) !important;
        padding-top: calc(46px + var(--section-overlap)) !important;
        border-radius: var(--section-radius-top) var(--section-radius-top) 0 0 !important;
        box-shadow:
            var(--section-shadow-top),
            inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
        clip-path: inset(0 0 0 0 round var(--section-radius-top) var(--section-radius-top) 0 0) !important;
    }

    .hero {
        padding-bottom: calc(42px + 28px) !important;
    }

    .section-products::before,
    .section-why::before,
    .section-process::before,
    .section-reviews::before,
    .section-gallery::before,
    .section-cta::before,
    .section-products::after,
    .section-why::after,
    .section-process::after,
    .section-reviews::after,
    .section-gallery::after,
    .section-cta::after {
        border-radius: inherit !important;
    }

    /* Anchor kattintásnál a sticky header ne takarja ki a címet */
    #kollekciok,
    #miert-timavida,
    #rendeles,
    #velemenyek,
    #galeria,
    #kapcsolat {
        scroll-margin-top: 92px !important;
    }
}

/* Alacsony laptopmagasságon ne nőjön túl a szekció */
@media (min-width: 901px) and (max-height: 820px) {
    :root {
        --section-overlap: 42px;
        --section-radius-top: 44px;
    }

    .section-products,
    .section-why,
    .section-process,
    .section-reviews,
    .section-gallery,
    .section-cta {
        padding-top: calc(34px + var(--section-overlap)) !important;
    }
}

/* Mobilon nincs erőltetett rácsúszás, csak finomabb választóátmenet */
@media (max-width: 900px) {
    .section-products,
    .section-why,
    .section-process,
    .section-reviews,
    .section-gallery,
    .section-cta {
        margin-top: -24px !important;
        padding-top: 88px !important;
        border-radius: 34px 34px 0 0 !important;
        box-shadow: 0 -18px 46px rgba(72, 50, 38, 0.12) !important;
    }

    .hero::after,
    .section-products::after,
    .section-why::after,
    .section-process::after,
    .section-reviews::after,
    .section-gallery::after,
    .section-cta::after {
        background:
            linear-gradient(180deg,
                rgba(255, 250, 246, 0.54) 0%,
                rgba(226, 211, 255, 0.26) 30%,
                rgba(255, 250, 246, 0.42) 100%
            ) !important;
    }
}

/* =========================================================
   TIMAVIDA – KIEMELT KOLLEKCIÓK HÁTTÉR VISSZAÁLLÍTÁS
   Cél: háttérkép látszódjon, de a szövegek olvashatóak maradjanak
========================================================= */

.section-products {
    position: relative !important;
    isolation: isolate !important;

    background:
        linear-gradient(
            180deg,
            rgba(246, 236, 255, 0.18) 0%,
            rgba(255, 250, 246, 0.12) 45%,
            rgba(246, 236, 255, 0.20) 100%
        ),
        var(--bg-products) !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Csak enyhe lila fátyol, nem teljes fehérítés */
.section-products::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;

    background:
        radial-gradient(
            circle at 50% 24%,
            rgba(255, 250, 246, 0.34) 0%,
            rgba(255, 250, 246, 0.18) 32%,
            rgba(224, 202, 245, 0.14) 64%,
            rgba(224, 202, 245, 0.10) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 250, 246, 0.10) 0%,
            rgba(246, 236, 255, 0.12) 100%
        ) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
}

/* Ezen a szekción ne legyen extra dekor-overlay, mert zavarja a képet */
.section-products::after {
    display: none !important;
}

/* Tartalom a háttér fölött */
.section-products > .container {
    position: relative !important;
    z-index: 2 !important;
}

/* Fejléc olvasható, de nem tünteti el a hátteret */
.section-products .section-head {
    max-width: 860px !important;
    margin: 0 auto 34px !important;
    padding: 24px 34px 26px !important;

    border-radius: 34px !important;
    background: rgba(255, 250, 246, 0.68) !important;
    border: 1px solid rgba(255, 255, 255, 0.62) !important;

    box-shadow:
        0 24px 70px rgba(60, 42, 28, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;

    backdrop-filter: blur(6px) saturate(1.04) !important;
    -webkit-backdrop-filter: blur(6px) saturate(1.04) !important;
}

/* Cím olvashatóság */
.section-products .section-title {
    color: #2b211b !important;
    text-shadow:
        0 2px 0 rgba(255, 255, 255, 0.68),
        0 12px 32px rgba(255, 255, 255, 0.70) !important;
}

.section-products .section-lead {
    color: rgba(50, 38, 30, 0.86) !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.56) !important;
}

/* Termékkártyák: stabil, de nem túl fehér */
.section-products .product-card {
    background: rgba(255, 250, 246, 0.86) !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;

    box-shadow:
        0 22px 58px rgba(56, 39, 28, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;

    backdrop-filter: blur(5px) saturate(1.04) !important;
    -webkit-backdrop-filter: blur(5px) saturate(1.04) !important;
}

.section-products .product-body {
    background: rgba(255, 250, 246, 0.88) !important;
}

.section-products .product-body h3 {
    color: #2b211b !important;
}

.section-products .product-body p {
    color: rgba(55, 42, 34, 0.82) !important;
    font-weight: 600 !important;
}

.section-products .product-cta {
    color: #8f5126 !important;
    font-weight: 900 !important;
}

/* Mobilon is látszódjon a háttér */
@media (max-width: 650px) {
    .section-products {
        background-position: center center !important;
    }

    .section-products::before {
        background:
            linear-gradient(
                180deg,
                rgba(255, 250, 246, 0.18),
                rgba(246, 236, 255, 0.16),
                rgba(255, 250, 246, 0.18)
            ) !important;
    }

    .section-products .section-head {
        padding: 22px 18px !important;
        border-radius: 26px !important;
        margin-bottom: 28px !important;
    }
}
/* =========================================================
   TIMAVIDA – KIEMELT KOLLEKCIÓK POZÍCIÓ FINOMHANGOLÁS
   Cél: címblokk feljebb, arányos távolság a tetejétől és a kártyáktól
========================================================= */

@media (min-width: 901px) {
    .section-products {
        padding-top: 34px !important;
        padding-bottom: 46px !important;
        align-items: flex-start !important;
    }

    .section-products > .container {
        padding-top: 18px !important;
    }

    .section-products .section-head {
        margin-top: 0 !important;
        margin-bottom: 38px !important;
        transform: translateY(-18px) !important;
    }

    .section-products .product-grid {
        margin-top: -8px !important;
    }
}

/* Kisebb laptopmagasságnál még kompaktabb */
@media (min-width: 901px) and (max-height: 820px) {
    .section-products {
        padding-top: 24px !important;
        padding-bottom: 36px !important;
    }

    .section-products > .container {
        padding-top: 10px !important;
    }

    .section-products .section-head {
        margin-bottom: 32px !important;
        transform: translateY(-14px) !important;
    }

    .section-products .product-grid {
        margin-top: -6px !important;
    }
}
/* =========================================================
   TIMAVIDA – MIÉRT TIMAVIDA SZEKCIÓ PRÉMIUM ÚJRATERVEZÉS
   Cél: szebb kompozíció, nem lebegő cím + négy doboz, hanem prémium osztott layout
========================================================= */

@media (min-width: 901px) {

    .section-why {
        position: relative !important;
        isolation: isolate !important;

        min-height: calc(100vh - 72px) !important;
        padding: 54px 0 58px !important;

        display: flex !important;
        align-items: center !important;

        background:
            linear-gradient(
                90deg,
                rgba(255, 250, 246, 0.42) 0%,
                rgba(246, 236, 255, 0.22) 42%,
                rgba(255, 250, 246, 0.16) 100%
            ),
            var(--bg-hero) !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;

        border-top-left-radius: 54px !important;
        border-top-right-radius: 54px !important;
        overflow: hidden !important;
    }

    .section-why::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        pointer-events: none !important;

        background:
            radial-gradient(
                circle at 21% 48%,
                rgba(255, 250, 246, 0.72) 0%,
                rgba(255, 250, 246, 0.42) 29%,
                rgba(231, 209, 247, 0.16) 58%,
                rgba(231, 209, 247, 0.08) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.06),
                rgba(209, 180, 232, 0.12)
            ) !important;
    }

    .section-why::after {
        content: "" !important;
        position: absolute !important;
        inset: auto -120px -170px auto !important;
        width: 380px !important;
        height: 380px !important;
        z-index: 0 !important;
        pointer-events: none !important;

        border-radius: 999px !important;
        background:
            radial-gradient(circle, rgba(230, 205, 247, 0.38), transparent 68%) !important;
        opacity: 0.72 !important;
    }

    .section-why > .container {
        position: relative !important;
        z-index: 2 !important;

        display: grid !important;
        grid-template-columns: 0.9fr 1.1fr !important;
        align-items: center !important;
        gap: 42px !important;

        width: min(100% - 72px, 1120px) !important;
    }

    /* Bal oldali márkaüzenet blokk */
    .section-why .section-head {
        margin: 0 !important;
        max-width: none !important;
        text-align: left !important;

        padding: 40px 42px 42px !important;
        border-radius: 34px !important;

        background: rgba(255, 250, 246, 0.70) !important;
        border: 1px solid rgba(255, 255, 255, 0.72) !important;

        box-shadow:
            0 28px 78px rgba(48, 34, 24, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;

        backdrop-filter: blur(8px) saturate(1.06) !important;
        -webkit-backdrop-filter: blur(8px) saturate(1.06) !important;
    }

    .section-why .section-head::after {
        content: "TimaVida" !important;
        display: inline-flex !important;
        margin-top: 28px !important;

        font-family: var(--font-serif) !important;
        font-size: 34px !important;
        font-weight: 700 !important;
        font-style: italic !important;
        line-height: 1 !important;

        color: rgba(142, 92, 50, 0.34) !important;
    }

    .section-why .eyebrow {
        margin-bottom: 16px !important;
        color: #8c5529 !important;
        background: rgba(255, 255, 255, 0.78) !important;
        border-color: rgba(166, 101, 50, 0.22) !important;
        box-shadow: 0 10px 24px rgba(70, 48, 31, 0.08) !important;
    }

    .section-why .section-title {
        max-width: 520px !important;
        margin: 0 0 18px !important;

        font-size: clamp(42px, 4.5vw, 64px) !important;
        line-height: 0.94 !important;
        color: #2b211b !important;

        text-align: left !important;
        text-shadow:
            0 2px 0 rgba(255, 255, 255, 0.66),
            0 14px 34px rgba(255, 255, 255, 0.68) !important;
    }

    .section-why .section-lead {
        max-width: 520px !important;
        margin: 0 !important;

        color: rgba(50, 38, 30, 0.84) !important;
        font-size: 16px !important;
        line-height: 1.72 !important;
        font-weight: 600 !important;
        text-align: left !important;
    }

    /* Jobb oldali 2×2 előnykártyák */
    .section-why .why-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;

        margin: 0 !important;
        max-width: none !important;
    }

    .section-why .why-card {
        position: relative !important;
        min-height: 214px !important;

        padding: 28px 26px 26px !important;
        border-radius: 28px !important;

        text-align: left !important;
        overflow: hidden !important;

        background:
            linear-gradient(
                145deg,
                rgba(255, 250, 246, 0.84),
                rgba(246, 236, 255, 0.66)
            ) !important;

        border: 1px solid rgba(255, 255, 255, 0.76) !important;

        box-shadow:
            0 22px 58px rgba(48, 34, 24, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;

        backdrop-filter: blur(7px) saturate(1.06) !important;
        -webkit-backdrop-filter: blur(7px) saturate(1.06) !important;
    }

    .section-why .why-card::before {
        content: "" !important;
        position: absolute !important;
        inset: auto -42px -54px auto !important;
        width: 138px !important;
        height: 138px !important;
        border-radius: 999px !important;

        background:
            radial-gradient(circle, rgba(236, 201, 121, 0.34), transparent 66%) !important;
        pointer-events: none !important;
    }

    .section-why .why-card:hover {
        transform: translateY(-7px) !important;
        background:
            linear-gradient(
                145deg,
                rgba(255, 250, 246, 0.92),
                rgba(246, 236, 255, 0.74)
            ) !important;

        box-shadow:
            0 32px 82px rgba(48, 34, 24, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
    }

    .section-why .why-icon {
        width: 46px !important;
        height: 46px !important;
        margin: 0 0 20px !important;

        color: #362417 !important;
        background:
            linear-gradient(135deg, #efc879, #ffe5ad 56%, #d99b52) !important;

        box-shadow:
            0 14px 30px rgba(197, 139, 67, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
    }

    .section-why .why-card h3 {
        margin: 0 0 11px !important;

        font-size: 27px !important;
        line-height: 1.04 !important;
        color: #2b211b !important;
    }

    .section-why .why-card p {
        margin: 0 !important;

        color: rgba(55, 42, 34, 0.82) !important;
        font-size: 13.5px !important;
        line-height: 1.58 !important;
        font-weight: 600 !important;
    }

    .section-why .why-card:nth-child(2),
    .section-why .why-card:nth-child(3) {
        background:
            linear-gradient(
                145deg,
                rgba(255, 250, 246, 0.84),
                rgba(237, 242, 226, 0.64)
            ) !important;
    }
}

/* Kisebb laptopmagasság */
@media (min-width: 901px) and (max-height: 820px) {
    .section-why {
        padding-top: 40px !important;
        padding-bottom: 44px !important;
    }

    .section-why > .container {
        gap: 34px !important;
    }

    .section-why .section-head {
        padding: 32px 34px !important;
    }

    .section-why .section-title {
        font-size: clamp(38px, 4vw, 54px) !important;
    }

    .section-why .section-lead {
        font-size: 14.8px !important;
        line-height: 1.58 !important;
    }

    .section-why .why-card {
        min-height: 184px !important;
        padding: 22px 22px !important;
    }

    .section-why .why-icon {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 14px !important;
    }

    .section-why .why-card h3 {
        font-size: 24px !important;
    }

    .section-why .why-card p {
        font-size: 12.8px !important;
        line-height: 1.45 !important;
    }
}

/* Tablet */
@media (max-width: 1150px) and (min-width: 901px) {
    .section-why > .container {
        grid-template-columns: 1fr !important;
        max-width: 860px !important;
    }

    .section-why .section-head,
    .section-why .section-title,
    .section-why .section-lead {
        text-align: center !important;
        margin-inline: auto !important;
    }

    .section-why .section-head::after {
        justify-content: center !important;
    }
}

/* Mobil */
@media (max-width: 650px) {
    .section-why {
        border-top-left-radius: 34px !important;
        border-top-right-radius: 34px !important;
    }

    .section-why .section-head {
        padding: 26px 20px !important;
        border-radius: 28px !important;
        background: rgba(255, 250, 246, 0.76) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
    }

    .section-why .why-card {
        text-align: left !important;
        background: rgba(255, 250, 246, 0.86) !important;
        border: 1px solid rgba(255, 255, 255, 0.72) !important;
    }

    .section-why .why-icon {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
/* =========================================================
   TIMAVIDA – RENDELÉS FOLYAMATA SZEKCIÓ PRÉMIUM JAVÍTÁS
   Cél: szebb kompozíció, olvasható bal blokk, elegáns lépéskártyák
========================================================= */

@media (min-width: 901px) {

    .section-process {
        position: relative !important;
        isolation: isolate !important;

        min-height: calc(100vh - 72px) !important;
        padding: 56px 0 60px !important;

        display: flex !important;
        align-items: center !important;

        background:
            linear-gradient(
                90deg,
                rgba(255, 250, 246, 0.42) 0%,
                rgba(246, 236, 255, 0.22) 44%,
                rgba(255, 250, 246, 0.18) 100%
            ),
            var(--bg-process) !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;

        border-top-left-radius: 54px !important;
        border-top-right-radius: 54px !important;
        overflow: hidden !important;
    }

    .section-process::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        pointer-events: none !important;

        background:
            radial-gradient(
                circle at 24% 48%,
                rgba(255, 250, 246, 0.72) 0%,
                rgba(255, 250, 246, 0.42) 30%,
                rgba(230, 206, 247, 0.15) 60%,
                rgba(230, 206, 247, 0.08) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.04),
                rgba(214, 184, 235, 0.12)
            ) !important;
    }

    .section-process::after {
        content: "" !important;
        position: absolute !important;
        right: -120px !important;
        bottom: -160px !important;
        width: 390px !important;
        height: 390px !important;
        z-index: 0 !important;
        pointer-events: none !important;

        border-radius: 999px !important;
        background: radial-gradient(circle, rgba(230, 205, 247, 0.34), transparent 68%) !important;
        opacity: 0.75 !important;
    }

    .section-process > .container {
        position: relative !important;
        z-index: 2 !important;

        display: grid !important;
        grid-template-columns: 0.86fr 1.14fr !important;
        align-items: center !important;
        gap: 46px !important;

        width: min(100% - 72px, 1120px) !important;
    }

    /* BAL OLDALI SZÖVEGBLOKK */
    .section-process .process-copy {
        position: relative !important;
        top: auto !important;

        max-width: none !important;
        padding: 40px 42px 42px !important;
        border-radius: 34px !important;

        text-align: left !important;

        background: rgba(255, 250, 246, 0.70) !important;
        border: 1px solid rgba(255, 255, 255, 0.72) !important;

        box-shadow:
            0 28px 78px rgba(48, 34, 24, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;

        backdrop-filter: blur(8px) saturate(1.06) !important;
        -webkit-backdrop-filter: blur(8px) saturate(1.06) !important;
    }

    .section-process .process-copy::after {
        content: "01 · 02 · 03" !important;
        display: inline-flex !important;
        margin-top: 28px !important;

        font-family: var(--font-serif) !important;
        font-size: 34px !important;
        font-weight: 700 !important;
        font-style: italic !important;
        line-height: 1 !important;

        color: rgba(142, 92, 50, 0.34) !important;
    }

    .section-process .process-copy .eyebrow {
        margin-bottom: 16px !important;
        color: #8c5529 !important;
        background: rgba(255, 255, 255, 0.78) !important;
        border-color: rgba(166, 101, 50, 0.22) !important;
        box-shadow: 0 10px 24px rgba(70, 48, 31, 0.08) !important;
    }

    .section-process .process-copy .section-title {
        max-width: 520px !important;
        margin: 0 0 18px !important;

        font-size: clamp(42px, 4.4vw, 62px) !important;
        line-height: 0.94 !important;
        color: #2b211b !important;

        text-align: left !important;
        text-shadow:
            0 2px 0 rgba(255, 255, 255, 0.66),
            0 14px 34px rgba(255, 255, 255, 0.68) !important;
    }

    .section-process .process-copy .section-lead {
        max-width: 520px !important;
        margin: 0 !important;

        color: rgba(50, 38, 30, 0.84) !important;
        font-size: 16px !important;
        line-height: 1.72 !important;
        font-weight: 600 !important;
        text-align: left !important;
    }

    /* JOBB OLDALI LÉPÉSEK */
    .section-process .process-list {
        position: relative !important;
        display: grid !important;
        gap: 18px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .section-process .process-list::before {
        content: "" !important;
        position: absolute !important;
        left: 34px !important;
        top: 34px !important;
        bottom: 34px !important;
        width: 1px !important;

        background: linear-gradient(
            180deg,
            rgba(197, 139, 67, 0),
            rgba(197, 139, 67, 0.46),
            rgba(197, 139, 67, 0)
        ) !important;

        pointer-events: none !important;
    }

    .section-process .process-card {
        position: relative !important;
        z-index: 1 !important;

        display: grid !important;
        grid-template-columns: 64px 1fr !important;
        align-items: center !important;
        gap: 22px !important;

        min-height: 126px !important;
        padding: 24px 30px 24px 24px !important;
        border-radius: 28px !important;

        overflow: hidden !important;

        background:
            linear-gradient(
                145deg,
                rgba(255, 250, 246, 0.86),
                rgba(246, 236, 255, 0.68)
            ) !important;

        border: 1px solid rgba(255, 255, 255, 0.76) !important;

        box-shadow:
            0 22px 58px rgba(48, 34, 24, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;

        backdrop-filter: blur(7px) saturate(1.06) !important;
        -webkit-backdrop-filter: blur(7px) saturate(1.06) !important;

        transition:
            transform 0.35s var(--ease),
            box-shadow 0.35s var(--ease),
            background 0.35s var(--ease) !important;
    }

    .section-process .process-card::before {
        content: "" !important;
        position: absolute !important;
        inset: auto -56px -70px auto !important;

        width: 160px !important;
        height: 160px !important;
        border-radius: 999px !important;

        background: radial-gradient(circle, rgba(236, 201, 121, 0.34), transparent 66%) !important;
        pointer-events: none !important;
    }

    .section-process .process-card:nth-child(2) {
        margin-left: 34px !important;
    }

    .section-process .process-card:nth-child(3) {
        margin-left: 68px !important;
    }

    .section-process .process-card:hover {
        transform: translateY(-6px) translateX(4px) !important;

        background:
            linear-gradient(
                145deg,
                rgba(255, 250, 246, 0.94),
                rgba(246, 236, 255, 0.76)
            ) !important;

        box-shadow:
            0 32px 82px rgba(48, 34, 24, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
    }

    .section-process .process-card > span {
        position: relative !important;
        z-index: 2 !important;

        width: 58px !important;
        height: 58px !important;
        border-radius: 21px !important;

        display: grid !important;
        place-items: center !important;

        color: #362417 !important;
        background:
            linear-gradient(135deg, #efc879, #ffe5ad 56%, #d99b52) !important;

        box-shadow:
            0 14px 30px rgba(197, 139, 67, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;

        font-size: 15px !important;
        font-weight: 900 !important;
    }

    .section-process .process-card h3 {
        margin: 0 0 7px !important;

        color: #2b211b !important;
        font-size: 28px !important;
        line-height: 1.04 !important;
    }

    .section-process .process-card p {
        margin: 0 !important;

        color: rgba(55, 42, 34, 0.82) !important;
        font-size: 13.8px !important;
        line-height: 1.55 !important;
        font-weight: 600 !important;
    }
}

/* Kisebb laptopmagasság */
@media (min-width: 901px) and (max-height: 820px) {
    .section-process {
        padding-top: 40px !important;
        padding-bottom: 44px !important;
    }

    .section-process > .container {
        gap: 34px !important;
    }

    .section-process .process-copy {
        padding: 32px 34px !important;
    }

    .section-process .process-copy .section-title {
        font-size: clamp(38px, 4vw, 54px) !important;
    }

    .section-process .process-copy .section-lead {
        font-size: 14.8px !important;
        line-height: 1.58 !important;
    }

    .section-process .process-card {
        min-height: 108px !important;
        padding: 20px 24px 20px 20px !important;
    }

    .section-process .process-card > span {
        width: 52px !important;
        height: 52px !important;
        border-radius: 18px !important;
    }

    .section-process .process-card h3 {
        font-size: 24px !important;
    }

    .section-process .process-card p {
        font-size: 12.8px !important;
        line-height: 1.45 !important;
    }
}

/* Tablet */
@media (max-width: 1150px) and (min-width: 901px) {
    .section-process > .container {
        grid-template-columns: 1fr !important;
        max-width: 860px !important;
    }

    .section-process .process-copy,
    .section-process .process-copy .section-title,
    .section-process .process-copy .section-lead {
        text-align: center !important;
        margin-inline: auto !important;
    }

    .section-process .process-copy::after {
        justify-content: center !important;
    }

    .section-process .process-card,
    .section-process .process-card:nth-child(2),
    .section-process .process-card:nth-child(3) {
        margin-left: 0 !important;
    }
}

/* Mobil */
@media (max-width: 650px) {
    .section-process {
        border-top-left-radius: 34px !important;
        border-top-right-radius: 34px !important;
    }

    .section-process .process-copy {
        padding: 26px 20px !important;
        border-radius: 28px !important;
        background: rgba(255, 250, 246, 0.76) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
    }

    .section-process .process-card {
        background: rgba(255, 250, 246, 0.86) !important;
        border: 1px solid rgba(255, 255, 255, 0.72) !important;
    }
}
/* =========================================================
   TIMAVIDA – INSPIRÁCIÓK / GALÉRIA SZEKCIÓ PRÉMIUM JAVÍTÁS
   Cél: olvasható cím, szebb bento galéria, elegánsabb képkártyák
========================================================= */

@media (min-width: 901px) {

    .section-gallery {
        position: relative !important;
        isolation: isolate !important;

        min-height: calc(100vh - 72px) !important;
        padding: 46px 0 54px !important;

        display: flex !important;
        align-items: center !important;

        background:
            linear-gradient(
                180deg,
                rgba(246, 236, 255, 0.24) 0%,
                rgba(255, 250, 246, 0.12) 45%,
                rgba(246, 236, 255, 0.20) 100%
            ),
            var(--bg-products) !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;

        border-top-left-radius: 54px !important;
        border-top-right-radius: 54px !important;
        overflow: hidden !important;
    }

    .section-gallery::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        pointer-events: none !important;

        background:
            radial-gradient(
                circle at 50% 18%,
                rgba(255, 250, 246, 0.64) 0%,
                rgba(255, 250, 246, 0.36) 30%,
                rgba(231, 209, 247, 0.16) 64%,
                rgba(231, 209, 247, 0.08) 100%
            ),
            linear-gradient(
                90deg,
                rgba(255, 250, 246, 0.18),
                rgba(246, 236, 255, 0.10),
                rgba(255, 250, 246, 0.14)
            ) !important;
    }

    .section-gallery::after {
        display: none !important;
    }

    .section-gallery > .container {
        position: relative !important;
        z-index: 2 !important;
        width: min(100% - 72px, 1120px) !important;
    }

    /* Címblokk külön prémium panelben */
    .section-gallery .section-head {
        max-width: 780px !important;
        margin: 0 auto 28px !important;
        padding: 22px 34px 24px !important;

        border-radius: 32px !important;
        background: rgba(255, 250, 246, 0.68) !important;
        border: 1px solid rgba(255, 255, 255, 0.72) !important;

        box-shadow:
            0 24px 70px rgba(48, 34, 24, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;

        backdrop-filter: blur(7px) saturate(1.06) !important;
        -webkit-backdrop-filter: blur(7px) saturate(1.06) !important;
    }

    .section-gallery .eyebrow {
        margin-bottom: 12px !important;
        color: #8c5529 !important;
        background: rgba(255, 255, 255, 0.78) !important;
        border-color: rgba(166, 101, 50, 0.22) !important;
        box-shadow: 0 10px 24px rgba(70, 48, 31, 0.08) !important;
    }

    .section-gallery .section-title {
        margin-bottom: 10px !important;
        color: #2b211b !important;
        font-size: clamp(38px, 4.3vw, 58px) !important;
        line-height: 0.96 !important;

        text-shadow:
            0 2px 0 rgba(255, 255, 255, 0.66),
            0 14px 34px rgba(255, 255, 255, 0.72) !important;
    }

    .section-gallery .section-lead {
        max-width: 620px !important;
        font-size: 15.5px !important;
        line-height: 1.55 !important;
        color: rgba(50, 38, 30, 0.84) !important;
        font-weight: 600 !important;
        text-shadow: 0 2px 14px rgba(255, 255, 255, 0.54) !important;
    }

    /* Bento galéria – rendezettebb, prémiumabb */
    .section-gallery .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(12, 1fr) !important;
        grid-auto-rows: 112px !important;
        gap: 14px !important;

        max-width: 1040px !important;
        margin: 0 auto !important;

        filter: none !important;
    }

    .section-gallery .gallery-item {
        position: relative !important;
        margin: 0 !important;
        overflow: hidden !important;

        border-radius: 24px !important;
        border: 5px solid rgba(255, 250, 246, 0.84) !important;

        background: rgba(255, 250, 246, 0.70) !important;

        box-shadow:
            0 22px 58px rgba(48, 34, 24, 0.20),
            0 0 0 1px rgba(255, 255, 255, 0.56) !important;

        cursor: zoom-in !important;
        transform: translateZ(0) !important;
    }

    .section-gallery .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;

        filter: saturate(1.08) contrast(1.04) brightness(1.02) !important;
        transition:
            transform 0.55s var(--ease),
            filter 0.35s var(--ease) !important;
    }

    .section-gallery .gallery-item:hover img {
        transform: scale(1.07) !important;
        filter: saturate(1.14) contrast(1.06) brightness(1.03) !important;
    }

    .section-gallery .gallery-item::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        pointer-events: none !important;

        background:
            linear-gradient(
                180deg,
                rgba(43, 33, 27, 0.02) 0%,
                rgba(43, 33, 27, 0.08) 44%,
                rgba(43, 33, 27, 0.66) 100%
            ) !important;
    }

    .section-gallery .gallery-item figcaption {
        position: absolute !important;
        left: 16px !important;
        right: 16px !important;
        bottom: 14px !important;
        z-index: 2 !important;

        display: inline-flex !important;
        width: fit-content !important;
        max-width: calc(100% - 32px) !important;

        padding: 8px 12px !important;
        border-radius: 999px !important;

        color: #fffaf3 !important;
        background: rgba(43, 33, 27, 0.46) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;

        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34) !important;

        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    /* Szebb, arányosabb bento kiosztás */
    .section-gallery .gi-1 {
        grid-column: span 5 !important;
        grid-row: span 3 !important;
    }

    .section-gallery .gi-2 {
        grid-column: span 3 !important;
        grid-row: span 2 !important;
    }

    .section-gallery .gi-3 {
        grid-column: span 4 !important;
        grid-row: span 2 !important;
    }

    .section-gallery .gi-4 {
        grid-column: span 7 !important;
        grid-row: span 2 !important;
    }

    .section-gallery .gi-5 {
        grid-column: span 3 !important;
        grid-row: span 2 !important;
    }

    .section-gallery .gi-6 {
        grid-column: span 4 !important;
        grid-row: span 2 !important;
    }
}

/* Kisebb laptopmagasságnál kompaktabb galéria */
@media (min-width: 901px) and (max-height: 820px) {
    .section-gallery {
        padding-top: 36px !important;
        padding-bottom: 42px !important;
    }

    .section-gallery .section-head {
        margin-bottom: 22px !important;
        padding: 18px 30px 20px !important;
    }

    .section-gallery .section-title {
        font-size: clamp(34px, 3.8vw, 50px) !important;
    }

    .section-gallery .section-lead {
        font-size: 14.4px !important;
        line-height: 1.45 !important;
    }

    .section-gallery .gallery-grid {
        grid-auto-rows: 96px !important;
        gap: 12px !important;
        max-width: 990px !important;
    }

    .section-gallery .gallery-item {
        border-width: 4px !important;
        border-radius: 20px !important;
    }

    .section-gallery .gallery-item figcaption {
        font-size: 12px !important;
        padding: 7px 10px !important;
    }
}

/* Tablet */
@media (max-width: 1150px) and (min-width: 901px) {
    .section-gallery .gallery-grid {
        max-width: 920px !important;
        grid-auto-rows: 100px !important;
    }
}

/* Mobil – egyszerűbb, stabilabb lista */
@media (max-width: 650px) {
    .section-gallery {
        border-top-left-radius: 34px !important;
        border-top-right-radius: 34px !important;
    }

    .section-gallery .section-head {
        padding: 22px 18px !important;
        border-radius: 28px !important;
        background: rgba(255, 250, 246, 0.76) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
    }

    .section-gallery .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 260px !important;
        gap: 16px !important;
    }

    .section-gallery .gallery-item,
    .section-gallery .gi-1,
    .section-gallery .gi-2,
    .section-gallery .gi-3,
    .section-gallery .gi-4,
    .section-gallery .gi-5,
    .section-gallery .gi-6 {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .section-gallery .gallery-item {
        border-radius: 24px !important;
        border: 5px solid rgba(255, 250, 246, 0.84) !important;
    }
}