﻿:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f9f9f7;
    --text: #1a1610;
    --muted: #5a5045;
    --gold: #d4af37;
    --gold-light: #ecd36f;
    --gold-bright: #f5de8b;
    --gold-dark: #b8962e;
    --line: rgba(212, 175, 55, 0.28);
    --shadow: 0 24px 70px rgba(212, 175, 55, 0.12);
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    scrollbar-color: var(--gold) #e8dcc8;
    scrollbar-width: thin;
    opacity: 1;
    transition: opacity 0.35s ease;
}

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

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e8dcc8;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    border: 2px solid #e8dcc8;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 78px;
    padding: 18px clamp(18px, 5vw, 72px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(212, 175, 55, 0.14);
}

.logo {
    align-items: center;
    display: flex;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 42px;
    max-width: min(210px, 38vw);
    object-fit: contain;
    object-position: left center;
}

.logo__mark {
    align-items: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px;
    box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}

.logo strong,
.logo small {
    display: block;
}

.logo strong {
    color: var(--text);
}

.logo small {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

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

.site-nav a {
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    padding: 9px 13px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--line);
    color: var(--gold);
}

.site-nav a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    background: rgba(212, 175, 55, 0.05);
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.hero,
.page-hero,
.section,
.site-footer {
    padding-left: clamp(18px, 5vw, 72px);
    padding-right: clamp(18px, 5vw, 72px);
}

.hero {
    display: grid;
    gap: clamp(34px, 5vw, 72px);
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 430px);
    min-height: calc(74vh - 78px);
    padding-bottom: 58px;
    padding-top: 58px;
    place-items: center;
    background: #ffffff;
}

.hero__content {
    max-width: 760px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

h1, h2, h3 {
    line-height: 1.12;
    color: var(--text);
}

h1 {
    font-size: clamp(2.4rem, 8vw, 5.8rem);
    max-width: 980px;
}

h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
}

h3 {
    font-size: 1.12rem;
}

.hero__text,
.page-hero p,
.section p {
    color: var(--muted);
}

.hero__text {
    font-size: 1.16rem;
    margin: 24px 0 32px;
    max-width: 650px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
    border: 1px solid var(--gold);
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-width: 155px;
    padding: 13px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 60%, var(--gold) 80%, var(--gold-dark) 100%);
    background-size: 250% 100%;
    background-position: 100% 0;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: goldShimmer 3s ease infinite;
}

.btn--primary:hover {
    background-position: 0% 0;
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.50), inset 0 1px 0 rgba(255,255,255,0.25);
    animation: none;
}

@keyframes goldShimmer {
    0%   { background-position: 100% 0; }
    50%  { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

.btn--ghost {
    color: var(--gold);
    background: transparent;
    border-color: var(--gold);
}

.btn--ghost:hover {
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 4px 14px rgba(212,175,55,0.15);
}

/* ── HERO PANEL ──────────────────────────────────────────────── */
.hero__panel {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(250,247,239,0.94));
    border: 1px solid rgba(212, 175, 55, 0.34);
    box-shadow: 0 18px 52px rgba(26, 22, 16, 0.10), 0 8px 34px rgba(212, 175, 55, 0.16);
    display: grid;
    gap: 9px;
    padding: 18px;
    width: min(100%, 430px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero__panel-head {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 4px;
}

.hero__panel-title {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hero__panel-all {
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.hero__panel-all:hover {
    color: var(--text);
}

.hero__panel-link,
.brand-strip a {
    border: 1px solid var(--line);
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 18px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255,255,255,0.9);
}

.hero__panel-link:hover,
.brand-strip a:hover {
    background: rgba(212, 175, 55, 0.07);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.12);
}

.hero__category-link {
    align-items: center;
    display: grid;
    gap: 13px;
    grid-template-columns: 42px 1fr;
    padding: 12px 13px;
}

.hero__category-link--accent {
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(255,255,255,0.96));
    border-color: rgba(184, 150, 46, 0.48);
}

.hero__category-icon {
    align-items: center;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.36), 0 4px 10px rgba(212,175,55,0.22);
    color: #1a1610;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    text-transform: uppercase;
}

.hero__category-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.hero__category-copy strong {
    color: var(--gold-dark);
    font-size: clamp(0.96rem, 1.25vw, 1.12rem);
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-transform: uppercase;
    word-break: normal;
    transition: letter-spacing 0.2s ease;
}

.brand-strip span {
    color: var(--gold);
    font-size: clamp(1.08rem, 2.25vw, 1.75rem);
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
    text-transform: uppercase;
    word-break: normal;
    transition: letter-spacing 0.2s ease;
}

.hero__panel-link:hover .hero__category-copy strong {
    letter-spacing: 0.02em;
    color: var(--text);
}

.hero__category-copy small,
.brand-strip small {
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    font-size: 0.82rem;
}

.hero__panel-link:hover small {
    color: var(--gold-dark);
    transform: scale(1.08);
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.section {
    padding-bottom: 76px;
    padding-top: 76px;
    background: var(--bg);
}

.section--light {
    background: #ffffff;
    color: var(--text);
}

.section--light .eyebrow {
    color: var(--gold);
}

.section--light h2 {
    color: var(--text);
}

.section--light h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.section--light p {
    color: var(--muted);
}

.section__heading {
    margin-bottom: 32px;
    max-width: 720px;
}

/* ── GRIDS ───────────────────────────────────────────────────── */
.intro-grid,
.cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article,
.card,
.info-box,
.contact-details,
.contact-form {
    border: 1px solid var(--line);
    padding: 26px;
}

.intro-grid h3,
.card h2 {
    margin-bottom: 12px;
}

.brands {
    background: var(--surface);
}

.brand-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.brand-strip a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── AUDIENCE ────────────────────────────────────────────────── */
.audience-section {
    background: #f9f9f7;
}

.horeca-section {
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.audience-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.audience-grid span {
    border: 1px solid var(--line);
    color: var(--gold);
    font-weight: 800;
    padding: 18px 14px;
    text-align: center;
    background: rgba(255,255,255,0.9);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.audience-grid span:hover {
    background: rgba(212,175,55,0.07);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── PLATE SECTION ───────────────────────────────────────────── */
.plate-section,
.download-section {
    align-items: center;
    background: #f9f9f7;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.plate-section p,
.download-section p {
    max-width: 760px;
}

.plate-contact {
    border: 1px solid var(--line);
    display: grid;
    gap: 10px;
    min-width: 260px;
    padding: 22px;
    background: rgba(255,255,255,0.95);
}

.plate-contact span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plate-contact strong {
    font-size: 1.45rem;
    color: var(--text);
}

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding-bottom: 74px;
    padding-top: 74px;
}

.page-hero p {
    font-size: 1.08rem;
    margin-top: 18px;
    max-width: 760px;
}

/* ── CONTENT SPLIT ───────────────────────────────────────────── */
.content-split,
.contact-layout {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.content-split p {
    margin-top: 18px;
    max-width: 780px;
}

.info-box,
.contact-details,
.contact-form,
.card {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
}

.info-box {
    display: grid;
    gap: 8px;
}

.info-box span,
.contact-item span,
.card__number,
.contact-form label {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-box strong {
    margin-bottom: 12px;
    color: var(--text);
}

/* ── CARDS ───────────────────────────────────────────────────── */
.cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    min-height: 245px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212,175,55,0.14);
}

.card__number {
    display: block;
    margin-bottom: 34px;
}

.card--empty {
    background: rgba(212, 175, 55, 0.04);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-details {
    display: grid;
    gap: 18px;
}

.contact-item {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.contact-item strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
}

.contact-form {
    display: grid;
    gap: 10px;
}

/* ── CATALOG ─────────────────────────────────────────────────── */
.catalog-toolbar {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.catalog-toolbar strong {
    border: 1px solid var(--line);
    color: var(--gold);
    padding: 10px 14px;
    white-space: nowrap;
    background: rgba(255,255,255,0.95);
}

.catalog-toolbar--inner {
    align-items: center;
}

.toolbar-actions {
    align-items: end;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.search-box {
    display: grid;
    gap: 6px;
    min-width: 220px;
}

.search-box span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ── BRAND GRID ──────────────────────────────────────────────── */
.brand-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}

.brand-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 2px 16px rgba(212,175,55,0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100px;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

.brand-card:hover {
    border-color: rgba(212, 175, 55, 0.65);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.14);
}

.brand-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.22s ease;
}

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

.brand-card__inner {
    padding: 16px 18px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.brand-card span {
    color: var(--text);
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.brand-card strong {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.brand-card__arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 14px 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: padding-right 0.2s ease;
}

.brand-card:hover .brand-card__arrow {
    padding-right: 10px;
}

/* ── CATALOG LAYOUT ──────────────────────────────────────────── */
.catalog-layout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: 230px minmax(0, 1fr);
}

.brand-sidebar {
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    max-height: calc(100vh - 120px);
    overflow: auto;
    padding: 14px;
    position: sticky;
    top: 98px;
}

.brand-sidebar h2 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--text);
}

.brand-sidebar a {
    align-items: center;
    border-top: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 8px 0;
}

.brand-sidebar a:hover,
.brand-sidebar a.active {
    color: var(--gold);
}

.brand-sidebar small {
    border: 1px solid var(--line);
    color: var(--gold);
    min-width: 34px;
    padding: 2px 7px;
    text-align: center;
}

/* ── PRODUCT GRID ────────────────────────────────────────────── */
.product-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}

.product-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--text);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(212,175,55,0.16);
}

.product-card__image {
    align-items: center;
    background: #ffffff;
    display: flex;
    justify-content: center;
    padding: 14px;
    height: 158px;
    flex-shrink: 0;
}

.product-card__image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__body {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 13px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__body span {
    color: var(--gold);
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.product-card__body h3 {
    font-size: 0.92rem;
    line-height: 1.3;
    flex: 1;
    color: var(--text);
}

.product-card__link {
    color: var(--gold);
    display: inline-flex;
    font-weight: 800;
    margin-top: 12px;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.product-actions a,
.product-actions button {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 100%;
    border: 1px solid var(--gold);
    color: #fff;
    cursor: pointer;
    flex: 1;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 9px;
    text-align: center;
    transition: background-position 0.3s ease, opacity 0.2s ease;
}

.product-actions button {
    background: #fff;
    color: var(--gold-dark);
}

.product-actions button.is-added,
.product-actions button.just-clicked {
    background: #1a1610;
    border-color: #1a1610;
    color: var(--gold-light);
}

.product-actions a:hover,
.product-actions button:hover {
    background-position: 100% 0;
    opacity: 0.9;
}

.empty-state {
    border: 1px solid var(--line);
    color: var(--muted);
    display: none;
    margin-top: 18px;
    padding: 18px;
    background: rgba(255,255,255,0.9);
}

.empty-state.is-visible {
    display: block;
}

/* ── CONTACT BUTTONS ─────────────────────────────────────────── */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.map-section {
    padding-top: 0;
}

.map-section iframe {
    border: 1px solid var(--line);
    filter: grayscale(0.3) contrast(1.02);
    height: 380px;
    width: 100%;
}

/* ── FLOATING ACTIONS ────────────────────────────────────────── */
.floating-contact { display: none !important; }

.floating-actions {
    position: fixed;
    bottom: max(1.4rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    z-index: 900;
}

.floating-actions #scrollTop {
    position: static;
    width: 2.8rem;
    height: 2.8rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(184,150,46,0.32);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease, max-height 0.25s ease, visibility 0.25s ease;
}

.floating-actions #scrollTop.visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    max-height: 2.8rem;
    padding: 0;
    transform: translateY(0);
}

.floating-actions #scrollTop:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 10px 28px rgba(184,150,46,0.42);
}

.fab {
    width: 2.8rem;
    height: 2.8rem;
    min-width: 2.8rem;
    min-height: 2.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.fab:hover {
    transform: translateY(-2px) scale(1.08);
}

.fab:focus-visible,
.floating-actions #scrollTop:focus-visible {
    outline: 3px solid rgba(245,222,139,0.78);
    outline-offset: 3px;
}

.fab--wa {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    box-shadow: 0 8px 24px rgba(184,150,46,0.32);
}

.fab--wa:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 10px 28px rgba(184,150,46,0.42);
}

.fab--viber {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    box-shadow: 0 8px 24px rgba(184,150,46,0.32);
}

.fab--viber:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 10px 28px rgba(184,150,46,0.42);
}

.fab svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
    display: block;
}

/* ── INPUTS ──────────────────────────────────────────────────── */
input,
textarea {
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    color: var(--text);
    font: inherit;
    margin-bottom: 8px;
    padding: 13px 14px;
    width: 100%;
}

input:focus,
textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--line);
    display: block;
    padding: 0;
    text-align: left;
}

.footer-main {
    display: grid;
    gap: clamp(26px, 4vw, 70px);
    grid-template-columns: minmax(260px, 1.15fr) minmax(140px, 0.72fr) minmax(140px, 0.72fr) minmax(220px, 0.95fr);
    margin: 0 auto;
    max-width: 1240px;
    padding: 58px clamp(18px, 5vw, 72px) 44px;
}

.footer-brand {
    max-width: 330px;
}

.footer-brand img {
    display: block;
    height: auto;
    margin-bottom: 22px;
    max-width: 150px;
    object-fit: contain;
    object-position: left center;
    width: 150px;
}

.footer-brand p,
.footer-column,
.footer-column a,
.footer-column span,
.footer-column small,
.footer-bottom {
    color: var(--muted);
}

.footer-brand p {
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.32);
    color: var(--gold-dark);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    width: 38px;
}

.footer-social a:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    color: var(--text);
    transform: translateY(-2px);
}

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

.footer-column strong {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.footer-column a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--gold-dark);
    transform: translateX(3px);
}

.footer-column--contact {
    border-left: 2px solid var(--gold);
    padding-left: 22px;
}

.footer-column--contact a,
.footer-column--contact span {
    color: var(--text);
}

.footer-column--contact small {
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    line-height: 1.6;
    margin-top: 6px;
    padding-top: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1240px;
    padding: 18px clamp(18px, 5vw, 72px) 24px;
}

.footer-bottom span + span::before {
    color: rgba(212, 175, 55, 0.62);
    content: "|";
    margin-right: 14px;
}

.footer-contact {
    display: grid;
    gap: 4px;
    grid-column: 2;
    text-align: center;
}

.footer-contact span {
    display: block;
}

/* ── NAV TOGGLE ──────────────────────────────────────────────── */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    height: 40px;
    margin: 0;
    padding: 0;
    width: 40px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    display: block;
}

/* ── SEARCH INPUT ────────────────────────────────────────────── */
.search-input {
    width: 100%;
    padding: 12px 15px;
    margin: 20px 0;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--gold);
    color: var(--text);
    border-radius: 6px;
}

.search-input::placeholder {
    color: #aaa;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: -6px 0 22px;
}

.category-filter__btn {
    align-items: center;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    gap: 8px;
    min-height: 38px;
    padding: 8px 13px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-filter__btn span {
    align-items: center;
    background: rgba(212,175,55,0.12);
    border-radius: 999px;
    color: var(--gold-dark);
    display: inline-flex;
    font-size: 0.75rem;
    justify-content: center;
    min-width: 24px;
    padding: 2px 7px;
}

.category-filter__btn:hover,
.category-filter__btn.is-active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(184,150,46,0.18);
    color: #fff;
    transform: translateY(-1px);
}

.category-filter__btn:hover span,
.category-filter__btn.is-active span {
    background: rgba(255,255,255,0.22);
    color: #fff;
}

/* ── IMAGE MODAL ─────────────────────────────────────────────── */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.image-modal.is-open {
    display: flex;
}

.modal-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 90vw;
    max-height: 90vh;
    animation: modalIn 0.22s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

.modal-content {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 4px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 1px #ffffff, 0 0 30px rgba(212,175,55,0.35), 0 0 80px rgba(212,175,55,0.12);
}

.modal-caption {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-align: center;
    opacity: 0.85;
    margin: 0;
}

.close-modal {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: #fff;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 1;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.close-modal:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold);
}

/* ── PARALLAX / HERO CANVAS ──────────────────────────────────── */
#heroCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero--parallax {
    position: relative;
    overflow: hidden;
}

.hero--parallax .hero__content,
.hero--parallax .hero__panel {
    position: relative;
    z-index: 1;
}

/* ── COUNTERS ────────────────────────────────────────────────── */
.section--counters {
    background: #f9f9f7;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding-bottom: 36px;
    padding-top: 36px;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.15rem 1rem;
}

.counter-number {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(212,175,55,0.25));
    font-variant-numeric: tabular-nums;
}

.counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

/* ── GLOBAL SEARCH ───────────────────────────────────────────── */
.section--search {
    background: #f9f9f7;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    display: grid;
    gap: clamp(24px, 5vw, 70px);
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 640px);
    align-items: center;
    padding-bottom: 64px;
    padding-top: 64px;
}

.section--search .section__heading {
    margin-bottom: 0;
    max-width: 620px;
}

.section--search .section__heading h2 {
    font-size: clamp(2rem, 3.6vw, 3.45rem);
}

.section--search .section__heading p,
.section__heading p {
    margin-top: 18px;
    line-height: 1.8;
    max-width: 720px;
    color: var(--muted);
}

.global-search-wrap {
    position: relative;
    max-width: 640px;
    margin: 0;
    min-width: 0;
    width: 100%;
}

.global-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

#globalSearchInput {
    width: 100%;
    padding: 1.15rem 3rem 1.15rem 1.4rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 0;
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    box-shadow: 0 12px 34px rgba(26, 22, 16, 0.04);
}

#globalSearchInput:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

#globalSearchInput::placeholder {
    color: #aaa;
}

.global-search-clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-search-clear:hover {
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.1);
}

.global-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: rgba(255,255,255,0.99);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    max-height: 380px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(212,175,55,0.14);
}

.global-search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 1rem;
    text-decoration: none;
    border-bottom: 1px solid #f0ece4;
    transition: background 0.15s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(212, 175, 55, 0.06);
}

.search-result-item img,
.search-result-item__no-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 3px;
    background: #ffffff;
    flex-shrink: 0;
}

.search-result-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.search-result-item__info strong {
    color: var(--text);
    font-size: 0.9rem;
}

.search-result-item__info small {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.search-empty {
    padding: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.global-search-results::-webkit-scrollbar { width: 4px; }
.global-search-results::-webkit-scrollbar-track { background: #fafaf8; }
.global-search-results::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.4); border-radius: 2px; }

/* ── INQUIRY BAR ─────────────────────────────────────────────── */
.inquiry-bar {
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    bottom: 22px;
    box-shadow: 0 16px 42px rgba(26, 22, 16, 0.14);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    left: 50%;
    max-width: min(560px, calc(100vw - 32px));
    padding: 12px 14px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 120;
}

.inquiry-bar[hidden] {
    display: none;
}

.inquiry-bar strong,
.inquiry-bar small {
    display: block;
}

.inquiry-bar strong {
    color: var(--text);
    font-size: 0.92rem;
}

.inquiry-bar small {
    color: var(--muted);
    font-size: 0.76rem;
}

.inquiry-bar__actions {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}

.inquiry-bar__actions a,
.inquiry-bar__actions button {
    border: 1px solid var(--gold);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 9px 12px;
}

.inquiry-bar__actions a {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #fff;
}

.inquiry-bar__actions button {
    background: #fff;
    color: var(--gold-dark);
}

.inquiry-toggle,
.inquiry-drawer {
    display: none;
}

.inquiry-drawer[hidden],
.inquiry-toggle[hidden] {
    display: none !important;
}

.inquiry-drawer__head {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.inquiry-drawer__head button {
    background: transparent;
    border: none;
    color: var(--gold-dark);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
}

.inquiry-drawer__list {
    display: grid;
    gap: 7px;
    max-height: 210px;
    overflow-y: auto;
    padding: 10px 0;
}

.inquiry-drawer__item {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 8px 9px;
}

/* ── FORM SUCCESS ────────────────────────────────────────────── */
.form-success {
    background: #f0faf0;
    border: 1px solid #a0d0a0;
    color: #2d6a2d;
    padding: 0.9rem 1.2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ── PROGRESS BAR ────────────────────────────────────────────── */
#xtrade-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold));
    background-size: 200% 100%;
    z-index: 99999;
    transition: width 0.25s ease;
    animation: progressShimmer 1.5s linear infinite;
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

#xtrade-progress.done {
    width: 100% !important;
    opacity: 0;
    transition: width 0.2s ease, opacity 0.4s ease 0.2s;
}

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

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 2rem;
    font-size: 0.78rem;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    background: #ffffff;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb__sep {
    color: rgba(212,175,55,0.4);
    font-size: 0.7rem;
}

.breadcrumb__current {
    color: var(--gold);
    font-weight: 500;
}

/* ── PAGE TRANSITIONS ────────────────────────────────────────── */
body.page-exit { opacity: 0; }

body.page-enter {
    opacity: 0;
    animation: fadeIn 0.35s ease forwards;
}

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

/* ── BRAND CARDS WITH IMAGE ──────────────────────────────────── */
.brand-grid--cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.brand-card--img {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-card--img:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 8px 32px rgba(212,175,55,0.14);
}

.brand-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ffffff;
}

.brand-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand-card--img:hover .brand-card__thumb img {
    transform: scale(1.06);
}

.brand-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(245,245,245,0.55) 100%);
}

.brand-card__no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}

.brand-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.1rem 1.1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.brand-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.03em;
}

.brand-card__count {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold);
}

.brand-card__cta {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(26, 22, 16, 0.35);
    transition: color 0.2s ease;
}

.brand-card--img:hover .brand-card__cta {
    color: var(--gold);
}

/* ── PLATE PAGE ──────────────────────────────────────────────── */
.plates-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.plates-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.plates-feature__icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.plates-feature strong {
    display: block;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.plates-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.plate-contact-box {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.08);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step__num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.step p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 3rem;
    text-align: center;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-dark), var(--gold-bright), var(--gold-dark));
    opacity: 0.4;
}

.timeline__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.85rem;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg);
    transform: translateX(-4px);
    box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

.timeline__year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    padding-top: 0.2rem;
    white-space: nowrap;
}

.timeline__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.4rem;
}

.timeline__content p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.timeline__item + .timeline__item {
    border-top: 1px solid rgba(26, 22, 16, 0.06);
}

/* ── SECTION VARIANTS ────────────────────────────────────────── */
.section--dark-gold {
    background: #f9f9f7;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section--dark-gold .section__heading h2 { color: var(--text); }

.eyebrow--gold { color: var(--gold) !important; }

.intro-grid--dark article {
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    padding: 1.5rem;
}

.intro-grid--dark article h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.intro-grid--dark article p {
    color: var(--muted);
    margin: 0;
}

.section--light article {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.section--light h3 { color: var(--text); }
.section--light p { color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

@media (max-width: 920px) {

    .hero,
    .section--search,
    .content-split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .section--search {
        gap: 24px;
    }

    .global-search-wrap {
        max-width: none;
    }

    .intro-grid,
    .cards,
    .brand-strip,
    .audience-grid,
    .brand-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plate-section,
    .download-section {
        grid-template-columns: 1fr;
    }

    .catalog-layout {
        display: flex;
        flex-direction: column;
    }

    .brand-sidebar {
        order: 2;
        position: fixed;
        top: 78px;
        right: 0;
        bottom: 0;
        width: 220px;
        max-height: none;
        border-left: 1px solid var(--line);
        border-top: none;
        border-right: none;
        border-bottom: none;
        box-shadow: -4px 0 20px rgba(212,175,55,0.08);
        z-index: 80;
        padding: 14px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
    }

    .brand-sidebar.is-open {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--gold);
        color: #fff;
        border: none;
        padding: 10px 16px;
        font-size: 0.85rem;
        font-weight: 700;
        cursor: pointer;
        margin-bottom: 16px;
        width: fit-content;
    }

    .catalog-layout > div {
        order: 1;
    }

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

    .footer-brand {
        max-width: none;
    }


}

@media (min-width: 921px) {
    .sidebar-toggle { display: none !important; }
}

@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .section__heading p {
        margin-top: 14px;
        line-height: 1.7;
    }

    .site-nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(255,255,255,0.98);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        z-index: 99;
        backdrop-filter: blur(10px);
    }

    .site-nav.active {
        display: flex;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .brand-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .section {
        padding: 20px 10px;
    }

    .inquiry-bar {
        display: none !important;
    }

    .inquiry-toggle {
        align-items: center;
        background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
        border: 1px solid rgba(255,255,255,0.5);
        box-shadow: 0 10px 28px rgba(184,150,46,0.30);
        color: #fff;
        cursor: pointer;
        display: inline-flex;
        font-family: inherit;
        font-size: 0.78rem;
        font-weight: 900;
        gap: 7px;
        padding: 10px 12px;
        position: fixed;
        right: max(0.85rem, env(safe-area-inset-right));
        top: calc(78px + 10px);
        z-index: 140;
    }

    .inquiry-toggle span {
        align-items: center;
        background: #1a1610;
        color: var(--gold-light);
        display: inline-flex;
        font-size: 0.72rem;
        height: 20px;
        justify-content: center;
        min-width: 20px;
        padding: 0 6px;
    }

    .inquiry-drawer {
        background: rgba(255,255,255,0.99);
        border: 1px solid var(--line);
        box-shadow: 0 16px 44px rgba(26,22,16,0.16);
        display: block;
        max-width: calc(100vw - 20px);
        padding: 12px;
        position: fixed;
        right: max(0.85rem, env(safe-area-inset-right));
        top: calc(78px + 58px);
        width: min(340px, calc(100vw - 20px));
        z-index: 141;
    }
}



@media (max-width: 480px) {
    .timeline__item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
}

/* ── STAT BAR ────────────────────────────────────────────────── */
.stat-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 0 clamp(18px, 5vw, 72px);
}

.stat-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 22px 40px;
    text-align: center;
}

.stat-bar__item strong {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-bar__item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
}

.stat-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--line);
    flex-shrink: 0;
}



/* ── MISC SPACING FIXES ──────────────────────────────────────── */

.plate-section p,
.download-section p,
.horeca-section p,
.audience-section p {
    margin-top: 18px;
    line-height: 1.8;
}

.plate-section h2,
.download-section h2,
.horeca-section h2,
.audience-section h2 {
    margin-bottom: 18px;
}

.section__heading h2 + p,
.catalog-toolbar h2 + p,
.page-hero h1 + p {
    margin-top: 22px;
}

.catalog-layout > div {
    min-width: 0;
}

.catalog-sticky-search {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: 0 18px 46px rgba(26, 22, 16, 0.08), 0 6px 24px rgba(212, 175, 55, 0.10);
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px;
    position: sticky;
    top: 96px;
    z-index: 70;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.catalog-sticky-search__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.catalog-sticky-search__head span {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-sticky-search__head strong {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.catalog-sticky-search .search-input {
    margin-bottom: 0;
}

.product-card__image picture,
.product-tile__picture {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.product-card__image picture img {
    max-height: 100%;
}

.seo-section {
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.seo-teaser-grid,
.seo-article-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-teaser-grid article,
.seo-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.seo-teaser-grid article:hover,
.seo-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 34px rgba(212, 175, 55, 0.13);
    transform: translateY(-3px);
}

.seo-teaser-grid h3,
.seo-card h2 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.seo-card p,
.seo-teaser-grid p,
.seo-article-body p {
    color: var(--muted);
}

.seo-card__link {
    color: var(--gold-dark);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    margin-top: 18px;
    text-transform: uppercase;
}

.seo-article {
    border-bottom: none;
}

.seo-article-body {
    margin: 0 auto;
    max-width: 900px;
}

.seo-article-body h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 38px 0 16px;
}

.seo-article-body p + p {
    margin-top: 18px;
}

.seo-related {
    border-top: 1px solid var(--line);
    margin-top: 38px;
    padding-top: 28px;
}

.seo-related div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.seo-related a {
    border: 1px solid var(--line);
    color: var(--gold-dark);
    font-weight: 800;
    padding: 9px 12px;
}

.local-seo-section {
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

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

.local-seo-grid article {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.local-seo-grid article:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 34px rgba(212, 175, 55, 0.13);
    transform: translateY(-3px);
}

.local-seo-grid span {
    color: var(--gold-dark);
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.local-seo-grid h3 {
    margin-bottom: 12px;
}

.local-seo-grid p {
    color: var(--muted);
}

.local-faq-section {
    background: #f9f9f7;
    border-top: 1px solid var(--line);
}

.local-faq-list {
    display: grid;
    gap: 10px;
    max-width: 920px;
}

.local-faq-list details {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.24);
    padding: 18px 20px;
}

.local-faq-list summary {
    color: var(--text);
    cursor: pointer;
    font-weight: 800;
}

.local-faq-list p {
    color: var(--muted);
    margin-top: 12px;
}

@media (max-width: 920px) {
    .catalog-sticky-search {
        top: 86px;
    }

    .section__heading h2 + p,
    .catalog-toolbar h2 + p,
    .page-hero h1 + p {
        margin-top: 18px;
    }
}



@media (max-width: 680px) {

    .site-header,
    .site-footer {
        align-items: flex-start;
    }

    .site-header {
        align-items: center;
    }

    .logo img {
        height: 36px;
        max-width: 170px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-contact {
        justify-self: start;
        text-align: left;
    }

    .hero {
        min-height: auto;
        padding-top: 54px;
    }

    .intro-grid,
    .intro-grid--dark,
    .cards,
    .brand-strip,
    .audience-grid,
    .brand-grid,
    .seo-teaser-grid,
    .seo-article-grid,
    .local-seo-grid,
    .steps-grid,
    .counters-grid {
        grid-template-columns: 1fr !important;
    }

    .catalog-layout > div,
    .product-grid,
    .product-card {
        min-width: 0;
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .product-card__image {
        height: 96px;
        padding: 8px;
    }

    .product-card__body {
        padding: 10px;
    }

    .product-card__body span {
        font-size: 0.66rem;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .product-card__body h3 {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .product-actions {
        gap: 5px;
        margin-top: 9px;
    }

    .product-actions a,
    .product-actions button {
        font-size: 0.68rem;
        padding: 7px 5px;
    }

    .product-actions button {
        flex-basis: 100%;
    }

    .inquiry-bar__actions a,
    .inquiry-bar__actions button {
        flex: 1;
        text-align: center;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .toolbar-actions,
    .search-box {
        align-items: stretch;
        justify-content: stretch;
        width: 100%;
    }

    .footer-contact {
        grid-column: auto;
        text-align: left;
    }

    .floating-actions {
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(0.85rem, env(safe-area-inset-right));
        gap: 9px;
    }

    .fab,
    .floating-actions #scrollTop {
        width: 2.65rem;
        height: 2.65rem;
        min-width: 2.65rem;
        min-height: 2.65rem;
    }

    .category-filter {
        flex-wrap: nowrap;
        margin-left: -10px;
        margin-right: -10px;
        max-width: calc(100vw - 20px);
        overflow-x: auto;
        padding: 0 10px 8px;
        scrollbar-width: thin;
    }

    .category-filter__btn {
        flex: 0 0 auto;
        min-height: 36px;
        white-space: nowrap;
    }

    /* ── FOOTER MOBILE FIX ───────────────────────────────────── */
    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
        padding-bottom: 34px;
        padding-top: 42px;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
        max-width: none;
    }

    .footer-brand img {
        max-width: 130px;
        width: 130px;
    }

    .footer-column--contact {
        grid-column: 1 / -1 !important;
        border-left: none !important;
        border-top: 2px solid var(--gold) !important;
        padding-left: 0 !important;
        padding-top: 20px !important;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .footer-bottom span + span::before {
        content: "";
        margin: 0;
    }

    .seo-teaser-grid,
    .seo-article-grid,
    .local-seo-grid {
        grid-template-columns: 1fr;
    }

    .stat-bar {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        grid-template-rows: auto 1px auto;
        gap: 0;
        padding: 0;
    }

    .stat-bar__item {
        padding: 18px 12px;
    }

    .stat-bar__divider:nth-child(2) {
        grid-column: 1 / -1;
        width: auto;
        height: 1px;
    }

    .stat-bar__divider:nth-child(4) {
        display: none;
    }

    .stat-bar__divider:nth-child(6) {
        display: none;
    }

    .catalog-sticky-search {
        margin-left: -10px;
        margin-right: -10px;
        padding: 12px 10px;
        top: 76px;
    }

    .catalog-sticky-search__head {
        padding: 0 2px;
    }

}