:root {
    --coal: #080705;
    --coal-2: #15110D;
    --coal-3: #21150F;
    --kraft: #D8BE8C;
    --kraft-light: #E7D2A3;
    --paper: #F2E4C5;
    --ember: #C45A2C;
    --ember-hover: #E06B32;
    --line-dark: #2A2119;
    --text-light: #F5E7C8;
    --text-dark: #16110C;
    --text-muted: #6E5B44;
    --color-coal: var(--coal);
    --color-coal-2: var(--coal-2);
    --color-coal-3: var(--coal-3);
    --color-ink: var(--text-dark);
    --color-brown: var(--line-dark);
    --color-brown-deep: var(--coal-3);
    --color-craft: var(--kraft);
    --color-craft-light: var(--kraft-light);
    --color-card: var(--paper);
    --color-cream: var(--text-light);
    --color-copper: var(--ember);
    --color-terracotta: var(--ember-hover);
    --color-ash: var(--text-muted);
    --color-line: rgba(43, 27, 18, 0.14);
    --color-line-dark: rgba(245, 231, 200, 0.16);
    --shadow-soft: 0 20px 48px rgba(8, 7, 5, 0.28);
    --shadow-card: 0 10px 0 rgba(42, 33, 25, 0.14);
    --shadow-pack: 0 26px 56px rgba(8, 7, 5, 0.34);
    --radius-sm: 6px;
    --radius-md: 8px;
    --container: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #E6D4B5;
    color: var(--color-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.admin-bar .site-header {
    top: 32px;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: 4.8rem;
}

h2 {
    margin-bottom: 16px;
    font-size: 2.55rem;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.14rem;
}

p {
    color: var(--color-ash);
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.narrow {
    width: min(100% - 32px, 780px);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(8, 7, 5, 0.98);
    color: var(--color-cream);
    border-bottom: 1px solid var(--color-line-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 112px;
    gap: 24px;
    transition: min-height 220ms ease, gap 220ms ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: max-content;
    overflow: visible;
    font-weight: 850;
    transition: gap 220ms ease;
}

.brand img:not(.brand-logo),
.custom-logo {
    max-width: 54px;
    max-height: 54px;
}

.site-header .brand-logo {
    display: block;
    width: 92px !important;
    height: 92px !important;
    max-width: 92px !important;
    max-height: 92px !important;
    object-fit: contain;
    flex: 0 0 92px;
    flex-shrink: 0;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    box-shadow: none;
    transition: width 220ms ease, height 220ms ease, max-width 220ms ease, max-height 220ms ease, flex-basis 220ms ease;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 250, 242, 0.2);
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, var(--color-terracotta), var(--color-copper));
    color: var(--color-cream);
    font-size: 0.78rem;
    box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.2);
}

.brand-text {
    color: var(--text-light);
    display: grid;
    gap: 4px;
    font-family: "Arial Black", Impact, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    transition: font-size 220ms ease, gap 220ms ease, letter-spacing 220ms ease;
}

.brand-line {
    display: block;
}

.brand-line-sub {
    color: var(--ember-hover);
    font-size: 0.78em;
    letter-spacing: 0.18em;
}

.site-nav,
.site-nav-links,
.site-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav {
    order: 2;
    margin-left: auto;
}

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

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    color: rgba(255, 250, 242, 0.78);
    font-size: 0.95rem;
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, min-height 220ms ease, padding 220ms ease, font-size 220ms ease;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav a.active {
    background: rgba(255, 250, 242, 0.1);
    color: var(--color-cream);
    box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.08);
}

.language-switch {
    position: relative;
    order: 3;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    white-space: nowrap;
    transition: min-height 220ms ease;
}

.language-switch-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255, 250, 242, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 242, 0.07);
    color: var(--color-cream);
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.04em;
    transition: background 160ms ease, border-color 160ms ease, min-height 220ms ease, padding 220ms ease, color 160ms ease;
}

.language-switch-toggle:hover,
.language-switch.is-open .language-switch-toggle {
    border-color: rgba(196, 90, 44, 0.62);
    background: rgba(196, 90, 44, 0.14);
}

.language-switch-icon {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex: 0 0 26px;
}

.language-switch-current {
    min-width: 24px;
    text-align: left;
}

.language-switch-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 30;
    min-width: 178px;
    padding: 8px;
    border: 1px solid rgba(255, 250, 242, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(13, 10, 8, 0.98);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
    pointer-events: none;
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.language-switch.is-open .language-switch-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.language-switch-menu button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 250, 242, 0.78);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: left;
    transition: background 160ms ease, color 160ms ease;
}

.language-switch-menu button strong {
    color: var(--ember-hover);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.language-switch-menu button:hover,
.language-switch-menu button.active {
    background: rgba(255, 250, 242, 0.08);
    color: var(--color-cream);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 250, 242, 0.24);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: width 220ms ease, height 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 7, 5, 0.98);
    border-bottom-color: rgba(245, 231, 200, 0.12);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.site-header.is-scrolled .header-inner {
    min-height: 62px;
    gap: 18px;
}

.site-header.is-scrolled .brand {
    gap: 10px;
}

.site-header.is-scrolled .brand-logo {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    flex-basis: 42px;
}

.site-header.is-scrolled .brand-text {
    gap: 2px;
    font-size: 17px;
    letter-spacing: 0.025em;
}

.site-header.is-scrolled .brand-line-sub {
    letter-spacing: 0.14em;
}

.site-header.is-scrolled .site-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.86rem;
}

.site-header.is-scrolled .language-switch {
    min-height: 34px;
}

.site-header.is-scrolled .language-switch-toggle {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
}

.site-header.is-scrolled .language-switch-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
}

.site-header.is-scrolled .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
}

.menu-toggle span:not(.visually-hidden) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--color-cream);
}

.hero {
    position: relative;
    min-height: clamp(540px, calc(100vh - 76px), 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 6, 5, 0.9) 0%, rgba(8, 6, 5, 0.76) 42%, rgba(8, 6, 5, 0.58) 68%, rgba(8, 6, 5, 0.7) 100%),
        url("../img/hero-back.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--color-cream);
    border-bottom: 1px solid rgba(255, 250, 242, 0.08);
}

.hero::before,
.hero::after {
    content: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    align-items: center;
    gap: 64px;
    padding: 56px 0;
}

.hero-copy {
    max-width: 720px;
    padding: 28px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.56);
}

.hero-title {
    max-width: 820px;
}

.hero-title span {
    display: block;
}

.hero-title span:first-child {
    color: var(--text-light);
}

.hero-title span:last-child {
    max-width: 760px;
    color: var(--kraft-light);
    font-size: 0.72em;
    line-height: 1.04;
    text-transform: lowercase;
}

.hero-copy p {
    max-width: 590px;
    color: rgba(245, 231, 200, 0.86);
    font-size: 1.15rem;
}

.hero-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 850;
    letter-spacing: 0.012em;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.button:hover,
.woocommerce a.button:hover {
    transform: translateY(-2px);
}

.btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.czech-catalog-request__button {
    background: var(--ember);
    color: var(--text-light);
    box-shadow: 0 8px 0 rgba(42, 33, 25, 0.38);
}

.btn-primary:hover,
.woocommerce a.button:hover {
    background: var(--ember-hover);
}

.btn-secondary {
    border-color: var(--line-dark);
    background: rgba(242, 228, 197, 0.72);
    color: var(--color-ink);
}

.hero .btn-secondary {
    border-color: rgba(245, 231, 200, 0.64);
    background: rgba(8, 7, 5, 0.36);
    color: var(--text-light);
    box-shadow: inset 0 0 0 1px rgba(245, 231, 200, 0.05);
}

.hero-product {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 430px;
}

.hero-product::before {
    content: none;
}

.hero .product-bag {
    display: none;
}

.product-bag,
.product-pack {
    position: relative;
    overflow: hidden;
    color: var(--color-ink);
    background: var(--kraft);
    text-align: center;
}

.product-bag {
    width: min(100%, 390px);
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 48px 34px;
    border: 2px solid rgba(8, 7, 5, 0.5);
    border-radius: 6px 6px 16px 16px;
    box-shadow: 0 34px 78px rgba(0, 0, 0, 0.46);
    transform: rotate(-2deg);
}

.product-bag::before,
.product-pack::before {
    content: none;
}

.product-bag::after,
.product-pack::after {
    content: none;
}

.product-bag::after {
    content: none;
}

.bag-seal {
    align-self: center;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--coal);
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 850;
}

.bag-brand,
.pack-brand {
    font-weight: 850;
    text-transform: uppercase;
}

.product-bag strong {
    font-size: 3.28rem;
    line-height: 0.95;
}

.bag-line {
    width: 92px;
    height: 3px;
    margin: 2px auto 0;
    background: var(--color-coal);
}

.section {
    padding: 72px 0;
}

.hero + .section,
.section:not(.section-dark):not(.section-paper) {
    background: #E6D4B5;
}

.section-dark {
    background: #0D0A08;
    color: var(--text-light);
}

.section-dark p,
.section-dark .section-head p {
    color: rgba(255, 250, 242, 0.72);
}

.section-paper {
    background: #E6D4B5;
}

.section-head {
    max-width: 740px;
    margin-bottom: 34px;
}

.feature-grid,
.product-grid,
.supply-format-grid,
.catalog-grid,
.audience-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.product-card,
.catalog-card,
.info-panel,
.contact-card,
.request-form,
.woocommerce ul.products li.product {
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: #F1E4CD;
    box-shadow: var(--shadow-card);
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-top: 4px solid var(--coal);
}

.feature-card::after {
    content: none;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: var(--radius-sm);
    border-radius: 3px;
    background: var(--coal);
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 850;
}

.product-grid,
.supply-format-grid,
.catalog-grid,
.woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-grid--one {
    grid-template-columns: minmax(280px, 460px);
    justify-content: center;
}

.catalog-grid--two {
    grid-template-columns: repeat(2, minmax(300px, 460px));
    justify-content: center;
}

.catalog-grid--many {
    grid-template-columns: repeat(3, minmax(0, 390px));
    justify-content: center;
}

.product-card,
.catalog-card,
.woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    border-top: 4px solid var(--ember);
}

.product-card:hover,
.catalog-card:hover,
.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 90, 44, 0.7);
    box-shadow: 0 12px 0 rgba(42, 33, 25, 0.22);
}

.section-dark .product-card,
.section-dark .woocommerce ul.products li.product {
    background: #15100D;
    border-color: var(--line-dark);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.34);
}

.product-card-body,
.catalog-card-body {
    position: relative;
    z-index: 2;
    padding: 22px;
}

.catalog-card .card-actions,
.catalog-card .btn,
.product-request-link,
.product-detail-link {
    position: relative;
    z-index: 3;
}

.catalog-card-body h2 {
    margin-bottom: 12px;
    font-size: 1.32rem;
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.catalog-card-body p {
    margin-bottom: 14px;
}

.product-pack {
    display: grid;
    place-items: center;
}

.product-pack::before {
    inset: 14px 20px auto;
    height: 7px;
    left: 20px;
    right: 20px;
}

.product-pack::after {
    width: 96px;
    height: 96px;
    right: -28px;
    bottom: -28px;
    background: rgba(16, 13, 10, 0.12);
}

.product-pack strong {
    display: block;
    margin-top: 6px;
    color: var(--color-coal);
    font-size: 1.85rem;
    line-height: 1;
    text-transform: uppercase;
}

.product-pack span {
    position: relative;
    z-index: 1;
}

.product-pack-small {
    min-height: 220px;
    padding: 44px 22px 28px;
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--color-coal);
    color: var(--color-cream);
    font-size: 0.8rem;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(16, 13, 10, 0.22);
}

.text-link {
    color: var(--color-copper);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.supply-format-grid {
    align-items: stretch;
}

.supply-format-card {
    position: relative;
    min-width: 0;
    min-height: 190px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(245, 231, 200, 0.2);
    border-top: 4px solid var(--ember);
    border-radius: 4px;
    background: #F1E4CD;
    color: var(--text-dark);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.supply-format-card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(42, 33, 25, 0.16);
    border-radius: 50%;
    opacity: 0.72;
}

.supply-format-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 34px;
    margin-bottom: 18px;
    border: 1px solid var(--line-dark);
    background: var(--coal);
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.supply-format-label {
    position: absolute;
    top: 24px;
    right: 22px;
    color: var(--ember);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.supply-format-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: var(--coal);
    font-size: 1.7rem;
    line-height: 1;
    text-transform: uppercase;
}

.supply-format-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.supply-format-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.split-layout,
.detail-columns,
.content-layout,
.contact-grid,
.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
}

.split-layout > *,
.detail-columns > *,
.content-layout > *,
.contact-grid > *,
.product-detail-grid > *,
.product-card-body,
.catalog-card-body,
.info-panel,
.request-form,
.woocommerce ul.products li.product,
.woocommerce div.product {
    min-width: 0;
}

.steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
}

.steps li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-height: 0;
    padding: 14px 16px;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    background: #F1E4CD;
    color: var(--color-ink);
    line-height: 1.45;
    min-width: 0;
}

.steps li > span:first-child {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 3px;
    background: var(--ember);
    color: var(--text-light);
    font-weight: 850;
    line-height: 1;
}

.steps li > span:last-child {
    min-width: 0;
    color: var(--color-ink);
    overflow-wrap: anywhere;
    word-break: normal;
}

.audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-item {
    min-height: 96px;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    background: #F1E4CD;
    font-weight: 820;
    text-align: center;
    box-shadow: 0 8px 0 rgba(42, 33, 25, 0.12);
}

.venue-cooperation {
    padding: 46px 0 50px;
    background: #D8BE8C;
    color: var(--text-dark);
}

.venue-cooperation .container {
    padding: 32px;
    border: 1px solid rgba(43, 27, 18, 0.16);
    border-radius: 8px;
    background: #F1E4CD;
    box-shadow: 0 12px 0 rgba(42, 33, 25, 0.1);
}

.venue-cooperation .section-head {
    max-width: 820px;
    margin-bottom: 24px;
}

.venue-cooperation .section-head h2 {
    color: var(--coal);
}

.venue-cooperation .section-head p {
    max-width: 760px;
    color: var(--text-muted);
    line-height: 1.62;
}

.venues-kicker {
    margin-bottom: 14px;
    color: var(--ember-hover);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.venue-card {
    min-width: 0;
    min-height: 218px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(43, 27, 18, 0.14);
    border-radius: var(--radius-sm);
    background: #E6D4B5;
    box-shadow: 0 7px 0 rgba(42, 33, 25, 0.12);
}

.venue-logo-frame {
    width: 100%;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid rgba(43, 27, 18, 0.12);
    border-radius: var(--radius-sm);
    background: #F6E8CE;
}

.venue-logo-frame img {
    display: block;
    max-width: 100%;
    max-height: 106px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.venue-card h3 {
    margin: auto 0 0;
    color: var(--coal);
    font-size: 1.08rem;
    line-height: 1.16;
    text-align: center;
}

.venue-card p {
    margin: auto 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 750;
}

.cta-band {
    padding: 58px 0;
    background: #0D0A08;
    color: var(--text-light);
    border-top: 1px solid rgba(245, 231, 200, 0.12);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-inner p {
    margin-bottom: 0;
    color: rgba(255, 250, 242, 0.74);
}

.site-footer {
    padding: 44px 0;
    background: #0D0A08;
    color: rgba(255, 250, 242, 0.72);
    border-top: 1px solid rgba(255, 250, 242, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(160px, 0.7fr) minmax(220px, 0.9fr);
    gap: 28px;
}

.footer-brand p {
    margin: 20px 0 0;
    color: rgba(255, 250, 242, 0.72);
}

.footer-brand .brand {
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.footer-brand .brand-text {
    display: grid;
    gap: 3px;
    font-family: "Arial Black", Impact, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 19px;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.footer-brand .brand-line-sub {
    color: var(--ember-hover);
    font-size: 0.78em;
    letter-spacing: 0.18em;
}

.footer-brand .brand-logo {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain;
    flex: 0 0 64px;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 4px;
    color: var(--color-cream);
    font-size: 1rem;
}

.footer-column a {
    color: rgba(255, 250, 242, 0.76);
    font-weight: 700;
}

.footer-column a:hover {
    color: var(--color-cream);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 58px;
    background: #0D0A08;
    color: var(--color-cream);
}

.page-hero::after {
    content: none;
}

.page-hero p {
    color: rgba(255, 250, 242, 0.74);
    font-size: 1.15rem;
}

.catalog-section {
    padding: 34px 0 76px;
}

.catalog-page-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    margin-bottom: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(58, 37, 24, 0.12);
    border-radius: var(--radius-md);
    background: #F1E4CD;
    box-shadow: 0 14px 34px rgba(58, 37, 24, 0.1);
}

.catalog-page-head h1 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
}

.catalog-page-head p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--color-ash);
    font-size: 1.03rem;
}

.catalog-section .catalog-grid {
    gap: 22px;
}

.catalog-section .catalog-card {
    display: flex;
    flex-direction: column;
    border-color: rgba(42, 33, 25, 0.28);
    border-top: 0;
    background: #F1E4CD;
    box-shadow: 0 8px 0 rgba(42, 33, 25, 0.18);
}

.catalog-section .catalog-card:hover {
    border-color: rgba(42, 33, 25, 0.42);
    box-shadow: 0 10px 0 rgba(42, 33, 25, 0.24);
}

.catalog-page-head .filter-row--tags::before {
    display: none;
}

.single-product .page-hero {
    padding-top: 148px;
}

body.admin-bar.single-product .page-hero {
    padding-top: 164px;
}

.catalog-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: #F1E4CD;
    box-shadow: var(--shadow-card);
}

.catalog-intro p {
    margin-bottom: 0;
}

.catalog-card-media {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 280px;
    place-items: center;
    padding: 18px;
    border-bottom: 1px solid rgba(42, 33, 25, 0.16);
    background: #D8BE8C;
    box-shadow: inset 0 -18px 0 rgba(8, 7, 5, 0.04);
}

.catalog-card-media img {
    width: auto;
    max-width: 88%;
    max-height: 250px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.04) saturate(0.94);
}

.catalog-card--woo .catalog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.catalog-card--woo .catalog-card-body h2 {
    margin-bottom: 10px;
    color: var(--coal);
    font-size: 1.18rem;
    line-height: 1.18;
}

.catalog-card--woo .catalog-card-body p {
    color: var(--text-muted);
    line-height: 1.55;
}

.catalog-card--woo .product-price {
    margin: 4px 0 18px;
}

.catalog-card--woo .card-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
}

.catalog-card--woo .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
}

.catalog-card--woo .btn-secondary {
    border-color: rgba(42, 33, 25, 0.78);
    background: rgba(242, 228, 197, 0.4);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.filter-row--tags::before {
    content: attr(aria-label);
    flex-basis: 100%;
    color: var(--color-ash);
    font-size: 0.86rem;
    font-weight: 760;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(27, 21, 17, 0.24);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.72);
    color: var(--color-ink);
    font-weight: 780;
}

.filter-chip.active {
    background: var(--color-coal);
    color: var(--color-cream);
    border-color: var(--color-coal);
}

.filter-row--tags .filter-chip {
    cursor: default;
}

.product-pack-card {
    min-height: 270px;
    padding: 54px 22px 34px;
}

.mini-specs {
    margin: 18px 0 0;
}

.mini-specs div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-line);
}

.mini-specs div:last-child {
    border-bottom: 0;
}

.mini-specs dt {
    color: var(--color-ash);
}

.mini-specs dd {
    margin: 0;
    font-weight: 850;
    text-align: right;
}

.product-price {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 10px 0 18px;
    color: var(--color-copper);
    font-size: 1rem;
    font-weight: 850;
}

.product-price--request {
    padding: 0 10px;
    border: 1px solid rgba(182, 90, 48, 0.24);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.64);
    color: var(--color-brown);
}

.product-detail-page {
    padding-top: 38px;
    background: #E6D4B5;
}

.product-visual-card,
.product-info-panel {
    min-width: 0;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: #F1E4CD;
    box-shadow: var(--shadow-card);
}

.product-visual-card {
    display: grid;
    min-height: 460px;
    place-items: center;
    padding: 32px;
    border-top: 3px solid var(--color-coal);
}

.product-visual-card img {
    max-height: 520px;
    object-fit: contain;
}

.product-info-panel {
    padding: 34px;
    border-top: 3px solid rgba(182, 90, 48, 0.72);
}

.product-info-panel h1,
.product-info-panel h2 {
    margin-bottom: 16px;
    font-size: 2rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.product-summary,
.product-description {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--color-line);
}

.product-description h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
}

.product-meta-list {
    margin-top: 22px;
}

.product-info-panel .card-actions {
    margin-top: 26px;
}

.product-info-panel .btn-primary {
    min-height: 54px;
    font-size: 1rem;
}

.photo-placeholder {
    min-height: 220px;
    display: grid;
    width: 100%;
    place-items: center;
    border-radius: var(--radius-sm);
    background: #E6D4B5;
    color: rgba(35, 25, 19, 0.62);
    font-weight: 800;
    text-transform: uppercase;
}

.photo-tall {
    min-height: 360px;
}

.content-body {
    max-width: none;
}

.content-block {
    max-width: 720px;
}

.info-panel,
.contact-card,
.request-form {
    padding: 28px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-copper);
}

.contact-grid {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.contact-stack {
    display: grid;
    gap: 18px;
}

.contact-card {
    background: #F1E4CD;
}

.request-tips {
    background: rgba(255, 247, 234, 0.78);
}

address {
    margin-bottom: 20px;
    color: var(--color-ash);
    font-style: normal;
}

.contact-card a {
    color: var(--color-copper);
    font-weight: 850;
}

.request-form {
    display: grid;
    gap: 16px;
    background: #F1E4CD;
}

.request-form label {
    display: grid;
    gap: 8px;
    color: var(--color-ink);
    font-weight: 780;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    border: 1px solid rgba(58, 37, 24, 0.24);
    border-radius: var(--radius-sm);
    background: var(--color-cream);
    color: var(--color-ink);
    padding: 12px 14px;
    outline: none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    border-color: var(--color-copper);
    box-shadow: 0 0 0 3px rgba(182, 90, 48, 0.16);
}

.form-message {
    min-height: 24px;
    margin: 0;
    color: var(--color-brown);
    font-weight: 850;
}

.form-message.is-visible {
    padding: 12px 14px;
    border: 1px solid rgba(58, 37, 24, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 242, 0.56);
}

.form-message[data-form-status="success"] {
    color: #263915;
}

.form-message[data-form-status="error"] {
    color: #7A2117;
}

.woocommerce-wrap,
.woocommerce-products-wrap {
    min-width: 0;
}

.woocommerce ul.products {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: none;
}

.woocommerce ul.products li.product {
    width: auto;
    margin: 0;
    padding: 18px;
    float: none;
    background: rgba(255, 247, 234, 0.92);
}

.woocommerce ul.products li.product a img {
    margin: 0 0 16px;
    border-radius: var(--radius-sm);
    background: var(--color-craft);
}

.woocommerce-loop-product__title,
.woocommerce div.product .product_title {
    color: var(--color-ink);
}

.section-dark .woocommerce-loop-product__title,
.section-dark .woocommerce ul.products li.product .price {
    color: var(--color-cream);
}

.woocommerce .price {
    color: var(--color-copper);
    font-weight: 850;
}

.woocommerce div.product {
    min-width: 0;
}

.woocommerce div.product form.cart,
.woocommerce a.add_to_cart_button,
.woocommerce button.single_add_to_cart_button {
    display: none !important;
}

.czech-catalog-request {
    margin: 16px 0 0;
}

.czech-catalog-request .button {
    width: 100%;
}

@media (max-width: 920px) {
    h1 {
        font-size: 3.55rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .header-inner {
        min-height: 96px;
    }

    .site-header .brand-logo {
        width: 76px !important;
        height: 76px !important;
        max-width: 76px !important;
        max-height: 76px !important;
        flex-basis: 76px;
    }

    .brand-text {
        font-size: 20px;
    }

    .menu-toggle {
        order: 3;
        display: block;
    }

    .site-nav {
        order: 4;
        margin-left: 0;
    }

    .language-switch {
        order: 2;
        margin-left: auto;
    }

    .language-switch-menu {
        left: auto;
        right: 0;
        transform: translateY(6px);
    }

    .language-switch.is-open .language-switch-menu {
        transform: translateY(0);
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 96px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border: 1px solid rgba(255, 250, 242, 0.14);
        border-radius: var(--radius-md);
        background: var(--color-coal);
        box-shadow: var(--shadow-card);
    }

    .site-header.is-scrolled .header-inner {
        min-height: 58px;
    }

    .site-header.is-scrolled .brand-logo {
        width: 38px !important;
        height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        flex-basis: 38px;
    }

    .site-header.is-scrolled .brand-text {
        font-size: 15px;
    }

    .site-header.is-scrolled .site-nav {
        top: 58px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav-links,
    .site-nav-menu {
        display: grid;
        gap: 4px;
    }

    .site-nav a {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        background-position: center, center, center, 62% center;
    }

    .hero-grid,
    .split-layout,
    .detail-columns,
    .content-layout,
    .contact-grid,
    .product-detail-grid,
    .catalog-page-head,
    .catalog-intro {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .product-grid,
    .supply-format-grid,
    .catalog-grid,
    .catalog-grid--one,
    .catalog-grid--two,
    .catalog-grid--many,
    .audience-grid,
    .venues-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-row {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-product {
        display: none;
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.42rem;
    }

    h2 {
        font-size: 1.82rem;
    }

    .container,
    .narrow {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 82px;
        gap: 10px;
    }

    .site-nav {
        top: 82px;
        left: 12px;
        right: 12px;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 56px;
        gap: 8px;
    }

    .site-header.is-scrolled .brand {
        gap: 8px;
    }

    .site-header.is-scrolled .brand-logo {
        width: 36px !important;
        height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        flex-basis: 36px;
    }

    .site-header.is-scrolled .brand-text {
        font-size: 13px;
    }

    .site-header.is-scrolled .site-nav {
        top: 56px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .site-header .brand-logo {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;
        flex-basis: 56px;
    }

    .footer-brand .brand-logo {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        max-height: 52px !important;
        flex-basis: 52px;
    }

    .footer-brand .brand-text {
        font-size: 16px;
    }

    .brand-text {
        font-size: 15px;
        gap: 2px;
    }

    .language-switch {
        min-height: 36px;
    }

    .language-switch-toggle {
        min-height: 36px;
        gap: 6px;
        padding: 0 9px;
        font-size: 0.78rem;
    }

    .language-switch-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    .language-switch-current {
        min-width: 22px;
    }

    .language-switch-menu {
        min-width: 164px;
    }

    .language-switch-menu button {
        min-height: 42px;
        font-size: 0.88rem;
    }

    .hero-grid {
        padding: 38px 0 42px;
        gap: 0;
    }

    .hero-copy {
        padding: 12px 0;
    }

    .hero-title {
        margin-bottom: 16px;
    }

    .hero-title span:last-child {
        font-size: 0.7em;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-product {
        min-height: 0;
    }

    .product-bag {
        min-height: 330px;
        padding: 38px 24px;
    }

    .product-bag strong {
        font-size: 2.35rem;
    }

    .section {
        padding: 58px 0;
    }

    .catalog-section {
        padding: 16px 0 44px;
    }

    .page-hero {
        padding: 58px 0 42px;
    }

    .single-product .page-hero,
    body.admin-bar.single-product .page-hero {
        padding-top: 112px;
    }

    .feature-grid,
    .product-grid,
    .supply-format-grid,
    .catalog-grid,
    .catalog-grid--one,
    .catalog-grid--two,
    .catalog-grid--many,
    .audience-grid,
    .venues-grid,
    .footer-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        gap: 16px;
    }

    .catalog-card-media {
        min-height: 220px;
        padding: 12px;
    }

    .catalog-card-media img {
        max-height: 210px;
    }

    .catalog-card--woo .catalog-card-body {
        padding: 18px;
    }

    .catalog-card--woo .card-actions {
        grid-template-columns: 1fr;
    }

    .catalog-page-head {
        gap: 8px;
        margin-bottom: 14px;
        padding: 16px 18px;
    }

    .catalog-page-head h1 {
        margin-bottom: 8px;
        font-size: 28px;
        line-height: 1.08;
    }

    .catalog-page-head p {
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.45;
    }

    .product-visual-card {
        min-height: 320px;
        padding: 22px;
    }

    .product-info-panel {
        padding: 24px;
    }

    .product-info-panel h1,
    .product-info-panel h2 {
        font-size: 1.55rem;
    }

    .catalog-intro {
        padding: 18px;
    }

    .supply-format-card {
        min-height: 0;
        padding: 20px 18px;
    }

    .supply-format-label {
        top: 22px;
        right: 18px;
    }

    .supply-format-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .venue-cooperation {
        padding: 30px 0 34px;
    }

    .venue-cooperation .container {
        padding: 22px 18px;
    }

    .venue-card {
        min-height: 0;
        padding: 16px;
    }

    .venue-logo-frame {
        height: 118px;
        margin-bottom: 14px;
        padding: 12px;
    }

    .venue-logo-frame img {
        max-height: 92px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn,
    .button,
    .woocommerce a.button {
        width: 100%;
    }

    .hero-actions,
    .card-actions {
        width: 100%;
    }
}
