/* ============================================
   Alter Ego – Premium Dark Theme
  Fonts: Cormorant Garamond (headings) + Inter (body)
   Accent: #C9A96E (warm gold)
   ============================================ */

:root {
    --bg: #0C0C0C;
    --bg-alt: #111;
    --surface: #161616;
    --surface-hover: #1C1C1C;
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.14);
    --text: #E8E4DF;
    --text-secondary: #8A8A8A;
    --text-muted: #555;
    --accent: #C9A96E;
    --accent-hover: #D9BC82;
    --accent-dark: #A88B54;
    --accent-glow: rgba(201,169,110,0.12);
    --text-on-accent: #111827;
    --tab-active-bg: var(--accent);
    --tab-active-text: var(--text-on-accent);
    --tab-inactive-bg: rgba(255,255,255,0.08);
    --tab-inactive-text: var(--text-secondary);
    --tab-inactive-border: var(--border);
    --alert-success-bg: rgba(67,160,71,0.12);
    --alert-success-border: rgba(67,160,71,0.35);
    --alert-success-text: #86efac;
    --alert-error-bg: rgba(229,57,53,0.12);
    --alert-error-border: rgba(229,57,53,0.35);
    --alert-error-text: #fca5a5;
    --alert-warning-bg: rgba(245,158,11,0.12);
    --alert-warning-border: rgba(245,158,11,0.35);
    --alert-warning-text: #fcd34d;
    --alert-info-bg: rgba(59,130,246,0.12);
    --alert-info-border: rgba(59,130,246,0.35);
    --alert-info-text: #93c5fd;
    --danger: #E53935;
    --success: #43A047;
    --heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --nav-h: 72px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---- Reset / Base ---- */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(201,169,110,0.35);
    color: #fff;
}

img { border: 0; max-width: 100%; height: auto; }

/* Utility fallback (Tailwind-like) */
.hidden { display: none !important; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading);
    line-height: 1.3;
    margin: 0 0 0.75em;
    color: #fff;
}

h1 { font-size: 2.5rem; font-weight: 500; }
h2 { font-size: 2rem; font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--body);
}
h6 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1.5em; }

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}
a:hover { color: var(--accent); }

/* ---- Layout ---- */
.wrap {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2em;
}
.wrap::after { clear: both; content: ""; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
    border-bottom: 1px solid rgba(17, 24, 39, 0.14);
}

.main-nav-bar.nav-scrolled,
.main-nav-bar.nav-solid {
    background: rgba(12,12,12,0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.nav-logo {
    font-family: var(--heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.nav-logo:hover { color: #fff; opacity: 0.8; }

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.nav-menu li { display: inline-block; }

.nav-menu a {
    display: block;
    padding: 0.5em 1.25em;
    color: rgba(255,255,255,0.7);
    font-family: var(--body);
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-cart-item {
    margin-left: 0.35rem;
}

.nav-cart-link {
    width: 44px;
    height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 999px;
    padding: 0 !important;
}

.nav-cart-link::after {
    display: none;
}

.nav-cart-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.nav-cart-count {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--accent);
    color: #0C0C0C;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.1rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.75);
}

.nav-cart-count.hidden {
    display: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.menu-toggle .icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 0.4em;
}
.menu-toggle:hover { color: var(--accent); }

/* Burger menu when items do not fit (class toggled by JS) */
.main-nav-bar.nav-mobile-mode .menu-toggle { display: block; }

.main-nav-bar.nav-mobile-mode .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
}

.main-nav-bar.nav-mobile-mode .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 0.5em;
}

.main-nav-bar.nav-mobile-mode.toggled-on .nav-menu { display: flex; }

.main-nav-bar.nav-mobile-mode .nav-menu li {
    display: block;
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.main-nav-bar.nav-mobile-mode .nav-menu li:last-child { border: 0; }

.main-nav-bar.nav-mobile-mode .nav-menu a {
    text-align: center;
    padding: 0.85em 1.5em;
}

.main-nav-bar.nav-mobile-mode .nav-menu a::after { display: none; }

.main-nav-bar.nav-mobile-mode .nav-cart-item {
    margin-left: 0;
}

.main-nav-bar.nav-mobile-mode .nav-cart-link {
    width: 100%;
    height: auto;
    border-radius: 0;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85em 1.5em !important;
}

.main-nav-bar.nav-mobile-mode .nav-cart-count {
    position: static;
    min-width: 1.4rem;
    height: 1.2rem;
    line-height: 1.2rem;
}

/* ============================================
   HERO HEADER
   ============================================ */
.hero-header { position: relative; }

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,12,12,0.35) 0%,
        rgba(12,12,12,0.08) 35%,
        rgba(12,12,12,0.3) 65%,
        rgba(12,12,12,0.92) 100%
    );
    z-index: 1;
}

.hero-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.hero-logo {
    max-height: 180px;
    width: auto;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
    transition: transform 0.5s var(--ease), opacity 0.3s;
}

.hero-logo-wrap a:hover .hero-logo {
    transform: scale(1.03);
    opacity: 0.9;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: heroFloat 3s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.hero-scroll-indicator svg {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.35);
}

@keyframes heroFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Inner page header (hidden - nav has logo) */
.inner-page-header { display: none; }

/* Content offset for fixed nav on inner pages */
.site-content-contain.inner-page {
    padding-top: var(--nav-h);
}

/* Rezervace: cíl scrollu pod fixní menu */
#reservation-success {
    scroll-margin-top: calc(var(--nav-h) + 1rem);
}

#reservation-success:focus {
    outline: none;
}

/* ============================================
   SECTION BLOCKS
   ============================================ */
.site-content-contain {
    background: var(--bg);
    position: relative;
}

.site-content { padding: 0; }

.section-block {
    overflow: hidden;
    position: relative;
}

.section-no-image {
    border-top: 1px solid var(--border);
}

.section-dark {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-image-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 60vh;
    min-height: 350px;
}

.section-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,12,12,0.2) 0%, rgba(12,12,12,0.75) 100%);
}

.section-content { position: relative; }

.section-content .wrap {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.section-label {
    color: var(--accent);
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75em;
}

.section-heading {
    font-family: var(--heading);
    color: #fff;
    font-size: 2.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

.section-twocol {
    display: flex;
    gap: 4em;
}

.section-twocol.section-twocol-about-center {
    align-items: center;
}

.section-twocol .col-left {
    flex: 0 0 35%;
    max-width: 35%;
}

.section-twocol .col-right {
    flex: 1;
}

.section-twocol .col-right p {
    color: var(--text-secondary);
    line-height: 1.92;
    font-size: 1.02rem;
}

/* ============================================
   OPENING HOURS STRIP
   ============================================ */
.opening-hours-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.opening-hours-inner {
    padding: 2rem 0;
    text-align: center;
}

.opening-hours-title {
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1em;
    color: var(--accent);
}

.opening-hours-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em 2em;
    margin-bottom: 1em;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.opening-hours-item { white-space: nowrap; }
.opening-hours-item strong { color: var(--text); }

.opening-hours-address {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.opening-hours-address a { color: var(--text-secondary); }

.opening-hours-exceptions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em 1.5em;
    margin-bottom: 1em;
    padding: 0.75em 1.25em;
    background: rgba(201,169,110,0.07);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 4px;
    font-size: 0.8125rem;
    color: var(--accent);
}

.opening-exception-item { white-space: nowrap; }
.opening-exception-item strong { color: #fff; }

.opening-hours-branches {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.opening-hours-branch-card {
    padding: 0.5rem 0.5rem;
    background: transparent;
    border: 0;
    text-align: center;
}

.opening-hours-branch-title {
    color: var(--accent-dark);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.opening-hours-branch-list {
    display: grid;
    gap: 0.2rem;
    width: max-content;
    margin: 0 auto;
}

.opening-hours-row {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.opening-hours-day {
    font-weight: 700;
    color: var(--text);
}

.opening-hours-time {
    justify-self: start;
}

/* ============================================
   PRODEJNA (alternating image/text)
   ============================================ */
.prodejna-row {
    display: flex;
    align-items: center;
    gap: 4em;
    margin-bottom: 6em;
}
.prodejna-row:last-child { margin-bottom: 0; }
.prodejna-row-reverse { flex-direction: row-reverse; }

.prodejna-image {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    border-radius: 4px;
}

.prodejna-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.prodejna-image:hover img {
    transform: scale(1.04);
}

.prodejna-text { flex: 1; }
.prodejna-text p {
    color: var(--text-secondary);
    line-height: 1.85;
}

/* ============================================
   O NÁS (image left, text right)
   ============================================ */
.onas-row {
    display: flex;
    align-items: center;
    gap: 4em;
}

.onas-image {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    border-radius: 4px;
}

.onas-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}

.onas-image:hover img {
    transform: scale(1.04);
}

.onas-text {
    flex: 1;
}

.onas-text p {
    color: var(--text-secondary);
    line-height: 1.85;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    text-align: center;
    position: relative;
    padding: 2em 1.5em;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.product-card:hover {
    border-color: rgba(201,169,110,0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.voucher-image-wrap {
    position: relative;
    display: block;
}

.voucher-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.voucher-image {
    display: block;
    width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.product-card .voucher-image-wrap {
    margin-bottom: 1.5rem;
}

.product-card .voucher-image {
    border-radius: 4px;
}

.product-card h3 {
    font-family: var(--body);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-card .price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.voucher-card-nakup .price {
    text-align: center;
}

.voucher-card-nakup .voucher-variant-custom {
    text-align: center;
}

.product-card .voucher-card-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: -0.75rem 0 1rem;
}

.product-card .voucher-card-features {
    margin: -0.5rem 0 1rem 1rem;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
    list-style: disc;
}

.product-card .voucher-card-features li + li {
    margin-top: 0.25rem;
}

.product-card .voucher-card-features--plain {
    list-style: none;
    margin-left: 0;
}

.product-card .voucher-card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0.2rem 0.6rem;
    background: var(--surface);
    border: 1px solid rgba(201, 169, 110, 0.5);
    color: var(--accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.product-card .voucher-variant-picker {
    margin-bottom: 1rem;
}

.product-card .voucher-variant-picker label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-card .voucher-variant-select,
.product-card .voucher-variant-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-card .voucher-variant-custom.hidden {
    display: none;
}

.product-card .btn-add-to-cart {
    display: inline-block;
    background: var(--accent);
    color: #0C0C0C;
    padding: 0.75em 2em;
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    margin-top: auto;
}

.product-card .btn-add-to-cart:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Event Cards */
.event-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
}

/* Šikmý pruh OBSAZENO: ořez v rohu, pruh jen kolem textu (stejné L/R odsazení) */
.event-soldout-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 7rem;
    height: 7rem;
    overflow: hidden;
    pointer-events: none;
}

.event-soldout-ribbon__label {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: max-content;
    margin: 0;
    padding: 0.34rem 0.95rem;
    /* letter-spacing přidá mezeru za poslední znak → stejně velká mezera vlevo */
    padding-left: calc(0.95rem + 0.08em);
    background: var(--danger);
    color: #fff;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .event-soldout-ribbon {
        width: 6.25rem;
        height: 6.25rem;
    }

    .event-soldout-ribbon__label {
        padding: 0.3rem 0.8rem;
        padding-left: calc(0.8rem + 0.06em);
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
}

.event-carousel-card {
    background: var(--surface);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.event-carousel-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.event-carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-carousel-card .date-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(201,169,110,0.92);
    color: #0C0C0C;
    padding: 0.5rem 1rem;
    text-align: center;
    line-height: 1.2;
    border-radius: 0 4px 0 0;
}

.event-carousel-card .date-badge .day {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
}

.event-carousel-card .date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Blog Cards */
.blog-card {
    background: var(--surface);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.blog-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: var(--bg-alt);
    transition: opacity 0.3s;
}

.blog-card a:hover img {
    opacity: 0.9;
}

.blog-card .badge-category {
    display: inline-block;
    background: rgba(201,169,110,0.12);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    font-family: var(--body);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    border: 1px solid rgba(201,169,110,0.2);
}

.blog-card .content { padding: 1.5rem; }

.section-dark .section-heading,
.section-dark .section-label {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.blog-card h3 {
    font-family: var(--body);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--accent); }

.blog-card .excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
}
.blog-card .read-more:hover { text-decoration: underline; }

.blog-card .meta {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border);
    font-family: var(--body);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Portfolio / Packages */
.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    border-radius: 2px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

.portfolio-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12,12,12,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

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

.portfolio-item .overlay h3 {
    color: #fff;
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   GRIDS
   ============================================ */
.voucher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.events-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: visible;
}

.events-carousel {
    display: flex;
    gap: 1.25em;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5em 0;
    flex: 1;
    min-width: 0;
}

.events-carousel::-webkit-scrollbar { display: none; }

.events-carousel .event-carousel-card {
    flex: 0 0 calc(25% - 1em);
    min-width: 240px;
}

a.event-carousel-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.event-carousel-card-body {
    padding: 1em;
}

.event-carousel-card-title {
    margin: 0 0 0.35em;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.event-carousel-card-meta {
    color: #767676;
    font-size: 0.75rem;
    margin: 0;
}

.event-carousel-card-desc {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0.5em 0 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-carousel-card-spots {
    font-size: 0.7rem;
    margin: 0.35em 0 0;
    color: #4b5563;
    font-weight: 600;
}

.carousel-btn {
    position: relative;
    flex-shrink: 0;
    top: auto;
    transform: none;
    z-index: 2;
    background: rgba(22,22,22,0.9);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: all 0.3s var(--ease);
    color: #fff;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #0C0C0C;
    border-color: var(--accent);
}

.carousel-btn-prev,
.carousel-btn-next {
    left: auto;
    right: auto;
}

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

@media screen and (min-width: 40em) {
    .balicky-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 64em) {
    .balicky-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .balicek-card__title {
        font-size: 1.125rem;
        margin-bottom: 0.5em;
    }

    .balicek-card__description {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 0.5em;
    }

    .balicek-card__price {
        font-size: 0.9375rem;
        margin-bottom: 0.75em;
    }

    .balicek-card__body {
        padding: 1em 0.85em;
    }

    .balicek-card__cta {
        font-size: 0.8125rem;
        padding: 0.65em 0.75em;
    }
}

.balicek-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    min-height: 11rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.balicek-card:hover {
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.balicek-card__media {
    flex: 0 0 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    min-width: 0;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.03);
}

.balicek-card__media--empty {
    background: linear-gradient(160deg, rgba(201, 169, 110, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
}

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

.balicek-card__body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 1.25em 1em;
}

.balicek-card__title {
    font-family: var(--heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.65em;
    line-height: 1.25;
}

.balicek-card__description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 0.65em;
}

.balicek-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.85em;
}

.balicek-card__cta {
    width: 100%;
    margin-top: auto;
}

.balicek-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5em;
}

.balicek-modal.hidden {
    display: none;
}

.balicek-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(12px);
}

.balicek-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 28em;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2em;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.balicek-modal__close {
    position: absolute;
    top: 0.75em;
    right: 0.75em;
    width: 2.25em;
    height: 2.25em;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.balicek-modal__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.balicek-modal__heading {
    font-family: var(--heading);
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 0.5em;
}

.balicek-modal__package {
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 0.75em;
}

.balicek-modal__intro {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 1.25em;
}

.balicek-modal__field {
    margin-bottom: 1em;
}

.balicek-modal__field label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.35em;
}

.balicek-modal__optional {
    font-weight: 400;
    opacity: 0.75;
}

.balicek-modal__textarea {
    resize: vertical;
    min-height: 5em;
}

.balicek-modal__submit {
    width: 100%;
    margin-top: 0.5em;
}

body.balicek-modal-open {
    overflow: hidden;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.news-list-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    overflow: hidden;
}

.news-list-thumb__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.instagram-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.instagram-card:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 110, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

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

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-family: var(--body);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-gold {
    background: rgba(201,169,110,0.12);
    color: var(--accent);
    border: 1px solid rgba(201,169,110,0.25);
}

.badge-red {
    background: rgba(229,57,53,0.1);
    color: #E53935;
    border: 1px solid rgba(229,57,53,0.25);
}

.badge-green {
    background: rgba(67,160,71,0.1);
    color: #43A047;
    border: 1px solid rgba(67,160,71,0.25);
}

.badge-blue {
    background: rgba(25,118,210,0.1);
    color: #1976D2;
    border: 1px solid rgba(25,118,210,0.25);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--accent);
    border: 0;
    border-radius: 4px;
    color: var(--text-on-accent);
    cursor: pointer;
    display: inline-block;
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    padding: 1em 2.25em;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent-hover);
    color: var(--text-on-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201,169,110,0.25);
}

.btn-accent {
    background: var(--accent);
    border: 0;
    border-radius: 4px;
    color: var(--text-on-accent);
    cursor: pointer;
    display: inline-block;
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    padding: 1em 2.25em;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.3s var(--ease);
}

.btn-accent:hover { background: var(--accent-hover); color: var(--text-on-accent); }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: var(--body);
    font-weight: 600;
    padding: 0.9em 2.25em;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    display: inline-block;
    text-decoration: none;
    font-size: 0.8125rem;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
}

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

.btn-gold {
    background: var(--accent);
    color: var(--text-on-accent);
    font-family: var(--body);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    display: inline-block;
    text-decoration: none;
    font-size: 0.875rem;
    border: 0;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--accent-hover);
    color: var(--text-on-accent);
    box-shadow: 0 4px 20px rgba(201,169,110,0.25);
}

/* ============================================
   UI COMPONENTS (globální, používají CSS tokeny)
   Nové prvky: .ui-tab / .ui-tabs, .ui-alert--success|error|warning|info
   ============================================ */
.ui-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ui-tab {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
    border: 1px solid transparent;
    cursor: pointer;
}

.ui-tab.is-active {
    background: var(--tab-active-bg);
    color: var(--tab-active-text);
}

.ui-tab:not(.is-active) {
    background: var(--tab-inactive-bg);
    color: var(--tab-inactive-text);
    border-color: var(--tab-inactive-border);
}

.ui-tab:not(.is-active):hover {
    color: var(--text-on-accent);
    filter: brightness(0.96);
}

.ui-alert {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border: 1px solid;
}

.ui-alert p:last-child,
.ui-alert ul:last-child {
    margin-bottom: 0;
}

.ui-alert--success {
    background: var(--alert-success-bg);
    border-color: var(--alert-success-border);
    color: var(--alert-success-text);
}

.ui-alert--error {
    background: var(--alert-error-bg);
    border-color: var(--alert-error-border);
    color: var(--alert-error-text);
}

.ui-alert--warning {
    background: var(--alert-warning-bg);
    border-color: var(--alert-warning-border);
    color: var(--alert-warning-text);
}

.ui-alert--info {
    background: var(--alert-info-bg);
    border-color: var(--alert-info-border);
    color: var(--alert-info-text);
}

.btn-outline-gold {
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--body);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    display: inline-block;
    text-decoration: none;
    background: transparent;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--text-on-accent);
}

.cart-qty-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(17, 24, 39, 0.18);
    background: rgba(255,255,255,0.92);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.cart-qty-btn:hover {
    background: #ffffff;
    color: #000;
    border-color: rgba(17, 24, 39, 0.28);
}

/* ============================================
   FORMS
   ============================================ */
label {
    color: var(--text);
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5em;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: block;
    padding: 0.75em 1em;
    width: 100%;
    font-family: var(--body);
    font-size: 0.9375rem;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    color: #fff;
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

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

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--body);
    font-size: 0.875rem;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    color: #fff;
}

.form-input::placeholder { color: var(--text-muted); }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--body);
    font-size: 0.875rem;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.site-footer .wrap {
    padding-top: 3.5em;
    padding-bottom: 2em;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
    margin-bottom: 3em;
}

.footer-widget h3 {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5em;
}

.footer-widget ul { list-style: none; margin: 0; padding: 0; }
.footer-widget ul li { margin-bottom: 0.6em; font-size: 0.9375rem; }
.footer-widget a { color: var(--text-secondary); }
.footer-widget a:hover { color: var(--accent); }

.footer-contact-form input,
.footer-contact-form textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.875rem;
    border-radius: 4px;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: var(--text-muted);
}

.footer-contact-form .btn-submit {
    background: var(--accent);
    color: #0C0C0C;
    font-family: var(--body);
    font-weight: 700;
    padding: 0.85em 2em;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.3s var(--ease);
    width: 100%;
}

.footer-contact-form .btn-submit:hover { background: var(--accent-hover); }

.footer-newsletter {
    margin-top: 2.25em;
    padding-top: 2em;
    border-top: 1px solid var(--border);
}

.footer-newsletter h3 {
    margin-bottom: 1em;
}

.social-navigation { margin-bottom: 1.5em; }
.social-navigation ul { list-style: none; margin: 0; padding: 0; }
.social-navigation li { display: inline; }

.social-navigation a {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    margin: 0 0.4em 0.5em 0;
    transition: all 0.3s var(--ease);
}

.social-navigation a:hover {
    background: var(--accent);
    color: #0C0C0C;
    border-color: var(--accent);
}

.social-navigation .icon { height: 16px; width: 16px; }

.footer-map {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 2em;
}

.footer-map iframe {
    border: 0;
    width: 100%;
    height: 220px;
    filter: none;
}

.site-info {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid var(--border);
}

.site-info a { color: var(--text-secondary); }
.site-info a:hover { color: var(--accent); }

/* ============================================
   AGE VERIFICATION
   ============================================ */
.age-verify-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(12,12,12,0.96);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-verify-box {
    text-align: center;
    padding: 3em;
    max-width: 28em;
}

.age-verify-box .logo {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 1em;
}

.age-verify-box p { color: var(--text-secondary); margin-bottom: 1em; }

.age-verify-box .question {
    color: #fff;
    font-family: var(--heading);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 2em;
}

.age-verify-box .btn-yes {
    background: var(--accent);
    color: #0C0C0C;
    font-family: var(--body);
    font-weight: 700;
    padding: 0.85em 3em;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 0.75em;
    transition: background 0.3s var(--ease);
}

.age-verify-box .btn-yes:hover { background: var(--accent-hover); }

.age-verify-box .btn-no {
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    font-family: var(--body);
    font-weight: 700;
    padding: 0.85em 3em;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s var(--ease);
}

.age-verify-box .btn-no:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
}

.cart-confirm-overlay {
    z-index: 10001;
}

.cart-confirm-box .cart-confirm-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2em;
}

.cart-confirm-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent-root[hidden] {
    display: none !important;
}

.cookie-consent-banner[hidden],
.cookie-consent-settings[hidden],
.cookie-consent-fab[hidden] {
    display: none !important;
}

.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9997;
    background: rgba(12, 12, 12, 0.97);
    border-top: 1px solid rgba(201, 169, 110, 0.25);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.cookie-consent-banner-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 1.5rem;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 64em) {
    .cookie-consent-banner-inner {
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 2rem;
    }
}

.cookie-consent-title {
    margin: 0 0 0.5rem;
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.cookie-consent-desc {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.cookie-consent-desc a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent-banner-actions,
.cookie-consent-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-consent-btn {
    appearance: none;
    border: 1px solid rgba(201, 169, 110, 0.45);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.cookie-consent-btn:hover,
.cookie-consent-btn:focus-visible {
    background: rgba(201, 169, 110, 0.14);
    border-color: rgba(201, 169, 110, 0.7);
    outline: none;
}

.cookie-consent-settings {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-consent-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.cookie-consent-settings-panel {
    position: relative;
    width: min(42rem, 100%);
    max-height: min(90vh, 52rem);
    overflow: auto;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.cookie-consent-settings-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cookie-consent-settings-close {
    appearance: none;
    border: 0;
    background: transparent;
    color: #9ca3af;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.125rem 0.375rem;
}

.cookie-consent-settings-close:hover,
.cookie-consent-settings-close:focus-visible {
    color: #fff;
    outline: none;
}

.cookie-consent-categories {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
}

.cookie-consent-category {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.cookie-consent-category-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}

.cookie-consent-category-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.cookie-consent-category-desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-consent-toggle {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-consent-toggle.is-disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.cookie-consent-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-consent-toggle-ui {
    width: 2.75rem;
    height: 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-toggle-ui::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-ui {
    background: var(--accent);
    border-color: var(--accent);
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-ui::after {
    transform: translateX(1.2rem);
}

.cookie-consent-details-toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 0 0;
    cursor: pointer;
    text-decoration: underline;
}

.cookie-consent-details {
    margin-top: 0.75rem;
    overflow-x: auto;
}

.cookie-consent-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    background: rgba(0, 0, 0, 0.2);
}

.cookie-consent-details-table th,
.cookie-consent-details-table td {
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.5rem 0.625rem;
    text-align: left;
    vertical-align: top;
}

.cookie-consent-details-table th {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.cookie-consent-details-table td {
    color: #e8eaed;
    background: rgba(255, 255, 255, 0.04);
}

#cookie-consent-root,
#cookie-consent-root .cookie-consent-settings-panel,
#cookie-consent-root .cookie-consent-banner {
    color: #d1d5db;
}

#cookie-consent-root .cookie-consent-title,
#cookie-consent-root .cookie-consent-category-title {
    color: #ffffff;
}

#cookie-consent-root .cookie-consent-desc,
#cookie-consent-root .cookie-consent-category-desc {
    color: #c5c9d0;
}

#cookie-consent-root .cookie-consent-desc a {
    color: var(--accent);
}

body.frontend-site #cookie-consent-root h2,
body.frontend-site #cookie-consent-root h3 {
    color: #ffffff;
}

body.frontend-site #cookie-consent-root .cookie-consent-details-table td {
    color: #e8eaed;
    background: rgba(255, 255, 255, 0.06);
}

body.frontend-site #cookie-consent-root .cookie-consent-details-table th {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.cookie-consent-fab {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 9996;
    appearance: none;
    border: 1px solid rgba(201, 169, 110, 0.45);
    background: rgba(12, 12, 12, 0.95);
    color: #fff;
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cookie-consent-fab:hover,
.cookie-consent-fab:focus-visible {
    background: rgba(201, 169, 110, 0.16);
    outline: none;
}

body.cookie-consent-modal-open {
    overflow: hidden;
}

.cookie-consent-map-placeholder {
    position: relative;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.02);
}

.cookie-consent-map-placeholder iframe {
    display: none;
    width: 100%;
    height: 250px;
}

.cookie-consent-map-placeholder.is-loaded iframe {
    display: block;
}

.cookie-consent-map-placeholder.is-loaded .cookie-consent-map-fallback {
    display: none;
}

.cookie-consent-map-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 250px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cookie-consent-map-fallback a {
    color: var(--accent);
    text-decoration: underline;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.gold-line {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

.img-zoom { overflow: hidden; border-radius: 4px; }
.img-zoom img { transition: transform 0.7s var(--ease); }
.img-zoom:hover img { transform: scale(1.05); }
.news-list-thumb.img-zoom:hover img,
.news-list-thumb.img-zoom img {
    transform: none;
}

.loader {
    border: 3px solid var(--accent-glow);
    border-top-color: var(--accent);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.section-accent { color: var(--accent); }
a.text-olive { color: var(--accent); }
a.text-olive:hover { color: var(--accent-hover); }

/* Scrollbar */
* { scrollbar-width: thin; scrollbar-color: rgba(201,169,110,0.4) var(--surface); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================
   PRINT
   ============================================ */
@media print {
    nav, footer, .no-print, .main-nav-bar { display: none !important; }
    body { background: #fff; color: #000; }
    .site-content { padding-top: 0 !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 48em) {
    .menu-toggle { display: block; }

    .nav-inner {
        flex-wrap: wrap;
        height: auto;
        padding-top: 0.75em;
        padding-bottom: 0.75em;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 0.5em;
    }

    .main-nav-bar.toggled-on .nav-menu { display: flex; }

    .nav-menu li {
        display: block;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .nav-menu li:last-child { border: 0; }

    .nav-menu a {
        text-align: center;
        padding: 0.85em 1.5em;
    }

    .nav-menu a::after { display: none; }

    .nav-cart-item {
        margin-left: 0;
    }

    .nav-cart-link {
        width: 100%;
        height: auto;
        border-radius: 0;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.85em 1.5em !important;
    }

    .nav-cart-count {
        position: static;
        min-width: 1.4rem;
        height: 1.2rem;
        line-height: 1.2rem;
    }

    .hero-image-wrap { height: 70vh; min-height: 400px; }
    .hero-logo { max-height: 120px; }
    .hero-scroll-indicator { display: none; }

    .section-image-bg { height: 45vh; min-height: 280px; }
    .section-content .wrap { padding-top: 3em; padding-bottom: 2em; }
    .section-twocol { flex-direction: column; gap: 1.5em; }
    .section-twocol .col-left { flex: 1; max-width: 100%; }

    .prodejna-row,
    .prodejna-row-reverse { flex-direction: column; gap: 2em; }
    .prodejna-image { flex: 1; max-width: 100%; }
    .prodejna-image img { height: 260px; }

    .onas-row { flex-direction: column; gap: 2em; }
    .onas-image { flex: 1; max-width: 100%; }
    .onas-image img { height: 260px; }

    .voucher-grid { grid-template-columns: 1fr; max-width: 360px; }

    .balicek-card {
        flex-direction: column;
        min-height: 0;
    }

    .balicek-card__media {
        flex: none;
        width: 100%;
        max-width: none;
        aspect-ratio: 16 / 9;
        max-height: 12rem;
    }

    .balicek-card__body {
        flex: 1 1 auto;
        width: 100%;
        padding: 1.25em 1em;
    }

    .balicek-card__title {
        font-size: 1.375rem;
    }

    .balicek-card__description {
        font-size: 0.875rem;
    }

    .news-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .events-carousel .event-carousel-card { flex: 0 0 85%; }
    .carousel-btn { width: 36px; height: 36px; }
    .events-carousel-wrapper { gap: 0.5rem; }

    .footer-widgets { grid-template-columns: 1fr; }
    .opening-hours-list { flex-direction: column; gap: 0.25em; }
    .opening-hours-branches { grid-template-columns: 1fr; }
}

@media screen and (min-width: 30em) {
    body { font-size: 1rem; }
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.625rem; }
    .section-heading { font-size: 2.25rem; }
}

@media screen and (min-width: 48em) {
    body { line-height: 1.7; }

    .wrap {
        max-width: 1200px;
        padding-left: 3em;
        padding-right: 3em;
    }

    .section-content .wrap {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }

    .section-image-bg {
        height: 65vh;
        max-height: 700px;
    }

    .hero-image-wrap {
        height: 100vh;
        height: 100dvh;
    }

    .background-fixed .section-image-bg {
        background-attachment: fixed;
    }
}

@media screen and (min-width: 64em) {
    .nav-menu a {
        padding: 0.5em 1.5em;
    }
}

/* ============================================
   LIGHT THEME OVERRIDE (Frontend)
   ============================================ */
body.frontend-site {
    background: #ffffff;
    color: #111827;
    --text-on-accent: #111827;
    --tab-inactive-bg: #e8e4df;
    --tab-inactive-text: #374151;
    --tab-inactive-border: rgba(17, 24, 39, 0.14);
    --alert-success-bg: #ecfdf5;
    --alert-success-border: #86efac;
    --alert-success-text: #14532d;
    --alert-error-bg: #fef2f2;
    --alert-error-border: #fca5a5;
    --alert-error-text: #7f1d1d;
    --alert-warning-bg: #fffbeb;
    --alert-warning-border: #fcd34d;
    --alert-warning-text: #78350f;
    --alert-info-bg: #eff6ff;
    --alert-info-border: #93c5fd;
    --alert-info-text: #1e3a8a;
}

body.frontend-site h1,
body.frontend-site h2,
body.frontend-site h3,
body.frontend-site h4,
body.frontend-site h5,
body.frontend-site h6 {
    color: #111827;
}

body.frontend-site .site-content-contain,
body.frontend-site .site-content,
body.frontend-site .section-no-image {
    background: #ffffff;
}

body.frontend-site .section-dark {
    background: #f5f1ea;
    border-top-color: rgba(17, 24, 39, 0.12);
    border-bottom-color: rgba(17, 24, 39, 0.12);
}

body.frontend-site .main-nav-bar.nav-scrolled,
body.frontend-site .main-nav-bar.nav-solid {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(17, 24, 39, 0.14);
}

body.frontend-site .nav-logo,
body.frontend-site .nav-menu a,
body.frontend-site .menu-toggle {
    color: #111827;
}

body.frontend-site .nav-cart-link {
    color: #111827;
}

body.frontend-site .nav-menu a:hover,
body.frontend-site .nav-menu a.active {
    color: #000000;
}

body.frontend-site .card,
body.frontend-site .product-card,
body.frontend-site .balicek-card,
body.frontend-site .event-card,
body.frontend-site .event-carousel-card,
body.frontend-site .blog-card {
    background: #ffffff;
    border-color: rgba(17, 24, 39, 0.12);
}

body.frontend-site .carousel-btn {
    background: #ffffff;
    color: #111827;
    border-color: rgba(17, 24, 39, 0.18);
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.12);
}

body.frontend-site .carousel-btn:hover {
    background: #c9a96e;
    color: #111827;
    border-color: #c9a96e;
}

body.frontend-site .event-carousel-card-title {
    color: #111827;
}

body.frontend-site .balicek-card__title {
    color: #111827;
}

body.frontend-site .balicek-modal__box {
    background: #ffffff;
    border-color: rgba(17, 24, 39, 0.12);
    box-shadow: 0 24px 80px rgba(17, 24, 39, 0.18);
}

body.frontend-site .balicek-modal__heading {
    color: #111827;
}

body.frontend-site .balicek-modal__intro {
    color: #4b5563;
}

body.frontend-site .balicek-modal__field label {
    color: #374151;
}

body.frontend-site .balicek-modal__close {
    color: #6b7280;
}

body.frontend-site .balicek-modal__close:hover {
    color: #111827;
    background: rgba(17, 24, 39, 0.06);
}

body.frontend-site .site-footer {
    background: #f8f6f2;
    border-top-color: rgba(17, 24, 39, 0.12);
}

body.frontend-site .footer-contact-form input,
body.frontend-site .footer-contact-form textarea,
body.frontend-site .form-input,
body.frontend-site .form-select,
body.frontend-site input[type="text"],
body.frontend-site input[type="email"],
body.frontend-site input[type="url"],
body.frontend-site input[type="password"],
body.frontend-site input[type="search"],
body.frontend-site input[type="number"],
body.frontend-site input[type="tel"],
body.frontend-site input[type="date"],
body.frontend-site textarea,
body.frontend-site select {
    background: #ffffff;
    color: #111827;
    border-color: rgba(17, 24, 39, 0.18);
}

body.frontend-site .form-label {
    color: #111827;
}

body.frontend-site .text-white { color: #111827 !important; }
body.frontend-site .text-gray-300 { color: #374151 !important; }
body.frontend-site .text-gray-400 { color: #4b5563 !important; }
body.frontend-site .text-gray-500 { color: #6b7280 !important; }
body.frontend-site .text-gray-600 { color: #6b7280 !important; }
body.frontend-site .text-brand-gold { color: #a88b54 !important; }

body.frontend-site .bg-gray-900\/30,
body.frontend-site .bg-gray-900\/50,
body.frontend-site .bg-gray-800\/20,
body.frontend-site .bg-gray-800\/30,
body.frontend-site .bg-gray-800\/40,
body.frontend-site .bg-gray-800\/50 {
    background-color: rgba(255, 255, 255, 0.92) !important;
}

body.frontend-site .border-gray-700,
body.frontend-site .border-gray-800,
body.frontend-site .border-gray-800\/50 {
    border-color: rgba(17, 24, 39, 0.14) !important;
}

/* Tailwind utility compatibility – zachová čitelnost bez nutnosti měnit každou šablonu */
body.frontend-site .text-brand-dark,
body.frontend-site .bg-brand-gold.text-brand-dark {
    color: var(--text-on-accent) !important;
}

body.frontend-site a.bg-gray-800.text-gray-400,
body.frontend-site button.bg-gray-800.text-gray-400,
body.frontend-site .bg-gray-800.text-gray-400 {
    background-color: var(--tab-inactive-bg) !important;
    color: var(--tab-inactive-text) !important;
    border: 1px solid var(--tab-inactive-border);
}

body.frontend-site a.bg-gray-800.text-gray-400:hover,
body.frontend-site button.bg-gray-800.text-gray-400:hover,
body.frontend-site .bg-gray-800.text-gray-400:hover {
    color: var(--text-on-accent) !important;
}

body.frontend-site .bg-green-900\/30,
body.frontend-site .bg-green-900\/50 {
    background-color: var(--alert-success-bg) !important;
}

body.frontend-site .border-green-800,
body.frontend-site .border-green-500 {
    border-color: var(--alert-success-border) !important;
}

body.frontend-site .text-green-300,
body.frontend-site .text-green-200 {
    color: var(--alert-success-text) !important;
}

body.frontend-site .bg-red-900\/30,
body.frontend-site .bg-red-900\/50 {
    background-color: var(--alert-error-bg) !important;
}

body.frontend-site .border-red-800,
body.frontend-site .border-red-500 {
    border-color: var(--alert-error-border) !important;
}

body.frontend-site .text-red-300,
body.frontend-site .text-red-200 {
    color: var(--alert-error-text) !important;
}

body.frontend-site .bg-yellow-900\/30,
body.frontend-site .bg-yellow-900\/50 {
    background-color: var(--alert-warning-bg) !important;
}

body.frontend-site .border-yellow-500,
body.frontend-site .border-yellow-800 {
    border-color: var(--alert-warning-border) !important;
}

body.frontend-site .text-yellow-300,
body.frontend-site .text-yellow-200 {
    color: var(--alert-warning-text) !important;
}

body.frontend-site .bg-blue-900\/30,
body.frontend-site .bg-blue-900\/50 {
    background-color: var(--alert-info-bg) !important;
}

body.frontend-site .border-blue-500,
body.frontend-site .border-blue-800 {
    border-color: var(--alert-info-border) !important;
}

body.frontend-site .text-blue-300,
body.frontend-site .text-blue-200 {
    color: var(--alert-info-text) !important;
}

/* ============================================
   NEWS ARTICLE DETAIL
   ============================================ */
.news-article-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.news-article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s var(--ease);
}

.news-article-back:hover {
    color: var(--accent);
}

.news-article-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.news-article-main {
    min-width: 0;
}

.news-article-header {
    margin-bottom: 1.75rem;
}

.news-article-intro {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.news-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.news-article-meta time {
    color: var(--accent);
    font-weight: 600;
}

.news-article-meta-sep {
    opacity: 0.45;
}

.news-article-title {
    font-family: var(--heading);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.news-article-excerpt {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Article content — magazine float layout */
.article-content {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.02rem;
}

.article-flow::after,
.article-zone::after,
.article-content::after {
    content: '';
    display: table;
    clear: both;
}

.article-zone {
    margin-bottom: 2rem;
}

.article-zone:last-child {
    margin-bottom: 0;
}

.article-zone-body {
    min-width: 0;
}

.article-image {
    margin: 0 0 1.25rem;
    max-width: 42%;
}

.article-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.625rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.article-image picture {
    display: block;
    width: 100%;
}

.article-image picture img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.625rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.article-image figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--text-muted, #6b7280);
}

.article-image.image-right,
.article-image.article-image--right {
    float: right;
    clear: both;
    margin-left: clamp(1.25rem, 3vw, 2rem);
}

.article-image.image-left,
.article-image.article-image--left {
    float: left;
    clear: both;
    margin-right: clamp(1.25rem, 3vw, 2rem);
}

.article-image.article-image--center {
    float: none;
    display: block;
    max-width: min(72%, 560px);
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.article-image.article-image--full {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    clear: both;
    margin-left: 0;
    margin-right: 0;
}

.article-zone--image-right .article-image.image-1,
.article-zone--image-right > .article-image:first-child {
    margin-top: 0;
}

.article-zone--image-left .article-image.image-left {
    margin-top: 0;
}

.article-zone--image-left .article-zone-body .article-image--nested.image-right {
    clear: left;
}

.article-zone--image-right .article-zone-body .article-image--nested.image-left {
    clear: right;
}

.article-zone--text-only {
    margin-top: 1.5rem;
}

.news-article-prose h2 {
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.85rem;
    line-height: 1.25;
}

.article-zone--image-right + .article-zone--image-left,
.article-zone--image-left + .article-zone--image-right {
    padding-top: 0.25rem;
}

.article-content .article-zone-body > h2:first-child,
.article-flow > h2:first-child {
    margin-top: 0;
}

.article-content h2 {
    clear: both;
}

.article-zone--image-right .article-zone-body > h2:first-child {
    clear: none;
}

.article-zone--image-left .article-zone-body > h2:first-child {
    clear: none;
}

.news-article-prose h3 {
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.35rem 0 0.65rem;
}

.news-article-prose p {
    margin: 0 0 1rem;
}

.news-article-prose ul,
.news-article-prose ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.news-article-prose li {
    margin-bottom: 0.35rem;
}

.news-article-prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.news-article-prose a:hover {
    color: var(--text);
}

.news-article-prose strong,
.news-article-prose b {
    color: var(--text);
    font-weight: 700;
}

.news-article-prose blockquote {
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
    color: var(--text-secondary);
    font-style: italic;
}

.news-sidebar-widget {
    margin-bottom: 2rem;
}

.news-sidebar-widget:last-child {
    margin-bottom: 0;
}

.news-sidebar-widget-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 1rem;
}

.news-sidebar-widget-title--featured {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--text);
    line-height: 1.2;
}

.news-sidebar-widget-title--featured::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-top: 0.5rem;
    background: var(--accent);
    border-radius: 1px;
}

.news-sidebar-posts,
.news-sidebar-events {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-sidebar-post-link,
.news-sidebar-event-link {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.news-sidebar-post-link {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}

.news-sidebar-event-link {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.75rem;
    margin-bottom: 0.65rem;
    border: 1px solid var(--border-hover);
    border-radius: 0.5rem;
    background: linear-gradient(160deg, rgba(232, 228, 223, 0.14) 0%, rgba(201, 169, 110, 0.09) 100%);
}

.news-sidebar-events li:last-child .news-sidebar-event-link {
    margin-bottom: 0;
}

.news-sidebar-post-link:hover {
    color: var(--accent);
}

.news-sidebar-event-link:hover {
    border-color: rgba(201, 169, 110, 0.45);
    box-shadow: 0 4px 14px var(--accent-glow);
    transform: translateY(-1px);
}

.news-sidebar-event-link:hover .news-sidebar-event-title {
    color: #141210;
}

.news-sidebar-event-link:hover .news-sidebar-event-meta {
    color: #4a433c;
}

.news-sidebar-post-thumb {
    flex: 0 0 52px;
    width: 52px;
    height: 40px;
    border-radius: 0.35rem;
    overflow: hidden;
    background: var(--bg);
}

.news-sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-post-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.news-sidebar-post-title {
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--text);
    font-weight: 600;
}

.news-sidebar-event-title {
    font-size: 0.92rem;
    line-height: 1.35;
    color: #1c1a18;
    font-weight: 700;
}

.news-sidebar-post-meta,
.news-sidebar-event-meta {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.news-sidebar-event-meta {
    color: #5c554c;
    font-weight: 500;
}

.news-sidebar-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
}

.news-sidebar-more:hover {
    color: var(--text);
}

.news-sidebar-vouchers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-sidebar-voucher-card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid rgba(201, 169, 110, 0.22);
    border-radius: 0.5rem;
    background: linear-gradient(160deg, rgba(232, 228, 223, 0.92) 0%, rgba(220, 210, 195, 0.88) 100%);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.news-sidebar-voucher-card:hover {
    border-color: rgba(201, 169, 110, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.18);
}

.news-sidebar-voucher-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 0.35rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.news-sidebar-voucher-thumb .voucher-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-voucher-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-voucher-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.news-sidebar-voucher-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1c1a18;
}

.news-sidebar-voucher-sub {
    font-size: 0.72rem;
    color: #5c554c;
    line-height: 1.35;
}

.news-sidebar-voucher-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-dark);
}

@media (max-width: 960px) {
    .news-article-layout {
        grid-template-columns: 1fr;
    }

    .news-article-sidebar {
        order: 2;
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border);
    }

    .news-article-main {
        order: 1;
    }

    .article-image {
        max-width: 46%;
    }
}

@media (max-width: 720px) {
    .article-image,
    .article-image.image-right,
    .article-image.image-left,
    .article-image.article-image--right,
    .article-image.article-image--left,
    .article-image.article-image--center,
    .article-image.article-image--full {
        float: none !important;
        max-width: 100%;
        width: 100%;
        margin: 0 0 1.25rem !important;
    }

    .article-zone {
        margin-bottom: 1.5rem;
    }

    .article-content h2 {
        clear: none;
    }
}
