/* =========================================================
   CaffeeMandala'D – Világos, romantikus, kézműves landing
   Hangulat: napfényes műhely, virágos-bohém, meleg fa, krém, karamell
   ========================================================= */

:root {
    --color-bg: #f7efe3;
    --color-bg-deep: #eadcc8;
    --color-bg-soft: #fffaf1;

    --color-cream: #fffaf1;
    --color-champagne: #ead2a8;
    --color-gold: #c8893d;
    --color-gold-light: #f0c46b;
    --color-rose: #d99a8f;
    --color-rose-soft: #f1cfc6;
    --color-sage: #a8b79c;
    --color-sage-soft: #dfe6d4;
    --color-wood: #9b6538;
    --color-caramel: #c98245;

    --color-text: #433124;
    --color-text-dark: #2f241c;
    --color-muted: #7d6b5a;

    --shadow-soft: 0 24px 70px rgba(112, 75, 38, 0.14);
    --shadow-card: 0 18px 44px rgba(112, 75, 38, 0.13);
    --shadow-hover: 0 32px 74px rgba(112, 75, 38, 0.22);

    --radius-xl: 34px;
    --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);
}

/* RESET */

*,
*::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 13% 8%, rgba(240, 196, 107, 0.32), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(217, 154, 143, 0.24), transparent 38%),
        radial-gradient(circle at 18% 82%, rgba(168, 183, 156, 0.28), transparent 40%),
        radial-gradient(circle at 78% 78%, rgba(255, 250, 241, 0.78), transparent 42%),
        linear-gradient(135deg, #fff8ec 0%, #f6eadb 45%, #eef1e5 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.42), transparent 38%, rgba(216,154,143,0.15)),
        radial-gradient(circle at center, transparent 0, rgba(155,101,56,0.035) 100%);
}

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.2px;
    margin: 0;
    color: var(--color-text-dark);
}

p {
    margin: 0;
}

em {
    color: var(--color-caramel);
    font-style: italic;
}

/* ALAP LAYOUT */

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 112px 0;
}

.section::before {
    content: "";
    position: absolute;
    inset: 34px auto auto 4%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, rgba(200,137,61,0.12) 0 1px, transparent 1px 17px);
    opacity: 0.45;
    pointer-events: none;
}

.section-head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(200, 137, 61, 0.28);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.72);
    color: #a66b31;
    box-shadow: 0 10px 26px rgba(155, 101, 56, 0.08);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #7a532c;
    border-color: rgba(122, 83, 44, 0.22);
    background: rgba(255, 250, 241, 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.5);
}

.section-lead {
    max-width: 680px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

/* GOMBOK */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 800;
    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: #342416;
    background: linear-gradient(135deg, #efbd69, #ffe2a4 55%, #f0c27a);
    box-shadow: 0 18px 38px rgba(200, 137, 61, 0.26);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px rgba(200, 137, 61, 0.36);
}

.btn-ghost {
    color: var(--color-text-dark);
    border-color: rgba(155, 101, 56, 0.2);
    background: rgba(255, 250, 241, 0.66);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(112, 75, 38, 0.08);
}

.btn-ghost:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 137, 61, 0.48);
    background: rgba(255, 244, 222, 0.92);
}

.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, 241, 0.84);
    border-bottom: 1px solid rgba(155, 101, 56, 0.13);
    backdrop-filter: blur(22px);
    box-shadow: 0 10px 34px rgba(112, 75, 38, 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: 27px;
    font-weight: 800;
    color: var(--color-text-dark);
}

.brand-tagline {
    margin-top: 5px;
    color: var(--color-caramel);
    font-size: 12px;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    font-weight: 800;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(67, 49, 36, 0.78);
    font-size: 14px;
    font-weight: 800;
    transition: color 0.3s var(--ease);
}

.main-nav a:hover {
    color: var(--color-caramel);
}

.main-nav .nav-cta {
    padding: 10px 18px;
    color: #342416;
    background: linear-gradient(135deg, #efbd69, #ffe2a4);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(200, 137, 61, 0.22);
}

/* HERO */

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 92px 0 104px;
    background:
        radial-gradient(circle at 12% 18%, rgba(240, 196, 107, 0.24), transparent 34%),
        radial-gradient(circle at 72% 24%, rgba(217, 154, 143, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(255,250,241,0.68), rgba(239,241,229,0.48));
}

.hero::before {
    content: "";
    position: absolute;
    left: -90px;
    top: -70px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, rgba(200,137,61,0.10) 0 1px, transparent 1px 22px);
    opacity: 0.65;
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(217,154,143,0.20), transparent 62%);
    opacity: 0.95;
}

.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.36;
    filter: blur(1px);
    animation: floatParticle 8s ease-in-out infinite;
}

.particle::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(255, 226, 164, 0.32);
}

.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.28; }
    50% { transform: translateY(-18px); opacity: 0.72; }
}

.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.6);
}

.hero-title em {
    color: #b8733e;
}

.hero-lead {
    max-width: 690px;
    color: rgba(67, 49, 36, 0.76);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.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(240, 196, 107, 0.42), rgba(217, 154, 143, 0.20) 45%, transparent 70%);
    filter: blur(18px);
}

.mandala-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 137, 61, 0.24);
    animation: slowSpin 28s linear infinite;
}

.ring-1 {
    width: 520px;
    height: 520px;
}

.ring-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, 241, 0.82);
    box-shadow: 0 30px 80px rgba(112, 75, 38, 0.24);
    background:
        linear-gradient(135deg, rgba(240, 196, 107, 0.22), rgba(255, 250, 241, 0.6)),
        #f2dec4;
}

.float-card {
    position: absolute;
    z-index: 4;
    padding: 12px 16px;
    border-radius: 999px;
    color: #3a281b;
    background: rgba(255, 250, 241, 0.86);
    border: 1px solid rgba(200, 137, 61, 0.2);
    box-shadow: 0 16px 34px rgba(112, 75, 38, 0.16);
    backdrop-filter: blur(16px);
    font-size: 13px;
    font-weight: 800;
}

.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,241,0.46), rgba(245,232,214,0.2));
}

.product-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 241, 0.82);
    border: 1px solid rgba(155, 101, 56, 0.12);
    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(240,196,107,0.20), transparent 35%),
        radial-gradient(circle at 100% 90%, rgba(168,183,156,0.20), 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(200, 137, 61, 0.34);
}

.product-card:hover::before {
    opacity: 1;
}

.product-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4.7;
    background:
        radial-gradient(circle at 50% 30%, rgba(240, 196, 107, 0.28), transparent 45%),
        #f0dfc7;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease), opacity 0.35s var(--ease);
}

.product-card:hover .product-media img {
    transform: scale(1.08);
}

.product-body {
    position: relative;
    z-index: 2;
    padding: 22px 20px 24px;
}

.product-body h3 {
    color: var(--color-text-dark);
    font-size: 29px;
    margin-bottom: 12px;
}

.product-body p {
    color: rgba(67, 49, 36, 0.72);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.product-cta {
    color: #a7662f;
    font-weight: 900;
    font-size: 14px;
}

/* MIÉRT VÁLASSZ ENGEM */

.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, 241, 0.78);
    border: 1px solid rgba(155, 101, 56, 0.12);
    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(200, 137, 61, 0.34);
    background: rgba(255, 250, 241, 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, #efbd69, #ffe2a4);
    box-shadow: 0 16px 34px rgba(200, 137, 61, 0.24);
}

.why-card h3 {
    color: var(--color-text-dark);
    font-size: 28px;
    margin-bottom: 14px;
}

.why-card p {
    color: rgba(67, 49, 36, 0.72);
}

/* VÉLEMÉNYEK */

.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, 241, 0.80);
    border: 1px solid rgba(155, 101, 56, 0.12);
    box-shadow: var(--shadow-card);
}

.review-stars {
    width: 100%;
    text-align: center;
    display: block;
    color: #d7993f;
    letter-spacing: 5px;
    margin-left: 2.5px;
    margin-bottom: 22px;
    font-size: 16px;
}

.review-card blockquote {
    margin: 0 0 24px;
    color: rgba(67, 49, 36, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.review-card figcaption {
    color: #a7662f;
    font-weight: 900;
}

/* GALÉRIA */

.gallery-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 30%, rgba(240, 196, 107, 0.22), transparent 45%),
        #f0dfc7;
    border: 7px solid rgba(255, 250, 241, 0.76);
    box-shadow: var(--shadow-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease), opacity 0.35s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fffaf1;
    font-weight: 900;
    font-size: 15px;
    text-shadow: 0 2px 14px rgba(47,36,28,0.58);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(67,49,36,0.58));
}

.gi-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.gi-4 {
    grid-column: span 2;
}

.gi-6 {
    grid-column: span 2;
}

/* CTA */

.section-cta {
    padding-bottom: 86px;
}

.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, #fff2d7 0%, #efbd69 52%, #e9a69a 100%);
    box-shadow: 0 34px 90px rgba(112, 75, 38, 0.22);
    border: 1px solid rgba(255,255,255,0.58);
}

.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,36,0.10) 0 1px, transparent 1px 22px);
    opacity: 0.52;
}

.cta-mandala {
    width: min(100%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(67, 49, 36, 0.18);
    background:
        repeating-radial-gradient(circle, rgba(67,49,36,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: 720px;
}

.cta-card .section-lead {
    margin: 0 0 30px;
    color: rgba(67, 49, 36, 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,241,0.74), rgba(234,220,200,0.82));
    border-top: 1px solid rgba(155, 101, 56, 0.13);
    box-shadow: inset 0 18px 34px rgba(112, 75, 38, 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, 36, 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, 36, 0.68);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--color-caramel);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(155, 101, 56, 0.13);
}

.footer-bottom p {
    color: rgba(67, 49, 36, 0.52);
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1150px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-content {
        text-align: center;
    }

    .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;
    }

    .ring-1 {
        width: 430px;
        height: 430px;
    }

    .ring-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.5px;
        padding: 7px 14px;
    }

    .section-title {
        font-size: clamp(36px, 12vw, 48px);
    }

    .section-lead {
        font-size: 16px;
    }

    .brand-name {
        font-size: 24px;
    }

    .main-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav .nav-cta {
        display: inline-flex;
        justify-content: center;
    }

    .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;
    }

    .ring-1 {
        width: 340px;
        height: 340px;
    }

    .ring-2 {
        width: 260px;
        height: 260px;
    }

    .float-card {
        display: none;
    }

    .product-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .product-body h3,
    .why-card h3 {
        font-size: 27px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .cta-card {
        border-radius: 28px;
    }

    .cta-mandala {
        width: 240px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .brand-name,
    .footer-brand .brand-tagline {
        display: block;
        text-align: center;
    }

    .footer-brand .brand-tagline {
        margin-top: 6px;
        line-height: 1.5;
    }
}

/* =========================================================
   MOBIL HAMBURGER HEADER – világos verzió
   ========================================================= */

.menu-toggle {
    display: none;
}

@media (max-width: 650px) {

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        overflow: visible !important;
        background: rgba(255, 250, 241, 0.96) !important;
        border-bottom: 1px solid rgba(155, 101, 56, 0.14) !important;
        backdrop-filter: blur(18px) !important;
        box-shadow: 0 12px 34px rgba(112, 75, 38, 0.10) !important;
    }

    .site-header .header-inner {
        position: relative !important;
        min-height: 76px !important;
        padding: 14px 0 !important;
        display: grid !important;
        grid-template-columns: 1fr 50px !important;
        align-items: center !important;
        gap: 12px !important;
        overflow: visible !important;
    }

    .site-header .brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        text-align: left !important;
        min-width: 0 !important;
    }

    .site-header .brand-name {
        display: block !important;
        font-size: 24px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        color: var(--color-text-dark) !important;
    }

    .site-header .brand-tagline {
        display: block !important;
        margin-top: 7px !important;
        font-size: 10px !important;
        line-height: 1.3 !important;
        letter-spacing: 3px !important;
        color: var(--color-caramel) !important;
        white-space: normal !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(200, 137, 61, 0.32) !important;
        border-radius: 16px !important;
        background: rgba(255, 244, 222, 0.76) !important;
        box-shadow: 0 12px 28px rgba(112, 75, 38, 0.14) !important;
        cursor: pointer !important;
    }

    .menu-toggle span {
        display: block !important;
        width: 23px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: var(--color-caramel) !important;
        transition: transform 0.3s ease, opacity 0.3s ease !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;

        margin: 0 !important;
        padding: 0 12px !important;

        background: rgba(255, 250, 241, 0.985) !important;
        border: 1px solid rgba(155, 101, 56, 0.14) !important;
        border-radius: 22px !important;
        box-shadow: 0 24px 70px rgba(112, 75, 38, 0.22) !important;
        backdrop-filter: blur(18px) !important;

        transform: translateY(-8px) !important;
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            padding 0.3s ease,
            transform 0.3s ease !important;
    }

    .site-header.nav-open .main-nav {
        max-height: 540px !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;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .main-nav li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .main-nav a {
        display: flex !important;
        width: 100% !important;
        min-height: 50px !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        border-radius: 16px !important;
        background: rgba(255, 244, 222, 0.72) !important;
        border: 1px solid rgba(155, 101, 56, 0.12) !important;
        color: var(--color-text-dark) !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        text-align: center !important;
        transition: all 0.25s ease !important;
    }

    .site-header .main-nav a:hover,
    .site-header .main-nav a:active {
        background: rgba(240, 196, 107, 0.22) !important;
        border-color: rgba(200, 137, 61, 0.32) !important;
        color: var(--color-wood) !important;
    }

    .site-header .main-nav .nav-cta {
        margin-top: 4px !important;
        background: linear-gradient(135deg, #efbd69, #ffe2a4) !important;
        color: #342416 !important;
        border: none !important;
        border-radius: 999px !important;
        box-shadow: 0 14px 28px rgba(200, 137, 61, 0.22) !important;
    }

    .site-header .main-nav .nav-cta:hover,
    .site-header .main-nav .nav-cta:active {
        background: linear-gradient(135deg, #f2c579, #ffe8b7) !important;
        color: #342416 !important;
    }

    .site-header.nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .site-header.nav-open .menu-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .site-header.nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
}

/* =========================================================
   DESKTOP HEADER – nagyobb menüpontok
   ========================================================= */

@media (min-width: 651px) {
    .site-header .main-nav a {
        font-size: 20px !important;
        font-weight: 800 !important;
        letter-spacing: 0.1px !important;
    }

    .site-header .main-nav ul {
        gap: 34px !important;
    }

    .site-header .main-nav .nav-cta {
        padding: 13px 24px !important;
        font-size: 17px !important;
        font-weight: 900 !important;
    }
}
/* =========================================================
   CAFFEEMANDALA'D – ÉLÉNK, VIRÁGOS, ROMANTIKUS DESIGN OVERRIDE
   Ezt a meglévő CSS LEGVÉGÉRE tedd!
   ========================================================= */

:root {
    --bg-floral-1: url("../assets/og1.jpg");
    --bg-window-2: url("../assets/og2.jpg");
    --bg-swing-3: url("../assets/og3.jpg");

    --color-bg: #fff4e4;
    --color-bg-deep: #f6dfbd;
    --color-bg-soft: #fffaf2;

    --color-cream: #fffaf2;
    --color-champagne: #ffe0a8;
    --color-gold: #e49a35;
    --color-gold-light: #ffd36f;
    --color-rose: #e98f93;
    --color-rose-soft: #ffd3d0;
    --color-sage: #8fb783;
    --color-sage-soft: #dceccb;
    --color-lavender: #bda7ef;
    --color-sky: #9ed7e8;
    --color-coral: #ff9a6c;
    --color-wood: #a56632;

    --color-text: #4b3322;
    --color-text-dark: #2f2118;
    --color-muted: #7b6049;

    --shadow-soft: 0 28px 80px rgba(130, 79, 31, 0.20);
    --shadow-card: 0 20px 54px rgba(130, 79, 31, 0.18);
    --shadow-hover: 0 36px 86px rgba(130, 79, 31, 0.30);
}

/* =========================================================
   TELJES OLDAL HÁTTÉR – NAPFÉNYES, VIRÁGOS
   ========================================================= */

body {
    color: var(--color-text) !important;
    background-color: #fff2dd !important;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 211, 111, 0.55), transparent 32%),
        radial-gradient(circle at 85% 18%, rgba(255, 154, 108, 0.36), transparent 34%),
        radial-gradient(circle at 14% 84%, rgba(143, 183, 131, 0.34), transparent 36%),
        radial-gradient(circle at 82% 80%, rgba(189, 167, 239, 0.28), transparent 38%),
        linear-gradient(135deg, #fff8ec 0%, #ffe6bf 36%, #f7d7c8 66%, #e9efd7 100%) !important;
}

body::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -2 !important;
    pointer-events: none !important;
    background:
        linear-gradient(90deg, rgba(255, 248, 236, 0.78), rgba(255, 234, 198, 0.56), rgba(255, 214, 202, 0.42)),
        var(--bg-floral-1) !important;
    background-size: cover !important;
    background-position: center top !important;
    opacity: 0.52 !important;
    filter: saturate(1.2) contrast(1.03) !important;
}

body::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.62), transparent 28%),
        radial-gradient(circle at 78% 26%, rgba(255, 204, 115, 0.28), transparent 34%),
        radial-gradient(circle at 50% 88%, rgba(255, 156, 126, 0.22), transparent 42%) !important;
}

/* =========================================================
   HEADER – VILÁGOS, ÜDE, MÉGIS OLVASHATÓ
   ========================================================= */

.site-header {
    background: rgba(255, 248, 236, 0.88) !important;
    border-bottom: 1px solid rgba(166, 102, 50, 0.18) !important;
    box-shadow: 0 12px 38px rgba(130, 79, 31, 0.12) !important;
    backdrop-filter: blur(20px) saturate(1.25) !important;
}

.brand-name {
    color: #352316 !important;
}

.brand-tagline {
    color: #c87924 !important;
    font-weight: 900 !important;
}

.main-nav a {
    color: rgba(53, 35, 22, 0.78) !important;
}

.main-nav a:hover {
    color: #d97924 !important;
}

.main-nav .nav-cta {
    color: #392414 !important;
    background: linear-gradient(135deg, #ffc95f, #ffe3a3 55%, #ffad7a) !important;
    box-shadow: 0 14px 34px rgba(228, 154, 53, 0.28) !important;
}

/* =========================================================
   HERO – ABLAKOS/VIRÁGOS KÉP HÁTTÉRNEK
   ========================================================= */

.hero {
    isolation: isolate !important;
    min-height: calc(100vh - 82px) !important;
    background:
        linear-gradient(90deg, rgba(255, 248, 236, 0.94) 0%, rgba(255, 238, 204, 0.78) 38%, rgba(255, 222, 194, 0.48) 72%, rgba(255, 212, 194, 0.36) 100%),
        var(--bg-window-2) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

.hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    background:
        radial-gradient(circle at 18% 26%, rgba(255, 211, 111, 0.42), transparent 32%),
        radial-gradient(circle at 72% 22%, rgba(255, 154, 108, 0.28), transparent 34%),
        radial-gradient(circle at 86% 78%, rgba(143, 183, 131, 0.25), transparent 38%) !important;
}

.hero::after {
    content: "" !important;
    position: absolute !important;
    right: -120px !important;
    bottom: -140px !important;
    width: 520px !important;
    height: 520px !important;
    z-index: 0 !important;
    pointer-events: none !important;
    border-radius: 50% !important;
    background:
        repeating-radial-gradient(circle, rgba(228, 154, 53, 0.16) 0 1px, transparent 1px 21px),
        radial-gradient(circle, rgba(255, 211, 111, 0.34), transparent 70%) !important;
    opacity: 0.85 !important;
}

.hero-grid,
.hero-content,
.hero-visual {
    position: relative !important;
    z-index: 2 !important;
}

.hero-title {
    color: #2f2118 !important;
    text-shadow: 0 10px 32px rgba(255, 255, 255, 0.78) !important;
}

.hero-title em {
    color: #d46c2f !important;
    text-shadow: 0 10px 28px rgba(255, 237, 199, 0.72) !important;
}

.hero-lead {
    color: rgba(58, 39, 25, 0.82) !important;
    font-weight: 600 !important;
}

.hero-image {
    border: 10px solid rgba(255, 250, 242, 0.88) !important;
    box-shadow:
        0 34px 90px rgba(130, 79, 31, 0.28),
        0 0 0 1px rgba(228, 154, 53, 0.22) !important;
    filter: saturate(1.1) contrast(1.04) !important;
}

.hero-glow {
    background: radial-gradient(circle, rgba(255, 211, 111, 0.58), rgba(255, 154, 108, 0.30) 42%, rgba(189, 167, 239, 0.22) 62%, transparent 74%) !important;
}

.mandala-ring {
    border-color: rgba(228, 154, 53, 0.36) !important;
}

.float-card {
    color: #382414 !important;
    background: rgba(255, 250, 242, 0.92) !important;
    border: 1px solid rgba(228, 154, 53, 0.26) !important;
    box-shadow: 0 18px 40px rgba(130, 79, 31, 0.22) !important;
}

/* =========================================================
   ÁLTALÁNOS SZEKCIÓK – FEHÉR/KRÉM HELYETT SZÍNES, LÉGIES
   ========================================================= */

.section {
    position: relative !important;
    overflow: hidden !important;
}

.section::before {
    content: "" !important;
    position: absolute !important;
    left: -90px !important;
    top: 50px !important;
    width: 280px !important;
    height: 280px !important;
    border-radius: 50% !important;
    background:
        repeating-radial-gradient(circle, rgba(228, 154, 53, 0.14) 0 1px, transparent 1px 22px),
        radial-gradient(circle, rgba(255, 211, 111, 0.25), transparent 70%) !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
}

.section::after {
    content: "" !important;
    position: absolute !important;
    right: -120px !important;
    bottom: -150px !important;
    width: 380px !important;
    height: 380px !important;
    border-radius: 50% !important;
    background:
        radial-gradient(circle, rgba(255, 154, 108, 0.24), transparent 62%),
        radial-gradient(circle at 70% 30%, rgba(189, 167, 239, 0.22), transparent 44%) !important;
    pointer-events: none !important;
}

.section > .container {
    position: relative !important;
    z-index: 2 !important;
}

.section-title {
    color: #2f2118 !important;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.72) !important;
}

.section-lead {
    color: rgba(75, 51, 34, 0.78) !important;
    font-weight: 600 !important;
}

.eyebrow {
    color: #9d5721 !important;
    background: rgba(255, 250, 242, 0.76) !important;
    border-color: rgba(228, 154, 53, 0.28) !important;
    box-shadow: 0 12px 30px rgba(130, 79, 31, 0.10) !important;
}

/* =========================================================
   TERMÉKEK – VIRÁGOS KÉP HÁTTÉR + SZÍNES KÁRTYÁK
   ========================================================= */

.section-products {
    background:
        linear-gradient(180deg, rgba(255, 247, 232, 0.88), rgba(255, 232, 199, 0.74)),
        var(--bg-floral-1) !important;
    background-size: cover !important;
    background-position: center top !important;
    background-attachment: fixed !important;
}

.product-card {
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.90), rgba(255, 236, 213, 0.86)) !important;
    border: 1px solid rgba(228, 154, 53, 0.22) !important;
    box-shadow:
        0 22px 54px rgba(130, 79, 31, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
}

.product-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(255,250,242,0.92), rgba(255,226,186,0.88)) !important;
}

.product-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(255,250,242,0.92), rgba(255,211,208,0.88)) !important;
}

.product-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(255,250,242,0.92), rgba(220,236,203,0.88)) !important;
}

.product-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(255,250,242,0.92), rgba(255,224,168,0.88)) !important;
}

.product-card:nth-child(5) {
    background: linear-gradient(180deg, rgba(255,250,242,0.92), rgba(226,213,255,0.84)) !important;
}

.product-card:hover {
    border-color: rgba(212, 108, 47, 0.42) !important;
    box-shadow: 0 34px 82px rgba(130, 79, 31, 0.28) !important;
}

.product-media {
    background: #ffe3c5 !important;
}

.product-media img {
    filter: saturate(1.14) contrast(1.04) brightness(1.03) !important;
}

.product-body h3 {
    color: #2f2118 !important;
}

.product-body p {
    color: rgba(75, 51, 34, 0.76) !important;
    font-weight: 600 !important;
}

.product-cta {
    color: #d46c2f !important;
}

/* =========================================================
   MIÉRT VÁLASSZ ENGEM – HINTÁS HÁTTÉR
   ========================================================= */

.section-why,
section:has(.why-grid) {
    background:
        linear-gradient(90deg, rgba(255, 248, 236, 0.90), rgba(255, 238, 213, 0.78), rgba(232, 239, 213, 0.72)),
        var(--bg-swing-3) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

.why-card {
    background: rgba(255, 250, 242, 0.84) !important;
    border: 1px solid rgba(228, 154, 53, 0.22) !important;
    box-shadow:
        0 22px 58px rgba(130, 79, 31, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
}

.why-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(255,250,242,0.90), rgba(255,226,186,0.82)) !important;
}

.why-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(255,250,242,0.90), rgba(220,236,203,0.82)) !important;
}

.why-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(255,250,242,0.90), rgba(255,211,208,0.82)) !important;
}

.why-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(255,250,242,0.90), rgba(226,213,255,0.82)) !important;
}

.why-icon {
    color: #382414 !important;
    background: linear-gradient(135deg, #ffc95f, #ffe7a8 54%, #ffad7a) !important;
    box-shadow: 0 16px 34px rgba(228, 154, 53, 0.30) !important;
}

.why-card h3 {
    color: #2f2118 !important;
}

.why-card p {
    color: rgba(75, 51, 34, 0.78) !important;
    font-weight: 600 !important;
}

/* =========================================================
   VÉLEMÉNYEK – SZÍNESEBB, MELEGESEBB BLOKK
   ========================================================= */

.review-card {
    background:
        linear-gradient(145deg, rgba(255,250,242,0.92), rgba(255,224,199,0.78)) !important;
    border: 1px solid rgba(228, 154, 53, 0.22) !important;
    box-shadow: 0 24px 64px rgba(130, 79, 31, 0.18) !important;
}

.review-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(255,250,242,0.92), rgba(221,238,203,0.80)) !important;
}

.review-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(255,250,242,0.92), rgba(255,211,208,0.80)) !important;
}

.review-stars {
    color: #e49a35 !important;
    text-shadow: 0 4px 14px rgba(228, 154, 53, 0.25) !important;
}

.review-card blockquote {
    color: rgba(75, 51, 34, 0.84) !important;
    font-weight: 600 !important;
}

.review-card figcaption {
    color: #c26b25 !important;
}

/* =========================================================
   GALÉRIA – ERŐSEBB, ÉLÉNKEBB KÉPEK
   ========================================================= */

.gallery-grid {
    filter: saturate(1.08) contrast(1.02) !important;
}

.gallery-item {
    border: 8px solid rgba(255, 250, 242, 0.82) !important;
    box-shadow:
        0 24px 60px rgba(130, 79, 31, 0.22),
        0 0 0 1px rgba(228, 154, 53, 0.18) !important;
    background: #ffe1bd !important;
}

.gallery-item img {
    filter: saturate(1.18) contrast(1.06) brightness(1.04) !important;
}

.gallery-item::after {
    background:
        linear-gradient(180deg, transparent 36%, rgba(85, 48, 21, 0.64)) !important;
}

.gallery-item figcaption {
    color: #fffaf2 !important;
    text-shadow: 0 3px 16px rgba(45, 28, 16, 0.72) !important;
}

/* =========================================================
   CTA – ABLAKOS/VIRÁGOS HÁTTÉR + ÉLÉNK GRADIENT
   ========================================================= */

.section-cta {
    background:
        linear-gradient(180deg, rgba(255, 244, 226, 0.64), rgba(255, 226, 206, 0.58)),
        var(--bg-window-2) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

.cta-card {
    background:
        linear-gradient(135deg, rgba(255, 246, 226, 0.88) 0%, rgba(255, 204, 111, 0.82) 34%, rgba(255, 154, 108, 0.74) 68%, rgba(189, 167, 239, 0.58) 100%),
        var(--bg-floral-1) !important;
    background-size: cover !important;
    background-position: center center !important;
    border: 1px solid rgba(255,255,255,0.72) !important;
    box-shadow:
        0 36px 96px rgba(130, 79, 31, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.62) !important;
}

.cta-card .section-title {
    color: #2f2118 !important;
    text-shadow: 0 8px 26px rgba(255,255,255,0.52) !important;
}

.cta-card .section-lead {
    color: rgba(58, 39, 25, 0.80) !important;
    font-weight: 600 !important;
}

.cta-card em {
    color: #9b4f1f !important;
}

.cta-mandala {
    background:
        repeating-radial-gradient(circle, rgba(75, 51, 34, 0.14) 0 1px, transparent 1px 22px),
        radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 68%) !important;
    border-color: rgba(75, 51, 34, 0.20) !important;
}

/* =========================================================
   GOMBOK – ÉLÉNKEBBEK
   ========================================================= */

.btn-primary {
    color: #392414 !important;
    background: linear-gradient(135deg, #ffc95f, #ffe7a8 52%, #ff9a6c) !important;
    box-shadow: 0 18px 42px rgba(228, 154, 53, 0.34) !important;
}

.btn-primary:hover {
    box-shadow: 0 28px 66px rgba(228, 154, 53, 0.48) !important;
}

.btn-ghost {
    color: #392414 !important;
    background: rgba(255, 250, 242, 0.74) !important;
    border-color: rgba(228, 154, 53, 0.28) !important;
    box-shadow: 0 14px 34px rgba(130, 79, 31, 0.12) !important;
}

.btn-ghost:hover {
    background: rgba(255, 236, 199, 0.90) !important;
    border-color: rgba(212, 108, 47, 0.42) !important;
}

.btn-link {
    color: #783d19 !important;
}

/* =========================================================
   FOOTER – VILÁGOS, MELEG
   ========================================================= */

.site-footer {
    background:
        linear-gradient(180deg, rgba(255, 248, 236, 0.88), rgba(244, 218, 184, 0.90)),
        var(--bg-floral-1) !important;
    background-size: cover !important;
    background-position: center bottom !important;
    border-top: 1px solid rgba(166, 102, 50, 0.18) !important;
    box-shadow: inset 0 18px 44px rgba(130, 79, 31, 0.08) !important;
}

.footer-brand p,
.footer-col a,
.footer-bottom p {
    color: rgba(75, 51, 34, 0.72) !important;
}

.footer-col h4 {
    color: #2f2118 !important;
}

.footer-col a:hover {
    color: #d46c2f !important;
}

.footer-bottom {
    border-top: 1px solid rgba(166, 102, 50, 0.16) !important;
}

/* =========================================================
   MOBIL HEADER – VILÁGOS MENÜ
   ========================================================= */

@media (max-width: 650px) {
    .site-header {
        background: rgba(255, 248, 236, 0.96) !important;
    }

    .menu-toggle {
        background: rgba(255, 234, 198, 0.86) !important;
        border-color: rgba(228, 154, 53, 0.34) !important;
    }

    .menu-toggle span {
        background: #c26b25 !important;
    }

    .site-header .main-nav {
        background: rgba(255, 248, 236, 0.98) !important;
        border: 1px solid rgba(166, 102, 50, 0.18) !important;
        box-shadow: 0 24px 70px rgba(130, 79, 31, 0.24) !important;
    }

    .site-header .main-nav a {
        color: #352316 !important;
        background: rgba(255, 236, 199, 0.72) !important;
        border-color: rgba(166, 102, 50, 0.14) !important;
    }

    .site-header .main-nav .nav-cta {
        background: linear-gradient(135deg, #ffc95f, #ffe7a8 52%, #ff9a6c) !important;
        color: #392414 !important;
    }

    .hero,
    .section-products,
    section:has(.why-grid),
    .section-cta {
        background-attachment: scroll !important;
    }

    .hero {
        background-position: center top !important;
    }

    .section-products {
        background-position: center center !important;
    }

    .cta-card {
        background-position: center center !important;
    }

    .hero-title,
    .section-title {
        text-shadow: 0 8px 22px rgba(255,255,255,0.82) !important;
    }
}
/* =========================================================
   HERO KÉPEN LÉVŐ SZÖVEGBUBORÉKOK ELTÜNTETÉSE
   ========================================================= */

.hero .float-card,
.hero .float-card-1,
.hero .float-card-2,
.hero .float-card-3 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
/* =========================================================
   HERO KOMPAKTABB – 1 KÉPERNYŐN ELFÉRJEN DESKTOPON
   ========================================================= */

@media (min-width: 901px) {
    .site-header .header-inner {
        min-height: 74px !important;
    }

    .hero {
        min-height: calc(100vh - 74px) !important;
        padding: 28px 0 36px !important;
        align-items: center !important;
    }

    .hero-grid {
        gap: 52px !important;
        align-items: center !important;
        transform: translateY(-18px) !important;
    }

    .hero .eyebrow {
        margin-bottom: 12px !important;
        padding: 7px 18px !important;
        font-size: 11px !important;
    }

    .hero-title {
        font-size: clamp(46px, 5.1vw, 74px) !important;
        line-height: 1.04 !important;
        margin-bottom: 18px !important;
    }

    .hero-lead {
        max-width: 620px !important;
        font-size: 17px !important;
        line-height: 1.62 !important;
        margin-bottom: 24px !important;
    }

    .hero-buttons {
        gap: 14px !important;
    }

    .hero-buttons .btn {
        min-height: 50px !important;
        padding: 13px 26px !important;
    }

    .hero-image-wrap {
        min-height: 500px !important;
    }

    .hero-image {
        width: min(100%, 470px) !important;
        aspect-ratio: 4 / 4.75 !important;
        border-radius: 30px !important;
    }
}
/* =========================================================
   BRAND SZLOGEN – romantikus, prémium, kézműves hangulat
   ========================================================= */

.brand-tagline {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin-top: 6px !important;
    padding: 4px 10px !important;

    font-family: var(--font-serif) !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    font-style: italic !important;
    letter-spacing: 0.4px !important;
    text-transform: none !important;

    color: #9b4f1f !important;
    background: linear-gradient(
        135deg,
        rgba(255, 248, 236, 0.72),
        rgba(255, 224, 168, 0.42),
        rgba(255, 173, 122, 0.22)
    ) !important;

    border: 1px solid rgba(200, 137, 61, 0.18) !important;
    border-radius: 999px !important;
    box-shadow:
        0 8px 22px rgba(130, 79, 31, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;

    white-space: nowrap !important;
}

/* Logo + szlogen finomabb egység */
.brand-name {
    line-height: 1 !important;
    letter-spacing: 0.1px !important;
}

/* Desktop headerben ne legyen túl nagy a szlogen */
@media (min-width: 651px) {
    .site-header .brand-tagline {
        font-size: 15px !important;
        padding: 4px 11px !important;
    }
}

/* Mobilon törhet, ha kicsi a kijelző */
@media (max-width: 650px) {
    .site-header .brand-tagline {
        max-width: 230px !important;
        white-space: normal !important;
        font-size: 13px !important;
        line-height: 1.2 !important;
        padding: 4px 9px !important;
    }
}

/* =========================================================
   FŐOLDALI GALÉRIA LIGHTBOX – kattintható, lapozható képek
   ========================================================= */

.gallery-grid .gallery-item {
    cursor: zoom-in !important;
}

.gallery-grid .gallery-item::after {
    pointer-events: none !important;
}

.gallery-grid .gallery-item figcaption {
    pointer-events: none !important;
}

/* Lightbox háttér */
.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(255, 211, 111, 0.18), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 154, 108, 0.16), transparent 34%),
        rgba(35, 24, 16, 0.88);
    backdrop-filter: blur(18px);
}

.image-lightbox.is-open {
    display: flex;
}

/* Belső képkeret */
.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, 242, 0.12);
    border: 8px solid rgba(255, 250, 242, 0.78);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 211, 111, 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;
}

/* Felirat */
.image-lightbox-caption {
    min-height: 34px;
    text-align: center;
    color: #fffaf2;
    font-size: 16px;
    font-weight: 800;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}

/* Bezárás */
.lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #392414;
    background: linear-gradient(135deg, #ffc95f, #ffe7a8 52%, #ff9a6c);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    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);
}

/* Lapozó gombok */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #392414;
    background: rgba(255, 250, 242, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    font-size: 36px;
    font-weight: 800;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lightbox-arrow:hover {
    background: linear-gradient(135deg, #ffc95f, #ffe7a8 52%, #ff9a6c);
    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;
}

/* Számláló */
.lightbox-counter {
    position: absolute;
    left: 22px;
    top: 18px;
    z-index: 5;
    padding: 7px 13px;
    border-radius: 999px;
    color: #392414;
    background: rgba(255, 250, 242, 0.88);
    border: 1px solid rgba(255, 211, 111, 0.28);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    font-size: 13px;
    font-weight: 900;
}

/* Mobil lightbox */
@media (max-width: 650px) {
    .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;
    }
}
/* =========================================================
   FOOTER ALSÓ SÁV – jobb oldali fejlesztői kredit
   ========================================================= */

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-credit {
    color: rgba(75, 51, 34, 0.58) !important;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.footer-credit a {
    color: #c26b25 !important;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.footer-credit a:hover {
    color: #8f4619 !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Mobilon egymás alá kerül, szépen középre */
@media (max-width: 650px) {
    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .footer-credit {
        text-align: center;
        font-size: 13px;
    }
}
/* =========================================================
   GLOBAL LIGHTBOX – minden termékoldal galériájához
   ========================================================= */

body.cm-lightbox-open {
    overflow: hidden !important;
}

a[class*="gallery"][href$=".jpg"],
a[class*="gallery"][href$=".jpeg"],
a[class*="gallery"][href$=".png"],
a[class*="gallery"][href$=".webp"],
a[class*="gallery"][href$=".gif"] {
    cursor: zoom-in;
}

.cm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 211, 111, 0.18), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(255, 154, 108, 0.18), transparent 36%),
        rgba(22, 15, 10, 0.90);
    backdrop-filter: blur(18px);
}

.cm-lightbox.is-open {
    display: flex;
}

.cm-lightbox-panel {
    position: relative;
    width: min(100%, 1180px);
    max-height: 94vh;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 14px;
    animation: cmLightboxIn 0.28s ease both;
}

@keyframes cmLightboxIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(14px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cm-lightbox-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: calc(94vh - 82px);
    overflow: hidden;
    border-radius: 30px;
    border: 8px solid rgba(255, 250, 242, 0.82);
    background: rgba(255, 250, 242, 0.10);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 211, 111, 0.24);
}

.cm-lightbox-image-wrap img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(94vh - 112px);
    object-fit: contain;
    border-radius: 20px;
}

.cm-lightbox-caption {
    min-height: 32px;
    text-align: center;
    color: #fffaf2;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.48);
}

.cm-lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    color: #392414;
    background: linear-gradient(135deg, #ffc95f, #ffe7a8 52%, #ff9a6c);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cm-lightbox-close:hover {
    transform: scale(1.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.cm-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    color: #392414;
    background: rgba(255, 250, 242, 0.94);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.30);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cm-lightbox-arrow:hover {
    background: linear-gradient(135deg, #ffc95f, #ffe7a8 52%, #ff9a6c);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.40);
}

.cm-lightbox-prev {
    left: -30px;
}

.cm-lightbox-next {
    right: -30px;
}

.cm-lightbox-counter {
    position: absolute;
    top: 18px;
    left: 22px;
    z-index: 10;
    padding: 7px 14px;
    border-radius: 999px;
    color: #392414;
    background: rgba(255, 250, 242, 0.90);
    border: 1px solid rgba(255, 211, 111, 0.28);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 700px) {
    .cm-lightbox {
        padding: 18px;
    }

    .cm-lightbox-panel {
        width: 100%;
        max-height: 94vh;
    }

    .cm-lightbox-image-wrap {
        max-height: calc(94vh - 92px);
        border-width: 5px;
        border-radius: 24px;
    }

    .cm-lightbox-image-wrap img {
        max-height: calc(94vh - 122px);
        border-radius: 16px;
    }

    .cm-lightbox-close {
        top: -12px;
        right: -6px;
        width: 44px;
        height: 44px;
        font-size: 27px;
    }

    .cm-lightbox-arrow {
        width: 46px;
        height: 46px;
        font-size: 30px;
    }

    .cm-lightbox-prev {
        left: 8px;
    }

    .cm-lightbox-next {
        right: 8px;
    }

    .cm-lightbox-counter {
        top: 14px;
        left: 14px;
        font-size: 12px;
    }

    .cm-lightbox-caption {
        font-size: 14px;
    }
}