@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/playfair-display-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/playfair-display-900.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/dm-sans-300.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/dm-sans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/dm-sans-500.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/dm-sans-600.woff2') format('woff2');
}


/* ─── VARIABLES: DARK (default) ─────────────────────── */

:root {
    --bg: #080608;
    --bg-dark: #0d090b;
    --card: rgba(255, 255, 255, 0.04);
    --card-hover: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f6efe6;
    --muted: rgba(246, 239, 230, 0.65);
    --accent: #dc2626;
    --accent-bright: #ef4444;
    --accent-glow: rgba(220, 38, 38, 0.25);
}


/* ─── VARIABLES: LIGHT ───────────────────────────────── */

html.light {
    --bg: #fdf7f2;
    --bg-dark: #f5ebe1;
    --card: rgba(0, 0, 0, 0.055);
    --card-hover: rgba(0, 0, 0, 0.09);
    --border: rgba(0, 0, 0, 0.11);
    --text: #2b211c;
    --muted: rgba(43, 33, 28, 0.58);
    --accent: #dc2626;
    --accent-bright: #ef4444;
    --accent-glow: rgba(220, 38, 38, 0.12);
}


/* Light mode specific overrides */

html.light nav {
    background: rgba(253, 247, 242, 0.88);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

html.light nav.scrolled {
    background: rgba(253, 247, 242, 0.88);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

html.light .mobile-menu {
    background: rgba(253, 247, 242, 0.98);
}

html.light .blob-1 {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.14), transparent 70%);
}

html.light .blob-2 {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.09), transparent 70%);
}

html.light .map-embed iframe {
    filter: none;
}

html.light .gallery-overlay {
    background: rgba(253, 247, 242, 0.55);
    color: #2b211c;
}

html.light .lightbox {
    background: rgba(230, 224, 216, 0.97);
}

html.light .outline-text {
    -webkit-text-stroke: 2px var(--accent-bright);
    color: transparent;
}

html.light .hamburger span {
    background: var(--text);
}

html.light .scroll-line {
    background: linear-gradient(to bottom, rgba(43, 33, 28, 0.45), transparent);
}

html.light .review-avatar {
    background: linear-gradient(135deg, var(--accent), #fca5a5);
    color: #fff;
}

html.light .gallery-placeholder {
    color: rgba(43, 33, 28, 0.25);
}

html.light .lightbox-placeholder {
    color: rgba(43, 33, 28, 0.3);
}

html.light .dot {
    background: rgba(0, 0, 0, 0.18);
}

html.light .hero-status.open {
    background: rgba(74, 222, 128, .12);
}

html.light .hero-status.closed {
    background: rgba(248, 113, 113, .12);
}

html.light .hours-row.today {
    background: rgba(220, 38, 38, .08);
}

html.light .deal-card.hot {
    background: rgba(239, 68, 68, .06);
}


/* ─── RESET ──────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background .3s, color .3s;
}


/* ─── FOCUS ──────────────────────────────────────────── */

:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 3px;
    border-radius: 4px;
}


/* ─── NAV ────────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 40px;
    background: rgba(8, 6, 8, 0.78);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background .4s, backdrop-filter .4s, border-color .4s;
}

nav.scrolled {
    background: rgba(8, 6, 8, 0.78);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.logo-text em {
    color: var(--accent-bright);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.nav-link:hover {
    color: var(--text);
    background: var(--card);
}

.nav-link.active {
    color: var(--text);
    background: var(--card);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--accent-bright);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── THEME TOGGLE ───────────────────────────────────── */

.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1;
}

.theme-btn:hover {
    background: var(--card-hover);
    border-color: rgba(220, 38, 38, .4);
    transform: rotate(15deg);
}


/* ─── LANG BTN ───────────────────────────────────────── */

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--card-hover);
    border-color: rgba(255, 255, 255, .15);
}


/* ─── HAMBURGER ──────────────────────────────────────── */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--card);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* ─── MOBILE MENU ────────────────────────────────────── */

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    background: rgba(8, 6, 8, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 100px 24px 40px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nav-link.mobile {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 10px 24px;
    width: 100%;
    text-align: center;
    border-radius: 14px;
    color: var(--muted);
}

.nav-link.mobile:hover {
    color: var(--text);
    background: var(--card);
}

.mobile-menu-bottom {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 15px !important;
}


/* ─── HERO ───────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.25), transparent 70%);
    top: -150px;
    left: -100px;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
    bottom: -100px;
    right: -80px;
    animation: blobFloat 11s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(30px, 20px) scale(1.07);
    }
}

.noise {
    position: absolute;
    inset: 0;
    opacity: .5;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 100%;
}

.hero-top-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    font-size: 12px;
    margin-bottom: 0;
}

.rating-num {
    font-weight: 700;
    font-size: 13px;
}

.rating-stars {
    color: #f59e0b;
    font-size: 11px;
}

.rating-count {
    color: var(--muted);
    font-size: 11px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3px;
    color: var(--muted);
    margin-bottom: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(58px, 13vw, 155px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -2px;
    animation: fadeUp .7s .1s ease both;
}

.outline-text {
    -webkit-text-stroke: 2px var(--accent-bright);
    color: transparent;
}

.hero-sub {
    margin-top: 22px;
    font-size: 16px;
    color: var(--muted);
    animation: fadeUp .7s .18s ease both;
}

.hero-status-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp .7s .26s ease both;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    font-size: 13px;
    font-weight: 600;
}

.hero-status.open {
    color: #4ade80;
    border-color: rgba(74, 222, 128, .25);
    background: rgba(74, 222, 128, .06);
}

.hero-status.closed {
    color: #f87171;
    border-color: rgba(248, 113, 113, .25);
    background: rgba(248, 113, 113, .06);
}

.hero-countdown {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
}

.hero-countdown:empty {
    display: none;
}

.hero-countdown.urgent {
    border-color: rgba(220, 38, 38, .4);
    background: rgba(220, 38, 38, .12);
    color: var(--accent-bright);
    animation: pulse-warn 1.4s ease-in-out infinite;
}

@keyframes pulse-warn {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: .6;
    }
}

.hero-weather-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp .7s .32s ease both;
}

.hero-weather-tagline {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .45s ease, transform .45s ease;
}

.hero-weather-tagline.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-weather-tagline .badge-temp {
    font-weight: 700;
    color: var(--text);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp .7s .5s ease both;
}

.scroll-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: .4;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── SECTIONS ───────────────────────────────────────── */

.section {
    padding: 90px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-bright);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 36px;
}


/* ─── ABOUT ──────────────────────────────────────────── */

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.about-headline h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 68px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.about-headline h2 em {
    color: var(--accent-bright);
    font-style: normal;
}

.about-body p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--accent-bright);
    line-height: 1;
}

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


/* ─── SERVICES ───────────────────────────────────────── */

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

.service-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, .5);
    box-shadow: 0 20px 50px rgba(220, 38, 38, .12);
}

.new-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(239, 68, 68, .2);
    border: 1px solid rgba(239, 68, 68, .45);
    color: var(--accent-bright);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.service-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}


/* ─── DEALS ──────────────────────────────────────────── */

.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.deal-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}

.deal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, .25);
}

.deal-card.hot {
    border-color: rgba(239, 68, 68, .25);
    background: rgba(239, 68, 68, .04);
}

.deal-card.hot:hover {
    border-color: rgba(239, 68, 68, .5);
    box-shadow: 0 16px 40px rgba(239, 68, 68, .10);
}

.deal-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--muted);
}

.deal-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.deal-info {
    flex: 1;
    min-width: 0;
}

.deal-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.deal-desc {
    font-size: 12px;
    color: var(--muted);
}

.deal-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.deal-old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
}

.deal-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--accent-bright);
}


/* ─── HOURS ──────────────────────────────────────────── */

.hours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background .2s, border-color .2s;
}

.hours-row:hover {
    background: var(--card);
    border-color: var(--border);
}

.hours-row.today {
    background: rgba(220, 38, 38, .10);
    border-color: rgba(220, 38, 38, .35);
}

.hours-row.today .day-name {
    color: var(--accent-bright);
    font-weight: 600;
}

.day-name {
    font-size: 14px;
    font-weight: 500;
}

.day-time {
    font-size: 14px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.hours-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clock-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.clock-svg {
    width: 200px;
    height: 200px;
}

.clock-time {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* ─── REVIEWS ────────────────────────────────────────── */

.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.reviews-header .section-title {
    margin-top: -20px;
}

.google-total {
    display: none;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(220, 38, 38, .35);
    background: linear-gradient(135deg, rgba(220, 38, 38, .16), rgba(239, 68, 68, .08));
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    transition: background .2s, transform .2s, border-color .2s, box-shadow .2s;
}

.write-review-btn svg {
    color: var(--accent-bright);
    flex-shrink: 0;
}

.write-review-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, .35);
}

.write-review-btn:hover svg {
    color: #fff;
}

@media (max-width: 600px) {
    .write-review-btn {
        font-size: 12.5px;
        padding: 9px 16px;
    }
}

.gt-score {
    font-weight: 700;
    font-size: 15px;
}

.gt-stars {
    color: #f59e0b;
    font-size: 13px;
}

.gt-label {
    color: var(--muted);
    font-size: 12px;
}

.reviews-wrapper {
    width: 100%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
    width: 100%;
}

.reviews-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 16px;
}

.reviews-nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .2s, border-color .2s;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, .3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #7f1d1d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-size: 13px;
    font-weight: 600;
}

.review-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
}

.review-stars {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 1px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s, transform .2s;
}

.arrow-btn:hover {
    background: rgba(220, 38, 38, .2);
    border-color: rgba(220, 38, 38, .5);
    transform: scale(1.08);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background .2s, transform .2s;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-bright);
    transform: scale(1.4);
}


/* ─── CONTACT BUTTONS ────────────────────────────────── */

#btn-route,
#btn-whatsapp,
#btn-call,
#btn-whatsapp-mobile,
#btn-call-mobile {
    font-family: 'DM Sans', sans-serif;
    border: none;
    text-align: left;
    cursor: pointer;
}

.route-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.route-btn:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, .35);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(37, 211, 102, .10);
    border: 1px solid rgba(37, 211, 102, .25) !important;
    color: #25d366;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, transform .2s;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, .18);
    transform: translateY(-2px);
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(59, 130, 246, .10);
    border: 1px solid rgba(59, 130, 246, .25) !important;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, transform .2s;
}

.call-btn:hover {
    background: rgba(59, 130, 246, .18);
    transform: translateY(-2px);
}


/* ─── MAP ────────────────────────────────────────────── */

.map-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 28px;
    align-items: stretch;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
}

.map-address-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.map-pin {
    font-size: 24px;
    margin-top: 2px;
}

.map-street {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
}

.map-city {
    color: var(--muted);
    font-size: 14px;
    margin-top: 3px;
}

.map-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.map-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted);
    opacity: 0;
    transition: opacity .3s;
}

.map-meta-badge.visible {
    opacity: 1;
}

.map-meta-badge.status-badge.open {
    background: rgba(34, 197, 94, .1);
    border-color: rgba(34, 197, 94, .3);
    color: #22c55e;
}

.map-meta-badge.status-badge.closed {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .25);
    color: #f87171;
}

.map-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    transition: border-color .2s, color .2s, background .2s;
}

.payment-badge svg {
    color: var(--accent-bright);
    flex-shrink: 0;
}

.payment-badge:hover {
    background: var(--card-hover);
    border-color: rgba(220, 38, 38, .3);
    color: var(--text);
}

@media (max-width: 600px) {
    .payment-methods {
        margin-top: 12px;
        padding-top: 12px;
        gap: 6px;
    }
    .payment-badge {
        font-size: 11.5px;
        padding: 6px 12px;
    }
}

.route-btn,
.whatsapp-btn,
.call-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 18px;
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    min-height: 360px;
    position: relative;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: invert(90%) hue-rotate(180deg);
}


/* Map weather tagline */

.map-weather-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    padding: 10px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    opacity: 0;
    transition: opacity .4s;
}

.map-weather-tagline.visible {
    opacity: 1;
}

.badge-temp {
    color: var(--accent-bright);
    font-weight: 700;
}


/* ─── GALLERY ────────────────────────────────────────── */

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 180px;
    gap: 10px;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    background: var(--card);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.gallery-item:hover {
    border-color: rgba(220, 38, 38, .5);
    transform: scale(1.015);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
    z-index: 2;
}

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


/* Blur-Placeholder / LQIP */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .4s ease;
    filter: blur(0px);
}

.gallery-item img.lqip-loading {
    filter: blur(12px) brightness(.85);
    transform: scale(1.04);
}

.gallery-item img.lqip-loaded {
    filter: blur(0px);
    transform: scale(1);
}

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

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


/* Placeholder SVG tile */

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(246, 239, 230, .2);
    font-size: 12px;
    letter-spacing: .5px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 6, 8, .72) 0%, rgba(8, 6, 8, .1) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 14px 16px;
    opacity: 0;
    transition: opacity .25s;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
}

.gallery-overlay::before {
    content: '⤢';
    font-size: 16px;
    margin-right: 6px;
    opacity: .8;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* Counter badge in gallery-wrapper */

.gallery-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 3px 10px;
    letter-spacing: .03em;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
}

.gallery-item--wide .gallery-count-badge {
    opacity: 1;
}


/* ─── LIGHTBOX ───────────────────────────────────────── */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(12px);
    animation: fadeIn .2s ease;
}

.lightbox.open {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 860px;
    width: 90vw;
}

.lightbox-img {
    max-width: 100%;
    max-height: 72vh;
    border-radius: 16px;
    object-fit: contain;
    border: 1px solid var(--border);
}

.lightbox-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(246, 239, 230, .25);
    font-size: 14px;
}

.lightbox-counter {
    font-size: 13px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(220, 38, 38, .3);
    border-color: rgba(220, 38, 38, .6);
}

.lightbox-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s, transform .2s;
}

.lightbox-arrow:hover {
    background: rgba(220, 38, 38, .25);
    border-color: rgba(220, 38, 38, .5);
    transform: scale(1.08);
}


/* ─── FOOTER ─────────────────────────────────────────── */

footer {
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
    padding: 56px 48px 32px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
    border-radius: 2px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* ── Top row: 3 columns ── */

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* Brand column */

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .04em;
    color: var(--text);
}

.footer-logo-text em {
    color: var(--accent-bright);
    font-style: normal;
}

.footer-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 240px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-style: normal;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.footer-address span:first-child {
    flex-shrink: 0;
    margin-top: 1px;
}


/* Column title */

.footer-col-title {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 2px;
}


/* Hours list */

.footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--muted);
    gap: 12px;
}

.footer-hours-list li span:last-child {
    color: var(--text);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}


/* Footer status badge */

.footer-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    width: fit-content;
    transition: color .3s, background .3s, border-color .3s;
}

.footer-status-badge.open {
    color: #4ade80;
    border-color: rgba(74, 222, 128, .28);
    background: rgba(74, 222, 128, .07);
}

.footer-status-badge.closed {
    color: #f87171;
    border-color: rgba(248, 113, 113, .28);
    background: rgba(248, 113, 113, .07);
}


/* Contact buttons */

.footer-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
    text-align: left;
    width: 100%;
}

.footer-contact-btn:hover {
    background: var(--card-hover);
    border-color: rgba(239, 68, 68, .4);
    color: var(--text);
    transform: translateX(3px);
}

.footer-contact-btn--wa {
    color: #25d366;
    border-color: rgba(37, 211, 102, .2);
    background: rgba(37, 211, 102, .05);
}

.footer-contact-btn--wa:hover {
    background: rgba(37, 211, 102, .12);
    border-color: rgba(37, 211, 102, .35);
    color: #25d366;
}

.footer-contact-btn--call {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, .2);
    background: rgba(59, 130, 246, .05);
}

.footer-contact-btn--call:hover {
    background: rgba(59, 130, 246, .12);
    border-color: rgba(59, 130, 246, .35);
    color: #3b82f6;
}


/* ── Bottom bar ── */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 12px;
    color: var(--muted);
    opacity: .45;
}

.footer-top-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
}

.footer-top-btn:hover {
    color: var(--text);
    border-color: var(--accent-bright);
    background: rgba(239, 68, 68, .06);
}


/* Light mode */

html.light .footer-copy {
    color: var(--muted);
    opacity: .6;
}


/* ── Responsive ── */

@media (max-width: 768px) {
    footer {
        padding: 44px 24px 28px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    footer {
        padding: 40px 18px 24px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-col-brand {
        grid-column: unset;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}


/* ─── DEAL OLD PRICE (durchgestrichen) ──────────────── */

.deal-price-old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
    opacity: .7;
    margin-right: 2px;
}


/* ─── HOURS PROGRESS BAR ─────────────────────────────── */

.hours-row {
    position: relative;
    overflow: hidden;
}

.hours-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    display: block;
    opacity: 0;
    transition: opacity .3s;
}

.hours-row.today .hours-progress {
    opacity: 1;
}

.hours-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 1s ease;
}


/* ─── DEAL EXPIRY BADGE ──────────────────────────────── */

.deal-expiry {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--muted);
    margin-top: 4px;
    display: block;
}

.deal-expiry.urgent {
    color: #f87171;
}

.deal-expiry.expired {
    color: rgba(248, 113, 113, .5);
    text-decoration: line-through;
}


/* ─── RESPONSIVE 960px (Tablet Landscape) ───────────── */

@media (max-width: 960px) {
    .section {
        padding: 80px 0;
    }
    .section-inner {
        padding: 0 32px;
    }
    /* About */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Deals */
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Hours */
    .hours-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hours-visual {
        display: none;
    }
    /* Reviews: 2 Reihen à 2 Karten */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    /* Map: Map oben, Info unten */
    .map-layout {
        grid-template-columns: 1fr;
    }
    .map-embed {
        order: -1;
        min-height: 280px;
        height: 280px;
    }
    .map-info {
        padding: 22px 20px;
        gap: 10px;
    }
    .map-buttons-stack {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .route-btn,
    .whatsapp-btn,
    .call-btn {
        flex: 1 1 140px;
        padding: 11px 14px;
        font-size: 13px;
        width: auto;
    }
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px 165px 165px;
    }
    .gallery-item--wide {
        grid-column: span 2;
    }
    /* FAQ */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .faq-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .faq-sidebar-title {
        width: 100%;
        margin-bottom: 2px;
    }
    .faq-cat-btn {
        flex: 0 0 auto;
        padding: 7px 12px;
    }
    .faq-cat-btn .faq-cat-count {
        display: none;
    }
}


/* ─── RESPONSIVE 768px (Tablet Portrait) ────────────── */

@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
        gap: 10px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .logo-text {
        font-size: 15px;
    }
    .theme-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .lang-btn {
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
    .mobile-menu {
        display: flex;
    }
    body.menu-open {
        overflow: hidden;
    }
    /* Hero */
    .hero-inner {
        padding: 0 24px;
    }
    .hero-title {
        font-size: clamp(52px, 13vw, 96px);
    }
    .hero-top-row {
        flex-wrap: wrap;
        gap: 6px;
    }
    /* About */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .stat-num {
        font-size: clamp(28px, 6vw, 42px);
    }
    /* Deals */
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .deal-card {
        padding: 18px;
    }
    /* Hours */
    .hours-table {
        gap: 2px;
    }
    .day-name {
        font-size: 13px;
    }
    .day-time {
        font-size: 13px;
    }
    /* Reviews */
    .reviews-stats-row {
        gap: 16px;
        padding: 18px 16px;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    /* Map */
    .map-layout {
        grid-template-columns: 1fr;
    }
    .map-embed {
        order: -1;
        height: 260px;
        min-height: 260px;
    }
    .map-info {
        padding: 18px 16px;
    }
    .map-buttons-stack {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .route-btn,
    .whatsapp-btn,
    .call-btn {
        flex: 1 1 120px;
        padding: 10px 12px;
        font-size: 13px;
        width: auto;
    }
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 145px 145px;
    }
    /* FAQ */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .faq-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .faq-cat-btn {
        padding: 6px 11px;
        font-size: .82rem;
    }
    /* Products */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ─── RESPONSIVE 600px (Handy) ──────────────────────── */

@media (max-width: 600px) {
    /* Nav */
    nav {
        padding: 9px 14px;
        gap: 8px;
    }
    /* Arrow btns – global hide except where overridden */
    .logo-text {
        font-size: 14px;
    }
    .theme-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .lang-btn {
        height: 30px;
        padding: 0 7px;
        font-size: 11px;
        gap: 3px;
    }
    .hamburger {
        width: 34px;
        height: 34px;
    }
    /* Sections */
    .section {
        padding: 56px 0;
    }
    .section-inner {
        padding: 0 16px;
    }
    .section-label {
        font-size: 10px;
        margin-bottom: 8px;
    }
    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 84px;
        padding-bottom: 40px;
    }
    .hero-inner {
        padding: 0 20px;
    }
    .hero-title {
        font-size: clamp(48px, 15vw, 80px);
        margin-top: 4px;
    }
    .hero-sub {
        font-size: 16px;
        margin-top: 16px;
    }
    .hero-status-row {
        margin-top: 20px;
    }
    .hero-weather-row {
        margin-top: 14px;
    }
    .hero-weather-tagline {
        font-size: 14px;
    }
    .hero-top-row {
        gap: 8px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .google-rating,
    .hero-badge {
        font-size: 13px;
        padding: 7px 13px;
    }
    .hero-status,
    .hero-countdown {
        font-size: 14px;
        padding: 8px 15px;
    }
    .hero-scroll-hint {
        display: none;
    }
    /* About */
    .about-headline h2 {
        font-size: clamp(28px, 9vw, 44px);
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .stat-num {
        font-size: clamp(22px, 6vw, 32px);
    }
    .stat-label {
        font-size: 11px;
    }
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .service-card {
        padding: 20px 14px;
    }
    .service-icon {
        font-size: 28px;
    }
    /* Deals */
    .deals-grid {
        grid-template-columns: 1fr;
    }
    .deal-card {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 16px;
    }
    .deal-icon {
        font-size: 28px;
    }
    /* Hours */
    .day-name,
    .day-time {
        font-size: 13px;
    }
    /* Reviews */
    .reviews-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 10px;
    }
    .review-card {
        padding: 14px;
        border-radius: 14px;
    }
    .review-text {
        font-size: 12px;
    }
    .reviews-stats-row {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        padding: 16px;
    }
    .reviews-divider {
        display: none;
    }
    .reviews-score-block {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .reviews-score-num {
        font-size: 32px;
    }
    .rating-donut {
        min-width: 0;
        width: 100%;
    }
    .reviews-nav-row .arrow-btn {
        display: flex;
        width: 36px;
        height: 36px;
    }
    /* Gallery */
    .gallery-wrapper {
        gap: 10px;
    }
    .gallery-wrapper>.arrow-btn {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 120px 120px;
        width: 100%;
    }
    .gallery-item--wide {
        grid-column: span 2;
    }
    .lightbox-arrow {
        display: none;
    }
    /* Map */
    .map-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .map-embed {
        order: -1;
        height: 220px;
        min-height: 220px;
        border-radius: 14px;
    }
    .map-info {
        padding: 16px;
        gap: 10px;
        border-radius: 14px;
    }
    .map-street {
        font-size: 18px;
    }
    .map-buttons-stack {
        flex-direction: column;
        gap: 8px;
    }
    .route-btn,
    .whatsapp-btn,
    .call-btn {
        width: 100%;
        padding: 9px 16px;
        font-size: 12.5px;
        border-radius: 10px;
        justify-content: center;
    }
    .map-meta-row {
        gap: 6px;
    }
    /* FAQ */
    .faq-layout {
        gap: 14px;
    }
    .faq-sidebar {
        gap: 5px;
    }
    .faq-cat-btn {
        padding: 6px 10px;
        font-size: .8rem;
    }
    .faq-q {
        font-size: .88rem;
        padding: 1rem;
    }
    .faq-a {
        font-size: .85rem;
    }
    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-card {
        padding: 1rem .8rem .8rem;
        border-radius: 12px;
    }
    .product-emoji {
        font-size: 28px;
    }
    .product-name {
        font-size: .82rem;
    }
    /* Arrow btns – global hide except where overridden */
    .arrow-btn {
        display: none;
    }
    /* Misc */
    .scroll-top-btn {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}


/* ─── RESPONSIVE 400px (Kleinstes Handy) ────────────── */

@media (max-width: 400px) {
    .section-inner {
        padding: 0 13px;
    }
    .hero-title {
        font-size: clamp(38px, 13vw, 60px);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-cat-btn {
        font-size: .76rem;
        padding: 5px 8px;
    }
    .nav-link.mobile {
        font-size: 18px;
        padding: 8px 20px;
    }
}


/* ─── Pull-to-Refresh sperren ───────────────────────── */

body {
    overscroll-behavior-y: contain;
}


/* ─── MAP META BADGES ────────────────────────────────── */

.map-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -8px;
    margin-bottom: 32px;
    align-items: center;
}

.map-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .45s ease, transform .45s ease, background .2s, border-color .2s;
    backdrop-filter: blur(8px);
}

.map-meta-badge:hover {
    background: var(--card-hover);
    border-color: rgba(255, 255, 255, .14);
}

.map-meta-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-meta-badge .badge-temp {
    font-weight: 700;
    color: var(--text);
}

.map-meta-badge.status-badge.open {
    color: #4ade80;
    border-color: rgba(74, 222, 128, .28);
    background: rgba(74, 222, 128, .07);
}

.map-meta-badge.status-badge.closed {
    color: #f87171;
    border-color: rgba(248, 113, 113, .28);
    background: rgba(248, 113, 113, .07);
}


/* Tablet (768px – 960px): 2-column badge wrap */

@media (max-width: 960px) and (min-width: 601px) {
    .map-meta-row {
        gap: 7px;
        margin-bottom: 28px;
    }
    .map-meta-badge {
        font-size: 12px;
        padding: 6px 13px;
    }
}


/* Mobile (≤600px): compact & grid-wrap */

@media (max-width: 600px) {
    .map-meta-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
        margin-top: -4px;
        margin-bottom: 24px;
    }
    .map-meta-badge {
        font-size: 11.5px;
        padding: 7px 11px;
        justify-content: center;
        border-radius: 12px;
        gap: 5px;
    }
    /* Status badge always full-width at top */
    .map-meta-badge.status-badge {
        grid-column: 1 / -1;
        border-radius: 10px;
        justify-content: center;
        font-size: 12px;
        padding: 8px 14px;
    }
}

@media (max-width: 380px) {
    .map-meta-row {
        grid-template-columns: 1fr;
    }
    .map-meta-badge {
        border-radius: 10px;
    }
}


/* ─── WEATHER WIDGET ─────────────────────────────────── */

.weather-widget {
    display: none;
}

.hero-weather {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    opacity: 0;
    transition: opacity .4s;
    min-width: 60px;
    justify-content: center;
}

.hero-weather.loaded {
    opacity: 1;
}


/* ─── SHARE BUTTON ───────────────────────────────────── */

.share-btn {
    display: none;
}

@media (max-width: 1024px) {
    .share-btn {
        background: none;
        border: 1px solid var(--border);
        border-radius: 8px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text);
        cursor: pointer;
        transition: border-color .2s, background .2s, transform .15s;
    }
    .share-btn:hover {
        background: var(--card-hover);
        border-color: var(--accent);
        transform: scale(1.08);
    }
}


/* ─── SINCE BADGE ────────────────────────────────────── */

.since-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 1.25rem 0 0;
    padding: .35rem .85rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
}

.since-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-bright);
    flex-shrink: 0;
}


/* ─── PRODUCTS GRID ──────────────────────────────────── */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 2rem;
}

.product-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
    transition: background .2s, transform .2s, border-color .2s;
    cursor: default;
}

.product-card:hover {
    background: var(--card-hover);
    border-color: rgba(239, 68, 68, .35);
    transform: translateY(-3px);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent-bright);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .15rem .55rem;
    border-radius: 100px;
}

.product-emoji {
    font-size: 2.2rem;
    line-height: 1;
}

.product-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.product-price {
    font-size: .9rem;
    font-weight: 700;
    color: var(--accent-bright);
}


/* ─── FAQ ACCORDION ──────────────────────────────────── */

.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    margin-top: 2.5rem;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-sidebar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    padding-left: 4px;
}

.faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: .87rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all .2s;
    width: 100%;
}

.faq-cat-btn:hover {
    background: var(--card);
    color: var(--text);
    border-color: var(--border);
}

.faq-cat-btn.active {
    background: var(--card);
    border-color: rgba(239, 68, 68, .35);
    color: var(--text);
}

.faq-cat-btn .faq-cat-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.faq-cat-btn .faq-cat-count {
    margin-left: auto;
    font-size: .75rem;
    background: var(--border);
    border-radius: 999px;
    padding: 1px 8px;
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
}

.faq-cat-btn.active .faq-cat-count {
    background: rgba(239, 68, 68, .18);
    color: var(--accent-bright);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-group {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.faq-group.visible {
    display: flex;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
    border-color: rgba(239, 68, 68, .4);
    box-shadow: 0 4px 20px rgba(239, 68, 68, .07);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background .2s;
    -webkit-user-select: none;
    user-select: none;
}

.faq-q:hover {
    background: var(--card-hover);
}

.faq-q-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-q-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform .3s ease;
    color: var(--muted);
}

.faq-q[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-bright);
}

.faq-a {
    padding: 0 1.25rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1), padding .25s ease;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

.faq-a.open {
    max-height: 300px;
    padding: 0 1.25rem 1.2rem;
}

.faq-a-inner {
    padding-top: 0;
    padding-left: 30px;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* FAQ Search Bar */

.faq-search-wrap {
    position: relative;
    margin-bottom: 16px;
}

.faq-search {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px 10px 38px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}

.faq-search:focus {
    border-color: rgba(239, 68, 68, .45);
}

.faq-search::placeholder {
    color: var(--muted);
    opacity: .7;
}

.faq-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

.faq-no-results {
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
    padding: 2rem 0;
    display: none;
}

@media (max-width: 860px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .faq-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .faq-sidebar-title {
        width: 100%;
        margin-bottom: 2px;
    }
    .faq-cat-btn {
        flex: 0 0 auto;
        padding: 7px 12px;
    }
    .faq-cat-btn .faq-cat-count {
        display: none;
    }
}


/* ─── RATING DONUT ───────────────────────────────────── */

.reviews-stats-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.reviews-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    min-width: 80px;
}

.reviews-score-num {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--text);
}

.reviews-score-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
}

.reviews-score-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.reviews-divider {
    width: 1px;
    height: 64px;
    background: var(--border);
    flex-shrink: 0;
}

.rating-donut {
    flex: 1;
    min-width: 200px;
}

.donut-chart-wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
}

.donut-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.donut-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
}

.donut-star-label {
    color: var(--muted);
    width: 20px;
    flex-shrink: 0;
    text-align: right;
}

.donut-bar-track {
    flex: 1;
    height: 5px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.donut-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.donut-pct {
    color: var(--muted);
    width: 22px;
    text-align: right;
    font-size: .7rem;
}

.donut-seg {
    transition: stroke-dasharray .8s ease;
}


/* ─── RESPONSIVE TWEAKS (neue Sections) ─────────────── */


/* ─── REVIEWS STATS ROW – Tablet (768px – 960px) ─────── */

@media (max-width: 960px) and (min-width: 601px) {
    .reviews-stats-row {
        gap: 24px;
        padding: 22px 24px;
        flex-wrap: wrap;
    }
    .reviews-score-block {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        min-width: unset;
        flex-shrink: 0;
    }
    .reviews-score-num {
        font-size: 38px;
    }
    .reviews-divider {
        width: 1px;
        height: 56px;
    }
    .rating-donut {
        flex: 1;
        min-width: 180px;
    }
}


/* ─── REVIEWS STATS ROW – Mobile (600px) ────────────── */

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .donut-chart-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 14px;
    }
    .donut-bars {
        flex: 1;
        min-width: 0;
    }
    .share-btn {
        width: 30px;
        height: 30px;
    }
    /* Stats row: stack score above chart, full-width */
    .reviews-stats-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        margin-bottom: 24px;
    }
    .reviews-divider {
        display: none;
    }
    /* Score block: horizontal pill at top */
    .reviews-score-block {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        min-width: unset;
        padding: 16px 20px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px 16px 0 0;
        border-bottom: none;
    }
    .reviews-score-num {
        font-size: 40px;
        line-height: 1;
    }
    .reviews-score-stars {
        font-size: 14px;
    }
    .reviews-score-meta {
        margin-top: 0;
    }
    /* Donut chart: card directly below */
    .rating-donut {
        min-width: 0;
        width: 100%;
        padding: 16px 20px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 0 0 16px 16px;
    }
    .reviews-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

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


/* ─── DEAL COUNTDOWN TIMER ──────────────────────────── */

.deal-countdown {
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #f87171;
    letter-spacing: .04em;
    margin-top: 3px;
    animation: pulse-warn 1s ease-in-out infinite;
}


/* ─── DEALS LAST UPDATED ────────────────────────────── */

.deals-updated {
    font-size: 11px;
    color: var(--muted);
    opacity: .6;
    margin-bottom: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* ─── REVIEW SKELETON LOADER ────────────────────────── */

.skeleton-card {
    pointer-events: none;
}

.skel {
    background: linear-gradient(90deg, var(--card) 25%, var(--border) 50%, var(--card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skel-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skel-name {
    width: 90px;
    height: 14px;
    margin-left: 10px;
}

.skel-line {
    width: 100%;
    height: 12px;
    margin-top: 10px;
}

.skel-line.short {
    width: 65%;
    margin-top: 6px;
}

.skel-stars {
    width: 80px;
    height: 12px;
    margin-top: 10px;
}

.review-header {
    display: flex;
    align-items: center;
}


/* ─── SCROLL TO TOP BUTTON ──────────────────────────── */

.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .3s, transform .3s, background .2s;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


/* ─── HOURS TODAY HIGHLIGHT (enhance) ──────────────── */

.hours-row.today {
    background: rgba(239, 68, 68, .08);
    border-radius: 8px;
    padding-inline: 10px;
}

.hours-row.today .day-name {
    color: var(--accent-bright);
    font-weight: 700;
}

.hours-row.today .day-time {
    font-weight: 600;
    color: var(--text);
}


/* ─── NAV ACTIVE LINK INDICATOR (enhance) ──────────── */

.nav-link.active {
    color: var(--text) !important;
    background: var(--card) !important;
}

.nav-link.active::after {
    width: 20px;
    background: var(--accent-bright);
}


/* ─── DYNAMIC PRODUCT BADGES ───────────────────────── */

.badge-popular {
    background: rgba(251, 146, 60, .15) !important;
    color: #fb923c !important;
    border: 1px solid rgba(251, 146, 60, .3) !important;
}

.badge-new-product {
    background: rgba(74, 222, 128, .12) !important;
    color: #4ade80 !important;
    border: 1px solid rgba(74, 222, 128, .25) !important;
}

.badge-bestseller {
    background: rgba(239, 68, 68, .12) !important;
    color: var(--accent-bright) !important;
    border: 1px solid rgba(239, 68, 68, .3) !important;
}

.badge-service {
    background: rgba(99, 102, 241, .12) !important;
    color: #818cf8 !important;
    border: 1px solid rgba(99, 102, 241, .25) !important;
}


/* ─── OWNER REPLY BADGE ─────────────────────────────── */

.owner-reply-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    opacity: 0;
    animation: fadeUp .6s .4s ease both;
}

.owner-reply-badge svg {
    color: #4ade80;
    flex-shrink: 0;
}


/* ─── PAGE TRANSITION FADE ──────────────────────────── */

html.page-transitioning body>*:not(nav):not(#scrollTopBtn) {
    opacity: 0.55;
    transition: opacity 80ms ease;
}

html:not(.page-transitioning) body>*:not(nav):not(#scrollTopBtn) {
    transition: opacity 320ms ease;
}