:root {
    --ink: #171511;
    --muted: #6f6961;
    --line: #eadfd4;
    --paper: #fbf7f1;
    --cream: #f0e7dc;
    --soft: #f7efe6;
    --white: #fffaf5;
    --gold: #d9c4ad;
    --green: #dfead9;
    --red: #ffdfe1;
    --max: 1380px;
    --page-gutter: 42px;
    --action-height: 50px;
    --action-min-width: 186px;
}

/* Customer-facing action system: consistent sizing, rhythm and alignment. */
body:not(.admin-body) .btn,
body:not(.admin-body) .ghost {
    width: fit-content;
    min-width: var(--action-min-width);
    min-height: var(--action-height);
    height: var(--action-height);
    margin: 0;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .8px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

body:not(.admin-body) .btn {
    background: var(--ink);
    color: #fff;
}

body:not(.admin-body) .ghost {
    background: transparent;
    color: var(--ink);
}

body:not(.admin-body) .btn:hover,
body:not(.admin-body) .btn:focus-visible {
    background: #342f29;
    border-color: #342f29;
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(31, 25, 20, .13);
}

body:not(.admin-body) .ghost:hover,
body:not(.admin-body) .ghost:focus-visible {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(31, 25, 20, .1);
}

body:not(.admin-body) .btn:disabled,
body:not(.admin-body) .ghost:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.shop-ajax-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    max-width: min(360px, calc(100vw - 40px));
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 14px 36px rgba(24, 19, 15, .2);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.shop-ajax-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.shop-ajax-notice.error {
    background: #8c2830;
}

body:not(.admin-body) .btn.slim {
    width: 100%;
    min-width: 0;
    min-height: var(--action-height);
    height: var(--action-height);
    margin-top: 14px;
}

body:not(.admin-body) :is(.filter-actions, .cart-summary-actions) > :is(.btn, .ghost),
body:not(.admin-body) :is(.filter-actions, .cart-summary-actions) > form,
body:not(.admin-body) :is(.filter-actions, .cart-summary-actions) > form > :is(.btn, .ghost) {
    width: 100%;
    min-width: 0;
}

body:not(.admin-body) :is(.site-auth-actions, .site-auth-links, .account-auth-links, .contact-map-actions) {
    align-items: center;
}

@keyframes volan-soft-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes volan-soft-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

body:not(.admin-body) .header-wrap {
    animation: volan-soft-fade .5s ease both;
}

body:not(.admin-body) main > section,
body:not(.admin-body) main > .story {
    animation: volan-soft-rise .58s ease both;
}

body:not(.admin-body) main > :nth-child(2) { animation-delay: .06s; }
body:not(.admin-body) main > :nth-child(3) { animation-delay: .11s; }
body:not(.admin-body) main > :nth-child(4) { animation-delay: .16s; }

body:not(.admin-body) :is(.product, .shop-category-card, .blog-feature-card, .related-post-card, .account-tile, .contact-mini-card) {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

body:not(.admin-body) :is(.product, .blog-feature-card, .related-post-card, .account-tile, .contact-mini-card):hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(49, 36, 25, .09);
}

body:not(.admin-body) :is(.product-img, .category, .blog-feature-image, .related-post-card) img {
    transition: transform .5s cubic-bezier(.2, .65, .3, 1);
}

body:not(.admin-body) :is(.product-img, .category, .blog-feature-image, .related-post-card):hover img {
    transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    body:not(.admin-body) *,
    body:not(.admin-body) *::before,
    body:not(.admin-body) *::after {
        animation-duration: .01ms !important;
        animation-delay: 0ms !important;
        transition-duration: .01ms !important;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.65;
}

body,
main {
    min-width: 0;
}

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

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

.topbar {
    min-height: 34px;
    display: grid;
    place-items: center;
    padding: 8px 18px;
    color: #746f68;
    background: #e9e1d8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-align: center;
}

.header {
    min-height: 92px;
    padding: 10px 62px 10px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 46px;
    row-gap: 14px;
    align-items: center;
    background: rgba(255, 251, 246, .97);
    border-bottom: 1px solid var(--line);
}

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

.logo,
.admin-brand {
    font-weight: 500;
    letter-spacing: 5px;
    line-height: .9;
}

.brand-logo-image {
    width: auto;
    max-width: min(280px, 100%);
    max-height: 74px;
    object-fit: contain;
}

.logo {
    grid-column: 2;
    grid-row: 1;
    font-size: 40px;
    text-align: center;
}

.logo span,
.admin-brand span {
    display: block;
    margin-top: 11px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 5px;
}

.nav,
.tools,
.search-tool,
.menu-tool {
    display: flex;
    align-items: center;
}

.menu-tool {
    display: none;
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
}

.nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 34px;
    margin: 0 -62px -10px;
    padding: 13px 62px;
    background: #e9e1d8;
}

.nav a {
    position: relative;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .3s cubic-bezier(.65, 0, .35, 1);
    pointer-events: none;
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav a.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.tools {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
    gap: 16px;
}

.search-tool {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
}

.mobile-menu-overlay,
.mobile-menu {
    display: none;
}

.search-drawer {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    padding: 0 0 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .28s ease, transform .32s ease, visibility .32s ease;
    pointer-events: none;
}

.header-wrap.search-active .search-drawer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.search-drawer-inner {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 24px 18px;
    border: 1px solid var(--line);
    border-top: 0;
    background: rgba(255, 250, 245, .98);
    box-shadow: 0 24px 50px rgba(54, 38, 24, .08);
    backdrop-filter: blur(8px);
}

.search-inline-form {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
}

.search-input-wrap {
    min-height: 56px;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: var(--white);
}

.search-inline-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.7;
}

.search-input-wrap input {
    min-height: 54px;
    padding: 0;
    border: 0;
    background: transparent;
    outline: 0;
}

.search-submit,
.search-close {
    min-height: 56px;
}

.search-close {
    min-width: 100px;
}

.search-results {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.search-result-card {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--white);
}

.search-result-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background: var(--cream);
}

.search-result-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.search-result-card span,
.search-hint,
.search-empty {
    color: var(--muted);
}

.search-hint,
.search-empty {
    padding: 10px 2px 2px;
}

.icon-btn,
.admin-round {
    width: 48px;
    height: 48px;
    position: relative;
    display: grid;
    place-items: center;
    border: 1px solid #ded8d1;
    border-radius: 50%;
    background: #fffaf5;
    color: var(--ink);
    cursor: pointer;
}

.icon-btn svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.7;
}

.admin-round svg,
.admin-menu svg,
.admin-exit svg,
.metric-card svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.6;
}

.cart-dot,
.admin-round span {
    position: absolute;
    top: -5px;
    right: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: white;
    font-size: 9px;
    font-weight: 700;
    border: 0;
}

.admin-round {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.admin-round span {
    top: -2px;
    right: -2px;
    width: 17px;
    height: 17px;
    background: var(--ink);
    color: white;
    border: 0;
}

.hero {
    height: 650px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-slider {
    height: 650px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-slider-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.012);
    transition: opacity .65s ease, visibility .65s ease, transform 1s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slider-arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    border: 1px solid rgba(23, 21, 17, .2);
    border-radius: 50%;
    background: rgba(255, 250, 245, .86);
    color: var(--ink);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.hero-slider-arrow.prev { left: 24px; }
.hero-slider-arrow.next { right: 24px; }

.hero-slider-arrow svg {
    width: 18px;
    height: 18px;
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.hero-slider-dots button {
    width: 28px;
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(23, 21, 17, .28);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.hero-slider-dots button.active {
    width: 46px;
    background: var(--ink);
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(520px, 48%);
    height: 100%;
    padding: 92px 32px 92px 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img,
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.story h2 {
    margin: 0;
    white-space: pre-line;
    font-weight: 500;
    line-height: 1.16;
}

.hero h1 {
    font-size: clamp(38px, 4vw, 62px);
}

.hero p,
.story p,
.footer p,
.page-hero p,
.text-page p,
.contact-info,
.blog-card p {
    color: var(--muted);
}

.hero-copy > p:last-of-type {
    max-width: 360px;
    white-space: pre-line;
}

.rule {
    width: 56px;
    height: 1px;
    margin: 26px 0;
    background: var(--ink);
}

.btn {
    width: fit-content;
    min-width: 186px;
    min-height: 48px;
    padding: 13px 26px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    cursor: pointer;
}

.btn.slim {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    margin-top: 14px;
    font-size: 10px;
}

.benefits {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.benefit {
    min-height: 168px;
    padding: 32px 22px;
    display: grid;
    place-items: center;
    text-align: center;
    border-right: 1px solid var(--line);
}

.benefit:last-child {
    border-right: 0;
}

.benefit svg {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
    stroke-width: 1.25;
}

.benefit strong {
    font-size: 11px;
    letter-spacing: 1.4px;
}

.benefit p {
    max-width: 210px;
    margin: 9px 0 0;
    color: var(--muted);
}

.section {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    padding: 38px 0 66px;
}

.category-grid,
.shop-products,
.blog-grid {
    display: grid;
    gap: 28px;
}

.category-grid {
    grid-template-columns: repeat(3, 1fr);
}

.category {
    height: 235px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

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

.category-copy {
    position: absolute;
    inset: 0;
    padding: 48px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.category h3 {
    margin: 0 0 22px;
    font-size: 28px;
    font-weight: 500;
}

.category-copy p {
    max-width: 230px;
    margin: -12px 0 18px;
    color: var(--muted);
    line-height: 1.55;
}

.link-line {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--ink);
}

.section-title {
    text-align: center;
    padding: 20px 0 34px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 500;
}

.section-title .rule {
    margin: 22px auto 0;
}

.products-wrap {
    position: relative;
    overflow: visible;
}

.shop-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.products {
    display: flex;
    gap: 30px;
    padding: 0 38px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

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

.products .product {
    flex: 0 0 calc((100% - 90px) / 4);
    min-width: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.shop-products .product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img {
    aspect-ratio: 1 / 1;
    display: block;
    background: #eee8e1;
    overflow: hidden;
}

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

.product-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    align-items: flex-start;
}

.product h3 {
    margin: 0 0 5px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    min-height: calc(1.45em * 2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product p {
    margin: 0;
    font-weight: 700;
}

.heart {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
}

.heart svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.4;
}

.heart.active {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
}

.heart.active svg {
    fill: currentColor;
}

.product-favorite {
    flex: 0 0 auto;
}

.product-actions {
    margin: auto 0 0;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 250, 245, .96);
    border: 1px solid #cab9a7;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(49, 33, 19, .08);
    color: var(--ink);
    cursor: pointer;
    z-index: 2;
}

.arrow.left {
    left: -26px;
}

.arrow.right {
    right: -26px;
}

.arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.9;
}

.story {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto 66px;
    display: grid;
    grid-template-columns: 42% 58%;
    background: var(--white);
    border: 1px solid var(--line);
}

.story-copy {
    padding: 84px 70px 76px;
}

.story h2 {
    font-size: clamp(34px, 3.4vw, 50px);
}

.story img {
    width: 100%;
    height: 546px;
    object-fit: cover;
    object-position: 66% center;
}

.page-hero {
    min-height: 420px;
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--cream);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 247, 241, .95), rgba(251, 247, 241, .56), rgba(251, 247, 241, .15));
}

.page-hero img {
    position: absolute;
    inset: 0;
}

.page-hero > div {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 74px 62px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 68px);
}

.page-hero p:last-child {
    max-width: 520px;
    margin-bottom: 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 42px;
}

.shop-categories {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    padding: 64px 0 18px;
}

.shop-categories-heading {
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 34px;
}

.shop-categories-heading h2 {
    max-width: 700px;
    margin: 7px 0 0;
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 500;
    line-height: 1.08;
}

.shop-categories-heading > p {
    max-width: 390px;
    margin: 0 0 4px;
    color: var(--muted);
    line-height: 1.7;
}

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

.shop-category-card {
    min-height: 286px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: 24px;
    border: 1px solid transparent;
    background: #e8dfd5;
    color: var(--white);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.shop-category-card > img,
.shop-category-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.shop-category-card > img {
    z-index: -3;
    object-fit: cover;
    transition: transform .55s ease;
}

.shop-category-shade {
    z-index: -2;
    background: linear-gradient(180deg, rgba(30, 24, 19, .04) 18%, rgba(30, 24, 19, .72) 100%);
}

.shop-category-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .38);
    opacity: 0;
    transition: opacity .28s ease;
}

.shop-category-card > div {
    width: 100%;
    position: relative;
    z-index: 1;
}

.shop-category-card small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.shop-category-card h3 {
    margin: 8px 0 17px;
    font-size: clamp(24px, 2.2vw, 33px);
    font-weight: 500;
    line-height: 1.05;
}

.shop-category-index {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.shop-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, .48);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.shop-category-link b {
    font-size: 20px;
    font-weight: 400;
    transition: transform .25s ease;
}

.shop-category-all {
    color: var(--ink);
    background: linear-gradient(145deg, #f7efe7 0%, #dfcdbb 100%);
}

.shop-category-all::before {
    content: "V";
    position: absolute;
    top: 44%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    color: rgba(93, 73, 55, .07);
    font-family: Georgia, serif;
    font-size: 190px;
    line-height: 1;
}

.shop-category-all .shop-category-link {
    border-color: rgba(49, 38, 29, .28);
}

.shop-category-card:hover,
.shop-category-card.active {
    transform: translateY(-5px);
    border-color: #cdb9a5;
    box-shadow: 0 20px 42px rgba(54, 39, 27, .14);
}

.shop-category-card:hover::after,
.shop-category-card.active::after {
    opacity: 1;
}

.shop-category-card:hover > img {
    transform: scale(1.045);
}

.shop-category-card:hover .shop-category-link b {
    transform: translateX(4px);
}

.shop-empty-state {
    padding: 64px 24px;
    text-align: center;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fffdfb 0%, #f8f1ea 100%);
}

.shop-empty-state h2 {
    margin: 8px 0 10px;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
}

.shop-empty-state > p:last-of-type {
    margin: 0 auto 22px;
    color: var(--muted);
}

.product-detail {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 34px auto 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 26px;
    align-items: start;
}

.product-mobile-back {
    display: none;
    width: 44px;
    height: 44px;
    margin: 18px var(--page-gutter) 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fffaf5;
    color: var(--ink);
    place-items: center;
    cursor: pointer;
}

.product-mobile-back svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.9;
}

.product-gallery {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
}

.product-thumbs {
    display: grid;
    gap: 10px;
    align-content: start;
}

.thumb-btn {
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
}

.thumb-btn.active {
    border-color: var(--ink);
}

.thumb-btn img {
    width: 100%;
    aspect-ratio: 1 / 1.45;
    object-fit: cover;
}

.product-main-image {
    background: var(--white);
    border: 1px solid var(--line);
}

.product-main-image img {
    width: 100%;
    aspect-ratio: 1 / 1.42;
    object-fit: cover;
}

.product-summary {
    padding: 26px 28px;
    border: 1px solid var(--line);
    background: var(--white);
}

.product-breadcrumb {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
}

.product-summary h1 {
    margin: 0 0 14px;
    font-size: 42px;
    font-weight: 500;
}

.product-price {
    margin-bottom: 26px;
    color: var(--ink);
    font-size: 34px;
    font-weight: 700;
}

.product-detail-form {
    display: grid;
    gap: 18px;
}

.variant-group span {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.variant-options,
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-chip,
.color-chip {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.variant-chip.active,
.color-chip.active {
    border-color: var(--ink);
    background: #f5ede4;
}

.color-chip i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
}

.color-chip b {
    font-size: 12px;
    font-weight: 600;
}

.product-stock-meta {
    padding-top: 4px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.product-stock-meta div {
    padding: 9px 0;
}

.product-stock-meta strong {
    color: var(--ink);
}

.product-buy-btn {
    min-width: 0;
    width: 180px;
}

.product-buy-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.product-detail-favorite {
    width: 50px;
    height: 50px;
    padding: 0;
    display: grid;
    place-items: center;
    justify-self: start;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.product-detail-favorite:hover,
.product-detail-favorite.active {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.product-detail-favorite svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.7;
}

.product-detail-favorite.active svg {
    fill: currentColor;
}

.product-actions-inline {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.product-actions-inline form {
    margin: 0;
}

.shop-filter {
    align-self: start;
    padding: 26px 24px;
    border: 1px solid #e6dbd0;
    background: linear-gradient(180deg, #fffdfb 0%, #f8f1ea 100%);
    box-shadow: 0 18px 40px rgba(62, 45, 30, .06);
    text-align: left;
}

.shop-filter-mobile-head,
.shop-filter-trigger,
.shop-filter-overlay {
    display: none;
}

.shop-filter-header {
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.shop-filter h2 {
    margin: 4px 0 8px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
}

.shop-filter-header p {
    margin: 0;
    color: var(--muted);
    max-width: 190px;
}

.shop-filter-form {
    display: grid;
    gap: 20px;
}

.filter-block h3 {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-align: left;
}

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

.price-grid label {
    min-width: 0;
}

.price-grid label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    text-align: left;
}

.price-grid input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    background: rgba(255, 255, 255, .8);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    position: relative;
    cursor: pointer;
}

.filter-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-chip span {
    min-height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    transition: all .2s ease;
    justify-content: center;
}

.filter-chip.active span,
.filter-chip:hover span {
    border-color: var(--ink);
    background: #f1e7dc;
}

.filter-chip.color i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
}

.filter-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.filter-actions .btn,
.filter-actions .ghost {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    height: 50px;
    margin: 0;
    padding: 0 12px;
    line-height: 1;
    box-sizing: border-box;
}

.contact-map-actions > * {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    box-sizing: border-box;
}

.shop-results-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.shop-results-head strong {
    font-size: 15px;
}

.shop-results-head span {
    color: var(--muted);
}

.shop-results-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 981px) {
    .shop-filter {
        margin-top: 57px;
    }
}

.text-page,
.contact-page {
    max-width: 1050px;
    margin: 0 auto;
    padding: 70px 48px;
}

.text-page p {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
}

.rich-text-content {
    color: var(--ink);
    line-height: 1.8;
}

.rich-text-content > * {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.rich-text-content h2 {
    margin-top: 42px;
    margin-bottom: 14px;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 500;
    line-height: 1.3;
}

.rich-text-content h2:first-child {
    margin-top: 0;
}

.rich-text-content h3,
.rich-text-content h4 {
    margin-top: 28px;
    margin-bottom: 10px;
}

.rich-text-content p {
    max-width: 820px;
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 16px;
}

.rich-text-content ul,
.rich-text-content ol {
    padding-left: 24px;
    color: var(--muted);
}

.rich-text-content li + li {
    margin-top: 8px;
}

.rich-text-content blockquote {
    padding: 18px 22px;
    border-left: 3px solid var(--ink);
    background: #faf4ed;
    color: var(--muted);
}

.rich-text-content a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-page {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 44px;
}

.contact-info,
.contact-form {
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--white);
}

.utility-page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 48px;
}

.empty-state {
    max-width: 620px;
    margin: 0 auto;
    padding: 42px;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--white);
}

.empty-state h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.empty-state p {
    margin: 0 0 22px;
    color: var(--muted);
}

.search-form {
    max-width: 720px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.search-form input {
    min-height: 52px;
    background: var(--white);
}

.search-result-title {
    margin: 0 0 18px;
    color: var(--muted);
    font-weight: 700;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: stretch;
}

.cart-list,
.cart-summary {
    border: 1px solid var(--line);
    background: var(--white);
}

.cart-item {
    display: grid;
    grid-template-columns: 92px 1fr 110px 120px auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-item img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    background: var(--cream);
}

.cart-item h2 {
    margin: 0 0 4px;
    font-size: 16px;
}

.cart-item p,
.cart-item label {
    margin: 0;
    color: var(--muted);
}

.cart-item input {
    margin-top: 5px;
    min-height: 38px;
}

.cart-summary {
    padding: 24px;
}

.cart-summary h2 {
    margin: 0 0 18px;
    font-size: 18px;
}

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

.cart-summary .summary-total {
    color: var(--ink);
    font-size: 18px;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 20px;
}

.cart-summary-actions {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.cart-summary-actions .btn,
.cart-summary-actions .ghost {
    width: 100%;
    margin-top: 0;
}

.checkout-shell {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    padding: 46px 0 78px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 28px;
    align-items: start;
}

.checkout-card {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(48, 35, 24, .05);
    padding: 28px;
}

.checkout-card h2 {
    margin: 8px 0 14px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.1;
}

.checkout-note {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

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

.checkout-form .form-grid {
    gap: 16px;
}

.checkout-form .btn {
    width: 100%;
}

.checkout-summary-list {
    display: grid;
    gap: 14px;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.checkout-summary-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    background: var(--cream);
}

.checkout-summary-item strong,
.checkout-summary-item span,
.checkout-summary-item small {
    display: block;
}

.checkout-summary-item span,
.checkout-summary-item small {
    color: var(--muted);
}

.checkout-summary-item b {
    font-size: 15px;
}

.checkout-totals {
    margin-top: 18px;
}

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

.site-auth-body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, #fbf7f2 0%, #f6eee5 100%);
}

.site-auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.site-auth-panel {
    width: min(100%, 620px);
    padding: 28px 24px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 252, 248, .92);
    box-shadow: 0 18px 40px rgba(48, 35, 24, .05);
}

.site-auth-panel-wide {
    width: min(100%, 760px);
}

.site-auth-brand {
    margin-bottom: 22px;
    color: var(--ink);
    font-size: 52px;
    line-height: 1;
}

.site-auth-brand .brand-logo-image {
    max-height: 64px;
    max-width: min(260px, 100%);
}

.site-auth-kicker {
    margin: 0 0 12px;
    color: #7d6d5e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-auth-note {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.75;
}

.site-auth-form {
    display: grid;
    gap: 14px;
}

.site-auth-actions {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-auth-actions .btn {
    min-width: 186px;
}

.site-auth-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.account-auth-shell {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 0 78px;
}

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

.account-dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.account-auth-card {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(48, 35, 24, .05);
}

.account-auth-copy,
.account-auth-form-card,
.account-dashboard-hero,
.account-tile {
    padding: 38px;
}

.account-auth-copy h1,
.account-dashboard-hero h1 {
    margin: 8px 0 16px;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.08;
}

.account-auth-copy h2,
.account-auth-form-card h2,
.account-tile h2 {
    margin: 8px 0 14px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
}

.account-auth-copy p:last-of-type,
.account-dashboard-hero p,
.account-tile p {
    color: var(--muted);
    line-height: 1.8;
}

.account-auth-points {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}

.account-auth-points div {
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fffdfb 0%, #f7efe7 100%);
}

.account-auth-points strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
}

.account-auth-points span {
    color: var(--muted);
    line-height: 1.65;
}

.account-auth-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.account-auth-form .btn {
    width: 100%;
    margin-top: 6px;
}

.account-auth-links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.text-link {
    color: var(--ink);
    font-weight: 600;
}

.account-dashboard-hero .notice {
    margin-top: 20px;
}

.account-tile {
    display: flex;
    flex-direction: column;
}

.account-tile .btn,
.account-tile .ghost {
    width: 100%;
    margin-top: auto;
}

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

.user-list {
    display: grid;
    gap: 14px;
}

.user-row-card {
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
}

.user-row-card img,
.user-avatar-chip {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    background: #eadfd3;
}

.user-avatar-chip {
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
}

.user-row-copy {
    min-width: 0;
}

.user-row-copy strong,
.user-row-copy span,
.user-row-copy small {
    display: block;
}

.user-row-copy strong {
    font-size: 16px;
    font-weight: 600;
}

.user-row-copy span,
.user-row-copy small {
    color: var(--muted);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.admin-color-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-color-chip i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    border: 1px solid var(--line);
    background: var(--white);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.blog-card div {
    padding: 24px;
}

.blog-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.about-shell,
.contact-shell {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    padding: 72px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 320px;
    gap: 26px;
    margin-bottom: 26px;
}

.about-panel,
.about-aside,
.about-value-card,
.premium-contact-card,
.contact-mini-card,
.blog-feature-card,
.blog-post-article,
.blog-post-side-card,
.related-post-card {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(48, 35, 24, .05);
}

.about-panel,
.premium-contact-card,
.blog-post-article {
    padding: 36px;
}

.about-panel h2,
.about-editorial-copy h2,
.about-quote h2,
.contact-form h2,
.contact-info h2,
.blog-post-hero-copy h1 {
    margin: 8px 0 16px;
    font-size: clamp(30px, 3.3vw, 48px);
    font-weight: 500;
    line-height: 1.1;
}

.about-panel p:last-child,
.contact-info p:last-child,
.blog-post-hero-copy > p:last-child {
    color: var(--muted);
    line-height: 1.8;
}

.about-aside {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.about-stat {
    padding: 30px 28px;
    background: linear-gradient(180deg, #fffdfb 0%, #f6eee5 100%);
}

.about-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 600;
}

.about-stat span {
    color: var(--muted);
    line-height: 1.6;
}

.about-editorial {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 26px;
    align-items: stretch;
    margin-bottom: 26px;
}

.about-editorial-copy {
    padding: 42px 38px;
    background: linear-gradient(180deg, #f8f1e8 0%, #f4eadf 100%);
}

.about-editorial-copy p:last-child {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.about-editorial img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 26px;
}

.about-value-card {
    padding: 28px;
}

.about-value-card h3,
.related-post-card h3 {
    margin: 8px 0 10px;
    font-size: 22px;
    font-weight: 500;
}

.about-value-card p:last-child,
.contact-mini-card p,
.blog-feature-body p,
.blog-post-article p {
    color: var(--muted);
    line-height: 1.8;
}

.about-quote {
    padding: 56px 40px;
    background: linear-gradient(135deg, #fbf6ef 0%, #f2e6d7 100%);
    text-align: center;
}

.about-quote h2 {
    max-width: 760px;
    margin: 8px auto 0;
}

.contact-page {
    padding: 0;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 20px;
    height: 100%;
}

.contact-grid-cards {
    display: grid;
    gap: 14px;
}

.contact-mini-card {
    min-height: 132px;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-mini-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.contact-mini-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
}

.contact-mini-card p {
    margin: 0;
}

.contact-info {
    min-height: 0;
}

.contact-info h2 {
    max-width: 560px;
}

.contact-form {
    display: grid;
    align-content: start;
    height: 100%;
}

.contact-form h2 {
    max-width: 650px;
    margin-bottom: 22px;
}

.contact-form .form-grid {
    margin: 0 0 20px;
    gap: 16px;
}

.contact-form .field {
    min-width: 0;
}

.contact-form .field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}

.contact-form input {
    min-height: 48px;
    background: #faf6f1;
}

.contact-form textarea {
    min-height: 142px;
    padding-top: 14px;
    line-height: 1.6;
    background: #faf6f1;
}

.contact-form .btn {
    width: 190px;
    min-width: 0;
    min-height: 50px;
    margin-top: 0;
}

.contact-map-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: #f4ede4;
}

.contact-map-hero-frame {
    position: absolute;
    inset: 0;
}

.contact-map-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(247, 241, 233, .78) 0%, rgba(247, 241, 233, .6) 24%, rgba(247, 241, 233, .18) 48%, rgba(247, 241, 233, 0) 70%),
        linear-gradient(180deg, rgba(255, 252, 248, .18) 0%, rgba(255, 252, 248, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.contact-map-hero-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(.92) contrast(.98);
}

.contact-map-hero-card {
    position: relative;
    z-index: 1;
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    min-height: 520px;
    margin: 0 auto;
    padding: 76px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact-map-hero-card::before {
    content: "";
    position: absolute;
    top: 36px;
    left: -64px;
    bottom: 36px;
    width: min(700px, calc(100% + 64px));
    background: linear-gradient(180deg, rgba(255, 253, 250, .92) 0%, rgba(248, 239, 229, .9) 100%);
    border: 1px solid rgba(222, 207, 191, .92);
    box-shadow: 0 18px 40px rgba(48, 35, 24, .08);
}

.contact-map-hero-card > * {
    position: relative;
    width: min(520px, calc(100% - 32px));
    margin-left: 30px;
    margin-right: 0;
    text-align: center;
}

.contact-map-hero-card h1 {
    max-width: 520px;
    margin: 10px 0 14px;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 500;
    line-height: 1.02;
    text-align: center;
}

.contact-map-hero-card p:not(.eyebrow) {
    max-width: 520px;
    margin-left: 0;
    margin-right: 0;
    color: var(--muted);
    line-height: 1.8;
    text-align: center;
}

.contact-map-hero-card .eyebrow {
    text-align: center;
}

.contact-map-section {
    margin-top: 26px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: stretch;
}

.contact-map-copy {
    padding: 28px 32px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #f8efe5 0%, #fffdfa 100%);
    box-shadow: 0 18px 40px rgba(48, 35, 24, .05);
}

.contact-map-copy h2 {
    margin: 8px 0 0;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 500;
    line-height: 1.2;
}

.contact-map-copy p:last-of-type {
    color: var(--muted);
    line-height: 1.8;
}

.contact-map-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    width: min(520px, calc(100% - 32px));
}

.contact-visit-cta,
.contact-address-card {
    padding: 18px 22px;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid #d9c7b4;
    background: rgba(255, 249, 242, .92);
    color: var(--ink);
    text-align: center;
    box-shadow: 0 14px 30px rgba(70, 50, 30, .08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-hero-badge {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(125, 109, 94, .26);
    background: rgba(255, 255, 255, .55);
    color: #6d5f52;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .8px;
}

.contact-hero-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
    justify-items: center;
}

.contact-visit-cta span,
.contact-address-card span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7d6d5e;
}

.contact-visit-cta strong,
.contact-address-card strong {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
    color: #171310;
}

.contact-hero-copy small {
    color: #8a7b6d;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.contact-address-card p {
    margin: 0;
    color: #8a7b6d;
    line-height: 1.65;
}

.contact-map-frame {
    min-width: 0;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(48, 35, 24, .05);
    overflow: hidden;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.contact-visit-cta:hover {
    transform: translateY(-1px);
    background: #f6eadd;
    box-shadow: 0 18px 34px rgba(70, 50, 30, .12);
}

.blog-hero {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: 920px;
    margin: 0 auto;
    padding: 64px 0 26px;
    text-align: center;
}

.blog-hero-copy h1 {
    margin: 10px 0 12px;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
}

.blog-hero-copy p:last-child {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.8;
}

.premium-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.blog-feature-card {
    overflow: hidden;
}

.blog-feature-image {
    position: relative;
    display: block;
}

.blog-feature-image img {
    width: 100%;
    aspect-ratio: 1 / .82;
    object-fit: cover;
}

.blog-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    min-width: 62px;
    padding: 10px 12px 8px;
    display: grid;
    gap: 2px;
    background: rgba(255, 255, 255, .92);
    text-align: center;
}

.blog-date-badge strong {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

.blog-date-badge small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
}

.blog-tag {
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    min-height: 28px;
    padding: 0 14px;
    display: inline-grid;
    place-items: center;
    background: #e8e0d7;
    color: #2f2923;
    font-size: 12px;
    font-weight: 700;
}

.blog-feature-body {
    padding: 34px 28px 30px;
    text-align: center;
}

.blog-feature-body h2 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.45;
}

.blog-feature-body h2 a,
.related-post-card h3 a {
    color: inherit;
}

.blog-meta-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    color: #ada49a;
    font-size: 13px;
}

.blog-read-more {
    display: inline-block;
    margin-top: 10px;
    color: #6f6256;
    font-weight: 700;
}

.blog-post-hero,
.blog-post-layout {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
}

.blog-post-hero {
    padding: 52px 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
    gap: 28px;
    align-items: center;
}

.blog-post-hero-media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.blog-post-hero-copy {
    padding: 34px 0;
}

.blog-post-layout {
    padding: 24px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
    align-items: start;
}

.blog-post-article p {
    margin: 0 0 18px;
    font-size: 16px;
}

.blog-post-sidebar {
    display: grid;
    gap: 18px;
}

.blog-post-side-card {
    padding: 24px;
}

.blog-post-side-card strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.blog-post-back {
    width: 100%;
}

.related-posts {
    padding-top: 0;
}

.related-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.related-post-card {
    overflow: hidden;
}

.related-post-card img {
    width: 100%;
    aspect-ratio: 1 / .8;
    object-fit: cover;
}

.related-post-card div {
    padding: 24px;
}

.footer {
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-inner {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.25fr .72fr .72fr .72fr;
    gap: 48px;
}

.footer .logo {
    text-align: left;
    font-size: 32px;
}

.footer .brand-logo-image {
    max-height: 58px;
}

.social {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    box-shadow: 0 12px 24px rgba(40, 26, 16, .12);
}

.social-link.instagram {
    background: linear-gradient(135deg, #fd5949, #d6249f 55%, #285aeb);
}

.social-link.pinterest {
    background: #bd081c;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.youtube { background: #ff0000; }
.social-link.linkedin { background: #0a66c2; }
.social-link.whatsapp { background: #25d366; }
.social-link.tiktok,
.social-link.x { background: #111; }

.social-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.footer h4 {
    margin: 0 0 18px;
    font-size: 11px;
    letter-spacing: 1px;
}

input,
textarea,
select {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    background: #f8f1ea;
    padding: 0 14px;
    color: var(--ink);
}

.file-input {
    padding: 12px 14px;
    background: #fffaf5;
}

.file-input::file-selector-button {
    margin-right: 12px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: #f3e8dc;
    color: var(--ink);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

textarea {
    min-height: 94px;
    padding-top: 12px;
    resize: vertical;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin: 0 0 10px;
    color: var(--muted);
}

.footer li a {
    color: inherit;
}

.footer li a:hover,
.footer-bottom a:hover {
    color: var(--ink);
}

.footer-bottom {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 20px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-bottom span:last-child {
    line-height: 1.8;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
}

.footer-legal-links a + a::before {
    content: "|";
    margin-right: 12px;
    color: var(--line);
}

.admin-body {
    min-height: 100vh;
    background: linear-gradient(90deg, #f4ece2 0, #fffbf7 45%, #f7efe7 100%);
    overflow-x: hidden;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 310px;
    padding: 48px 20px 28px;
    display: flex;
    flex-direction: column;
    background: #f7efe7;
    border-right: 1px solid var(--line);
    z-index: 41;
    overflow-y: auto;
}

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

.admin-brand {
    margin: 0 0 54px 54px;
    font-size: 40px;
}

.admin-sidebar-close {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fffaf5;
    color: var(--ink);
    place-items: center;
    cursor: pointer;
    flex: 0 0 40px;
}

.admin-sidebar-close svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.admin-menu {
    display: grid;
    gap: 8px;
}

.admin-menu a,
.admin-exit {
    min-height: 54px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 5px;
    color: var(--ink);
    font-weight: 500;
}

.admin-menu a.active,
.admin-menu a:hover {
    background: #ede3d7;
}

.admin-menu span {
    margin-left: auto;
    min-width: 28px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #e5d9cc;
    font-size: 12px;
}

.admin-exit {
    margin-top: auto;
}

.admin-main {
    margin-left: 310px;
    padding: 42px 42px 28px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.database-emergency-alert {
    margin: 18px 24px 0;
    padding: 16px 18px;
    display: grid;
    gap: 5px;
    border: 1px solid #b34235;
    background: #fff0ed;
    color: #7d251d;
    box-shadow: 0 10px 26px rgba(125, 37, 29, .1);
}

.database-emergency-alert strong {
    font-size: 14px;
}

.database-emergency-alert span,
.database-emergency-alert small {
    overflow-wrap: anywhere;
}

.admin-dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
}

.admin-mobile-toggle,
.admin-mobile-overlay {
    display: none;
}

.admin-mobile-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fffaf5;
    color: var(--ink);
    place-items: center;
    cursor: pointer;
    flex: 0 0 44px;
}

.admin-mobile-toggle svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.9;
}

.admin-dashboard-top h1 {
    margin: 0 0 4px;
    font-size: 30px;
    font-weight: 500;
}

.admin-dashboard-top p {
    margin: 0;
    color: var(--muted);
}

.admin-top-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-profile {
    display: grid;
    grid-template-columns: 54px auto;
    column-gap: 12px;
    align-items: center;
}

.admin-profile img {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #e9ddd0;
}

.admin-profile small {
    color: var(--muted);
}

.date-pill {
    width: fit-content;
    min-height: 42px;
    margin: 28px 0 12px auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 250, 245, .75);
}

.dashboard-shell {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.date-pill svg {
    width: 18px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    min-width: 0;
}

.metric-card,
.dash-panel,
.panel {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 250, 245, .72);
    box-shadow: 0 20px 60px rgba(70, 54, 38, .04);
}

.metric-card {
    min-height: 130px;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.metric-card span,
.metric-card small {
    color: var(--muted);
}

.metric-card strong {
    display: block;
    margin: 3px 0;
    font-size: 28px;
    font-weight: 500;
}

.metric-card > svg {
    width: 56px;
    height: 56px;
    padding: 15px;
    border-radius: 50%;
    background: #eadfd3;
}

.reports-hero {
    min-height: 0;
    margin-bottom: 20px;
    padding: 30px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 320px;
    gap: 24px;
    align-items: end;
    background: linear-gradient(135deg, rgba(255, 250, 245, .84), rgba(244, 234, 223, .88));
}

.reports-hero h2 {
    margin: 8px 0 12px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.12;
}

.reports-hero p:last-child {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

.reports-hero-meta {
    display: grid;
    gap: 12px;
}

.reports-hero-meta span {
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .64);
    color: var(--muted);
}

.reports-hero-meta strong {
    display: block;
    margin-top: 5px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 600;
}

.reports-grid {
    display: grid;
    grid-template-columns: 1.55fr .92fr;
    gap: 20px;
}

.report-card {
    background: linear-gradient(180deg, rgba(255, 250, 245, .86), rgba(248, 239, 230, .72));
}

.report-card strong {
    font-size: 34px;
}

.report-graph-panel {
    overflow: hidden;
}

.report-chart {
    margin-top: 8px;
}

.reports-mini-stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.reports-mini-stats div,
.report-summary-card {
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
}

.reports-mini-stats span,
.report-summary-card span,
.report-order-row span,
.report-order-row small,
.report-status-copy span {
    color: var(--muted);
}

.reports-mini-stats strong,
.report-summary-card strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    font-weight: 600;
}

.report-side-panel {
    min-height: 100%;
}

.report-status-list,
.report-order-list {
    display: grid;
    gap: 14px;
}

.report-status-item {
    display: grid;
    gap: 10px;
}

.report-status-copy {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
}

.report-status-copy strong,
.report-order-row strong {
    font-size: 14px;
}

.report-status-bar {
    height: 8px;
    border-radius: 999px;
    background: #efe4d8;
    overflow: hidden;
}

.report-status-bar i {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, #171511, #a78d70);
}

.report-order-row {
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .54);
}

.report-order-row strong,
.report-order-row b {
    display: block;
}

.report-order-row b {
    font-size: 16px;
    text-align: right;
}

.report-order-row small {
    display: block;
    margin-top: 4px;
    text-align: right;
}

.report-wide-panel {
    grid-column: 1 / -1;
}

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

.report-summary-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1fr;
    gap: 20px;
    min-width: 0;
}

.dash-panel {
    padding: 24px;
    min-width: 0;
}

.dash-panel h2,
.panel h2 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
}

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

.panel-head button,
.panel-head a {
    min-height: 36px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fbf4ec;
}

.sales-panel,
.orders-panel {
    grid-column: span 2;
}

.legend {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 12px;
}

.dot {
    width: 14px;
    height: 7px;
    border-radius: 50%;
}

.dot.black {
    background: var(--ink);
}

.dot.beige {
    background: var(--gold);
}

.line-chart svg {
    width: 100%;
    height: 260px;
}

.line-chart-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.grid-line {
    fill: none;
    stroke: #eadfd4;
    stroke-width: 1;
}

.line {
    fill: none;
    stroke-width: 3;
}

.line.now {
    stroke: var(--ink);
}

.line.old {
    stroke: var(--gold);
}

.chart-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    color: var(--muted);
    font-size: 12px;
}

.dashboard-order-cards {
    display: none;
}

.dashboard-order-card {
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
}

.dashboard-order-card + .dashboard-order-card {
    margin-top: 12px;
}

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

.dashboard-order-head strong,
.dashboard-order-meta strong {
    font-size: 14px;
}

.dashboard-order-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-order-meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.donut-wrap {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    align-items: center;
}

.donut {
    width: 188px;
    height: 188px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 50%;
    background: conic-gradient(#dcccb9 0 33%, #eee4d8 33% 78%, #1a1815 78% 94%, #cdbda9 94% 100%);
    position: relative;
}

.donut::after {
    content: "";
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    background: var(--white);
}

.donut strong,
.donut span {
    position: relative;
    z-index: 1;
}

.donut strong {
    font-size: 28px;
    font-weight: 500;
}

.status-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.status-list li {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--muted);
}

.status-list li span {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: #cbb9a4;
}

.status-list small {
    grid-column: 2;
}

.mini-product,
.review-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 13px;
}

.mini-product img,
.review-item img {
    width: 58px;
    height: 58px;
    border-radius: 4px;
    object-fit: cover;
    background: #eee7df;
}

.mini-product strong,
.review-item strong {
    display: block;
    font-size: 13px;
}

.mini-product span,
.review-item p,
.review-item small {
    color: var(--muted);
}

.mini-product b {
    font-size: 18px;
    font-weight: 600;
}

.review-item {
    grid-template-columns: 58px 1fr;
    align-items: start;
}

.stars {
    color: #f2ae3f;
    letter-spacing: 2px;
}

.review-item p {
    margin: 2px 0;
    line-height: 1.4;
}

.dashboard-reviews {
    display: grid;
    gap: 12px;
}

.dashboard-review-card {
    margin-bottom: 0;
}

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

.table th,
.table td {
    padding: 13px 10px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.table th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.status-badge {
    display: inline-grid;
    min-width: 78px;
    min-height: 28px;
    place-items: center;
    border-radius: 5px;
    background: #efe5da;
    font-size: 12px;
}

.orders-table td {
    vertical-align: middle;
}

.order-progress-form {
    display: grid;
    grid-template-columns: auto minmax(150px, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.order-progress-form select {
    min-height: 38px;
    background: #fffaf5;
}

.order-step-btn {
    min-width: 0;
    min-height: 38px;
    padding: 0 14px;
}

.order-step-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

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

.order-mobile-card {
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
}

.order-mobile-card + .order-mobile-card {
    margin-top: 14px;
}

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

.order-mobile-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.order-mobile-meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.order-mobile-head strong,
.order-mobile-meta strong {
    font-size: 14px;
}

.admin-editor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.panel {
    padding: 24px;
}

.panel.full {
    grid-column: 1 / -1;
}

.admin-section-note {
    margin: 8px 0 0;
    color: var(--muted);
}

.form-grid,
.inline-editor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.inline-editor {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

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

.field label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.panel .btn,
.inline-editor .btn {
    margin-top: 6px;
}

.product-admin-form,
.variation-admin-form {
    margin-top: 18px;
}

.category-admin-form,
.blog-admin-form {
    margin-top: 18px;
}

.product-admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 340px;
    gap: 24px;
}

.category-admin-layout,
.blog-admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 320px;
    gap: 24px;
}

.product-admin-main,
.product-admin-side,
.product-state-card,
.product-variation-picker,
.product-media-block,
.variation-card,
.category-admin-main,
.category-preview-card,
.blog-admin-main,
.blog-preview-card,
.category-admin-card,
.blog-admin-card {
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .7);
}

.product-admin-main,
.product-state-card,
.product-variation-picker,
.product-media-block,
.category-admin-main,
.category-preview-card,
.blog-admin-main,
.blog-preview-card {
    padding: 22px;
}

.product-admin-side {
    padding: 0;
    display: grid;
    gap: 18px;
    border: 0;
    background: transparent;
}

.category-admin-side,
.blog-admin-side {
    display: grid;
    align-content: start;
}

.product-media-block {
    margin-top: 20px;
}

.product-gallery-preview {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.product-gallery-preview img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--cream);
}

.product-state-card {
    display: grid;
    gap: 16px;
}

.product-state-card label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.product-variation-picker h3 {
    margin: 0 0 18px;
    font-size: 18px;
}

.variation-picker-group + .variation-picker-group {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.variation-picker-group strong {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.variation-picker-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-pill {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
}

.variation-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.variation-pill i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
}

.variation-pill.active,
.variation-pill:has(input:checked) {
    border-color: var(--ink);
    background: #f1e7dc;
}

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

.admin-table-actions form {
    margin: 0;
}

.variation-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.variation-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.variation-groups {
    display: grid;
    gap: 26px;
    margin-top: 18px;
}

.variation-group-section {
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.variation-group-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.variation-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.variation-group-head h3 {
    margin: 4px 0 0;
    font-size: 24px;
    font-weight: 500;
}

.variation-group-count {
    min-height: 32px;
    padding: 0 14px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #f3e9dd;
    font-size: 12px;
    font-weight: 700;
}

.variation-card {
    padding: 20px;
    box-shadow: 0 18px 40px rgba(62, 45, 30, .05);
}

.variation-card-top,
.variation-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.variation-category-badge,
.variation-usage {
    min-height: 28px;
    padding: 0 12px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #efe5da;
    font-size: 11px;
    font-weight: 700;
}

.variation-usage {
    background: #f7efe6;
    color: var(--muted);
}

.variation-card-value {
    margin: 18px 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.variation-card-value i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
}

.variation-card-value strong {
    font-size: 22px;
    font-weight: 500;
}

.variation-card small {
    color: var(--muted);
}

.variation-card-actions {
    margin-top: 18px;
    justify-content: flex-start;
}

.category-preview-card,
.blog-preview-card {
    display: grid;
    gap: 16px;
}

.category-preview-card strong,
.blog-preview-card strong {
    font-size: 18px;
}

.category-preview-card img,
.blog-preview-card img {
    width: 100%;
    aspect-ratio: 1 / .9;
    object-fit: cover;
    background: var(--cream);
}

.category-preview-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    border: 1px dashed var(--line);
    color: var(--muted);
    background: #fcf7f1;
}

.category-card-grid,
.blog-admin-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.category-admin-card,
.blog-admin-card {
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(62, 45, 30, .05);
}

.category-admin-card img,
.blog-admin-card img {
    width: 100%;
    aspect-ratio: 1 / .8;
    object-fit: cover;
    background: var(--cream);
}

.category-admin-card-body,
.blog-admin-card-body {
    padding: 20px;
}

.category-admin-card-top,
.blog-admin-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.category-admin-card-top strong,
.blog-admin-card-top strong {
    font-size: 20px;
    font-weight: 500;
}

.category-admin-card-top span,
.blog-admin-card-top span {
    min-height: 26px;
    padding: 0 10px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #efe5da;
    font-size: 11px;
    font-weight: 700;
}

.category-admin-card-body small,
.blog-admin-card-body small,
.category-admin-card-body p,
.blog-admin-card-body p {
    color: var(--muted);
}

.category-admin-card-body p,
.blog-admin-card-body p {
    margin: 12px 0 18px;
}

.editor-toolbar {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.editor-toolbar .ghost {
    min-height: 34px;
    padding: 0 12px;
}

.editor-textarea {
    min-height: 320px;
    padding-top: 14px;
    line-height: 1.8;
}

.toggle-field {
    min-height: 74px;
    width: 100%;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    background: #fffaf5;
}

.switch-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch-ui {
    display: block;
    position: relative;
    width: 52px;
    height: 30px;
    border-radius: 999px;
    background: #e7dbcf;
    transition: background .2s ease;
    flex: 0 0 auto;
}

.switch-ui::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(40, 28, 17, .12);
    transition: transform .2s ease;
}

.toggle-copy b,
.toggle-copy small {
    display: block;
}

.toggle-copy {
    min-width: 0;
    align-self: center;
}

.toggle-copy b {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 2px;
}

.toggle-copy small {
    color: var(--muted);
    line-height: 1.45;
}

.toggle-compact .toggle-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.field > .toggle-field {
    margin-bottom: 0;
}

.toggle-field:has(.switch-input:checked) .switch-ui {
    background: #171511;
}

.toggle-field:has(.switch-input:checked) .switch-ui::after {
    transform: translateX(22px);
}

.toggle-field:has(.switch-input:checked) {
    border-color: #d8c4ae;
    background: #f4eadf;
}

.soft-toggle {
    border-radius: 12px;
}

.toggle-compact {
    max-width: 324px;
}

.content-admin-layout,
.banner-admin-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
    margin-top: 18px;
}

.content-admin-nav {
    display: grid;
    gap: 10px;
    align-content: start;
}

.content-admin-link {
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .7);
}

.content-admin-link strong,
.content-admin-link small {
    display: block;
}

.content-admin-link small {
    color: var(--muted);
    margin-top: 4px;
}

.content-admin-link.active {
    border-color: #d5c1ab;
    background: #f3e9dd;
}

.content-admin-form,
.banner-admin-form {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 320px;
    gap: 24px;
}

.content-admin-main,
.content-preview-card,
.banner-admin-main,
.banner-preview-card,
.banner-admin-card {
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .7);
}

.content-admin-main,
.content-preview-card,
.banner-admin-main,
.banner-preview-card {
    padding: 22px;
}

.content-preview-card,
.banner-preview-card {
    display: grid;
    gap: 16px;
    align-content: start;
}

.content-preview-card img,
.banner-preview-card img {
    width: 100%;
    aspect-ratio: 1 / .82;
    object-fit: cover;
    background: var(--cream);
}

.compact-editor {
    min-height: 260px;
}

.rich-editor {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.rich-editor-toolbar {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    background: #f8f1e9;
}

.rich-editor-toolbar button,
.rich-editor-toolbar select {
    min-height: 36px;
    padding: 0 11px;
    border: 1px solid #ddcfc1;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 12px;
    cursor: pointer;
}

.rich-editor-toolbar button:hover,
.rich-editor-toolbar button:focus-visible,
.rich-editor-toolbar select:focus-visible {
    border-color: var(--ink);
    outline: none;
}

.rich-editor-surface,
.rich-editor-preview {
    min-height: 420px;
    max-height: 680px;
    padding: 24px;
    overflow-y: auto;
    line-height: 1.75;
    outline: none;
}

.rich-editor-surface:focus {
    box-shadow: inset 0 0 0 2px rgba(23, 21, 17, .08);
}

.rich-editor-surface h2,
.rich-editor-preview h2 {
    margin: 28px 0 10px;
    font-size: 26px;
}

.rich-editor-surface p,
.rich-editor-preview p {
    margin: 0 0 14px;
}

.rich-editor-preview {
    background: #fffdf9;
}

.editor-help {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    line-height: 1.6;
}

.banner-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.banner-admin-card {
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(62, 45, 30, .05);
}

.banner-admin-card img {
    width: 100%;
    aspect-ratio: 1 / .62;
    object-fit: cover;
    background: var(--cream);
}

.banner-admin-card-body {
    padding: 18px;
}

.banner-admin-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.banner-admin-card-top strong {
    font-size: 18px;
    font-weight: 500;
}

.banner-admin-card-top span {
    min-height: 26px;
    padding: 0 10px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #efe5da;
    font-size: 11px;
    font-weight: 700;
}

.banner-admin-card-body p {
    margin: 10px 0 0;
    color: var(--muted);
}

.banner-admin-card.active {
    border-color: #d5c1ab;
    background: #f3e9dd;
}

.settings-admin-form {
    margin-top: 18px;
}

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

.settings-section-card {
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .7);
}

.settings-section-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 500;
}

.settings-save-row {
    margin-top: 20px;
}

.ghost {
    min-height: 38px;
    padding: 0 14px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fbf4ec;
    cursor: pointer;
}

.thumb {
    width: 58px;
    height: 58px;
    object-fit: cover;
    background: var(--cream);
}

.notice,
.error {
    margin: 18px 0;
    padding: 12px 14px;
    background: #edf5ee;
    border: 1px solid #c8dec9;
    border-radius: 5px;
}

.error {
    background: #fff0ef;
    border-color: #e8beb9;
}

.login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login .panel {
    width: min(430px, 100%);
}

.admin-logo-wrap {
    margin-bottom: 14px;
}

.admin-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 54px;
}

.admin-logo .brand-logo-image {
    max-height: 54px;
    max-width: 240px;
}

.admin-logo-subtitle {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.settings-logo-preview {
    min-height: 90px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .78);
}

.settings-logo-preview img {
    width: auto;
    max-width: min(260px, 100%);
    max-height: 58px;
    object-fit: contain;
}

@media (max-width: 1180px) {
    .admin-body.admin-menu-open {
        overflow: hidden;
    }

    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(310px, 84vw);
        padding: 28px 18px 24px;
        z-index: 45;
        transform: translateX(-104%);
        transition: transform .28s ease;
        box-shadow: 24px 0 60px rgba(30, 22, 16, .14);
        background: #fbf6f0;
    }

    .admin-brand {
        margin: 0 0 26px;
        font-size: 32px;
    }

    .admin-sidebar-close {
        display: inline-grid;
    }

    .admin-menu {
        grid-template-columns: 1fr;
    }

    .admin-exit {
        margin-top: 16px;
    }

    .admin-main {
        margin-left: 0;
        padding: 24px;
    }

    .admin-dashboard-top {
        align-items: flex-start;
        gap: 18px;
    }

    .admin-mobile-toggle {
        display: inline-grid;
    }

    .admin-mobile-overlay {
        position: fixed;
        inset: 0;
        display: block;
        background: rgba(20, 15, 11, .36);
        opacity: 0;
        visibility: hidden;
        transition: opacity .24s ease, visibility .24s ease;
        z-index: 44;
    }

    .admin-body.admin-menu-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-body.admin-menu-open .admin-mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

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

    .reports-grid,
    .reports-hero,
    .report-summary-band {
        grid-template-columns: 1fr;
    }

    .side-panel {
        grid-column: span 1;
    }
}

@media (max-width: 980px) {
    .shop-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-categories-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    :root {
        --page-gutter: 24px;
    }

    .header {
        min-height: 0;
        padding: 22px 24px 12px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .nav,
    .tools,
    .search-tool,
    .menu-tool {
        justify-content: center;
        gap: 14px;
    }

    .menu-tool {
        display: flex;
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
    }

    .search-tool {
        grid-column: 3;
        grid-row: 1;
        justify-content: flex-end;
    }

    .tools,
    .nav {
        display: none;
    }

    .search-drawer-inner {
        width: calc(100% - 48px);
    }

    .logo,
    .nav,
    .tools,
    .search-tool,
    .menu-tool {
        grid-row: 1;
    }

    .logo {
        grid-column: 2;
        font-size: 34px;
    }

    .brand-logo-image {
        max-height: 62px;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(20, 15, 11, .26);
        opacity: 0;
        visibility: hidden;
        transition: opacity .24s ease, visibility .24s ease;
        z-index: 29;
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(320px, 86vw);
        padding: 22px 18px 26px;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        align-content: stretch;
        gap: 20px;
        background: rgba(255, 250, 245, .98);
        border-right: 1px solid var(--line);
        box-shadow: 24px 0 60px rgba(30, 22, 16, .14);
        transform: translateX(-104%);
        transition: transform .28s ease;
        z-index: 30;
    }

    .header-wrap.menu-active .mobile-menu {
        transform: translateX(0);
    }

    .header-wrap.menu-active .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .mobile-menu-head strong {
        font-size: 22px;
        font-weight: 500;
    }

    body:not(.admin-body) .mobile-menu-close {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 50%;
    }

    .mobile-menu-close svg {
        width: 22px;
        height: 22px;
        stroke-width: 1.6;
    }

    .mobile-menu-nav,
    .mobile-menu-tools {
        display: grid;
        gap: 10px;
    }

    .mobile-menu-nav {
        align-content: start;
        overflow-y: auto;
    }

    .mobile-menu-tools {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 16px;
        border-top: 1px solid var(--line);
    }

    .mobile-menu-nav a,
    .mobile-menu-tools a {
        min-height: 52px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        gap: 14px;
        border: 1px solid var(--line);
        background: #fffaf5;
        font-weight: 600;
    }

    .mobile-menu-nav a.active {
        background: #f3e9dd;
        border-color: #d9c7b4;
    }

    .mobile-menu-tools svg {
        width: 20px;
        height: 20px;
        stroke-width: 1.7;
    }

    .mobile-menu-tools a {
        min-width: 0;
        min-height: 68px;
        padding: 9px 4px;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        text-align: center;
    }

    .mobile-menu-tools a span {
        max-width: 100%;
        font-size: 10px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .hero,
    .hero-slider {
        height: 560px;
    }

    .hero-copy {
        width: min(74%, 520px);
        padding: 52px 28px;
    }

    .benefits,
    .category-grid,
    .shop-products,
    .footer-inner,
    .blog-grid,
    .reports-mini-stats {
        grid-template-columns: 1fr 1fr;
    }

    .products {
        padding: 0 12px;
        gap: 20px;
    }

    .products .product {
        flex-basis: calc((100% - 20px) / 2);
    }

    .arrow {
        display: none;
    }

    .story,
    .shop-layout,
    .contact-page,
    .cart-layout,
    .checkout-grid,
    .product-detail,
    .product-gallery,
    .about-intro,
    .about-editorial,
    .blog-post-hero,
    .blog-post-layout,
    .product-admin-layout,
    .category-admin-layout,
    .blog-admin-layout,
    .content-admin-layout,
    .content-admin-form,
    .banner-admin-layout,
    .banner-admin-form {
        grid-template-columns: 1fr;
    }

    .shop-results-head,
    .filter-actions,
    .price-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .product-thumbs {
        grid-template-columns: repeat(4, 1fr);
        order: 2;
    }

    .product-main-image {
        order: 1;
    }

    .cart-item {
        grid-template-columns: 78px 1fr;
        gap: 14px;
    }

    .cart-item strong,
    .cart-item label,
    .cart-item .ghost {
        grid-column: 2;
    }

    .cart-item strong {
        justify-self: flex-start;
    }

    .cart-item label,
    .cart-item .ghost {
        width: min(220px, 100%);
    }
}

@media (max-width: 720px) {
    :root {
        --page-gutter: 20px;
    }

    .shop-categories {
        padding-top: 44px;
    }

    .shop-categories-heading {
        margin-bottom: 20px;
    }

    .shop-categories-heading > p {
        font-size: 14px;
    }

    .shop-category-grid {
        width: calc(100% + 20px);
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(230px, 78vw);
        gap: 12px;
        padding-right: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .shop-category-grid::-webkit-scrollbar {
        display: none;
    }

    .shop-category-card {
        min-height: 270px;
        scroll-snap-align: start;
    }

    .shop-category-card:hover,
    .shop-category-card.active {
        transform: none;
    }

    .benefits,
    .category-grid,
    .form-grid,
    .inline-editor,
    .admin-editor-grid,
    .dashboard-grid,
    .metric-grid,
    .blog-grid,
    .admin-menu,
    .users-admin-grid,
    .account-auth-grid,
    .account-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding: 36px 0 32px;
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }

    .footer .logo {
        font-size: clamp(20px, 6vw, 27px);
        letter-spacing: 2px;
        overflow-wrap: anywhere;
    }

    .footer p {
        font-size: 14px;
        line-height: 1.7;
    }

    .footer h4 {
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 1.4;
    }

    .footer li {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .footer li a {
        display: inline-block;
        padding: 3px 0;
    }

    .social {
        gap: 10px;
        margin-top: 18px;
        flex-wrap: wrap;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .footer-bottom {
        padding: 20px 0 24px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        font-size: 13px;
        line-height: 1.65;
        justify-items: center;
        text-align: center;
    }

    .footer-bottom span:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 10px;
        justify-content: center;
    }

    .footer-legal-links a + a::before {
        display: none;
    }

    .footer-bottom span:last-child a {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    input,
    textarea,
    select {
        font-size: 16px;
    }

    .text-page,
    .contact-page {
        padding: 42px 0;
    }

    .rich-text-content p,
    .rich-text-content li {
        font-size: 15px;
        line-height: 1.75;
    }

    .utility-page {
        padding-top: 36px;
        padding-bottom: 48px;
    }

    .empty-state {
        padding: 30px 20px;
    }

    .shop-layout > *,
    .product-detail > *,
    .cart-layout > *,
    .checkout-grid > *,
    .contact-page > * {
        min-width: 0;
    }

    .product h3,
    .footer li a,
    .footer-legal-links a {
        overflow-wrap: anywhere;
    }

    .contact-form .btn {
        width: 100%;
    }

    .contact-mini-card {
        min-height: 0;
        padding: 22px 20px;
    }

    .admin-dashboard-top {
        flex-wrap: wrap;
    }

    .admin-dashboard-top > div:first-of-type {
        flex: 1 1 calc(100% - 62px);
    }

    .admin-top-tools {
        width: 100%;
        justify-content: flex-end;
        gap: 14px;
    }

    .admin-profile {
        grid-template-columns: 44px auto;
        column-gap: 10px;
    }

    .admin-profile img {
        width: 44px;
        height: 44px;
    }

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

    .product-mobile-back {
        display: inline-grid;
    }

    .shop-results-head {
        flex-direction: row;
        align-items: center;
    }

    .shop-results-tools {
        margin-left: auto;
        gap: 10px;
    }

    .shop-results-tools span {
        display: none;
    }

    .shop-filter-trigger {
        width: 42px;
        height: 42px;
        display: inline-grid;
        place-items: center;
        border: 1px solid var(--line);
        background: #fffaf5;
        color: var(--ink);
    }

    .shop-filter-trigger svg {
        width: 18px;
        height: 18px;
        stroke-width: 1.8;
    }

    .shop-layout {
        position: relative;
    }

    .shop-filter-overlay {
        position: fixed;
        inset: 0;
        background: rgba(20, 15, 11, .26);
        opacity: 0;
        visibility: hidden;
        transition: opacity .24s ease, visibility .24s ease;
        z-index: 39;
        display: block;
    }

    .shop-filter {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(340px, 92vw);
        padding: 18px 18px 24px;
        overflow-y: auto;
        transform: translateX(104%);
        transition: transform .28s ease;
        z-index: 40;
    }

    .shop-filter-mobile-head {
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .shop-filter-mobile-head strong {
        font-size: 20px;
        font-weight: 500;
    }

    .shop-layout.filter-open .shop-filter {
        transform: translateX(0);
    }

    .shop-layout.filter-open .shop-filter-overlay {
        opacity: 1;
        visibility: visible;
    }

    .variation-admin-grid,
    .variation-list-grid,
    .product-gallery-preview,
    .category-card-grid,
    .blog-admin-card-grid,
    .banner-card-grid,
    .settings-grid,
    .reports-mini-stats,
    .report-summary-band {
        grid-template-columns: 1fr;
    }

    .admin-table-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .products {
        padding: 0 8px;
        gap: 16px;
    }

    .products .product {
        flex-basis: min(86%, 320px);
    }

    .field.full,
    .panel.full,
    .sales-panel,
    .orders-panel {
        grid-column: auto;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        padding: 48px 22px 44px;
        background: linear-gradient(90deg, rgba(251, 247, 241, .92), rgba(251, 247, 241, .2));
    }

    .hero h1,
    .page-hero h1,
    .story h2,
    .blog-post-hero-copy h1 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .section,
    .text-page,
    .contact-page,
    .utility-page,
    .about-shell,
    .contact-shell,
    .blog-post-hero,
    .blog-post-layout,
    .blog-hero {
        width: calc(100% - 40px);
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .shop-products {
        gap: 16px;
    }

    .checkout-card {
        padding: 22px;
    }

    .checkout-summary-item {
        grid-template-columns: 62px 1fr;
        align-items: start;
    }

    .checkout-summary-item b {
        grid-column: 2;
    }

    .search-inline-form,
    .search-result-card {
        grid-template-columns: 1fr;
    }

    .account-auth-copy,
    .account-auth-form-card,
    .account-dashboard-hero,
    .account-tile {
        padding: 24px;
    }

    .site-auth-panel {
        padding: 22px 18px 18px;
    }

    .site-auth-brand {
        font-size: 40px;
        margin-bottom: 18px;
    }

    .site-auth-actions,
    .site-auth-links {
        flex-direction: column;
        align-items: stretch;
    }

    .site-auth-actions .btn,
    .site-auth-actions .ghost,
    .site-auth-links .ghost,
    .site-auth-links .text-link {
        width: 100%;
        min-width: 0;
        text-align: center;
        justify-content: center;
    }

    .account-auth-links {
        flex-direction: column;
        align-items: stretch;
    }

    .account-auth-links .ghost,
    .account-auth-links .text-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .search-drawer-inner {
        width: calc(100% - 40px);
        padding: 14px;
    }

    .search-submit,
    .search-close,
    .search-inline-form .btn,
    .search-inline-form .ghost {
        width: 100%;
    }

    .search-inline-form {
        gap: 10px;
    }

    .search-input-wrap {
        min-height: 48px;
        padding: 0 14px;
        gap: 10px;
    }

    .search-input-wrap input {
        min-height: 46px;
        font-size: 14px;
    }

    .search-inline-icon svg {
        width: 18px;
        height: 18px;
    }

    .search-submit,
    .search-close {
        min-height: 46px;
    }

    .search-results {
        margin-top: 12px;
        gap: 10px;
    }

    .search-hint,
    .search-empty {
        padding: 6px 2px 0;
        font-size: 12px;
    }

    .product-summary {
        padding: 22px;
    }

    .product-summary h1 {
        font-size: 32px;
    }

    .product-gallery {
        gap: 12px;
    }

    .product-thumbs {
        gap: 8px;
        grid-template-columns: repeat(4, 1fr);
    }

    .story {
        width: calc(100% - 40px);
    }

    .story-copy,
    .page-hero > div {
        padding: 42px 24px;
    }

    .contact-map-hero {
        min-height: 420px;
    }

    .contact-map-hero-card {
        min-height: 420px;
        padding: 46px 0;
    }

    .contact-map-hero-card::before {
        top: 20px;
        bottom: 20px;
        left: -24px;
        width: min(560px, calc(100% + 24px));
    }

    .contact-map-hero-card > * {
        width: min(480px, calc(100% - 20px));
        margin-left: 24px;
    }

    .category {
        height: 250px;
    }

    .category-copy {
        padding: 32px 24px;
    }

    .category h3 {
        font-size: 24px;
    }

    .about-panel,
    .premium-contact-card,
    .blog-post-article,
    .blog-feature-body,
    .related-post-card div {
        padding: 24px;
    }

    .about-values,
    .premium-blog-grid,
    .related-post-grid {
        grid-template-columns: 1fr;
    }

    .contact-page,
    .contact-page > *,
    .contact-stack,
    .contact-grid-cards,
    .contact-mini-card,
    .contact-form,
    .contact-map-hero-card,
    .contact-map-section,
    .contact-map-copy,
    .contact-map-actions,
    .contact-map-frame,
    .contact-visit-cta,
    .contact-address-card {
        min-width: 0;
    }

    .contact-mini-card strong,
    .contact-mini-card p,
    .contact-info p,
    .contact-form h2,
    .contact-map-hero-card h1,
    .contact-map-hero-card p,
    .contact-map-copy h2,
    .contact-visit-cta strong,
    .contact-hero-copy small,
    .contact-address-card strong,
    .contact-address-card p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

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

    .category-admin-card {
        min-width: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .category-admin-card-body {
        min-width: 0;
        padding: 16px;
        display: flex;
        flex: 1;
        flex-direction: column;
    }

    .category-admin-card-top {
        display: grid;
        gap: 8px;
    }

    .category-admin-card-top strong {
        font-size: 16px;
        line-height: 1.3;
        word-break: break-word;
    }

    .category-admin-card-top span {
        justify-self: flex-start;
    }

    .category-admin-card-body small {
        font-size: 12px;
    }

    .category-admin-card-body p {
        margin: 10px 0 14px;
        font-size: 14px;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }

    .category-admin-card-body .ghost {
        width: 100%;
        margin-top: auto;
        justify-content: center;
        text-align: center;
    }

    .contact-map-section {
        grid-template-columns: 1fr;
    }

    .contact-map-hero {
        min-height: 380px;
    }

    .contact-map-hero-card {
        min-height: 380px;
        padding: 26px 0;
    }

    .contact-map-hero-card::before {
        top: 14px;
        bottom: 14px;
        left: -4px;
        width: calc(100% + 8px);
    }

    .contact-map-hero-card > * {
        width: calc(100% - 12px);
        margin-left: auto;
        margin-right: auto;
    }

    .contact-map-hero-card h1 {
        max-width: 280px;
        font-size: clamp(34px, 9vw, 44px);
    }

    .contact-map-hero-card p:not(.eyebrow) {
        max-width: 260px;
        font-size: 14px;
    }

    .contact-map-actions {
        grid-template-columns: 1fr;
    }

    .contact-visit-cta,
    .contact-address-card {
        width: 100%;
        min-width: 0;
    }

    .contact-visit-cta,
    .contact-address-card {
        gap: 10px;
    }

    .footer-bottom,
    .admin-dashboard-top,
    .admin-top-tools {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .product-admin-form,
    .category-admin-form,
    .blog-admin-form {
        margin-top: 14px;
    }

    .product-admin-main,
    .product-state-card,
    .product-variation-picker,
    .product-media-block,
    .category-admin-main,
    .category-preview-card,
    .blog-admin-main,
    .blog-preview-card,
    .panel {
        padding: 18px;
    }

    .product-admin-side {
        gap: 14px;
    }

    .product-media-block {
        margin-top: 14px;
    }

    .product-gallery-preview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .product-state-card {
        gap: 12px;
    }

    .product-state-card .btn {
        width: 100%;
        margin-top: 2px;
    }

    .product-variation-picker h3 {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .variation-picker-group + .variation-picker-group {
        margin-top: 14px;
        padding-top: 14px;
    }

    .variation-picker-options {
        gap: 8px;
    }

    .variation-pill {
        min-height: 38px;
        padding: 0 12px;
        font-size: 13px;
    }

    .field label {
        margin-bottom: 5px;
    }

    .field input,
    .field select,
    .field textarea,
    .file-input {
        font-size: 14px;
    }

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

    .admin-section-note {
        font-size: 13px;
        line-height: 1.55;
    }

    .footer-bottom {
        padding: 18px 0 26px;
    }

    .donut-wrap {
        grid-template-columns: 1fr;
    }

    .table {
        min-width: 680px;
    }

    .orders-panel,
    .panel.full {
        overflow-x: auto;
    }
}

/* Header logosundaki kare görsel boşluğunu gizleyerek gerçek logoyu büyütür. */
.header .logo:has(.brand-logo-image) {
    width: 210px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header .logo .brand-logo-image {
    width: 210px;
    max-width: none;
    max-height: none;
    height: auto;
    flex: 0 0 auto;
}

@media (max-width: 980px) {
    .header .logo:has(.brand-logo-image) {
        width: 176px;
        height: 62px;
    }

    .header .logo .brand-logo-image {
        width: 176px;
    }
}

@media (max-width: 560px) {
    .header .logo:has(.brand-logo-image) {
        width: 154px;
        height: 56px;
    }

    .header .logo .brand-logo-image {
        width: 154px;
    }
}

.footer .logo:has(.brand-logo-image) {
    width: 210px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.footer .logo .brand-logo-image {
    width: 210px;
    max-width: none;
    max-height: none;
    height: auto;
    flex: 0 0 auto;
}

@media (max-width: 720px) {
    .utility-page {
        padding-right: 0;
        padding-left: 0;
    }

    .cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .cart-item label,
    .cart-item input,
    .cart-item .ghost {
        min-width: 0;
        max-width: 100%;
    }

    .cart-summary .cart-summary-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cart-summary-actions .btn,
    .cart-summary-actions .ghost {
        min-width: 0;
        white-space: normal;
    }
}

@media (max-width: 720px) {
    .admin-sidebar {
        width: min(320px, 88vw);
        padding: 22px 16px 20px;
    }

    .admin-brand {
        font-size: 28px;
    }

    .admin-menu a,
    .admin-exit {
        min-height: 50px;
        padding: 0 16px;
        gap: 14px;
    }

    .admin-dashboard-top > div:first-of-type,
    .admin-top-tools,
    .panel-head,
    .dashboard-order-head,
    .mini-product,
    .review-item {
        min-width: 0;
    }

    .date-pill {
        width: 100%;
        margin: 8px 0 4px;
        justify-content: center;
        text-align: center;
    }

    .metric-card {
        min-height: 0;
        padding: 18px;
        align-items: flex-start;
    }

    .metric-card strong {
        font-size: 24px;
    }

    .metric-card > svg {
        width: 48px;
        height: 48px;
        padding: 13px;
    }

    .dash-panel {
        padding: 18px;
    }

    .panel-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .panel-head h2 {
        margin-bottom: 0;
    }

    .panel-head a,
    .panel-head button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .legend {
        flex-wrap: wrap;
        gap: 8px 10px;
    }

    .line-chart {
        min-width: 620px;
    }

    .donut-wrap {
        gap: 18px;
    }

    .donut {
        width: 170px;
        height: 170px;
        margin: 0 auto;
    }

    .donut::after {
        inset: 34px;
    }

    .status-list li {
        margin-bottom: 14px;
    }

    .mini-product,
    .review-item {
        gap: 12px;
    }

    .mini-product {
        grid-template-columns: 54px 1fr auto;
    }

    .mini-product b {
        font-size: 15px;
    }

    .dashboard-comments-panel .panel-head a {
        width: auto;
        min-width: 112px;
        padding-inline: 16px;
        align-self: flex-start;
    }

    .dashboard-review-card {
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 7px;
        background: rgba(255, 255, 255, .58);
        grid-template-columns: 54px 1fr;
        align-items: start;
    }

    .dashboard-review-card img {
        width: 54px;
        height: 54px;
    }

    .dashboard-review-card p {
        margin: 4px 0;
    }

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

    .dashboard-order-cards {
        display: block;
    }

    .dashboard-order-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .orders-mobile-cards {
        display: block;
        margin-top: 12px;
    }

    .order-mobile-head,
    .order-mobile-meta,
    .order-mobile-card {
        min-width: 0;
    }

    .order-mobile-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .order-progress-mobile {
        grid-template-columns: 1fr;
    }

    .order-progress-form {
        grid-template-columns: 1fr;
    }

    .order-step-btn,
    .order-progress-form select {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .header {
        padding: 18px 16px 10px;
        gap: 14px;
    }

    .logo {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .brand-logo-image {
        max-height: 52px;
    }

    .logo span,
    .admin-brand span {
        margin-top: 8px;
        font-size: 8px;
        letter-spacing: 4px;
    }

    .nav {
        margin: 0;
    }

    .icon-btn {
        width: 44px;
        height: 44px;
    }

    .icon-btn svg {
        width: 22px;
        height: 22px;
    }

    .cart-dot {
        top: -3px;
        right: -2px;
        width: 16px;
        height: 16px;
        font-size: 8px;
    }

    .hero,
    .hero-slider {
        height: auto;
        min-height: 500px;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .hero-slider-arrow.prev { left: 18px; }
    .hero-slider-arrow.next { right: 18px; }

    .hero-slider-dots {
        bottom: 36px;
    }

    .hero-copy {
        padding: 38px 18px 34px;
    }

    .hero-copy > p:last-of-type,
    .page-hero p:last-child,
    .blog-hero-copy p:last-child {
        max-width: none;
    }

    .btn,
    .ghost {
        min-width: 0;
    }

    .benefit {
        min-height: 0;
        padding: 26px 18px;
    }

    .section {
        padding: 30px 0 52px;
    }

    .section-title {
        padding: 12px 0 28px;
    }

    .products {
        padding: 0 4px;
        gap: 14px;
    }

    .products .product {
        flex-basis: 88%;
    }

    .product-row {
        align-items: flex-start;
    }

    .heart {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .page-hero {
        min-height: 340px;
    }

    .page-hero::after {
        background: linear-gradient(180deg, rgba(251, 247, 241, .92), rgba(251, 247, 241, .42), rgba(251, 247, 241, .15));
    }

    .contact-map-hero {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 14px;
        border-top: 0;
        border-bottom: 0;
        background: transparent;
    }

    .contact-map-hero-card {
        order: 2;
        min-height: 0;
        width: calc(100% - 24px);
        margin: 0 auto;
        padding: 10px 0;
        align-items: stretch;
    }

    .contact-map-hero-frame {
        position: relative;
        inset: auto;
        order: 1;
        height: 240px;
        margin: 0 12px;
        border: 1px solid var(--line);
        overflow: hidden;
    }

    .contact-map-hero-overlay {
        display: none;
    }

    .shop-filter {
        padding: 22px 18px;
    }

    .filter-actions {
        gap: 12px;
    }

    .product-summary {
        padding: 18px;
    }

    .product-summary h1 {
        font-size: 28px;
    }

    .product-price {
        font-size: 28px;
    }

    .variant-chip,
    .color-chip {
        padding: 0 14px;
    }

    .cart-item {
        padding: 16px;
    }

    .cart-item label,
    .cart-item .ghost {
        width: 100%;
    }

    .cart-summary {
        padding: 18px;
    }

    .blog-feature-body {
        padding: 28px 20px 24px;
    }

    .blog-feature-body h2 {
        font-size: 20px;
    }

    .blog-meta-line {
        gap: 8px 12px;
        font-size: 12px;
    }

    .blog-post-hero {
        padding: 34px 0 18px;
        gap: 18px;
    }

    .blog-post-hero-media img {
        min-height: 360px;
    }

    .blog-post-layout {
        padding: 18px 0 52px;
    }

    .contact-map-copy {
        padding: 22px 18px;
    }

    .contact-map-hero-card::before {
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .contact-map-hero-card > * {
        width: calc(100% - 24px);
        margin-left: 12px;
    }

    .contact-map-hero-card > .eyebrow,
    .contact-map-hero-card > h1,
    .contact-map-hero-card > p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .contact-visit-cta,
    .contact-address-card {
        padding: 16px 18px;
    }

    .contact-map-frame iframe {
        min-height: 320px;
    }
}

.home-category-carousel {
    position: relative;
}

.home-category-arrow {
    display: none;
}

@media (max-width: 720px) {
    body {
        overflow-x: clip;
        overscroll-behavior-x: none;
    }

    .hero-slider,
    .hero-slide {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .hero-media picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-media picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-slide .hero-copy {
        width: min(82%, 390px);
        height: 100%;
        padding: 34px 22px 78px;
        text-shadow: 0 1px 14px rgba(255, 250, 245, .28);
    }

    .home-category-carousel {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 46px;
        overflow: hidden;
    }

    .home-category-carousel .category-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
    }

    .home-category-carousel .category-grid::-webkit-scrollbar {
        display: none;
    }

    .home-category-carousel .category {
        flex: 0 0 calc(100vw - 112px);
        height: auto;
        aspect-ratio: 4 / 5;
        scroll-snap-align: center;
    }

    .home-category-arrow {
        width: 38px;
        height: 54px;
        position: absolute;
        top: 50%;
        z-index: 4;
        transform: translateY(-50%);
        display: grid;
        place-items: center;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 250, 245, .94);
        color: var(--ink);
        box-shadow: 0 8px 20px rgba(44, 32, 22, .12);
        cursor: pointer;
    }

    .home-category-arrow.prev { left: 4px; }
    .home-category-arrow.next { right: 4px; }

    .home-category-arrow svg {
        width: 18px;
        height: 18px;
    }

    .shop-layout,
    .shop-filter,
    .shop-filter-overlay {
        overscroll-behavior-x: none;
    }

    .shop-layout {
        overflow-x: clip;
        touch-action: pan-y;
    }

    .shop-filter {
        max-width: 92vw;
        touch-action: pan-y;
        right: 0;
        translate: 100% 0;
    }

    .shop-layout.filter-open .shop-filter {
        translate: 0 0;
    }

    .related-post-grid {
        width: calc(100% + 20px);
        display: flex;
        gap: 14px;
        padding-right: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .related-post-grid::-webkit-scrollbar {
        display: none;
    }

    .related-post-grid .related-post-card {
        min-width: 0;
        flex: 0 0 min(82vw, 330px);
        scroll-snap-align: start;
    }

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

    .search-inline-form .search-input-wrap {
        grid-column: 1 / -1;
    }

    body:not(.admin-body) .search-inline-form .search-submit,
    body:not(.admin-body) .search-inline-form .search-close {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding-right: 12px;
        padding-left: 12px;
    }
}
