:root {
    --bg-page: #f4efe8;
    --bg-soft: #ede5db;
    --bg-panel: rgba(255, 252, 247, 0.92);
    --bg-panel-strong: #fffaf4;
    --bg-dark: #2f2520;
    --text-main: #2b211d;
    --text-muted: #6d5f57;
    --text-soft: #8d7e73;
    --text-inverse: #faf6f1;
    --line: rgba(64, 47, 38, 0.12);
    --line-strong: rgba(64, 47, 38, 0.2);
    --accent: #8a5b42;
    --accent-strong: #6d4633;
    --accent-soft: #f1e4d7;
    --leaf: #66785b;
    --shadow-soft: 0 18px 40px rgba(43, 33, 29, 0.08);
    --shadow-pop: 0 26px 80px rgba(43, 33, 29, 0.18);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: min(1180px, calc(100vw - 32px));
    --font-display: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;
    --font-script: "Cormorant Garamond", serif;
    --bg-paper: #f4efe8;
    --accent-brown: #8a5b42;
}

/* Accessible text helper (kept in DOM for screen readers) */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    background:
        radial-gradient(circle at top left, rgba(181, 140, 111, 0.16), transparent 26%),
        radial-gradient(circle at top right, rgba(102, 120, 91, 0.12), transparent 24%),
        linear-gradient(180deg, #f8f3ed 0%, var(--bg-page) 44%, #f1e8dc 100%);
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

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

button {
    cursor: pointer;
}

button,
a,
input,
textarea,
select {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

:focus-visible {
    outline: 3px solid rgba(102, 120, 91, 0.32);
    outline-offset: 3px;
}

[x-cloak] {
    display: none !important;
}

.container,
.header-shell,
.footer-shell,
.announcement__inner {
    padding: 0 24px;
    width: var(--container);
    margin-inline: auto;
}

main {
    display: block;
}

.section,
.page-hero {
    padding: 72px 0;
}

.section--tight {
    padding: 48px 0;
}

.section__eyebrow,
.card-chip,
.stock-pill,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(138, 91, 66, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.chip,
.radio-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.68);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
}

.chip:hover,
.chip.is-active,
.radio-chip:hover {
    border-color: rgba(138, 91, 66, 0.24);
    background: rgba(241, 228, 215, 0.84);
}

.radio-chip input {
    accent-color: var(--accent);
}

.section__title,
.section-heading,
.detail-panel__title,
.quick-view__title {
    margin: 18px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.section-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section__lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.breadcrumbs a:hover {
    color: var(--text-main);
}

.page-hero__panel,
.metric-card,
.benefit-card,
.contact-card,
.legal-card,
.product-card,
.empty-card,
.detail-card,
.catalog-toolbar,
.footer-card,
.process-card,
.news-card,
.trust-card,
.panel-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(255, 251, 246, 0.82));
    box-shadow: var(--shadow-soft);
}

.page-hero__panel,
.metric-card,
.benefit-card,
.contact-card,
.legal-card,
.empty-card,
.detail-card,
.catalog-toolbar,
.footer-card,
.process-card,
.news-card,
.trust-card,
.panel-card {
    padding: clamp(22px, 3vw, 34px);
}

.announcement {
    background: linear-gradient(90deg, rgba(92, 69, 55, 0.98), rgba(126, 96, 77, 0.96));
    color: rgba(250, 246, 241, 0.94);
    overflow: hidden;
}

.announcement__inner {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0;
    font-size: 0.84rem;
}

.announcement__marquee {
    flex: 1;
    overflow: hidden;
}

.announcement__track {
    min-width: 100%;
    display: flex;
    gap: 32px;
    width: max-content;
    white-space: nowrap;
    animation: announcement-marquee var(--marquee-duration, 18s) linear infinite;
}

.announcement__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-right: 32px;
    white-space: nowrap;
}

.announcement__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    display: inline-block;
}

.announcement:hover .announcement__track {
    min-width: 100%;
    animation-play-state: paused;
}

@keyframes announcement-marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(64, 47, 38, 0.08);
    background: rgba(244, 239, 232, 0.82);
    backdrop-filter: blur(16px);
}

.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 88px;
}

.mobile-nav-toggle {
    display: none;
}

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

.brand__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

.brand__subtitle {
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
}

.site-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text-main);
}

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

.icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-main);
}

.icon-button:hover,
.icon-button:focus-visible {
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-1px);
}

.icon-button__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.header-contact {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.68);
}

.header-contact small {
    color: var(--text-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.header-contact strong {
    font-size: 0.92rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--text-inverse);
    box-shadow: 0 14px 28px rgba(109, 70, 51, 0.18);
}

.btn-primary:hover {
    box-shadow: 0 18px 34px rgba(109, 70, 51, 0.24);
}

.btn-secondary,
.btn-ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-main);
}

.btn-secondary:hover,
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.96);
}

.btn-block {
    width: 100%;
}

.page-actions,
.chip-row,
.contact-methods,
.hero-points,
.product-card__actions,
.hero-route__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-inline,
.search-page-summary {
    display: flex;
    align-items: end;
    justify-content: flex-start;
    gap: 20px;
}

.hero {
    padding: 36px 0 44px;
}

.hero-frame,
.wholesale-hero,
.content-split,
.story-grid,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: stretch;
}

.about-section {
    padding-top: 28px;
    padding-bottom: 28px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 7vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.hero-subtitle,
.hero-intro {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.hero-points {
    margin-top: 8px;
}

.hero-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-muted);
    font-size: 0.88rem;
    border: 1px solid var(--line);
}

.hero-slider-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
}

.hero-media {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 4px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 13, 0.06), rgba(20, 16, 13, 0.28));
}

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

.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(109, 95, 87, 0.28);
}

.hero-dot.is-active {
    width: 34px;
    background: var(--accent);
}

.hero-arrow-group {
    display: flex;
    gap: 10px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-main);
    font-size: 1.2rem;
}

.hero-route-grid,
.metrics-grid,
.catalog-grid,
.card-grid,
.benefits-grid,
.contact-grid,
.legal-grid {
    display: grid;
    gap: 20px;
}

.hero-route-grid,
.metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.card-grid,
.catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefits-grid,
.legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.contacts-layout,
.contacts-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
}

.contacts-panel {
    padding: 30px;
}

.contacts-panel__head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 0.98;
}

.contacts-panel__head p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.contacts-panel__head--center {
    text-align: center;
}

.contacts-requisites {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
}

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

.contacts-grid-two--bank {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
}

.contacts-row {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.contacts-row--last {
    padding-bottom: 0;
    border-bottom: 0;
}

.contacts-label {
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contacts-value {
    color: var(--text-main);
    font-size: 0.98rem;
    line-height: 1.55;
    font-weight: 600;
}

.contacts-value--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.contacts-map-wrap {
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.contacts-map {
    min-height: 100%;
    height: 100%;
}

.contacts-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contacts-copy h2 {
    margin: 14px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 0.98;
}

.contacts-copy p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.contacts-links {
    display: grid;
    gap: 14px;
}

.contacts-links--inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4px;
}

.contacts-link-card {
    padding: 18px 20px;
}

.contacts-link-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contacts-link-card a {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.contacts-link-card span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.84rem;
}

.contacts-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 28px;
}

.contacts-cta--full {
    gap: 24px;
}

.contacts-messenger-actions .messenger-btn {
    justify-content: center;
}

.hero-route,
.product-card {
    overflow: hidden;
}

.hero-route {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
}

.hero-route h3,
.product-card__title,
.metric-card h3,
.benefit-card h3,
.contact-card h3,
.legal-card h3,
.footer-card h3,
.news-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.25;
    font-weight: 700;
}

.hero-route p,
.product-card p,
.metric-card p,
.benefit-card p,
.contact-card p,
.legal-card p,
.footer-card p,
.news-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.hero-route__number,
.metric-number {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 0.9;
    color: var(--accent);
}

.category-card__image,
.product-card__image {
    position: relative;
    aspect-ratio: 1 / 1.02;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f1ea, #ece2d7);
}

.category-card__image img,
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover img,
.hero-route:hover img {
    transform: scale(1.03);
}

.product-card__image button,
.product-card__image a {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
}

.product-card__body,
.category-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.product-card__price,
.detail-panel__price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.stock-pill {
    color: var(--leaf);
    background: rgba(102, 120, 91, 0.12);
    border-color: rgba(102, 120, 91, 0.16);
}

.stock-pill.status-muted {
    color: var(--accent);
    background: rgba(138, 91, 66, 0.1);
    border-color: rgba(138, 91, 66, 0.16);
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
}

.about-metrics-grid .metric-card {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.about-metrics-grid .metric-card h3,
.about-metrics-grid .metric-card p {
    text-align: center;
}

.about-today-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.about-today-panel .section__eyebrow {
    margin-inline: auto;
    text-align: center;
}

.about-today-panel .section__lead,
.about-today-panel p {
    margin-inline: auto;
    max-width: 840px;
    text-align: justify;
}

.about-metrics-grid .metric-number {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 0.9;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.about-gallery__item {
    min-width: 260px;
    width: 260px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.about-gallery__item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.catalog-toolbar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-gallery__main {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    aspect-ratio: 1 / 1;
    max-width: 420px;
}

.detail-gallery__arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    pointer-events: none;
}

.detail-gallery__arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(109, 95, 87, 0.22);
    background: rgba(255, 255, 255, 0.62);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.detail-gallery__arrow:hover {
    background: rgba(255, 255, 255, 0.78);
}

.detail-gallery__arrow:active {
    transform: translateY(1px);
}

.detail-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-gallery__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.detail-gallery__thumb {
    width: 92px;
    min-width: 92px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    padding: 0;
}

.detail-gallery__thumb.is-active {
    border-color: rgba(138, 91, 66, 0.36);
    box-shadow: inset 0 0 0 1px rgba(138, 91, 66, 0.12);
}

.detail-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: start;
}

.messenger-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-main);
    font-weight: 700;
}

.messenger-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.detail-summary .card-chip,
.detail-summary .stock-pill {
    min-height: 30px;
    padding: 6px 12px;
    font-size: 0.68rem;
}

.detail-summary .detail-panel__title {
    margin-top: 14px;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.02;
}

.detail-summary .detail-panel__price {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.detail-summary .detail-card {
    padding: 18px;
}

.detail-summary .detail-card p,
.detail-summary .checkbox-note label,
.detail-summary .messenger-btn span {
    font-size: 0.92rem;
}

.detail-panel__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-tabs {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 247, 0.88);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.detail-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 18px 0;
}

.detail-tabs__nav button {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    font-weight: 700;
}

.detail-tabs__nav button.is-active,
.detail-tabs__nav button:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.84);
    color: var(--text-main);
}

.detail-tabs__content {
    padding: 22px 24px 26px;
    color: var(--text-muted);
}

.detail-tabs-section {
    padding-top: 6px;
}

.search-overlay,
.drawer-backdrop,
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(28, 22, 18, 0.46);
    backdrop-filter: blur(6px);
}

.order-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 82;
    background: rgba(28, 22, 18, 0.46);
    backdrop-filter: blur(6px);
}

.order-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 90;
    width: min(520px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(252, 247, 241, 0.96));
    box-shadow: var(--shadow-pop);
    transform: translate(-50%, -50%);
}

.order-modal__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.order-modal__header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.search-dialog,
.drawer,
.quick-view,
.floating-thanks__card {
    position: fixed;
    z-index: 90;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(252, 247, 241, 0.96));
    box-shadow: var(--shadow-pop);
}

.search-dialog {
    top: 50%;
    left: 50%;
    width: min(960px, calc(100vw - 28px));
    max-height: min(82vh, 760px);
    padding: 24px;
    transform: translate(-50%, -50%);
    overflow: auto;
}

.drawer {
    top: 18px;
    right: 18px;
    width: min(420px, calc(100vw - 20px));
    height: calc(100vh - 36px);
    padding: 22px;
    overflow: auto;
}

.quick-view {
    top: 50%;
    left: 50%;
    width: min(980px, calc(100vw - 20px));
    max-height: min(86vh, 860px);
    padding: 22px;
    transform: translate(-50%, -50%);
    overflow: auto;
}

.drawer__header,
.search-dialog__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.drawer__title,
.search-dialog__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 0.95;
}

.search-dialog__input {
    width: 100%;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.search-dialog__body,
.quick-view__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 24px;
    margin-top: 22px;
}

.quick-view__image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #f7f1ea, #ece3d6);
    aspect-ratio: 1 / 1;
}

.quick-view__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.drawer__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.drawer__item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

.drawer__item img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qty-control button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.checkbox-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.checkbox-note input {
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-shell {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-main);
}

.form-field textarea {
    min-height: 132px;
    resize: vertical;
}

.footer {
    margin-top: 40px;
    padding: 0 0 32px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-map {
    width: 100%;
    min-height: 220px;
    border: 0;
    border-radius: 18px;
}

.footer-bottom {
    width: var(--container);
    margin: 18px auto 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    text-align: center;
}

.cookie-banner,
.sticky-mobile-cta,
.toast,
.floating-thanks {
    position: fixed;
    z-index: 95;
}

.cookie-banner {
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 251, 246, 0.96);
    box-shadow: var(--shadow-pop);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.sticky-mobile-cta {
    display: none;
    left: 12px;
    right: 12px;
    bottom: 12px;
}

.floating-thanks {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(28, 22, 18, 0.42);
    backdrop-filter: blur(6px);
}

.floating-thanks__card {
    position: static;
    width: min(540px, 100%);
    padding: 28px;
    transform: none;
}

.toast {
    right: 18px;
    top: 18px;
    max-width: min(360px, calc(100vw - 24px));
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(47, 37, 32, 0.96);
    color: var(--text-inverse);
    box-shadow: 0 18px 36px rgba(47, 37, 32, 0.26);
}

.empty-card {
    text-align: center;
}

.empty-card h2,
.empty-card p {
    margin: 0;
}

.empty-card .page-actions {
    margin-top: 18px;
}

@media (max-width: 1080px) {
    .header-shell {
        grid-template-columns: auto 1fr;
    }

    .site-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .footer-shell,
    .content-split,
    .story-grid,
    .wholesale-hero,
    .detail-layout,
    .search-dialog__body,
    .quick-view__layout {
        grid-template-columns: 1fr;
    }

    .hero-frame {
        grid-template-columns: 1fr;
    }

    .hero-route-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .section,
    .page-hero {
        padding: 54px 0;
    }

    .header-shell {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        min-height: 78px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 86px;
        left: 12px;
        right: 12px;
        z-index: 70;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255, 251, 246, 0.98);
        box-shadow: var(--shadow-pop);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.mobile-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .site-nav a {
        display: block;
        padding: 10px 0;
    }

    .header-contact {
        display: none;
    }

    .hero-media {
        min-height: 380px;
    }

    .benefits-grid,
    .legal-grid,
    .contact-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .search-dialog,
    .quick-view,
    .drawer {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        transform: none;
        border-radius: 22px;
    }

    .drawer {
        height: auto;
    }
}

@media (max-width: 720px) {
    .announcement__inner,
    .toolbar-inline,
    .search-page-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-route-grid,
    .metrics-grid,
    .card-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .about-metrics-grid {
        grid-template-columns: 1fr;
    }

    .contacts-layout,
    .contacts-bottom,
    .contacts-grid-two,
    .contacts-grid-two--bank,
    .contacts-links--inline {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .section__title,
    .section-heading,
    .detail-panel__title,
    .quick-view__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .contacts-map {
        min-height: 360px;
    }

    .product-card__actions,
    .page-actions {
        flex-direction: column;
    }

    .product-card__actions .btn,
    .page-actions .btn {
        width: 100%;
    }

    .detail-gallery__thumb {
        width: 74px;
        min-width: 74px;
    }

    .sticky-mobile-cta {
        display: block;
    }

    .footer-bottom {
        padding-bottom: 68px;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding-bottom: 14px;
    background: rgba(244, 239, 232, 0.9);
    backdrop-filter: blur(16px);
}

.site-header-top {
    width: var(--container);
    margin: 0 auto;
    padding: 10px 0 6px;
    text-align: center;
}

.brand--hero {
    align-items: center;
}

.brand--hero .brand__title {
    font-family: "Caveat", cursive;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1;
    text-align: center;
    letter-spacing: 0;
    color: #966F4A;
}

.nav-band {
    width: var(--container);
    margin: 0 auto;
    padding: 8px 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, #9a6a49, #7f533d);
    box-shadow: 0 18px 44px rgba(109, 70, 51, 0.2);
}

.header-shell--band {
    width: 100%;
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.mobile-nav-toggle {
    display: none !important;
}

.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    justify-content: flex-start;
}

.nav-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-social-icons img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.icon-max {
    border-radius: 6px;
}

.phone-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 52px;
    padding-right: 14px;
    color: rgba(255, 251, 246, 0.98);
}

.phone-text {
    display: block;
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
}

.phone-secondary {
    font-size: 0.8rem;
    opacity: 0.88;
}

.phone-icon {
    display: none;
}

.header-shell--band .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
}

.header-shell--band .site-nav__list {
    gap: 22px;
    align-items: center;
    justify-content: center;
}

.header-shell--band .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: rgba(255, 251, 246, 0.86);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.header-shell--band .site-nav a:hover,
.header-shell--band .site-nav a.is-active {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.header-actions .icon-button {
    margin: 0;
}

.nav-band .icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.nav-band .icon-button:hover,
.nav-band .icon-button:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.nav-band .icon-button__badge {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.mobile-phone-button {
    display: none;
}

.footer {
    margin-top: 56px;
    padding-bottom: 28px;
}

.footer-shell {
    display: block;
}

.footer-panel {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(238, 230, 219, 0.92), rgba(235, 225, 214, 0.88));
    box-shadow: var(--shadow-soft);
    padding: 26px;
}

.footer-panel__grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr 0.95fr;
    gap: 26px;
    align-items: start;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    font-family: "Caveat", cursive;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    line-height: 1;
    color: #966F4A;
    letter-spacing: 0;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.94rem;
    color: var(--text-muted);
}

.footer-meta strong,
.footer-caption {
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-meta a {
    color: var(--text-main);
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(138, 91, 66, 0.12);
}

.social-row img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-column--map .footer-map {
    margin-top: 14px;
    min-height: 250px;
    border-radius: 20px;
}

.footer-address {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.footer-links {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 12px;
}

.footer-links a {
    color: var(--text-main);
    font-size: 0.94rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.image-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

.image-mosaic__item {
    overflow: hidden;
    min-height: 220px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 251, 246, 0.78);
    box-shadow: var(--shadow-soft);
}

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

.image-mosaic__item--large {
    grid-row: span 2;
    min-height: 458px;
}

.image-mosaic__item--quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 26px;
}

.image-mosaic__item--quote h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
}

.image-mosaic__item--quote p {
    margin: 0;
    color: var(--text-muted);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: min(72vh, 720px);
    margin-top: 18px;
    overflow: hidden;
    background: #1f1814;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .hero-slide {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 13, 0.16), rgba(20, 16, 13, 0.46));
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100vw - 40px));
    text-align: center;
    color: #fff;
}

.hero-slide__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6.2vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
    text-shadow: 0 18px 45px rgba(10, 8, 6, 0.55);
}

.hero-slide__subtitle {
    margin: 12px auto 0;
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 12px 24px rgba(10, 8, 6, 0.4);
}

.hero-slide__content .page-actions {
    margin-top: 16px;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero-slide__content {
        width: min(700px, calc(100vw - 32px));
    }
    .hero-slide__subtitle {
        font-size: 0.95rem;
    }
}

.story-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 20px;
    align-items: stretch;
}

.story-block__copy,
.story-block__media,
.contact-cta {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.story-block__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.story-block__copy h2,
.contact-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.8vw, 3.8rem);
    line-height: 0.94;
}

.story-block__copy p {
    margin: 0;
    color: var(--text-muted);
}

.story-block__media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 22px;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    background-color: transparent;
    box-shadow: none;
    color: #fff;
    transform: translateY(-50%);
    backdrop-filter: none;
}

.slide-arrow.prev-arrow {
    left: 20px;
}

.slide-arrow.next-arrow {
    right: 20px;
}

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

.collection-strip__item {
    position: relative;
    display: block;
    min-height: 240px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.collection-strip__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 13, 0.08), rgba(20, 16, 13, 0.5));
}

.collection-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-strip__item span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 1;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 0.95;
}

.image-mosaic--clean {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.image-mosaic--clean .image-mosaic__item {
    min-height: 220px;
}

.image-mosaic--clean::-webkit-scrollbar {
    display: none;
}

.compact-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.compact-heading--center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-filter-bar--center {
    justify-content: center;
}

.compact-heading h1,
.compact-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.95;
}

.compact-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: start;
    gap: 28px;
}

.compact-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.compact-product-card__image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #efe7db;
}

.compact-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.compact-product-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.compact-product-card__meta strong {
    color: var(--text-main);
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
}

.compact-product-card h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.compact-product-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
}

.compact-product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.compact-product-card__actions .btn {
    flex: 1 1 0;
}

.compact-product-card__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-soft);
}

.compact-product-card--text {
    justify-content: center;
}

.products-carousel {
    position: relative;
    padding: 0 56px;
    margin-top: 4px;
}

.products-carousel__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.products-carousel__track::-webkit-scrollbar {
    display: none;
}

.compact-product-card--carousel {
    min-width: min(300px, 78vw);
    max-width: 300px;
    scroll-snap-align: start;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text-main);
    transform: translateY(-50%);
}

.carousel-arrow--prev {
    left: 0;
}

.carousel-arrow--next {
    right: 0;
}

.category-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 26px;
}

.category-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 700;
}

.category-filter-chip.is-active,
.category-filter-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.reviews-frame {
    overflow: hidden;
    min-height: 720px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.reviews-frame__widget {
    position: relative;
    max-width: 560px;
    min-height: 640px;
    margin: 0 auto;
    padding: 18px 24px 24px;
}

.reviews-frame__widget--split {
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 18px 0 0;
}

.reviews-frame__link {
    display: block;
    margin-top: 10px;
    overflow: hidden;
    color: #9b958f;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reviews-map-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reviews-map-shell--stack {
    grid-template-columns: 1fr;
}

.reviews-map-card {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.reviews-map-card--center {
    text-align: center;
}

.reviews-map-card--center .section__eyebrow {
    margin-inline: auto;
}

.reviews-map-card--map {
    text-align: center;
}

.reviews-map-card--map .section__eyebrow,
.reviews-map-card--map .map-block__address {
    text-align: center;
}

.map-block__frame--split {
    min-height: 600px;
    margin-top: 18px;
}

.section-heading--center {
    margin-bottom: 24px;
    text-align: center;
}

.section-heading--center h1 {
    margin: 0;
}

.section-heading--compact h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 0.98;
}

.section-heading--news h1 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.wholesale-showcase {
    display: grid;
    gap: 18px;
}

.wholesale-showcase__slider {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    background: #e9dfd1;
}

.wholesale-showcase__slide {
    position: absolute;
    inset: 0;
}

.wholesale-showcase__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wholesale-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 14, 11, 0.08), rgba(18, 14, 11, 0.5));
}

.wholesale-showcase__content {
    position: absolute;
    inset: auto 24px 24px 24px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}

.wholesale-showcase__content h2 {
    margin: 0;
    max-width: 560px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.wholesale-showcase__eyebrow {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wholesale-showcase__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.wholesale-showcase__contacts a {
    color: var(--text-main);
    font-weight: 600;
}

.wholesale-showcase__contacts p {
    margin: 0;
    max-width: 880px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

.wholesale-media-block {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: stretch;
}

.wholesale-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wholesale-media-grid img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.wholesale-compact-hero,
.wholesale-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wholesale-compact-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.wholesale-compact-card h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 0.95;
}

.wholesale-compact-card p {
    margin: 18px 0 0;
    color: var(--text-muted);
}

.wholesale-compact-photo {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    background: #efe7db;
    max-height: 320px;
}

.wholesale-compact-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.wholesale-compact-card--wide {
    grid-column: 1 / -1;
}

.wholesale-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.wholesale-contact-list a {
    color: var(--text-main);
    font-weight: 600;
}

.wholesale-compact-slider {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.wholesale-compact-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wholesale-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.wholesale-slider-arrow--prev {
    left: 14px;
}

.wholesale-slider-arrow--next {
    right: 14px;
}

.wholesale-bullets {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--text-muted);
}

.wholesale-bullets li + li {
    margin-top: 10px;
}

.wholesale-bullets a {
    color: var(--accent);
}

.preorder-benefits-grid,
.preorder-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.preorder-benefit-card,
.preorder-point {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.preorder-point h3 {
    margin: 0;
    font-size: 1.08rem;
}

.preorder-point p {
    margin: 12px 0 0;
    color: var(--text-muted);
}

.preorder-benefit-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "EmojiOne Color", sans-serif;
}

.preorder-reviews {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
}

.contact-cta {
    text-align: center;
}

.contact-cta__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.contact-cta__links a {
    color: var(--text-main);
    font-size: 1.02rem;
    font-weight: 600;
}

.contact-cta--contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contacts-cta__text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.contacts-cta__note {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.contacts-messenger-actions--inline {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.contacts-messenger-actions--inline .messenger-btn {
    min-width: 170px;
}

.map-block {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.map-block__frame {
    width: 100%;
    min-height: 420px;
    margin-top: 18px;
    border: 0;
    border-radius: 22px;
}

.map-block__address {
    margin: 16px 0 0;
    color: var(--text-muted);
}

.news-carousel {
    position: relative;
    padding: 0 56px;
}

.news-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(440px, 560px);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.news-carousel__track::-webkit-scrollbar {
    display: none;
}

.news-card--carousel {
    height: 100%;
    scroll-snap-align: start;
}

@media (max-width: 1080px) {
    .footer-panel__grid {
        grid-template-columns: 1fr;
    }

    .image-mosaic,
    .image-mosaic--clean {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .image-mosaic__item--large {
        grid-row: auto;
        min-height: 360px;
    }

    .collection-strip,
    .wholesale-media-block,
    .wholesale-media-grid,
    .wholesale-compact-hero,
    .wholesale-compact-grid,
    .reviews-map-shell,
    .preorder-benefits-grid,
    .preorder-points,
    .preorder-reviews,
    .story-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .site-header {
        padding-bottom: 10px;
    }

    .site-header-top {
        padding: 10px 0 8px;
    }

    .brand--hero .brand__title {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .nav-band {
        padding: 12px 14px;
    }

    .header-shell--band {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .header-shell--band .site-nav {
        grid-column: 1 / -1;
    }

    .nav-social-icons {
        justify-content: center;
        gap: 10px;
    }

    .phone-text {
        display: none;
    }

    .phone-block {
        display: none;
    }

    .header-shell--band .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 70;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(154, 106, 73, 0.98), rgba(127, 83, 61, 0.98));
        box-shadow: var(--shadow-pop);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .header-shell--band .site-nav.mobile-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-shell--band .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .mobile-nav-toggle {
        display: inline-flex !important;
    }
}

@media (max-width: 720px) {
    .nav-social-icons img {
        width: 22px;
        height: 22px;
    }

    .footer-panel {
        padding: 20px;
    }

    .footer-column--links {
        text-align: left;
    }

    .footer-bottom {
        padding-bottom: 78px;
    }

    .hero-slider {
        height: 54vh;
    }

    .compact-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-carousel {
        padding: 0 44px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .image-mosaic,
    .image-mosaic--clean {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .image-mosaic--clean .image-mosaic__item {
        min-height: 150px;
    }

    .reviews-frame__widget {
        min-height: 840px;
        padding: 14px 16px 18px;
    }

    .wholesale-showcase__slider {
        min-height: 320px;
    }

    .wholesale-showcase__content {
        inset: auto 16px 16px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .news-carousel {
        padding: 0 44px;
    }

    .news-carousel__track {
        grid-auto-columns: minmax(300px, 88vw);
    }
}


.contact-methods--icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.contact-methods--icons .contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
}

.contact-methods--icons .contact-icon input {
    margin: 0;
}

.contact-methods--icons .contact-icon img,
.contact-methods--icons .contact-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 520px) {
    .contact-methods--icons {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}
