:root {
    --white: #ffffff;
    --offwhite: #f6f9f4;
    --dark: #1a2418;
    --green: #2a4d2a;
    --green-mid: #3d7a3d;
    --green-light: #5ca85c;
    --green-pale: #e8f2e8;
    --accent: #4a8c4a;
    --muted: #7a9a7a;
    --text: #1e2e1e;
    --text-light: #5a7a5a;
    --border: rgba(42, 77, 42, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

#home, #beers, #team, #faq {
    scroll-margin-top: 64px;
}

@media (max-width: 600px) {
    #home, #beers, #team, #faq {
        scroll-margin-top: 90px;
    }
}

/* ── SITE NAV ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-nav.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.site-nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--green-mid);
}

@media (max-width: 600px) {
    .site-nav {
        gap: 10px 20px;
        padding: 12px 16px;
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .site-nav a {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 0;
    background: var(--green);
    overflow: hidden;
}

.hero-hop-bg {
    position: absolute;
    z-index: -1;
    width: 620px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.028;
    pointer-events: none;
}

@media (max-width: 600px) {
    .hero-hop-bg {
        width: 360px;
    }
}

.logo-wrap {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.2s forwards;
}

.logo-wrap img {
    width: 200px;
}

.hero-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-sub {
    max-width: 520px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-top: 0;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-cta {
    margin-top: 44px;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    cursor: pointer;
    background: transparent;
}

.btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

.btn-dark {
    border-color: var(--green);
    color: var(--green);
}

.btn-dark:hover {
    background: var(--green);
    color: var(--white);
}

button[type="submit"].btn-dark {
    background: var(--green);
    color: var(--white);
}

button[type="submit"].btn-dark:hover {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

/* ── INTRO SECTION ── */
.intro-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.section-label {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--green-mid);
    font-weight: 500;
    margin-bottom: 24px;
    display: block;
}

.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 28px;
}

/* ── 404 ── */
.not-found-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
}

.not-found-number {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(96px, 16vw, 200px);
    line-height: 1;
    color: var(--green);
    margin-bottom: 32px;
}

.not-found-section .hero-cta {
    margin-top: 8px;
}

.not-found-cta {
    background: var(--green);
    color: var(--white);
}

.not-found-cta:hover {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.intro-section h2 em,
.hero h1 em {
    font-style: italic;
    color: var(--green-mid);
}

.intro-section p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

.intro-section p a {
    color: var(--green-mid);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.intro-section p a:hover {
    color: var(--dark);
}

/* ── CONTACT FORM ── */
.contact-form {
    max-width: 480px;
    margin: 36px auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.form-row input,
.form-row textarea {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--offwhite);
    color: var(--text);
    resize: vertical;
    transition: border-color 0.2s, background 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--green-mid);
    background: var(--white);
}

.form-row input.error,
.form-row textarea.error {
    border-color: #b23b3b;
    background: #fdf1f1;
}

.field-error {
    display: block;
    min-height: 14px;
    font-size: 12px;
    color: #b23b3b;
}

.contact-form .btn {
    align-self: flex-start;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-status {
    font-size: 15px;
    font-weight: 400;
    margin-top: 36px;
}

.contact-status.success {
    color: var(--green-mid);
}

.contact-status.error {
    color: #b23b3b;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ── ORDER FORM (Bierwunsch gegen Kostenbeitrag) ── */
.order-beer-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.order-beer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    background: var(--offwhite);
}

.order-beer-row + .order-beer-row {
    border-top: 1px solid var(--border);
}

.order-beer-row label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
}

.order-beer-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.order-beer-style {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.order-beer-qty {
    width: 60px;
    flex: 0 0 auto;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    text-align: center;
    padding: 8px 6px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s;
}

.order-beer-qty:focus {
    outline: none;
    border-color: var(--green-mid);
}

/* ── TEAM SECTION ── */
.team-section {
    background: var(--green-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 90px 40px 100px;
    text-align: center;
}

.team-inner {
    max-width: 900px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-top: 56px;
}

.team-card {
    width: 220px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 8px 32px rgba(42,77,42,0.18);
}

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

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-role {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

@media (max-width: 600px) {
    .team-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .team-card {
        width: 130px;
    }

    .team-photo {
        width: 110px;
        height: 110px;
        margin-bottom: 16px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-role {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* ── BEERS SECTION ── */
.beers-section {
    padding: 60px 40px 100px;
    max-width: 1300px;
    margin: 0 auto;
}

.beers-header {
    text-align: center;
    margin-bottom: 70px;
}

.beers-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--dark);
}

.beers-header h2 em {
    font-style: italic;
    color: var(--green-mid);
}

.beers-header p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 560px;
    margin: 20px auto 0;
}

/* ── BEER CARDS ── */
.beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 24px;
}

.beer-card {
    position: relative;
    padding: 36px 32px;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
    display: flex;
    align-items: center;
    gap: 28px;
}

.beer-card-visual {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beer-card-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 560px) {
    .beer-grid {
        grid-template-columns: 1fr;
    }
    .beer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .beer-card-info {
        align-items: center;
    }
}

.beer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(90,168,90,0.07));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.beer-card:hover {
    background: var(--green-pale);
    border-color: rgba(61,122,61,0.4);
    box-shadow: 0 8px 32px rgba(42,77,42,0.08);
}

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

.beer-card-info-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.beer-card-info-top .beer-number {
    margin-bottom: 0;
}

.beer-badge-new {
    flex: 0 0 auto;
    background: #ff2d95;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(255, 45, 149, 0.45);
}

@media (max-width: 560px) {
    .beer-card-info-top {
        justify-content: center;
    }
}

.beer-number {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--green-mid);
    opacity: 0.5;
    margin-bottom: 8px;
    display: block;
}

.beer-bottle {
    position: relative;
    width: 100px;
    aspect-ratio: 460 / 1638;
    margin: 0 auto;
    isolation: isolate;
}

.beer-bottle-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(26, 36, 24, 0.22));
}

.beer-label-curve {
    position: absolute;
    left: 1%;
    width: 98%;
    top: 58%;
    height: 24%;
    pointer-events: none;
}

.beer-label-curve::before {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    background: linear-gradient(
        to right,
        rgba(20, 20, 20, 0) 55%,
        rgba(20, 20, 20, 0.38) 100%
    );
}

.beer-label-curve::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0) 32%
    );
}

.beer-bottle-cap-tint {
    position: absolute;
    left: 28.26%;
    width: 43.48%;
    top: 0;
    height: 3.05%;
    mix-blend-mode: multiply;
    pointer-events: none;
    -webkit-mask-image: url(/images/bottle-cap-mask.png);
    mask-image: url(/images/bottle-cap-mask.png);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.beer-label {
    position: absolute;
    left: 1%;
    width: 98%;
    top: 58%;
    height: 24%;
    background: var(--offwhite);
    border-top: 3px solid var(--accent, var(--green-mid));
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4% 6%;
    gap: 2px;
    overflow: hidden;
}

.beer-label--photo {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none;
    background: transparent;
    box-shadow: none;
}

.beer-label-img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.beer-label-brand {
    font-size: 6.5px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--muted);
}

.beer-label-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 11.5px;
    color: var(--dark);
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 2px 0;
}

.beer-label-style {
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--muted);
}

.beer-label-alc {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green-mid);
}

.overlay-bottle {
    position: relative;
    width: 130px;
    aspect-ratio: 460 / 1638;
    margin: 0 auto;
    isolation: isolate;
}

.overlay-bottle-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(26, 36, 24, 0.22));
}

.overlay-bottle-label {
    position: absolute;
    left: 1%;
    width: 98%;
    top: 58%;
    height: 24%;
    background: var(--offwhite);
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4% 6%;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 8px;
    color: var(--dark);
    line-height: 1.2;
}

.beer-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

@media (min-width: 561px) {
    .beer-name {
        font-size: 26px;
    }
}

.beer-style {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.beer-alc {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green-mid);
    margin-bottom: 14px;
}

.beer-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.beer-info-btn {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.beer-info-btn:hover {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

@media (max-width: 560px) {
    .beer-card-actions {
        justify-content: center;
    }
}

/* ── BOTTOM BANNER ── */
.bottom-banner {
    position: relative;
    padding: 100px 40px;
    text-align: center;
    overflow: hidden;
    background:
            radial-gradient(ellipse 80% 100% at 50% 50%, rgba(90,168,90,0.10) 0%, transparent 70%),
            var(--offwhite);
    border-top: 1px solid var(--border);
}

.bottom-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 16px;
}

.bottom-banner h2 em {
    font-style: italic;
    color: var(--green-mid);
}

.bottom-banner p {
    color: var(--muted);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 44px;
}

/* ── FOOTER ── */
footer {
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    background: var(--green);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.footer-email {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-email:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-light);
    opacity: 0.8;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

@media (max-width: 600px) {
    .beers-section { padding: 40px 20px 80px; }
    .intro-section { padding: 60px 24px; }
    footer { flex-direction: column; align-items: center; text-align: center; }
    .beer-grid { gap: 16px; }
}

/* ── BEER OVERLAY (Drawer von rechts) ── */
.overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 28, 15, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.overlay-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.overlay-panel {
    background: var(--white);
    width: 100%;
    max-width: 620px;
    height: 100%;
    padding: 56px 40px 40px;
    position: relative;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    text-align: left;
}

.overlay-view {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.overlay-view[hidden] {
    display: none;
}

.overlay-visual {
    flex: 0 0 auto;
    align-self: center;
}

.overlay-info {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.overlay-backdrop.open .overlay-panel {
    transform: translateX(0);
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.overlay-close:hover { color: var(--dark); }

.overlay-tabs {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    width: 100%;
}

.overlay-tab {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 12px;
    margin-bottom: -1px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.overlay-tab:hover {
    color: var(--dark);
}

.overlay-tab.active {
    color: var(--dark);
    border-bottom-color: var(--green);
}

.overlay-batch {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--green-mid);
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.overlay-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.overlay-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
}

.overlay-desc p + p {
    margin-top: 1em;
}

.overlay-specs {
    width: 100%;
    border-collapse: collapse;
    margin-top: 28px;
}

.overlay-specs th,
.overlay-specs td {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.overlay-specs th {
    width: 45%;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--muted);
}

.overlay-specs td {
    font-weight: 600;
    color: var(--dark);
}

.overlay-rate-btn {
    display: inline-block;
    margin-top: 28px;
    margin-bottom: 24px;
    background: var(--green);
    color: var(--white);
}

.overlay-rate-btn:hover {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

@media (max-width: 600px) {
    .overlay-panel { max-width: 100%; padding: 48px 24px 32px; }
    .overlay-name { font-size: 26px; }
    .overlay-bottle { width: 64px; }
    .overlay-visual { margin-bottom: 4px; }
}

/* ── OVERLAY BEWERTUNGEN ── */
.overlay-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.overlay-reviews-empty {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

.overlay-review-item {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.overlay-review-item-stars {
    color: var(--green-mid);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.overlay-review-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.overlay-review-item-date {
    font-weight: 400;
    color: var(--muted);
}

.overlay-review-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    white-space: pre-line;
}

.overlay-review-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.review-form[hidden] {
    display: none;
}

.form-row-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: var(--text-light);
}

.form-row-checkbox input {
    margin-top: 3px;
}

.review-stars {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
    font-size: 30px;
}

.review-stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.review-stars label {
    font-size: 30px;
    cursor: pointer;
    color: var(--border);
    transition: color 0.15s;
}

.review-stars.error label {
    color: #e3b3b3;
}

.review-stars input:checked ~ label,
.review-stars label:hover,
.review-stars label:hover ~ label {
    color: #f5a623;
}

.review-form .btn {
    align-self: flex-start;
}

.review-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.review-status {
    font-size: 15px;
    font-weight: 400;
    margin-top: 16px;
}

.review-status.success {
    color: var(--green-mid);
}

.review-status.error {
    color: #b23b3b;
}

/* ── AGE CHECK ── */
.age-check-active {
    overflow: hidden;
}

.age-check-dialog {
    z-index: 1100;
}

.age-check-panel {
    max-width: 600px;
    display: block;
    text-align: center;
    border-radius: 16px;
}

.age-check-logo {
    width: 120px;
    margin: 0 auto 28px;
}

.age-check-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.age-check-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.age-check-no {
    border-color: var(--border);
    color: var(--muted);
}

.age-check-no:hover {
    background: var(--offwhite);
    color: var(--dark);
    border-color: var(--muted);
}

.age-check-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
}

.age-check-birthday-row {
    align-items: center;
    max-width: 220px;
    margin: 24px auto 0;
}

.age-check-birthday-row input {
    width: 100%;
    text-align: center;
}

@media (max-width: 600px) {
    .age-check-panel { padding: 40px 28px; }
    .age-check-title { font-size: 24px; }
}
