/* =========================================
   ALAPOK & VÁLTOZÓK
   ========================================= */
@font-face {
    font-family: 'Gotham Rounded';
    font-style: normal;
    font-weight: 300;
    src: url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Light.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Light.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Rounded';
    font-style: normal;
    font-weight: 400;
    src: url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Book.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Book.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Rounded';
    font-style: normal;
    font-weight: 500;
    src: url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Medium.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Rounded';
    font-style: normal;
    font-weight: 700;
    src: url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Bold.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/gotham-fonts@1.0.3/fonts/GothamRounded-Bold.woff') format('woff');
}

:root {
    --color-primary: #DDAE7D;     
    --color-secondary: #89A429;   
    --color-text: #E9E4E3;        
    --color-accent: #A37644;      
    --color-body-bg: #22231D;
    --color-dark: #22231D;     
    --color-item-11: #72772B;     
    --font-main: 'Gotham Rounded', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-body-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open {
    overflow: hidden;
}


.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

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

/* =========================================
   TIPOGRÁFIA & GOMBOK
   ========================================= */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.2; }

.section-title {
    color: var(--color-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
}

.btn-nav, .btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-body-bg);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    border: 2px solid var(--color-secondary);
}

.btn-nav:hover, .btn-primary:hover {
    background-color: var(--color-item-11);
    border-color: var(--color-item-11);
    color: var(--color-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

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

/* =========================================
   GOMBOK (Új lekerekített gomb az Asztalfoglalásnak)
   ========================================= */
.btn-pill {
    background-color: var(--color-text); /* Fehér gomb */
    color: var(--color-body-bg) !important; /* Sötét szöveg */
    padding: 12px 30px;
    border-radius: 50px; /* Teljesen lekerekített szél */
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-pill:hover {
    background-color: var(--color-secondary); /* Zöld hover */
    color: var(--color-text) !important;
}

/* =========================================
   HEADER (Osztott, Transzparens)
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    padding: 16px 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transform: translateY(0);
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
    will-change: transform, background-color;
}

.site-header.site-header--solid {
    background: rgba(23, 24, 19, 0.92);
    backdrop-filter: blur(8px);
    border-bottom-color: rgba(233, 228, 227, 0.08);
}

.site-header.site-header--hidden {
    transform: translateY(calc(-100% - 8px));
}

.site-header .container {
    max-width: 1580px;
    padding: 0 36px;
}

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

/* A két menü oldal kitölti a maradék helyet a logó mellett */
.nav-left, .nav-right {
    flex: 1;
}

.nav-left ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
    list-style: none;
    padding-right: 28px;
}

.nav-right ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 36px;
    list-style: none;
    padding-left: 28px;
}

.logo {
    flex-shrink: 0;
    text-align: center;
}

.logo img {
    max-height: 78px;
    display: block;
}

.site-header a {
    color: var(--color-text);
    font-size: clamp(1.1rem, 1.15vw, 1.3rem);
    font-weight: 600;
    text-transform: none;
}

.site-header .btn-pill {
    padding: 12px 26px;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Aktív menüpont és hover zöld lett */
.site-header a:hover,
.site-header a.active {
    color: var(--color-secondary);
}

.mobile-menu-toggle { display: none; }

.mobile-nav,
.mobile-nav-backdrop {
    display: none;
}

/* =========================================
   HERO SZEKCIÓ
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 112px;
    /* Ide tedd majd be a valós képet! */
    background: linear-gradient(rgba(34, 35, 29, 0.4), rgba(34, 35, 29, 0.6)), url('assets/img/wagashi.jpg') no-repeat center/cover;
}

.hero-subtitle {
    color: var(--color-primary); /* Barna/Arany szín a subtitle-nek */
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-text);
    margin-bottom: 40px;
    font-weight: 700;
}

.hero-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-item-11);
    border-radius: 50%;
    color: var(--color-dark);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-circle:hover {
    background-color: var(--color-item-11);
    transform: translateY(-3px);
    color: var(--color-text)
}

/* =========================================
   RÓLUNK SZEKCIÓ
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-features { display: flex; flex-direction: column; gap: 22px; }

.feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(233, 228, 227, 0.1);
    background: linear-gradient(145deg, rgba(24, 25, 20, 0.88), rgba(17, 18, 14, 0.88));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.feature-icon { width: 62px; height: 62px; object-fit: contain; }

.feature-icon-fa {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(221, 174, 125, 0.35);
    background: radial-gradient(circle at 30% 20%, rgba(221, 174, 125, 0.24), rgba(137, 164, 41, 0.12) 60%, rgba(137, 164, 41, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.feature-icon-fa::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 12px;
    border: 1px solid rgba(233, 228, 227, 0.14);
}

.feature-icon-fa i {
    position: relative;
    font-size: 1.25rem;
    color: #f4efe7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.feature-icon-fa--star i {
    color: #e7ba86;
}

.feature-icon-fa--leaf i {
    color: #a8c34d;
}

.fa-whiteboard {
    display: inline-flex;
}

.fa-semibold {
    font-weight: 400;
}

.feature-content h3 { color: var(--color-secondary); font-size: 1.3rem; margin-bottom: 8px; }
.feature-content p { font-size: 0.95rem; opacity: 0.8; }

/* =========================================
   TERMÉKEK SZEKCIÓ
   ========================================= */
.products-section {
    background: radial-gradient(circle at 20% 20%, rgba(163, 118, 68, 0.2), rgba(34, 35, 29, 0.15));
}

.products-lead {
    max-width: 720px;
    margin: -10px auto 40px;
    opacity: 0.85;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(233, 228, 227, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: rgba(221, 174, 125, 0.12);
    border-color: rgba(221, 174, 125, 0.3);
}

.filter-tab.is-active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-body-bg);
}

.product-card.is-hidden {
    display: none;
}

.products-empty {
    margin: 40px auto 0;
    max-width: 760px;
    text-align: center;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(233, 228, 227, 0.12);
    background: rgba(0, 0, 0, 0.2);
}

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

.product-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(233, 228, 227, 0.14);
    background: rgba(0, 0, 0, 0.24);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-card:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

.product-card:hover,
.product-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(137, 164, 41, 0.6);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(137, 164, 41, 0.18);
}

.product-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}

.product-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
    opacity: 0.65;
    transition: opacity 220ms ease;
    pointer-events: none;
}

.product-card-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 300ms ease;
}

.product-card:hover .product-card-media img,
.product-card:focus-visible .product-card-media img {
    transform: scale(1.045);
}

.product-card:hover .product-card-media::after,
.product-card:focus-visible .product-card-media::after {
    opacity: 0.35;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(34, 35, 29, 0.75);
    border: 1px solid rgba(233, 228, 227, 0.28);
}

.product-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-body .product-price-row {
    margin-top: auto;
}

.product-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.product-card-body p {
    font-size: 0.92rem;
    opacity: 0.86;
    overflow-wrap: break-word;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.product-price-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: nowrap;
    min-width: 0;
}

.product-price-row strong {
    color: var(--color-primary);
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.price-from-suffix {
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.75;
    white-space: nowrap;
}

.price-custom-quote {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.8;
}

.product-price-row .btn-primary {
    padding: 8px 11px;
    font-size: 0.76rem;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 8px;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover .product-price-row .btn-primary,
.product-card:focus-visible .product-price-row .btn-primary {
    background-color: var(--color-item-11);
    border-color: var(--color-item-11);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
}

/* =========================================
   RENDELÉS SZEKCIÓ
   ========================================= */
.order-section {
    position: relative;
    isolation: isolate;
}

.order-section::before {
    content: "";
    position: absolute;
    inset: 10% -8% 6% -8%;
    border-radius: 40px;
    z-index: -1;
    background:
      radial-gradient(circle at 18% 24%, rgba(137, 164, 41, 0.14), transparent 48%),
      radial-gradient(circle at 82% 78%, rgba(221, 174, 125, 0.14), transparent 52%);
    filter: blur(8px);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
}

.order-content {
    border-radius: 18px;
    border: 1px solid rgba(233, 228, 227, 0.14);
    background: linear-gradient(145deg, rgba(31, 32, 26, 0.82), rgba(24, 25, 20, 0.72));
    padding: 34px 32px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.order-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(221, 174, 125, 0.3);
    background: rgba(221, 174, 125, 0.08);
    color: rgba(233, 228, 227, 0.88);
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.order-content .section-title {
    margin-bottom: 1.2rem;
}

.order-intro {
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.86;
    margin: 0;
    line-height: 1.25;
}

.order-content p { margin-bottom: 15px; opacity: 0.9; }

.order-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid rgba(233, 228, 227, 0.16);
    padding: 6px 12px;
    font-size: 0.78rem;
    color: rgba(233, 228, 227, 0.88);
    background: rgba(255, 255, 255, 0.04);
}

.order-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(137, 164, 41, 0.16);
}

.order-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.order-cta-row .btn-primary,
.order-cta-row .btn-outline {
    width: 260px;
    max-width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.order-guide-box {
    border-radius: 18px;
    border: 1px solid rgba(233, 228, 227, 0.22);
    background: linear-gradient(145deg, rgba(31, 32, 26, 0.88), rgba(25, 26, 21, 0.82));
    padding: 28px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.order-guide-box h4 {
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 1.35rem;
}

.order-guide-intro {
    font-size: 0.94rem;
    opacity: 0.86;
    margin-bottom: 14px;
}

.order-guide-box ol,
.order-flow-list {
    margin-left: 0;
    list-style: none;
    counter-reset: flowSteps;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.95;
}

.order-flow-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: start;
    border: 1px solid rgba(233, 228, 227, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
}

.order-flow-list li::before {
    counter-increment: flowSteps;
    content: counter(flowSteps);
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-secondary);
    border: linear-gradient(145deg, var(--color-secondary), #a7c13c);
    box-shadow: 0 4px 2px rgba(137, 164, 41, 0.25);
    background: transparent;
}

.order-flow-list li span {
    grid-column: 2;
    font-weight: 500;
    color: var(--color-text);
}

.order-flow-list li small {
    grid-column: 2;
    display: block;
    margin-top: 2px;
    font-size: 0.8rem;
    opacity: 0.78;
}

.order-mini-stats {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.order-stat {
    border-radius: 10px;
    border: 1px solid rgba(233, 228, 227, 0.12);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
}

.order-stat strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.order-stat span {
    font-size: 0.8rem;
    opacity: 0.86;
}

/* =========================================
   POPUP ADATLAP
   ========================================= */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.is-open {
    display: flex;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.product-modal-panel {
    position: relative;
    z-index: 2;
    width: min(900px, 96vw);
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 18px;
    border: 1px solid rgba(233, 228, 227, 0.2);
    background: #20211c;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.product-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-text);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 640px) {
    .product-modal-close {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
        top: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.65);
    }
}

.product-modal-media {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    min-height: 280px;
    min-width: 0;
}

.product-modal-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.product-modal-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.product-media-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(233, 228, 227, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(233, 228, 227, 0.1);
    pointer-events: none;
}

.modal-allergen-wrap {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(221, 174, 125, 0.2);
    background: rgba(221, 174, 125, 0.06);
    font-size: 0.85rem;
}

.modal-allergen-note {
    margin: 0 0 6px;
    font-size: 0.78rem;
    color: var(--color-text);
    opacity: 0.75;
    font-style: italic;
}

.modal-allergen-label {
    font-weight: 500;
    color: var(--color-accent);
    margin-right: 4px;
}

.modal-allergen-mentes {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.modal-info-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    opacity: 0.82;
    line-height: 1.4;
    font-weight: 300;
}

.modal-info-item i {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}

.modal-info-item a {
    color: var(--color-primary);
    text-decoration: underline;
}

.product-modal-content {
    padding: 24px;
    min-width: 0;
}

.product-modal-content h3 {
    font-size: 1.8rem;
    margin: 8px 0 10px;
}

.product-modal-desc {
    margin-top: 12px;
    opacity: 0.85;
}

#modal-price-wrap {
    margin-top: 18px;
}

#modal-price {
    color: var(--color-primary);
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.2px;
    font-variant-numeric: tabular-nums;
}

.modal-variations {
    width: 100%;
    margin-top: 4px;
}

.modal-variations-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(233, 228, 227, 0.7);
    margin-bottom: 6px;
}

.modal-variations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variation-btn {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid rgba(233, 228, 227, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.variation-btn.is-selected {
    border-color: var(--color-secondary);
    background: rgba(137, 164, 41, 0.15);
    color: var(--color-secondary);
}

.variation-btn small {
    opacity: 0.65;
    font-size: 0.75rem;
    margin-left: 4px;
}

.modal-badge-detail a {
    color: var(--color-primary);
    text-decoration: underline;
}

.modal-trust-badges {
    margin-top: 16px;
    display: grid;
    gap: 6px;
}

.modal-badge {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 8px 12px;
    border: 1px solid rgba(221, 174, 125, 0.26);
    background: linear-gradient(140deg, rgba(26, 27, 22, 0.94), rgba(33, 34, 28, 0.94));
}

.modal-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(137, 164, 41, 0.08), rgba(221, 174, 125, 0.04));
}

.modal-badge-title,
.modal-badge-detail {
    position: relative;
    z-index: 1;
    display: block;
}

.modal-badge-title {
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 0.78rem;
}

.modal-badge-detail {
    margin-top: 1px;
    color: rgba(233, 228, 227, 0.88);
    font-size: 0.72rem;
}

.order-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: #171813;
    padding: 80px 0 0;
    border-top: 1px solid rgba(221, 174, 125, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    padding-bottom: 30px;
}

.footer-title {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-list, .footer-menu { list-style: none; }
.footer-list li, .footer-menu li { margin-bottom: 12px; opacity: 0.8; }
.footer-menu a:hover { color: var(--color-primary); padding-left: 5px; }

.highlight-link { color: var(--color-primary); font-weight: 400; }

.footer-text { opacity: 0.8; font-size: 0.95rem; }

.inline-menu { display: flex; gap: 20px; }
.inline-menu a:hover { padding-left: 0; } /* Reset padding for inline */

.footer-map-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-map-wrap iframe {
    display: block;
    vertical-align: bottom;
}

.footer-map-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(34, 35, 29, 0.88);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(221, 174, 125, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    pointer-events: none;
}

.footer-map-logo {
    height: 28px;
    width: auto;
    display: block;
}

.footer-map-address {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text);
    opacity: 0.9;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .footer-map-address {
        display: none;
    }
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: #666;
}

.footer-bottom .credit a { color: var(--color-text); font-weight: 500; }
.footer-bottom .credit a:hover { color: var(--color-primary); }

/* =========================================
   RESZPONSZÍV / MOBIL
   ========================================= */
@media (max-width: 992px) {
    .site-header {
        position: fixed;
        padding: 12px 0;
    }
    .site-header .container {
        padding: 0 14px;
    }
    .header-inner {
        min-height: 62px;
    }
    .logo img {
        max-height: 56px;
    }
    .hero-section { padding-top: 148px; min-height: 86vh; }
    .section-padding { padding: 74px 0; }
    .about-grid, .order-grid { grid-template-columns: 1fr; }
    .order-content {
        padding: 24px 20px;
    }
    .order-guide-box {
        padding: 22px 18px;
    }
    .order-mini-stats {
        grid-template-columns: 1fr;
    }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .nav-left, .nav-right { display: none; /* Mobilon JS-el nyitható */ }
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid rgba(233, 228, 227, 0.2);
        background: rgba(255, 255, 255, 0.03);
        color: var(--color-text);
        cursor: pointer;
        font-size: 1.15rem;
    }
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 340px);
        height: 100dvh;
        z-index: 140;
        background: linear-gradient(165deg, #1e1f19, #151611);
        border-left: 1px solid rgba(233, 228, 227, 0.12);
        padding: 88px 20px 24px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        transform: translateX(102%);
        transition: transform 220ms ease;
        overflow-y: auto;
    }
    .mobile-nav.is-open {
        transform: translateX(0);
    }
    .mobile-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text);
    border: 1px solid rgba(233, 228, 227, 0.08);
    background: rgba(255, 255, 255, 0.02);
}
    .mobile-nav .btn-pill {
        margin-top: 4px;
        text-align: center;
        background: var(--color-secondary);
        color: var(--color-body-bg) !important;
    }
    .mobile-nav-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(233, 228, 227, 0.15);
        background: rgba(255, 255, 255, 0.04);
        color: var(--color-text);
        font-size: 1.3rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 130;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }
    .mobile-nav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }
    .product-modal-panel { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

    .inner-page {
        padding-top: 96px;
    }

    .page-header {
        padding: 24px 0 20px;
        margin-bottom: 24px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .custom-form {
        padding: 20px 16px;
    }
}

@media (max-width: 640px) {
    html { overflow-x: hidden; }
    body { overflow-x: hidden; width: 100%; max-width: 100vw; line-height: 1.65; }
    body p { margin-bottom: 16px; }
    .container { padding: 12px 16px; max-width: 100vw; box-sizing: border-box; }
    .section-title { font-size: 1.75rem; margin-bottom: 1.2rem; }
    .hero-title { font-size: clamp(2rem, 10vw, 2.6rem); margin-bottom: 22px; }
    .hero-subtitle { font-size: 1rem; }
    .order-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .order-cta-row .btn-primary,
    .order-cta-row .btn-outline {
        width: 100%;
        text-align: center;
    }

    .product-card-body {
        padding: 15px;
    }

    .product-price-row {
        gap: 10px;
    }

    .product-modal {
        padding: 0;
        align-items: stretch;
    }

    .product-modal-panel {
        width: 100%;
        max-height: 100dvh;
        border-radius: 0;
        border: none;
    }

    .product-modal-content {
        padding: 16px;
    }

    .product-modal-content h3 {
        font-size: 1.35rem;
    }

    .product-modal-media {
        min-height: 200px;
    }

    .product-modal-media img {
        min-height: 200px;
    }

    .product-modal-backdrop {
        background: rgba(0, 0, 0, 0.7);
    }

    .custom-form input,
    .custom-form textarea,
    .custom-form button,
    .btn-primary,
    .btn-outline {
        font-size: 16px;
    }

    p, li, .product-modal-desc, .modal-info-item {
        line-height: 1.6;
    }

    .product-modal-desc {
        margin-top: 8px;
        font-size: 0.92rem;
    }

    .modal-info-item {
        font-size: 0.82rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    #modal-price {
        white-space: normal;
    }

    .footer-grid {
        gap: 28px;
        margin-bottom: 30px;
    }

    .footer-title {
        margin-bottom: 12px;
    }

    .filter-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .filter-tab {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}
/* =========================================
   ALOLDALAK (Inner Pages)
   ========================================= */
.inner-page {
    padding-top: 112px;
    padding-bottom: 80px;
}

.page-header {
    background-color: rgba(0,0,0,0.3);
    padding: 34px 0 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(233, 228, 227, 0.05);
}

.page-header h1 {
    color: var(--color-primary);
    font-size: clamp(2rem, 4.4vw, 2.4rem);
    margin-bottom: 10px;
}

.page-header .subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.06rem;
    line-height: 1.45;
    opacity: 0.9;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--color-secondary);
    font-weight: 500;
}

/* =========================================
   ADATKEZELÉSI / JOGI OLDALAK
   ========================================= */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 1.2em;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: var(--color-primary);
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    color: var(--color-primary);
    font-weight: 500;
}

.legal-content ul {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 0.4em;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.legal-content table th,
.legal-content table td {
    border: 1px solid rgba(233, 228, 227, 0.15);
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}

.legal-content table th {
    background-color: rgba(0,0,0,0.25);
    font-weight: 600;
    color: var(--color-primary);
}

.legal-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* =========================================
   RÓLUNK OLDAL
   ========================================= */
.about-content-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text-wrap {
    flex: 1;
    min-width: 300px;
}

.about-text-wrap p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text-wrap .greeting {
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 30px;
}

.about-image-wrap {
    flex: 1.2;
    max-width: 100%;
    position: relative;
}

.about-image-wrap img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    width: 100%;
}

@media (max-width: 640px) {
    .about-content-section {
        flex-direction: column;
        gap: 30px;
    }
    .about-text-wrap {
        min-width: 0;
    }
    .about-image-wrap {
        max-width: none;
        min-width: 0;
    }
    .about-image-wrap img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }
}

.about-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
    aspect-ratio: 4 / 3;
}

.collage-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    will-change: transform;
}

.collage-item-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    will-change: transform;
}

.collage-item:hover .collage-item-inner {
    transform: scale(1.06);
}

.collage-item:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
    z-index: 2;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-item--0 {
    grid-column: 1;
    grid-row: 1 / 4;
}

.collage-item--1 {
    grid-column: 2;
    grid-row: 1;
}

.collage-item--2 {
    grid-column: 2;
    grid-row: 2;
}

.collage-item--3 {
    grid-column: 2;
    grid-row: 3;
}

.collage-item--0 { animation: float 6s ease-in-out infinite; }
.collage-item--1 { animation: float 7s ease-in-out 0.8s infinite; }
.collage-item--2 { animation: float 5s ease-in-out 1.6s infinite; }
.collage-item--3 { animation: float 6.5s ease-in-out 2.4s infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.collage-item:hover {
    animation-play-state: paused;
}

/* =========================================
   ŰRLAPOK (Kapcsolat & Foglalás)
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.custom-form {
    background-color: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(233, 228, 227, 0.1);
    margin: 2% 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 500;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form input[type="date"],
.custom-form input[type="time"],
.custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(233, 228, 227, 0.2);
    border-radius: 6px;
    color: var(--color-text);
    font-family: inherit;
    transition: border-color 0.3s;
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.checkbox-group a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.half-width {
    flex: 1;
    min-width: 150px;
}

.booking-section {
    max-width: 800px;
    margin: 0 auto;
}

.section-divider {
    border: 0;
    height: 1px;
    background: rgba(233, 228, 227, 0.1);
    margin: 50px 0;
}

/* =========================================
   RENDEZVÉNYEK OLDAL
   ========================================= */
.events-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.event-type-card {
    border-radius: 18px;
    border: 1px solid rgba(233, 228, 227, 0.14);
    background: rgba(0, 0, 0, 0.2);
    padding: 28px 22px;
    text-align: center;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.event-type-card:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 164, 41, 0.4);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.event-type-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(221, 174, 125, 0.12);
    border: 1px solid rgba(221, 174, 125, 0.2);
    font-size: 1.3rem;
    color: var(--color-primary);
}

.event-type-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.event-type-card p {
    font-size: 0.92rem;
    opacity: 0.85;
}

.capacity-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.capacity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(233, 228, 227, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.capacity-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.capacity-value {
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.event-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.event-benefits-list li i {
    color: var(--color-secondary);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

.events-cta-section {
    text-align: center;
}

.events-cta-text {
    max-width: 600px;
    margin: -1.5rem auto 0;
    font-size: 1.1rem;
    opacity: 0.85;
}

.events-cta-section .btn-primary {
    display: inline-block;
}

/* Reszponzivitás űrlapokhoz */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .custom-form {
        padding: 20px;
    }
}

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

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}