@font-face {
    font-family: "DINCondensed";
    src: url("../fonts/DIN-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DINCondensed";
    src: url("../fonts/DIN-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #e1c19d;
    --bg-soft: rgba(225, 193, 157, 0.72);
    --ink: #3d2b1f;
    --accent: #d9b38c;
    --accent-light: #f0d7b9;
    --line: rgba(61, 43, 31, 0.14);
    --shadow: 0 24px 80px rgba(61, 43, 31, 0.18);
    --container: min(1180px, calc(100vw - 48px));
    --radius-lg: 32px;
    --radius-md: 20px;
    --font-body: "DINCondensed", "Trebuchet MS", sans-serif;
    --font-display: "DINCondensed", "Trebuchet MS", sans-serif;
    --font-script: "Bad Script", "Times New Roman", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}

[id] {
    scroll-margin-top: 190px;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #eed3b6 0%, var(--bg) 0%, #e2c29d 100%);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: clip;
    touch-action: manipulation;
}

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

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

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

button {
    font: inherit;
    color: inherit;
}

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 20;
}

.topbar {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--container);
    padding: 26px 0;
    transform: translateX(-50%);
}

.brand-mark,
.scroll-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-mark img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.language-switcher {
    display: flex;
    gap: 12px;
    align-items: center;
}

.language-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 999px;
    background: transparent;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(61, 43, 31, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-pill:hover,
.language-pill:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(61, 43, 31, 0.24);
}

.language-pill.is-active {
    border-color: rgba(255, 246, 235, 0.92);
    box-shadow: 0 0 0 2px rgba(61, 43, 31, 0.28), 0 14px 28px rgba(61, 43, 31, 0.22);
}

.flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.scroll-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(720px, calc(100vw - 32px));
    padding: 10px 20px;
    border: 1px solid rgba(61, 43, 31, 0.12);
    border-radius: 999px;
    background: rgba(255, 246, 235, 0.68);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(61, 43, 31, 0.12);
    transform: translate3d(-50%, -140%, 0);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.scroll-nav.is-visible {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    pointer-events: auto;
}

.scroll-brand {
    flex: 0 0 auto;
}

.scroll-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.scroll-menu {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 12px;
    border: 1px solid rgba(61, 43, 31, 0.14);
    border-radius: 999px;
    background: rgba(255, 246, 235, 0.78);
    cursor: pointer;
}

.scroll-menu span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.scroll-nav-panel {
    display: none;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: clip;
    display: flex;
    align-items: center;
}

.hero-media,
.hero-video,
.hero-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video,
.hero-mask {
    object-fit: cover;
}

.hero-video {
    filter: saturate(0.85) contrast(1) brightness(1);
    background: #2b292a;
}

.hero-mask {
    z-index: 2;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.welcome-band {
    position: relative;
    overflow: clip;
    padding: 34px 18px 34px;
    text-align: center;
}

.welcome-shell {
    width: min(100%, 1600px);
    margin: 0 auto;
}

.welcome-script,
.welcome-mark {
    opacity: 0;
    transition: opacity 700ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.welcome-script {
    width: fit-content;
    margin: 0 0 10px 6%;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(2.3rem, 4.6vw, 4.8rem);
    line-height: 1;
    text-transform: lowercase;
    text-align: left;
    transform: translateY(24px);
}

.welcome-mark {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 6px;
    transform: translateY(34px) scale(0.985);
}

.welcome-mark-image {
    width: min(760px, 84vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.welcome-band.is-revealed .welcome-script {
    opacity: 1;
    transform: translateY(0);
}

.welcome-band.is-revealed .welcome-mark {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 120ms;
}

.benefits-section {
    padding: 22px 0 56px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-height: 100%;
    padding: 22px 18px 20px;
    border: 0;
    border-radius: 28px;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.benefit-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.benefit-icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.benefit-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
}

.js-enhanced .benefit-card {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    transition: opacity 680ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--benefit-delay, 0ms);
}

.benefit-card.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.benefit-card.is-revealed .benefit-icon-wrap {
    animation: benefitPulse 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--benefit-delay, 0ms);
}

@keyframes benefitPulse {
    0% {
        transform: scale(0.88);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.offer-band {
    position: relative;
    overflow: clip;
    padding: 18px 18px 34px;
    text-align: center;
}

.offer-shell {
    width: min(100%, 1500px);
    margin: 0 auto;
}

.offer-script,
.offer-title {
    opacity: 0;
    transition: opacity 700ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-script {
    width: fit-content;
    margin: 0 auto 10px;
    color: rgba(61, 43, 31, 0.88);
    font-family: var(--font-script);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    text-transform: lowercase;
    transform: translateY(24px);
}

.offer-title {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 12vw, 10.2rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(34px) scale(0.985);
}

.offer-band.is-revealed .offer-script {
    opacity: 1;
    transform: translateY(0);
}

.offer-band.is-revealed .offer-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 120ms;
}

.catalog-section {
    padding: 8px 0 72px;
}

.js-enhanced .category-page-top,
.js-enhanced .category-showcase,
.js-enhanced .moravka-card,
.js-enhanced .ranch-story-card,
.js-enhanced .contact-shell,
.js-enhanced .newsletter-shell,
.js-enhanced .checkout-page-top,
.js-enhanced .checkout-layout {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 680ms ease, transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enhanced .category-showcase,
.js-enhanced .checkout-layout,
.js-enhanced .newsletter-shell {
    transition-delay: 90ms;
}

.category-page-top.is-revealed,
.category-showcase.is-revealed,
.moravka.is-revealed .moravka-card,
.moravka-section.is-revealed .moravka-card,
.ranch-story.is-revealed .ranch-story-card,
.ranch-story-section.is-revealed .ranch-story-card,
.contact.is-revealed .contact-shell,
.contact-section.is-revealed .contact-shell,
.newsletter.is-revealed .newsletter-shell,
.newsletter-section.is-revealed .newsletter-shell,
.checkout-page-top.is-revealed,
.checkout-layout.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-enhanced .benefit-card,
    .js-enhanced [data-reveal-card],
    .js-enhanced .welcome-script,
    .js-enhanced .welcome-mark,
    .js-enhanced .offer-script,
    .js-enhanced .offer-title,
    .js-enhanced .category-page-top,
    .js-enhanced .category-showcase,
    .js-enhanced .moravka-card,
    .js-enhanced .ranch-story-card,
    .js-enhanced .contact-shell,
    .js-enhanced .newsletter-shell,
    .js-enhanced .checkout-page-top,
    .js-enhanced .checkout-layout {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

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

.catalog-card {
    position: relative;
    display: block;
}

.catalog-card-inner {
    position: relative;
    min-height: 0;
    aspect-ratio: 146.37245 / 99.16449;
    padding: 72px 44px 48px;
}

.catalog-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    pointer-events: none;
}

.catalog-heading {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 58px;
}

.catalog-ornament {
    width: min(210px, 34vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.catalog-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
}

.catalog-title-line {
    width: clamp(18px, 4vw, 34px);
    height: 1px;
    background: rgba(225, 193, 157, 0.88);
    flex: 0 0 auto;
}

.catalog-title {
    margin: 0;
    color: #e1c19d;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

.catalog-description {
    position: relative;
    z-index: 2;
    width: min(72%, 760px);
    margin: 18px auto 0;
    overflow: hidden;
    color: rgba(225, 193, 157, 0.95);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.3;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-price-tag {
    position: absolute;
    left: 58px;
    bottom: 134px;
    z-index: 2;
    margin: 0;
    color: rgba(225, 193, 157, 0.95);
    font-size: clamp(1.24rem, 2.1vw, 1.56rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.catalog-supporting-text {
    position: absolute;
    left: 58px;
    bottom: 86px;
    z-index: 2;
    margin: 0;
    color: rgba(225, 193, 157, 0.98);
    font-family: var(--font-script);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1;
}

.catalog-card.is-alternate .catalog-price-tag {
    left: auto;
    right: 58px;
    text-align: right;
}

.catalog-card.is-alternate .catalog-supporting-text {
    left: auto;
    right: 58px;
    text-align: right;
}

.catalog-card-cta {
    position: absolute;
    left: 58px;
    bottom: 38px;
    z-index: 2;
    color: rgba(225, 193, 157, 0.96);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-card.is-alternate .catalog-card-cta {
    left: auto;
    right: 58px;
    text-align: right;
}

.catalog-pig {
    position: absolute;
    right: 8px;
    bottom: 34px;
    z-index: 1;
    width: min(470px, 48%);
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.catalog-empty {
    margin: 0;
    padding: 36px 28px;
    border: 1px solid rgba(61, 43, 31, 0.14);
    border-radius: 26px;
    text-align: center;
    background: rgba(255, 246, 235, 0.38);
}

.js-enhanced [data-reveal-card] {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 760ms ease, transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-card-delay, 0ms);
}

[data-reveal-card].is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.category-page {
    padding: 168px 0 100px;
}

.category-page-top {
    max-width: 880px;
    margin: 0 auto 54px;
    text-align: center;
}

.category-back-link {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-page-script {
    margin: 0;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.category-page-title {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.4rem);
    line-height: 0.92;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.category-page-title--compact {
    font-size: clamp(2.2rem, 5.8vw, 4.6rem);
    letter-spacing: 0.025em;
}

.category-page-description {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.category-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.category-showcase--single {
    grid-template-columns: minmax(320px, 620px);
    justify-content: center;
}

.category-hero-image,
.category-stock-card {
    padding: 24px;
    border: 1px solid rgba(61, 43, 31, 0.14);
    border-radius: 28px;
    background: rgba(255, 246, 235, 0.42);
    box-shadow: 0 18px 40px rgba(61, 43, 31, 0.08);
    text-align: center;
}

.category-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    aspect-ratio: 1;
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    border-radius: 999px;
    overflow: hidden;
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.category-hero-image span {
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(61, 43, 31, 0.54);
}

.category-stock-price,
.category-stock-title {
    margin: 0;
}

.category-stock-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.category-variant-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 8px;
}

.category-variant-tab {
    min-width: 120px;
    padding: 12px 20px;
    border: 1px solid rgba(223, 189, 154, 0.18);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.06);
    color: rgba(223, 189, 154, 0.82);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.category-variant-tab.is-active {
    border-color: rgba(223, 189, 154, 0.48);
    background: rgba(223, 189, 154, 0.14);
    color: var(--ink);
}

.category-variant-panel {
    width: 100%;
}

.category-variant-panel[hidden] {
    display: none;
}

.category-stock-price {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.category-stock-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1;
    text-transform: uppercase;
}

.category-weight-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.category-weight-list--selectable {
    align-items: stretch;
}

.category-weight-option {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.category-weight-option:disabled {
    cursor: not-allowed;
}

.category-weight-choice {
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(223, 189, 154, 0.1);
    border-radius: 22px;
    background: rgba(223, 189, 154, 0.05);
}

.category-weight-choice.is-unavailable {
    opacity: 0.42;
}

.category-weight-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    width: 100%;
    padding: 0 16px;
    border: 1px solid rgba(223, 189, 154, 0.08);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.1);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-weight-divider {
    opacity: 0.44;
}

.category-weight-price {
    font-weight: 800;
}

.category-weight-option.is-selected .category-weight-pill {
    background: rgba(223, 189, 154, 0.16);
    color: var(--ink);
    border-color: rgba(223, 189, 154, 0.72);
    box-shadow: 0 0 0 1px rgba(223, 189, 154, 0.18);
    transform: translateY(-1px);
}

.category-weight-option.is-unavailable .category-weight-pill {
    opacity: 0.34;
}

.category-option-stepper {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 5px 8px;
    border: 1px solid rgba(223, 189, 154, 0.12);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.08);
}

.category-option-stepper-button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.12);
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
}

.category-option-stepper-button:disabled {
    opacity: 0.34;
    cursor: not-allowed;
}

.category-option-stepper-quantity {
    min-width: 24px;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}

.category-weight-choice:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 240px;
    justify-self: center;
}

.category-weight-option:focus,
.category-weight-option:focus-visible {
    outline: none;
}

.category-weight-option:focus-visible .category-weight-pill {
    border-color: rgba(245, 225, 201, 0.7);
    box-shadow: 0 0 0 2px rgba(245, 225, 201, 0.12);
}

.category-selection-summary {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(61, 43, 31, 0.12);
}

.category-selection-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
}

.category-selection-label {
    color: rgba(61, 43, 31, 0.64);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.category-selection-value {
    font-size: 1rem;
    font-weight: 700;
}

.category-add-to-cart {
    min-height: 52px;
    margin-top: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(61, 43, 31, 0.94);
    color: #f5e1c9;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.category-add-to-cart:disabled {
    opacity: 0.42;
    cursor: default;
}

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

.category-product-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    padding: 24px;
    border: 1px solid rgba(61, 43, 31, 0.14);
    border-radius: 28px;
    background: rgba(255, 246, 235, 0.42);
    box-shadow: 0 18px 40px rgba(61, 43, 31, 0.08);
}

.category-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(61, 43, 31, 0.18);
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.6);
    min-height: 160px;
    color: rgba(61, 43, 31, 0.54);
    text-align: center;
    padding: 16px;
}

.category-product-image span {
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.category-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-product-title,
.category-product-price,
.category-product-description,
.category-empty-state {
    margin: 0;
}

.category-product-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1;
    text-transform: uppercase;
}

.category-product-price {
    margin-top: 12px;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.category-product-description {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.7;
}

.category-empty-state {
    padding: 28px;
    border: 1px solid rgba(61, 43, 31, 0.14);
    border-radius: 24px;
    background: rgba(255, 246, 235, 0.42);
    text-align: center;
}

.restock-alert-flash {
    margin: 18px 0 0;
    padding: 14px 18px;
    border: 1px solid rgba(223, 189, 154, 0.22);
    border-radius: 20px;
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: center;
}

.restock-alert-flash.is-error {
    border-color: rgba(198, 120, 98, 0.28);
    background: rgba(198, 120, 98, 0.08);
}

.category-restock-button {
    min-width: min(100%, 340px);
    margin-top: 18px;
    padding: 16px 26px;
    border: 1px solid rgba(223, 189, 154, 0.28);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.08);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.category-restock-button:hover,
.category-restock-button:focus-visible {
    border-color: rgba(223, 189, 154, 0.44);
    background: rgba(223, 189, 154, 0.13);
    transform: translateY(-1px);
}

.is-restock-modal-open {
    overflow: hidden;
}

.restock-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.restock-modal[hidden] {
    display: none;
}

.restock-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 17, 0.72);
    backdrop-filter: blur(4px);
}

.restock-modal__dialog {
    position: relative;
    width: min(100%, 520px);
    padding: 30px 28px 28px;
    border: 1px solid rgba(223, 189, 154, 0.22);
    border-radius: 28px;
    background: #2b292a;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.restock-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(223, 189, 154, 0.16);
    border-radius: 50%;
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.restock-modal__eyebrow {
    margin: 0;
    color: rgba(223, 189, 154, 0.84);
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1;
}

.restock-modal__title {
    margin: 10px 0 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.restock-modal__description {
    margin: 18px auto 0;
    max-width: 420px;
    color: rgba(223, 189, 154, 0.84);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

.restock-modal__form {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.restock-modal__field {
    display: grid;
    gap: 8px;
    text-align: left;
}

.restock-modal__field span {
    color: rgba(223, 189, 154, 0.88);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.restock-modal__field input {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    border: 1px solid rgba(223, 189, 154, 0.18);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
}

.restock-modal__field select {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    border: 1px solid rgba(223, 189, 154, 0.18);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
}

.restock-modal__field input::placeholder {
    color: rgba(223, 189, 154, 0.42);
}

.restock-modal__submit {
    min-height: 56px;
    border: 1px solid rgba(223, 189, 154, 0.22);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.1);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.moravka-section {
    padding: 24px 0 82px;
}

.moravka-card {
    padding: 42px 44px;
    border: 1px solid rgba(61, 43, 31, 0.14);
    border-radius: 32px;
    background: rgba(225, 193, 157, 0.18);
    box-shadow: 0 24px 60px rgba(61, 43, 31, 0.08);
}

.moravka-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.moravka-script {
    margin: 0;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
}

.moravka-title {
    margin: 8px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.moravka-text {
    margin: 22px 0 0;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.08rem;
    line-height: 1.95;
}

.moravka-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.moravka-rest[hidden] {
    display: none;
}

.moravka-toggle.is-expanded {
    opacity: 0.82;
}

.ranch-story-section {
    padding: 0 0 96px;
}

.ranch-story-card {
    position: relative;
    padding: 42px 44px;
    border: 1px solid rgba(61, 43, 31, 0.12);
    border-radius: 32px;
    background: rgba(225, 193, 157, 0.14);
    box-shadow: 0 24px 60px rgba(61, 43, 31, 0.08);
}

.ranch-story-copy {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.ranch-story-script {
    margin: 0;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
    text-transform: lowercase;
}

.ranch-story-title {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.9rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ranch-story-text {
    margin-top: 24px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.ranch-story-text {
    font-size: 1.05rem;
    line-height: 1.9;
}

.ranch-story-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.ranch-story-rest[hidden] {
    display: none;
}

.ranch-story-toggle.is-expanded {
    opacity: 0.82;
}

.section-card,
.status-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.section-label {
    margin: 0 0 18px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.section-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-card p,
.status-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.status-card {
    display: flex;
    gap: 14px;
    align-items: center;
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.status-dot.is-online {
    background: #3f7d38;
    box-shadow: 0 0 0 8px rgba(63, 125, 56, 0.16);
}

.status-dot.is-offline {
    background: #8a5643;
    box-shadow: 0 0 0 8px rgba(138, 86, 67, 0.16);
}

.contact-section {
    padding: 12px 0 96px;
}

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

.contact-script {
    margin: 0;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
    text-transform: lowercase;
}

.contact-title {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.9rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contact-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    border-radius: 999px;
    background: rgba(217, 179, 140, 0.34);
    overflow: hidden;
}

.contact-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-label,
.contact-value {
    margin: 0;
}

.contact-label {
    color: rgba(61, 43, 31, 0.72);
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-value {
    font-size: clamp(1.18rem, 2vw, 1.6rem);
    line-height: 1.3;
    font-weight: 700;
    word-break: break-word;
}

.newsletter-section {
    padding: 8px 0 92px;
}

.newsletter-shell {
    text-align: center;
}

.newsletter-script {
    margin: 0;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
    text-transform: lowercase;
}

.newsletter-title {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.9rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-message {
    margin: 16px 0 0;
    font-size: 0.98rem;
    line-height: 1.5;
}

.newsletter-message.is-success,
.newsletter-message.is-exists {
    color: rgba(61, 43, 31, 0.88);
}

.newsletter-message.is-invalid,
.newsletter-message.is-unavailable,
.newsletter-message.is-error {
    color: rgba(120, 52, 40, 0.92);
}

.newsletter-form {
    width: min(100%, 760px);
    margin: 30px auto 0;
}

.newsletter-pill {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
    align-items: center;
    min-height: 62px;
    padding: 6px;
    border: 1px solid rgba(61, 43, 31, 0.18);
    border-radius: 999px;
    background: rgba(255, 246, 235, 0.56);
}

.newsletter-input,
.newsletter-button {
    border-radius: 999px;
    font-family: var(--font-body);
}

.newsletter-input {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: var(--ink);
    outline: none;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: rgba(61, 43, 31, 0.52);
}

.newsletter-pill:focus-within {
    border-color: rgba(61, 43, 31, 0.34);
    background: rgba(255, 246, 235, 0.76);
}

.newsletter-button {
    min-height: 50px;
    padding: 0 28px;
    border: 0;
    background: rgba(61, 43, 31, 0.92);
    color: #f5e1c9;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.site-footer {
    width: 100%;
    margin-top: 0;
    line-height: 0;
}

.site-footer-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cart-dock {
    position: fixed;
    right: 0;
    bottom: var(--viewport-bottom-offset, 0px);
    left: 0;
    z-index: 60;
    pointer-events: none;
    transform: translateZ(0);
    will-change: bottom;
}

.cart-dock-bar,
.cart-drawer {
    pointer-events: auto;
}

.cart-dock-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 70px;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-top: 1px solid #e1c19d;
    border-radius: 0;
    background: #534127;
    color: #f5e1c9;
    box-shadow: 0 -10px 30px rgba(61, 43, 31, 0.18);
    cursor: pointer;
}

.cart-dock-summary,
.cart-dock-copy {
    display: flex;
    align-items: center;
}

.cart-dock-summary {
    gap: 14px;
}

.cart-dock-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.cart-dock-icon--fallback {
    justify-content: center;
    color: #f5e1c9;
    font-weight: 800;
}

.cart-dock-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.cart-dock-title {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-dock-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 225, 201, 0.82);
    font-size: 0.9rem;
}

.cart-dock-chevron {
    width: 14px;
    height: 14px;
    border-right: 2px solid #f5e1c9;
    border-bottom: 2px solid #f5e1c9;
    transform: rotate(-135deg);
    transition: transform 220ms ease;
}

.cart-dock.is-open .cart-dock-chevron {
    transform: rotate(45deg);
}

.cart-drawer {
    margin-bottom: 0;
    padding: 20px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-top: 1px solid #e1c19d;
    border-radius: 0;
    background: #534127;
    color: #f5e1c9;
    box-shadow: 0 -12px 34px rgba(61, 43, 31, 0.2);
    transform: translateY(18px);
    opacity: 0;
    transition: opacity 220ms ease, transform 260ms ease;
}

.cart-dock.is-open .cart-drawer {
    opacity: 1;
    transform: translateY(0);
}

.cart-drawer-head,
.cart-item-row,
.checkout-summary-row,
.checkout-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-drawer-head {
    margin-bottom: 14px;
}

.cart-drawer-title,
.cart-drawer-total {
    margin: 0;
}

.cart-drawer-title {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.cart-drawer-total {
    font-size: 1.12rem;
    font-weight: 800;
}

.cart-drawer-items,
.checkout-list {
    display: grid;
    gap: 12px;
}

.cart-item-row,
.checkout-item {
    padding: 12px 14px;
    border-radius: 0;
    background: rgba(245, 225, 201, 0.08);
}

.cart-item-copy,
.cart-item-meta,
.checkout-item-copy,
.checkout-item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-copy span,
.checkout-item-copy span,
.checkout-item-meta span {
    color: rgba(245, 225, 201, 0.78);
    font-size: 0.92rem;
}

.cart-item-meta,
.checkout-item-meta {
    align-items: flex-end;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cart-item-stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border: 1px solid rgba(245, 225, 201, 0.18);
    border-radius: 999px;
}

.cart-item-stepper-button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(245, 225, 201, 0.1);
    color: #f5e1c9;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
}

.cart-item-stepper-button:disabled {
    opacity: 0.34;
    cursor: not-allowed;
}

.cart-item-quantity {
    min-width: 20px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: #f5e1c9;
}

.cart-item-remove {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(245, 225, 201, 0.18);
    border-radius: 999px;
    background: transparent;
    color: #f5e1c9;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-drawer-empty {
    margin: 6px 0 0;
    color: rgba(245, 225, 201, 0.72);
}

.cart-drawer-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 16px;
    border-radius: 999px;
    background: #f5e1c9;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-drawer-checkout.is-disabled {
    opacity: 0.46;
    pointer-events: none;
}

.checkout-page {
    padding: 160px 0 120px;
}

.checkout-page-top {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.checkout-page-script {
    margin: 0;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.checkout-page-title {
    margin: 10px 0 0;
    font-size: clamp(2.6rem, 6.6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.checkout-page-description {
    max-width: 620px;
    margin: 18px auto 0;
    font-size: 1rem;
    line-height: 1.7;
}

.checkout-message {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 0.98rem;
    line-height: 1.55;
}

.checkout-message.is-success {
    color: rgba(223, 189, 154, 0.92);
}

.checkout-message.is-error {
    color: #f0a98c;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
}

.checkout-success {
    max-width: 760px;
    margin: 0 auto;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.checkout-success-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 12px 0 0;
    text-align: center;
}

.checkout-success-script,
.checkout-success-title,
.checkout-success-text {
    margin: 0;
}

.checkout-success-script {
    color: rgba(61, 43, 31, 0.82);
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1;
}

.checkout-success-title {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.checkout-success-text {
    max-width: 34rem;
    color: rgba(61, 43, 31, 0.78);
    font-size: 1rem;
    line-height: 1.75;
}

.checkout-success-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    align-self: center;
    min-height: 48px;
    margin-top: 16px;
    padding: 0 28px;
    border: 1px solid rgba(223, 189, 154, 0.22);
    border-radius: 999px;
    color: var(--ink);
    background: transparent;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.checkout-success-link:hover {
    border-color: rgba(223, 189, 154, 0.4);
    background: rgba(223, 189, 154, 0.12);
    transform: translateY(-1px);
}

.checkout-list-card,
.checkout-summary-card {
    padding: 28px;
    border: 1px solid rgba(61, 43, 31, 0.14);
    border-radius: 28px;
    background: rgba(255, 246, 235, 0.42);
    box-shadow: 0 18px 40px rgba(61, 43, 31, 0.08);
}

.checkout-list-card {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.checkout-list {
    gap: 0;
}

.checkout-item {
    padding: 18px 0;
    background: transparent;
    border-bottom: 1px solid rgba(61, 43, 31, 0.14);
}

.checkout-item:first-child {
    border-top: 1px solid rgba(61, 43, 31, 0.14);
}

.checkout-item-copy strong,
.checkout-item-meta strong {
    color: var(--ink);
}

.checkout-item-copy span,
.checkout-item-meta span {
    color: rgba(61, 43, 31, 0.72);
    font-size: 0.98rem;
}

.checkout-empty {
    margin: 0;
    color: rgba(61, 43, 31, 0.66);
}

.checkout-summary-title {
    margin: 0 0 18px;
    font-size: 1.28rem;
    text-transform: uppercase;
}

.checkout-upsell-card {
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid rgba(61, 43, 31, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(83, 65, 39, 0.08) 0%, rgba(225, 193, 157, 0.18) 100%);
}

.checkout-upsell-script,
.checkout-upsell-title,
.checkout-upsell-description,
.checkout-upsell-price {
    margin: 0;
}

.checkout-upsell-script {
    color: rgba(61, 43, 31, 0.68);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checkout-upsell-title {
    margin-top: 10px;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.checkout-upsell-description {
    margin-top: 10px;
    color: rgba(61, 43, 31, 0.78);
    line-height: 1.65;
}

.checkout-upsell-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 14px;
}

.checkout-upsell-price-old {
    color: rgba(61, 43, 31, 0.46);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: line-through;
}

.checkout-upsell-price-current {
    color: #534127;
    font-size: 1.2rem;
    font-weight: 800;
}

.checkout-upsell-button {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    background: #534127;
    color: #f5e1c9;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.checkout-upsell-button:disabled {
    opacity: 0.46;
    cursor: default;
}

.checkout-upsell-button.is-added {
    opacity: 0.5;
}

.checkout-upsell-button.is-disabled {
    opacity: 0.34;
}

.checkout-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.checkout-summary-row {
    padding: 12px 0;
    border-bottom: 1px solid rgba(61, 43, 31, 0.1);
}

.checkout-summary-row--total {
    font-size: 1.08rem;
    font-weight: 800;
}

.checkout-delivery-note {
    margin: -2px 0 4px;
    color: rgba(223, 189, 154, 0.68);
    font-size: 0.82rem;
    line-height: 1.55;
}

.checkout-delivery-note:empty {
    display: none;
}

.checkout-primary-button {
    width: 100%;
    min-height: 54px;
    margin-top: 20px;
    border: 0;
    border-radius: 999px;
    background: rgba(61, 43, 31, 0.94);
    color: #f5e1c9;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-primary-button:disabled,
.checkout-primary-button.is-submitting {
    opacity: 0.6;
    cursor: wait;
}

.admin-page {
    padding: 160px 0 96px;
}

.admin-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-session-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-session-user {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(61, 43, 31, 0.76);
}

.admin-script,
.admin-auth-script {
    margin: 0;
    color: rgba(61, 43, 31, 0.9);
    font-family: var(--font-script);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1;
    text-transform: lowercase;
}

.admin-title,
.admin-auth-title {
    margin: 10px 0 0;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-subtitle {
    margin: 16px 0 0;
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.8;
}

.admin-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-stock-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-products-table td {
    white-space: nowrap;
}

.admin-chip,
.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(61, 43, 31, 0.16);
    background: rgba(255, 246, 235, 0.58);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-button {
    background: rgba(61, 43, 31, 0.94);
    color: #f5e1c9;
    cursor: pointer;
}

.admin-chip.is-ghost {
    background: transparent;
}

.admin-chip.is-active {
    background: rgba(61, 43, 31, 0.94);
    color: #f5e1c9;
    border-color: rgba(61, 43, 31, 0.94);
}

.admin-chip.is-danger,
.admin-button.is-danger {
    border-color: rgba(192, 125, 125, 0.32);
    background: rgba(192, 125, 125, 0.12);
    color: var(--ink);
}

.admin-chip.is-danger:hover,
.admin-button.is-danger:hover {
    border-color: rgba(208, 143, 143, 0.46);
    background: rgba(208, 143, 143, 0.18);
}

.admin-flash {
    margin: 0 0 22px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 246, 235, 0.58);
}

.admin-flash.is-success {
    color: rgba(61, 43, 31, 0.88);
}

.admin-flash.is-error {
    color: rgba(120, 52, 40, 0.92);
}

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

.admin-panels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.admin-panels-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.admin-stat-card,
.admin-panel,
.admin-form-card,
.admin-auth-card {
    padding: 28px;
    border: 1px solid rgba(61, 43, 31, 0.12);
    border-radius: 28px;
    background: rgba(225, 193, 157, 0.14);
    box-shadow: 0 18px 44px rgba(61, 43, 31, 0.08);
}

.admin-stat-label {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(61, 43, 31, 0.66);
}

.admin-stat-value {
    display: block;
    margin-top: 14px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
}

.admin-stat-meta {
    display: block;
    margin-top: 10px;
    color: rgba(61, 43, 31, 0.72);
    font-size: 0.95rem;
    line-height: 1.45;
}

.admin-order-overview-grid .admin-stat-value {
    font-size: clamp(1.45rem, 3vw, 2.3rem);
    line-height: 1.1;
}

.admin-order-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 22px;
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-panel-head h2,
.admin-translation-block h2 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.admin-panel-kicker {
    margin: 0 0 12px;
    color: rgba(61, 43, 31, 0.66);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-nav-card h2 {
    margin: 0;
}

.admin-nav-card p:last-child {
    margin: 14px 0 0;
    font-size: 0.98rem;
    line-height: 1.7;
}

.admin-nav-metrics {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    color: rgba(223, 189, 154, 0.7);
    font-size: 0.9rem;
}

.admin-state-card h2 {
    margin: 0;
}

.admin-state-disclosure[open] .admin-state-arrow {
    transform: rotate(180deg);
}

.admin-state-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
}

.admin-state-summary::-webkit-details-marker {
    display: none;
}

.admin-state-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 246, 235, 0.48);
    transition: transform 180ms ease;
}

.admin-state-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.admin-state-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 246, 235, 0.48);
}

.admin-state-item strong {
    font-size: 1rem;
}

.admin-state-item span {
    color: rgba(61, 43, 31, 0.66);
    font-size: 0.92rem;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 246, 235, 0.48);
}

.admin-list-item small {
    color: rgba(61, 43, 31, 0.66);
}

.admin-table-wrap {
    overflow-x: hidden;
    border: 1px solid rgba(61, 43, 31, 0.12);
    border-radius: 22px;
    background: rgba(255, 246, 235, 0.2);
}

.admin-table-wrap.is-scrollable {
    max-height: min(70vh, 760px);
    overflow-y: auto;
    padding-right: 6px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.admin-table th,
.admin-table td {
    padding: 16px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(61, 43, 31, 0.1);
    vertical-align: middle;
    word-break: break-word;
}

.admin-table th {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(61, 43, 31, 0.68);
    white-space: nowrap;
}

.admin-table tbody tr:nth-child(odd) {
    background: rgba(255, 246, 235, 0.34);
}

.admin-thumb {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 246, 235, 0.58);
}

.admin-thumb img,
.admin-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.admin-field span {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(61, 43, 31, 0.66);
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid rgba(61, 43, 31, 0.16);
    border-radius: 18px;
    background: rgba(255, 246, 235, 0.64);
    color: var(--ink);
    font: inherit;
    font-size: 16px;
}

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

.admin-field-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 34px;
}

.admin-field-checkbox input {
    width: 20px;
    min-height: 20px;
}

.admin-image-preview {
    width: 180px;
    height: 180px;
    margin-top: 22px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 246, 235, 0.58);
}

.admin-translation-block {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(61, 43, 31, 0.12);
}

.admin-inline-help {
    margin: 10px 0 0;
    color: rgba(61, 43, 31, 0.72);
    font-size: 0.96rem;
    line-height: 1.7;
}

.admin-package-grid {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.admin-package-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
    gap: 14px;
    align-items: end;
}

.admin-form-actions {
    margin-top: 26px;
}

.admin-login-page {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-auth-card {
    width: min(100%, 560px);
    text-align: center;
}

.admin-auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.admin-auth-form .admin-field {
    text-align: left;
}

.blog-page,
.blog-post-page {
    padding: 156px 0 96px;
}

.blog-hero,
.blog-post-hero {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid rgba(223, 189, 154, 0.18);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(223, 189, 154, 0.04);
}

.blog-script {
    margin: 0;
    color: var(--accent);
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 0.95;
}

.blog-title,
.blog-post-title,
.blog-related-title {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.blog-intro,
.blog-post-excerpt {
    max-width: 760px;
    margin: 0;
    color: rgba(223, 189, 154, 0.88);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.55;
    text-wrap: pretty;
}

.blog-list-section,
.blog-related-section {
    margin-bottom: 56px;
}

.blog-related-title {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.blog-card,
.blog-post-card {
    padding: 30px 28px;
    border: 1px solid rgba(223, 189, 154, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
}

.blog-card {
    display: grid;
    gap: 14px;
    align-content: start;
}

.blog-card-date {
    margin: 0;
    color: rgba(223, 189, 154, 0.58);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-card-title {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1;
    text-transform: uppercase;
}

.blog-card-excerpt,
.blog-post-paragraph {
    margin: 0;
    color: rgba(223, 189, 154, 0.88);
    font-size: 1.1rem;
    line-height: 1.6;
}

.blog-card-link,
.blog-post-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(223, 189, 154, 0.16);
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-post-body {
    margin-bottom: 56px;
}

.blog-post-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.blog-post-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding-top: 10px;
}

.blog-index-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.blog-post-cta.is-secondary {
    background: transparent;
}

@media (max-width: 900px) {
    .blog-page,
    .blog-post-page {
        padding: 136px 0 80px;
    }

    .blog-hero,
    .blog-post-hero {
        margin-bottom: 34px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-card,
    .blog-post-card {
        padding: 24px 20px;
        border-radius: 28px;
    }

    .blog-card-link,
    .blog-post-cta,
    .blog-back-link {
        width: 100%;
    }

    .blog-post-actions,
    .blog-index-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .topbar {
        padding-top: 18px;
        align-items: center;
        gap: 14px;
    }

    .scroll-nav {
        width: min(100vw - 32px, 640px);
    }

    .welcome-band {
        padding-top: 24px;
    }

    .welcome-mark-image {
        width: min(520px, 78vw);
    }

    .admin-toolbar,
    .admin-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-toolbar-actions {
        justify-content: flex-start;
    }

    .admin-orders-table {
        display: none;
    }

    .admin-orders-mobile {
        display: grid;
    }

    .admin-order-filter-bar {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-order-filter-bar .admin-chip {
        width: 100%;
    }

    .admin-order-mobile-head {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-order-mobile-head .admin-status-badge {
        align-self: flex-start;
    }

    .admin-order-grid--mobile {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .admin-order-mobile-card {
        padding: 20px 16px;
    }

    .admin-order-grid--mobile .admin-order-data strong,
    .admin-order-grid--mobile .admin-order-data small {
        word-break: break-word;
    }

    .admin-order-items-table {
        display: none;
    }

    .admin-order-items-mobile {
        display: grid;
        gap: 14px;
    }

    .admin-order-item-mobile-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-order-item-mobile-price {
        text-align: left;
    }

    .admin-stats-grid,
    .admin-panels-grid,
    .admin-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-order-overview-grid .admin-stat-value {
        font-size: 1.65rem;
    }

    .admin-stat-meta {
        font-size: 0.92rem;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 28px, 100%);
    }

    .blog-script {
        font-size: 2.6rem;
    }

    .blog-title,
    .blog-post-title,
    .blog-related-title {
        font-size: 3rem;
    }

    .blog-intro,
    .blog-post-excerpt,
    .blog-card-excerpt,
    .blog-post-paragraph {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 72vh;
    }

    .topbar {
        justify-content: space-between;
        flex-direction: row;
        align-items: flex-start;
    }

    .brand-mark img {
        width: 65px;
        height: 65px;
    }

    .language-switcher {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .language-pill {
        width: 32px;
        height: 32px;
    }

    .scroll-nav {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px 16px;
        border-radius: 0;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(61, 43, 31, 0.2);
        background: rgba(255, 246, 235, 0.94);
        box-shadow: none;
        transform: translate3d(0, -120%, 0);
    }

    .scroll-nav.is-visible {
        transform: translate3d(0, 0, 0);
    }

    .scroll-brand img {
        height: 42px;
    }

    .scroll-menu {
        width: 42px;
        height: 42px;
        padding: 0 10px;
        background: transparent;
        border: 1px solid rgba(61, 43, 31, 0.18);
    }

    .scroll-nav-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        padding: 0 20px 18px;
        border-bottom: 1px solid rgba(61, 43, 31, 0.18);
        background: rgba(255, 246, 235, 0.96);
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -10px, 0);
        transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .scroll-nav.is-menu-open .scroll-nav-panel {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .scroll-nav-links {
        display: grid;
        gap: 10px;
    }

    .scroll-nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 18px;
        border: 1px solid rgba(61, 43, 31, 0.14);
        background: rgba(225, 193, 157, 0.24);
        color: var(--ink);
        font-size: 0.86rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-align: center;
    }

    .scroll-menu.is-active {
        background: rgba(61, 43, 31, 0.08);
    }

    .scroll-menu.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .scroll-menu.is-active span:nth-child(2) {
        opacity: 0;
    }

    .scroll-menu.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .scroll-menu span {
        transition: transform 220ms ease, opacity 180ms ease;
        transform-origin: center;
    }

    .hero-media {
        overflow: hidden;
    }

    .hero-mask {
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        object-position: center bottom;
        transform: none;
    }

    .welcome-band {
        padding: 22px 14px 18px;
    }

    .welcome-script {
        width: 100%;
        margin: 0 0 10px;
        font-size: clamp(1.9rem, 8vw, 3rem);
        text-align: center;
    }

    .welcome-mark {
        margin-top: 8px;
    }

    .welcome-mark-image {
        width: min(360px, 80vw);
    }

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

    .benefits-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 16px 8px;
    }

    .benefit-card {
        grid-column: span 2;
        padding: 18px 14px 16px;
        border-radius: 22px;
    }

    .benefit-text {
        font-size: 0.92rem;
        line-height: 1.45;
        max-width: 13ch;
        margin-inline: auto;
        text-wrap: balance;
    }

    .benefit-icon-wrap {
        width: auto;
        height: auto;
    }

    .benefit-icon {
        width: 82px;
        height: 82px;
    }

    .benefit-text {
        font-size: 0.94rem;
    }
    .offer-band {
        padding: 10px 14px 26px;
    }

    .offer-script {
        margin-bottom: 8px;
        font-size: clamp(1.75rem, 7vw, 2.6rem);
    }

    .offer-title {
        font-size: clamp(2.7rem, 11vw, 4.8rem);
        letter-spacing: 0.08em;
    }

    .section-card,
    .status-card {
        padding: 24px;
        border-radius: 24px;
    }
}
@media (max-width: 640px) {
    .catalog-section {
        padding: 2px 0 54px;
    }

    .catalog-card-inner {
        min-height: 0;
        aspect-ratio: 146.37245 / 99.16449;
        padding: 18px 16px 12px;
    }

    .catalog-frame {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: top center;
    }

    .catalog-heading {
        padding-top: 15px;
    }

    .catalog-title-row {
        gap: 8px;
    }

    .catalog-title-line {
        width: 14px;
        opacity: 0.9;
    }

    .catalog-title {
        font-size: clamp(2rem, 9.5vw, 3rem);
        letter-spacing: 0.025em;
        line-height: 0.95;
    }

    .catalog-description {
        width: min(64%, 100%);
        margin-top: 10px;
        font-size: 0.8rem;
        line-height: 1.15;
    }

    .catalog-price-tag {
        left: 30px;
        bottom: 108px;
        font-size: 1rem;
        letter-spacing: 0.03em;
    }

    .catalog-supporting-text {
        left: 30px;
        right: 131px;
        bottom: 70px;
        max-width: none;
        font-size: 0.86rem;
        line-height: 1.05;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .catalog-card.is-alternate .catalog-price-tag {
        left: auto;
        right: 30px;
        text-align: right;
    }

    .catalog-card.is-alternate .catalog-supporting-text {
        left: 131px;
        right: 30px;
        text-align: right;
    }

    .catalog-card-cta {
        left: 30px;
        bottom: 34px;
        font-size: 0.72rem;
    }

    .catalog-card.is-alternate .catalog-card-cta {
        right: 30px;
    }

    .catalog-pig {
        right: 6px;
        bottom: 34px;
        width: min(182px, 48%);
        opacity: 0.96;
    }

    .moravka-section {
        padding: 14px 0 56px;
    }

    .moravka-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .moravka-script {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .moravka-title {
        font-size: clamp(2.3rem, 12vw, 3.4rem);
    }

    .moravka-text {
        margin-top: 16px;
        font-size: 0.98rem;
        line-height: 1.78;
    }

    .moravka-toggle {
        margin-top: 18px;
        font-size: 0.82rem;
    }

    .ranch-story-section {
        padding-bottom: 72px;
    }

    .ranch-story-card {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .ranch-story-copy {
        max-width: none;
    }

    .ranch-story-script {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .ranch-story-title {
        font-size: clamp(2.3rem, 12vw, 3.5rem);
    }

    .ranch-story-text {
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.78;
    }

    .ranch-story-toggle {
        margin-top: 18px;
        font-size: 0.82rem;
    }

    .contact-section {
        padding: 0 0 72px;
    }

    .contact-script {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .contact-title {
        font-size: clamp(2.3rem, 12vw, 3.5rem);
    }

    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 22px;
    }

    .contact-card {
        padding: 8px 6px;
    }

    .contact-icon-wrap {
        width: 88px;
        height: 88px;
    }

    .contact-value {
        font-size: 1rem;
    }

    .newsletter-section {
        padding: 0 0 72px;
    }

    .newsletter-script {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .newsletter-title {
        font-size: clamp(2.3rem, 12vw, 3.5rem);
    }

    .newsletter-message {
        margin-top: 12px;
        font-size: 0.9rem;
    }

    .newsletter-form {
        margin-top: 22px;
    }

    .newsletter-pill {
        min-height: 56px;
        padding: 4px;
    }

    .newsletter-input,
    .newsletter-button {
        min-height: 46px;
    }

    .newsletter-button {
        padding: 0 20px;
        font-size: 0.78rem;
    }

    .admin-page {
        padding: 132px 0 72px;
    }

    .admin-toolbar {
        align-items: center;
        text-align: center;
    }

    .admin-session-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .admin-stat-card,
    .admin-panel,
    .admin-form-card,
    .admin-auth-card {
        padding: 22px;
        border-radius: 22px;
    }

    .admin-title,
    .admin-auth-title {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .admin-script,
    .admin-auth-script {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .admin-chip,
    .admin-button {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.76rem;
    }

    .admin-toolbar-actions {
        justify-content: center;
    }

    .admin-stock-actions {
        justify-content: flex-start;
    }

    .admin-products-table-wrap {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .admin-products-table thead {
        display: none;
    }

    .admin-products-table,
    .admin-products-table tbody,
    .admin-products-table tr,
    .admin-products-table td {
        display: block;
        width: 100%;
    }

    .admin-products-table tbody {
        padding: 12px;
    }

    .admin-products-table tr {
        padding: 16px;
        border: 1px solid rgba(223, 189, 154, 0.12);
        border-radius: 20px;
        background: rgba(223, 189, 154, 0.04);
    }

    .admin-products-table tr + tr {
        margin-top: 12px;
    }

    .admin-products-table td {
        padding: 0;
        border-bottom: 0;
        white-space: normal;
        word-break: normal;
    }

    .admin-products-table td + td {
        margin-top: 10px;
    }

    .admin-products-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(223, 189, 154, 0.62);
    }

    .admin-products-table .admin-stock-actions {
        margin-top: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .admin-products-table .admin-stock-actions::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(223, 189, 154, 0.62);
    }

    .admin-products-table .admin-stock-actions .admin-chip {
        width: 100%;
        justify-content: center;
        white-space: nowrap;
    }

    .admin-order-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-order-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .admin-thumb {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .admin-image-preview {
        width: 140px;
        height: 140px;
        border-radius: 18px;
    }

    .admin-package-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .category-page {
        padding: 136px 0 72px;
    }

    .category-page-top {
        margin-bottom: 34px;
    }

    .category-page-script {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .category-page-title {
        font-size: clamp(2.35rem, 11.5vw, 4rem);
        line-height: 0.98;
        letter-spacing: 0.03em;
    }

    .category-page-title--compact {
        font-size: clamp(1.72rem, 8.2vw, 2.85rem);
        line-height: 1.02;
        letter-spacing: 0.01em;
        max-width: 100%;
    }

    .category-page-description {
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .category-showcase {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .category-hero-image,
    .category-stock-card {
        padding: 18px;
        border-radius: 22px;
    }

    .category-hero-image {
        width: min(100%, 280px);
        min-height: 0;
    }

    .category-stock-title {
        font-size: 1.8rem;
    }

    .category-stock-head {
        margin-top: 14px;
    }

    .category-variant-tabs {
        gap: 8px;
        margin: 14px 0 4px;
    }

    .category-variant-tab {
        min-width: 108px;
        padding: 10px 16px;
        font-size: 0.84rem;
    }

    .category-weight-pill {
        min-height: 46px;
        padding: 0 14px;
        font-size: 0.92rem;
        gap: 6px;
    }

    .category-weight-list {
        gap: 12px;
    }

    .category-weight-choice {
        padding: 10px;
        gap: 8px;
        border-radius: 20px;
    }

    .category-option-stepper {
        padding: 4px 6px;
    }

    .category-selection-summary {
        gap: 10px;
    }

    .category-selection-line {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .cart-dock {
        bottom: var(--viewport-bottom-offset, 0px);
    }

    .cart-dock-bar {
        min-height: 64px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        border-radius: 0;
    }

    .cart-drawer {
        padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
        border-radius: 0;
    }

    .cart-dock-title {
        font-size: 0.78rem;
    }

    .cart-dock-meta {
        font-size: 0.8rem;
    }

    .checkout-page {
        padding: 136px 0 110px;
    }

    .checkout-page-top {
        padding-inline: 10px;
        margin-bottom: 30px;
    }

    .checkout-page-title {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .checkout-page-description {
        max-width: none;
        padding-inline: 6px;
        line-height: 1.6;
    }

    .checkout-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .checkout-list-card {
        padding-inline: 10px;
    }

    .checkout-success {
        max-width: none;
    }

    .checkout-success-copy {
        padding: 38px 22px 28px;
    }

    .checkout-success-text {
        max-width: 28rem;
    }

    .checkout-success-link {
        width: 100%;
    }

    .checkout-item {
        align-items: flex-start;
        gap: 12px;
        padding: 16px 10px;
    }

    .cart-item-row,
    .checkout-item {
        flex-wrap: wrap;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .checkout-item-copy strong,
    .checkout-item-meta strong {
        font-size: 0.98rem;
    }

    .checkout-item-copy span,
    .checkout-item-meta span {
        font-size: 0.9rem;
    }

    .checkout-upsell-price {
        gap: 8px;
    }

    .checkout-upsell-price-old {
        font-size: 0.92rem;
    }

    .checkout-upsell-price-current {
        font-size: 1.08rem;
    }

    .category-products-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .category-product-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
        border-radius: 22px;
    }

    .category-product-image {
        min-height: 140px;
        border-radius: 18px;
    }
}

/* Experimental dark public theme */
:root {
    --bg: #2b292a;
    --bg-soft: rgba(43, 41, 42, 0.72);
    --ink: #dfbd9a;
    --accent: #dfbd9a;
    --accent-light: #dfbd9a;
    --line: rgba(223, 189, 154, 0.18);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

body {
    background: radial-gradient(circle at top, #3a3638 0%, #2b292a 40%, #232122 100%);
    color: var(--ink);
}

.topbar,
.scroll-nav,
.scroll-nav-panel,
.newsletter-pill,
.category-hero-image,
.category-stock-card,
.checkout-list-card,
.checkout-summary-card,
.moravka-card,
.ranch-story-card,
.checkout-upsell-card,
.category-selection-summary,
.category-product-card {
    border-color: rgba(223, 189, 154, 0.16);
}

.scroll-nav {
    background: rgba(35, 33, 34, 0.82);
    border-color: rgba(223, 189, 154, 0.14);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.scroll-menu,
.language-pill.is-active,
.language-pill:hover,
.language-pill:focus-visible {
    box-shadow: none;
}

.scroll-menu,
.scroll-nav-panel,
.scroll-nav-link {
    color: var(--ink);
}

.scroll-nav-panel {
    background: rgba(35, 33, 34, 0.96);
    border-bottom-color: rgba(223, 189, 154, 0.18);
}

.scroll-menu {
    background: rgba(223, 189, 154, 0.08);
    border-color: rgba(223, 189, 154, 0.14);
}

.scroll-nav-link {
    border-color: rgba(223, 189, 154, 0.14);
    background: rgba(223, 189, 154, 0.06);
}

.scroll-menu span,
.catalog-title-line {
    background: var(--ink);
}

.language-pill.is-active {
    border-color: rgba(223, 189, 154, 0.9);
}

.welcome-script,
.offer-script,
.moravka-script,
.ranch-story-script,
.contact-script,
.newsletter-script,
.category-page-script,
.checkout-page-script,
.admin-script,
.admin-auth-script {
    color: rgba(223, 189, 154, 0.92);
}

    .offer-title,
.moravka-title,
.ranch-story-title,
.contact-title,
.newsletter-title,
.category-page-title,
.checkout-page-title {
    color: var(--ink);
}

.benefit-text,
.moravka-text,
.ranch-story-text,
.category-page-description,
.checkout-page-description,
.catalog-empty,
.contact-label,
.checkout-empty,
.newsletter-message {
    color: rgba(223, 189, 154, 0.82);
}

.checkout-message,
.checkout-summary-row span,
.admin-field span {
    color: rgba(223, 189, 154, 0.82);
}

.contact-icon-wrap {
    background: transparent;
}

.catalog-section--modern {
    padding-top: 18px;
}

.catalog-grid--modern {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
    align-items: start;
}

.catalog-card-modern:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 420px);
}

.catalog-card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px 10px 10px;
    color: var(--ink);
    text-align: center;
}

.catalog-card-modern-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(190px, 26vw, 260px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: transparent;
    overflow: hidden;
}

.catalog-card-modern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-card-modern-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(223, 189, 154, 0.72);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-card-modern-copy {
    width: min(100%, 420px);
}

.catalog-card-modern-title,
.catalog-card-modern-description,
.catalog-card-modern-price {
    margin: 0;
}

.catalog-card-modern-title {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.catalog-card-modern-description {
    margin-top: 12px;
    color: rgba(223, 189, 154, 0.76);
    font-size: 1rem;
    line-height: 1.65;
}

.catalog-card-modern-price {
    margin-top: 14px;
    font-size: 1.08rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.catalog-card-modern:hover .catalog-card-modern-media,
.catalog-card-modern:focus-visible .catalog-card-modern-media {
    transform: translateY(-3px);
}

.catalog-card-modern-media {
    transition: transform 180ms ease, border-color 180ms ease;
}

.moravka-card,
.ranch-story-card,
.checkout-upsell-card {
    background: rgba(223, 189, 154, 0.03);
    box-shadow: none;
}

.checkout-success {
    background: rgba(223, 189, 154, 0.03);
    box-shadow: none;
    border-color: rgba(223, 189, 154, 0.16);
}

.checkout-success-script,
.checkout-success-title,
.checkout-success-link,
.checkout-success-text {
    color: var(--ink);
}

.checkout-success-link {
    border-color: rgba(223, 189, 154, 0.22);
}

.checkout-success-link:hover {
    border-color: rgba(223, 189, 154, 0.38);
    background: rgba(223, 189, 154, 0.06);
}

.admin-page {
    color: var(--ink);
}

.admin-session-user,
.admin-inline-help,
.admin-list-item small,
.admin-state-item span {
    color: rgba(223, 189, 154, 0.72);
}

.admin-title,
.admin-auth-title,
.admin-panel h2,
.admin-translation-block h2,
.admin-state-card h2,
.admin-table td,
.admin-table th,
.admin-state-item strong {
    color: var(--ink);
}

.admin-chip,
.admin-button {
    border-color: rgba(223, 189, 154, 0.18);
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    box-shadow: none;
}

.admin-button {
    background: rgba(223, 189, 154, 0.14);
}

.admin-chip:hover,
.admin-button:hover {
    border-color: rgba(223, 189, 154, 0.34);
    background: rgba(223, 189, 154, 0.12);
}

.admin-chip.is-ghost {
    background: transparent;
    border-color: rgba(223, 189, 154, 0.16);
}

.admin-flash {
    border: 1px solid rgba(223, 189, 154, 0.14);
    background: rgba(223, 189, 154, 0.06);
    box-shadow: none;
}

.admin-flash.is-success {
    color: rgba(223, 189, 154, 0.96);
}

.admin-flash.is-error {
    color: #f0a98c;
}

.admin-stat-card,
.admin-panel,
.admin-form-card,
.admin-auth-card,
.admin-table-wrap {
    border-color: rgba(223, 189, 154, 0.14);
    background: rgba(223, 189, 154, 0.04);
    box-shadow: none;
}

.admin-nav-card,
.admin-state-card {
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.admin-nav-card:hover,
.admin-nav-card:focus-visible,
.admin-state-card:hover,
.admin-state-card:focus-visible {
    border-color: rgba(223, 189, 154, 0.28);
    background: rgba(223, 189, 154, 0.07);
    transform: translateY(-1px);
}

.admin-state-arrow,
.admin-state-item,
.admin-list-item {
    background: rgba(223, 189, 154, 0.05);
}

.admin-state-summary {
    color: var(--ink);
}

.admin-panel-kicker,
.admin-stat-label,
.admin-table th {
    color: rgba(223, 189, 154, 0.62);
}

.admin-table-wrap {
    overflow: hidden;
}

.admin-analytics-wrap {
    margin-top: 24px;
}

.admin-table tbody tr:nth-child(odd) {
    background: rgba(223, 189, 154, 0.03);
}

.admin-table tbody tr:hover {
    background: rgba(223, 189, 154, 0.06);
}

.admin-empty-state {
    padding: 28px 24px;
    text-align: center;
    color: rgba(223, 189, 154, 0.7);
}

.admin-order-contact-cell,
.admin-order-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-order-table-meta {
    display: block;
    margin-top: 4px;
    color: rgba(223, 189, 154, 0.62);
    font-size: 0.84rem;
}

.admin-orders-mobile {
    display: none;
}

.admin-order-mobile-card {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 26px;
}

.admin-order-mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.admin-order-mobile-reference {
    display: grid;
    gap: 6px;
}

.admin-order-mobile-reference span {
    color: rgba(223, 189, 154, 0.62);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-order-mobile-reference strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
}

.admin-order-grid--mobile {
    gap: 16px 18px;
}

.admin-order-actions--mobile {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-order-actions--mobile .admin-inline-form {
    width: 100%;
}

.admin-order-actions--mobile .admin-chip,
.admin-order-actions--mobile .admin-inline-form .admin-chip {
    width: 100%;
    justify-content: center;
}

.admin-order-items-mobile {
    display: none;
}

.admin-order-item-mobile-card {
    display: grid;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(223, 189, 154, 0.12);
    border-radius: 24px;
    background: rgba(223, 189, 154, 0.03);
}

.admin-order-item-mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-order-item-mobile-title {
    display: grid;
    gap: 6px;
}

.admin-order-item-mobile-title strong,
.admin-order-item-mobile-price {
    color: var(--ink);
}

.admin-order-item-mobile-title strong {
    font-size: 1.05rem;
    line-height: 1.35;
}

.admin-order-item-mobile-title small {
    color: rgba(223, 189, 154, 0.72);
    font-size: 0.92rem;
    line-height: 1.45;
}

.admin-order-item-mobile-price {
    font-size: 1rem;
    line-height: 1.35;
    text-align: right;
}

@media (max-width: 900px) {
    .admin-order-items-table {
        display: none;
    }

    .admin-order-items-mobile {
        display: grid;
        gap: 14px;
    }

    .admin-order-item-mobile-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-order-item-mobile-price {
        text-align: left;
    }
}

.admin-inline-form {
    margin: 0;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(223, 189, 154, 0.2);
    border-radius: 999px;
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-status-badge.is-delivered {
    border-color: rgba(164, 196, 153, 0.3);
    background: rgba(164, 196, 153, 0.12);
}

.admin-status-badge.is-cancelled {
    border-color: rgba(192, 125, 125, 0.34);
    background: rgba(192, 125, 125, 0.14);
}

.admin-order-stack {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.admin-order-card {
    display: grid;
    gap: 22px;
}

.admin-order-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-order-header h2 {
    margin: 0;
}

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

.admin-order-data {
    display: grid;
    gap: 6px;
}

.admin-order-data span {
    color: rgba(223, 189, 154, 0.62);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-order-data strong,
.admin-order-data small {
    color: var(--ink);
}

.admin-order-data strong {
    font-size: 1rem;
    line-height: 1.6;
}

.admin-order-data small {
    font-size: 0.9rem;
    line-height: 1.5;
}

.admin-form-help,
.admin-field-hint {
    color: rgba(223, 189, 154, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
}

.admin-form-help {
    margin: 0;
}

.admin-field-hint {
    display: block;
    margin-top: 6px;
}

.admin-field--full {
    grid-column: 1 / -1;
}

.admin-order-data--full {
    grid-column: 1 / -1;
}

.admin-table th,
.admin-table td,
.admin-translation-block {
    border-color: rgba(223, 189, 154, 0.12);
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    border-color: rgba(223, 189, 154, 0.16);
    background: rgba(223, 189, 154, 0.06);
    color: var(--ink);
    box-shadow: none;
}

.admin-field input::placeholder,
.admin-field textarea::placeholder {
    color: rgba(223, 189, 154, 0.4);
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
    outline: none;
    border-color: rgba(223, 189, 154, 0.34);
    background: rgba(223, 189, 154, 0.08);
    box-shadow: 0 0 0 3px rgba(223, 189, 154, 0.08);
}

.admin-image-preview,
.admin-thumb {
    background: rgba(223, 189, 154, 0.05);
}

.admin-auth-card {
    max-width: 560px;
    margin: 0 auto;
}

.admin-auth-form .admin-button {
    width: 100%;
}

.newsletter-pill,
.category-stock-card,
.checkout-list-card,
.checkout-summary-card {
    background: rgba(223, 189, 154, 0.03);
    box-shadow: none;
}

.category-hero-image {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.newsletter-pill:focus-within {
    border-color: rgba(223, 189, 154, 0.32);
    background: rgba(223, 189, 154, 0.06);
}

.newsletter-input,
.newsletter-button,
.checkout-form input,
.checkout-form textarea,
.admin-field input,
.admin-field textarea {
    color: var(--ink);
}

.checkout-form input,
.checkout-form textarea {
    background: rgba(223, 189, 154, 0.08);
    color: #dfbd9a !important;
    -webkit-text-fill-color: #dfbd9a !important;
    caret-color: #dfbd9a;
}

.checkout-form input:-webkit-autofill,
.checkout-form input:-webkit-autofill:hover,
.checkout-form input:-webkit-autofill:focus,
.checkout-form textarea:-webkit-autofill,
.checkout-form textarea:-webkit-autofill:hover,
.checkout-form textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #dfbd9a !important;
    box-shadow: 0 0 0 1000px rgba(223, 189, 154, 0.08) inset;
    transition: background-color 9999s ease-in-out 0s;
}

.newsletter-input::placeholder,
.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: rgba(223, 189, 154, 0.44);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: rgba(223, 189, 154, 0.48);
}

.newsletter-button,
.category-add-to-cart,
.checkout-primary-button,
.checkout-upsell-button {
    background: rgba(223, 189, 154, 0.14);
    color: var(--ink);
}

.category-weight-pill {
    background: rgba(223, 189, 154, 0.08);
    color: var(--ink);
}

.category-weight-option.is-selected .category-weight-pill {
    background: rgba(223, 189, 154, 0.16);
    border-color: rgba(223, 189, 154, 0.88);
    box-shadow: 0 0 0 2px rgba(223, 189, 154, 0.16);
    transform: translateY(-1px);
}

.category-weight-option.is-unavailable .category-weight-pill {
    background: rgba(223, 189, 154, 0.03);
    color: rgba(223, 189, 154, 0.34);
}

.category-stock-price,
.category-selection-value,
.checkout-summary-row strong,
.checkout-summary-title,
.checkout-item-copy strong,
.checkout-item-meta strong,
.checkout-upsell-title,
.checkout-upsell-price-current,
.checkout-upsell-script,
.checkout-upsell-description,
.checkout-upsell-price-old,
.checkout-item-copy span,
.checkout-item-meta span {
    color: var(--ink);
}

.checkout-upsell-price-old {
    color: rgba(223, 189, 154, 0.46);
}

.checkout-item,
.cart-item-row {
    border-color: rgba(223, 189, 154, 0.14);
}

.contact-card,
.scroll-nav-link,
.category-back-link,
.cart-item-remove {
    color: var(--ink);
}

.site-footer-image {
    opacity: 0.92;
}

.cart-dock-bar,
.cart-drawer {
    background: #2b292a;
    color: var(--ink);
    border-top-color: rgba(223, 189, 154, 0.26);
}

.cart-dock-title,
.cart-drawer-title,
.cart-drawer-total,
.cart-item-meta strong,
.cart-item-copy strong {
    color: var(--ink);
}

.cart-dock-meta,
.cart-item-copy span,
.cart-item-meta span,
.cart-drawer-empty {
    color: rgba(223, 189, 154, 0.78);
}

.cart-dock-chevron {
    border-right-color: var(--ink);
    border-bottom-color: var(--ink);
}

.cart-item-remove,
.cart-drawer-checkout {
    border-color: rgba(223, 189, 154, 0.18);
    color: var(--ink);
}

.cart-drawer-checkout {
    background: rgba(223, 189, 154, 0.1);
}

@media (max-width: 900px) {
    .catalog-grid--modern {
        gap: 28px 18px;
    }

    .catalog-card-modern-media {
        width: clamp(160px, 32vw, 210px);
    }
}

@media (max-width: 640px) {
    .catalog-grid--modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 12px;
    }

    .catalog-card-modern {
        gap: 14px;
        padding: 8px 2px 6px;
    }

    .catalog-card-modern-media {
        width: min(100%, 150px);
    }

    .catalog-card-modern:nth-last-child(1):nth-child(odd) {
        width: min(100%, 180px);
    }

    .catalog-card-modern-title {
        font-size: 1.18rem;
        line-height: 1.05;
    }

    .catalog-card-modern-description {
        margin-top: 8px;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .catalog-card-modern-price {
        margin-top: 10px;
        font-size: 0.84rem;
    }

    .category-hero-image {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    :root {
        --container: min(1320px, calc(100vw - 88px));
    }

    .topbar {
        padding: 20px 0;
    }

    .hero-section {
        min-height: 88vh;
    }

    .welcome-band {
        padding: 42px 24px 46px;
    }

    .welcome-shell,
    .offer-shell {
        width: min(100%, 1380px);
    }

    .welcome-script {
        margin-left: 9%;
        margin-bottom: 6px;
        font-size: clamp(2.4rem, 3vw, 3.9rem);
    }

    .welcome-mark {
        margin-top: 10px;
    }

    .welcome-mark-image {
        width: min(820px, 62vw);
    }

    .benefits-section {
        padding: 34px 0 84px;
    }

    .benefits-grid {
        gap: 28px 18px;
    }

    .benefit-card {
        gap: 16px;
        padding: 10px 8px;
    }

    .benefit-icon {
        width: 104px;
        height: 104px;
    }

    .benefit-text {
        max-width: 220px;
        margin: 0 auto;
        font-size: 1.04rem;
        line-height: 1.5;
    }

    .offer-band {
        padding: 30px 24px 44px;
    }

    .offer-title {
        font-size: clamp(4.8rem, 8.2vw, 8.8rem);
        letter-spacing: 0.1em;
    }

    .catalog-section {
        padding: 18px 0 108px;
    }

    .catalog-grid--modern {
        gap: 48px 36px;
    }

    .catalog-card-modern {
        gap: 22px;
        padding: 12px 14px 14px;
    }

    .catalog-card-modern-media {
        width: clamp(220px, 24vw, 280px);
    }

    .catalog-card-modern-copy {
        width: min(100%, 460px);
    }

    .catalog-card-modern-description {
        max-width: 31ch;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.04rem;
        line-height: 1.72;
    }

    .catalog-card-modern-price {
        margin-top: 16px;
        font-size: 1.14rem;
    }

    .category-page {
        padding: 148px 0 88px;
    }

    .category-page-top {
        max-width: 920px;
        margin-bottom: 42px;
    }

    .category-page-script {
        font-size: clamp(1.7rem, 2.2vw, 2.5rem);
    }

    .category-page-title {
        font-size: clamp(3.2rem, 6.4vw, 5.6rem);
        line-height: 0.94;
    }

    .category-page-title--compact {
        font-size: clamp(2.8rem, 5.6vw, 4.8rem);
    }

    .category-page-description {
        max-width: 820px;
        margin-top: 16px;
        font-size: 1rem;
        line-height: 1.7;
    }

    .category-showcase {
        grid-template-columns: minmax(280px, 360px) minmax(380px, 560px);
        gap: 36px;
        align-items: center;
        justify-content: center;
    }

    .category-showcase--single {
        grid-template-columns: minmax(380px, 560px);
    }

    .category-stock-card {
        width: min(100%, 560px);
        padding: 28px 30px;
        margin: 0 auto;
    }

    .category-hero-image {
        width: min(100%, 360px);
    }

    .category-stock-price {
        font-size: clamp(1rem, 1.5vw, 1.24rem);
    }

    .category-stock-title {
        font-size: clamp(1.9rem, 3vw, 3rem);
        line-height: 0.96;
    }

    .category-weight-list {
        gap: 12px;
        margin-top: 18px;
    }

    .category-weight-choice {
        padding: 10px;
        gap: 10px;
    }

    .category-weight-pill {
        min-height: 48px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .category-option-stepper {
        padding: 4px 8px;
    }

    .category-option-stepper-button {
        width: 32px;
        height: 32px;
    }

    .category-option-stepper-quantity {
        font-size: 0.94rem;
    }

    .category-selection-summary {
        margin-top: 24px;
        padding-top: 16px;
        gap: 10px;
    }

    .category-selection-label,
    .category-selection-value {
        font-size: 0.96rem;
    }

    .category-add-to-cart {
        min-height: 52px;
    }

    .moravka-section {
        padding: 40px 0 110px;
    }

    .moravka-card,
    .ranch-story-card {
        padding: 54px 64px;
    }

    .moravka-copy,
    .ranch-story-copy,
    .contact-shell,
    .newsletter-shell {
        max-width: 1040px;
        margin-left: auto;
        margin-right: auto;
    }

    .moravka-text,
    .ranch-story-text {
        max-width: 920px;
        font-size: 1.08rem;
        line-height: 1.92;
    }

    .ranch-story-section {
        padding-bottom: 112px;
    }

    .contact-section {
        padding: 24px 0 110px;
    }

    .contact-grid {
        max-width: 900px;
        margin: 38px auto 0;
        gap: 40px;
    }

    .contact-card {
        gap: 14px;
    }

    .contact-icon-wrap {
        width: 120px;
        height: 120px;
    }

    .newsletter-section {
        padding: 20px 0 120px;
    }

    .newsletter-form {
        width: min(100%, 840px);
        margin-top: 36px;
    }

    .checkout-page {
        padding: 144px 0 96px;
    }

    .checkout-page-top {
        max-width: 900px;
        margin-bottom: 34px;
    }

    .checkout-page-script {
        font-size: clamp(1.7rem, 2.1vw, 2.5rem);
    }

    .checkout-page-title {
        font-size: clamp(3rem, 5.8vw, 5.2rem);
        line-height: 0.94;
    }

    .checkout-page-description {
        max-width: 760px;
        margin-top: 14px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .checkout-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        align-items: start;
        max-width: 980px;
        margin: 0 auto;
    }

    .checkout-list-card,
    .checkout-summary-card {
        padding: 24px 24px 26px;
        border-radius: 24px;
    }

    .checkout-list-card {
        padding: 0;
    }

    .checkout-summary-card {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .checkout-item {
        padding: 14px 0;
        gap: 14px;
    }

    .checkout-item-copy strong,
    .checkout-item-meta strong {
        font-size: 1rem;
    }

    .checkout-item-copy span,
    .checkout-item-meta span {
        font-size: 0.92rem;
    }

    .checkout-summary-title {
        font-size: clamp(1.8rem, 2.4vw, 2.6rem);
        line-height: 1;
    }

    .checkout-summary-row {
        padding: 10px 0;
    }

    .checkout-upsell-card {
        margin-top: 18px;
        padding: 16px 18px;
        border-radius: 20px;
    }

    .checkout-upsell-title {
        font-size: 1.18rem;
    }

    .checkout-upsell-description {
        margin-top: 8px;
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .checkout-form {
        gap: 14px;
        margin-top: 18px;
    }

    .checkout-form textarea {
        min-height: 120px;
    }

    .checkout-primary-button {
        min-height: 52px;
    }
}

@media (min-width: 1024px) {
    :root {
        --container: min(1380px, calc(100vw - 96px));
    }

    .scroll-nav {
        top: 0;
        left: 0;
        gap: 28px;
        width: 100%;
        padding: 14px clamp(28px, 4vw, 56px);
        border-width: 0 0 1px;
        border-radius: 0;
        transform: translate3d(0, -110%, 0);
    }

    .scroll-nav.is-visible {
        transform: translate3d(0, 0, 0);
    }

    .scroll-brand img {
        height: 52px;
    }

    .scroll-menu {
        display: none;
    }

    .scroll-nav-panel,
    .scroll-nav-panel[hidden] {
        position: static;
        display: block;
        flex: 1 1 auto;
        min-width: 0;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .scroll-nav-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 22px;
    }

    .scroll-nav-link {
        min-height: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .hero-section {
        min-height: 84vh;
    }

    .hero-mask {
        object-fit: contain;
        object-position: center bottom;
    }

    .welcome-band {
        padding: 18px 24px 22px;
    }

    .welcome-shell,
    .offer-shell {
        width: min(100%, 1240px);
    }

    .welcome-script,
    .offer-script {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: clamp(1.3rem, 1.45vw, 1.8rem);
    }

    .welcome-mark {
        margin-top: 0;
    }

    .welcome-mark-image {
        width: min(500px, 36vw);
    }

    .benefits-section {
        padding: 28px 0 76px;
    }

    .benefits-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .benefit-card {
        gap: 14px;
        padding: 8px 6px;
    }

    .benefit-text {
        max-width: 180px;
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .offer-band {
        padding: 12px 24px 28px;
    }

    .offer-title {
        font-size: clamp(2.7rem, 4vw, 4.4rem);
        line-height: 1;
        letter-spacing: 0.04em;
    }

    .catalog-section {
        padding: 8px 0 96px;
    }

    .catalog-grid--modern {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 38px 24px;
        max-width: 1196px;
        margin: 0 auto;
    }

    .catalog-card-modern:nth-last-child(1):nth-child(odd) {
        width: 220px;
    }

    .catalog-card-modern {
        flex: 0 0 220px;
        width: 220px;
        gap: 16px;
        min-width: 0;
        padding: 6px 4px 10px;
    }

    .catalog-card-modern-media {
        width: min(100%, 180px);
    }

    .catalog-card-modern-copy {
        width: min(100%, 220px);
    }

    .catalog-card-modern-title {
        font-size: clamp(1.05rem, 1.15vw, 1.45rem);
        line-height: 1.1;
    }

    .catalog-card-modern-description {
        max-width: 21ch;
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .catalog-card-modern-price {
        font-size: 0.84rem;
    }

    .story-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
        align-items: stretch;
        padding: 24px 0 110px;
    }

    .moravka-section,
    .ranch-story-section {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .moravka-card,
    .ranch-story-card {
        width: 100%;
        height: 100%;
        padding: 38px 34px 32px;
    }

    .moravka-copy,
    .ranch-story-copy {
        max-width: 100%;
    }

    .moravka-title,
    .ranch-story-title,
    .contact-title,
    .newsletter-title {
        font-size: clamp(2rem, 2.5vw, 3rem);
        line-height: 1;
        letter-spacing: 0.035em;
    }

    .moravka-text,
    .ranch-story-text {
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.68;
    }

    .moravka-toggle,
    .ranch-story-toggle {
        margin-top: 18px;
        font-size: 0.86rem;
    }

    .contact-grid {
        max-width: 760px;
        gap: 56px;
    }

    .newsletter-form {
        width: min(100%, 760px);
    }

    .site-footer {
        overflow: hidden;
    }

    .site-footer-image {
        width: 50%;
        height: auto;
        object-fit: cover;
        object-position: center bottom;
    }
}

@media (min-width: 1440px) {
    .catalog-card-modern {
        flex-basis: 220px;
    }
}
