:root {
    --bg: #F4F1EA;
    --surface: #FFFFFF;
    --fg: #243028;
    --muted: #5C6B60;
    --forest: #3D4F3F;
    --accent: #B86B3D;
    --sage: #7D9178;
    --border: #E0D8CC;
    --shadow: 0 2px 8px rgba(36,48,40,.08);
    --shadow-lg: 0 6px 20px rgba(36,48,40,.12);
    --radius: 14px;
    --radius-sm: 8px;
    --max: 1200px;
    --font-display: 'Source Serif 4', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--fg);
    background: var(--bg);
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--fg);
    line-height: 1.2;
    margin: 0 0 .5em;
    font-weight: 600;
}

h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    letter-spacing: -0.02em;
}

.display {
    font-size: clamp(2.1rem, 5vw, 3.1rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    margin: 0 0 1rem;
}

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

a:hover {
    text-decoration: underline;
}

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

ul, ol {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 56px 0;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: .5rem;
}

.lead {
    font-size: 1.18rem;
    color: var(--muted);
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--forest);
    color: #fff;
    padding: 10px 16px;
    z-index: 2000;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    left: 0;
    color: #fff;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.btn {
    display: inline-block;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.2;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

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

.btn-primary:hover {
    background: #314030;
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn-secondary:hover {
    background: var(--forest);
    color: #fff;
    text-decoration: none;
}

.btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--fg);
}

.brand:hover {
    text-decoration: none;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.1;
}

.brand__slogan {
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.header-phone {
    display: none;
    font-weight: 600;
    color: var(--forest);
    white-space: nowrap;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0 9px;
}

.nav-toggle__bar {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--forest);
}

.main-nav {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.main-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-nav__list a {
    display: block;
    padding: 14px 8px;
    color: var(--fg);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.main-nav__list a:hover {
    text-decoration: none;
    color: var(--forest);
}

.main-nav__list a[aria-current="page"] {
    color: var(--forest);
    border-bottom-color: var(--forest);
}

.main-nav__cta a {
    margin: 8px 0;
    text-align: center;
}

.main-nav__cta a:hover {
    color: #fff;
}

body.nav-open .main-nav {
    display: block;
}

.main-nav {
    display: none;
}

body.nav-open .main-nav {
    display: block;
}

.intro-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.intro-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.intro-section__media {
    order: -1;
}

.intro-section__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.intro-section__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.2rem;
}

.trust-row {
    background: var(--bg);
}

.trust-row__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0;
    list-style: none;
    padding: 0;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}

.trust-item__icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    color: var(--forest);
}

.trust-item__label {
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.35;
}

.section-title {
    text-align: center;
    margin-bottom: 32px;
}

.section-title .eyebrow {
    margin-bottom: .4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--fg);
    transition: transform .15s ease, box-shadow .15s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg);
}

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

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    flex: 1;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--fg);
    margin: 0;
}

.product-card__short {
    color: var(--muted);
    font-size: .95rem;
    margin: 0;
    flex: 1;
}

.product-card__price {
    font-weight: 700;
    color: var(--forest);
    font-size: 1.05rem;
}

.product-card__old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
    font-size: .95rem;
}

.product-card__footer {
    margin-top: 10px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(125,145,120,.18);
    color: #42564a;
}

.badge--kedvenc { background: rgba(184,107,61,.16); color: #7d4426; }
.badge--ajandek { background: rgba(61,79,63,.14); color: var(--forest); }
.badge--ujdonsag { background: rgba(125,145,120,.20); color: #42564a; }

.badge--overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--surface);
    color: var(--accent);
    box-shadow: var(--shadow);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    counter-reset: step;
}

.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    position: relative;
}

.step__num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.step__title {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.occasions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.occasion {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    text-align: center;
}

.occasion__title {
    color: var(--forest);
}

.reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.review__quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--fg);
    margin: 0 0 12px;
}

.review__author {
    font-weight: 600;
    color: var(--forest);
    font-size: .95rem;
}

.teaser {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.teaser .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.teaser__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg);
    color: var(--fg);
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
    border-color: #b0413e;
    background: #fdf2f1;
}

.choice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 44px;
    padding: 8px 0;
    font-weight: 400;
}

.choice input {
    min-width: 20px;
    min-height: 20px;
    margin-top: 4px;
}

.form-errors {
    background: #fdf2f1;
    border: 1px solid #e4b3b1;
    color: #8a2f2c;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.form-errors ul {
    margin: 0;
    padding-left: 1.2rem;
}

.required {
    color: var(--accent);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.breadcrumb {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb li + li::before {
    content: "›";
    margin-right: 8px;
    color: var(--muted);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0;
    list-style: none;
}

.chip {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--fg);
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    min-height: 44px;
}

.chip[aria-pressed="true"] {
    background: var(--forest);
    color: #fff;
    border-color: var(--forest);
}

.is-hidden {
    display: none;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-list details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px 18px;
    box-shadow: var(--shadow);
}

.details-list summary {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    color: var(--forest);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.details-list summary::-webkit-details-marker {
    display: none;
}

.details-list summary::after {
    content: "+";
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--accent);
    line-height: 1;
}

.details-list details[open] summary::after {
    content: "–";
}

.details-list details > div {
    padding: 0 0 16px;
    color: var(--muted);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.contact-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info__list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info__label {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 2px;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(125,145,120,.12), rgba(184,107,61,.08));
    border: 1px dashed var(--sage);
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    color: var(--forest);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.notice {
    background: rgba(125,145,120,.16);
    border: 1px solid var(--sage);
    color: #3a4b39;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery__note {
    font-size: .9rem;
    color: var(--muted);
    grid-column: 1 / -1;
}

.page-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.page-header h1 {
    margin-bottom: 10px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.product-detail__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.product-detail__price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--forest);
    font-weight: 700;
}

.product-detail__old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 1.1rem;
    margin-left: 10px;
}

.specs-list {
    padding: 0;
    margin: 0 0 20px;
    border-top: 1px solid var(--border);
}

.specs-list .spec-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.spec-row dt {
    font-weight: 600;
    color: var(--muted);
    margin: 0;
}

.spec-row dd {
    margin: 0;
}

.note-box {
    background: rgba(125,145,120,.12);
    border-left: 4px solid var(--sage);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin: 18px 0;
}

.note-box h3 {
    margin-top: 0;
}

.steps-thanks {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: thanks;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.steps-thanks li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    counter-increment: thanks;
    position: relative;
    padding-left: 70px;
}

.steps-thanks li::before {
    content: counter(thanks, decimal-leading-zero);
    position: absolute;
    left: 18px;
    top: 16px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.site-footer {
    background: var(--forest);
    color: #e8ede6;
    margin-top: 60px;
}

.site-footer a {
    color: #e8ede6;
}

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

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 28px;
}

.site-footer__title {
    color: #fff;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer__text {
    color: #d4dcd3;
    font-size: .95rem;
    line-height: 1.6;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li {
    padding: 5px 0;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.14);
    padding: 16px 0;
    font-size: .85rem;
    color: #c4d0c3;
}

.site-footer__bottom p {
    margin: 0;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 1500;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    margin: 0 16px;
}

.cookie-banner__inner p {
    margin: 0;
    font-size: .95rem;
    color: var(--fg);
}

@media (min-width: 768px) {
    .trust-row__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reviews {
        grid-template-columns: 1fr 1fr;
    }
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    .header-phone {
        display: inline-block;
    }
    .main-nav {
        display: block;
        border-top: none;
    }
    .main-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
    .main-nav__list li {
        flex: 0 0 auto;
    }
    .main-nav__cta {
        margin-left: auto;
    }
    .main-nav__cta a {
        margin: 0;
        padding: 10px 22px;
    }
    .intro-section .container {
        grid-template-columns: 1.1fr 1fr;
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .intro-section__media {
        order: 1;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
    .occasions {
        grid-template-columns: repeat(3, 1fr);
    }
    .teaser .container {
        grid-template-columns: 1fr 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
    .product-detail {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .steps-thanks {
        grid-template-columns: 1fr 1fr;
    }
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.text-muted { color: var(--muted); }
