: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;
}

.announcement-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
    background: #19191f;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.announcement-ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: announcement-ticker-scroll 32s linear infinite;
}

.announcement-ticker-group {
    display: flex;
    flex: none;
    align-items: center;
}

.announcement-ticker-item {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 42px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .1px;
    white-space: nowrap;
}

.announcement-ticker-item i {
    margin-right: 9px;
    color: #f2e8dc;
    font-style: normal;
    font-size: 9px;
}

@keyframes announcement-ticker-scroll {
    to { transform: translateX(-50%); }
}

@media (max-width: 560px) {
    .announcement-ticker-item {
        min-height: 33px;
        padding: 0 25px;
        font-size: 10px;
    }

    .announcement-ticker-track {
        animation-duration: 26s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-ticker {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .announcement-ticker::-webkit-scrollbar {
        display: none;
    }

    .announcement-ticker-track {
        animation: none;
    }

    .announcement-ticker-group[aria-hidden="true"] {
        display: none;
    }
}

.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;
    column-gap: 26px;
    row-gap: 16px;
    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;
}

.nav-shop-item { position: relative; align-self: stretch; display: flex; align-items: center; gap: 7px; }
.nav-category-toggle { width: 18px; height: 28px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.nav-category-toggle svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-category-dropdown {
    min-width: 210px;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 35;
    padding: 10px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .98);
    box-shadow: 0 18px 38px rgba(35, 25, 18, .12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-shop-item.category-open .nav-category-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-shop-item.category-open .nav-category-toggle svg { transform: rotate(90deg); }

@media (min-width: 981px) {
    .nav-shop-item:hover .nav-category-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .nav-shop-item:hover .nav-category-toggle svg {
        transform: rotate(90deg);
    }
}
.nav-category-entry { position: relative; }
.nav-category-dropdown a { min-height: 40px; padding: 0 12px; display: flex; align-items: center; white-space: nowrap; }
.nav-category-parent { justify-content: space-between; gap: 18px; }
.nav-category-parent-arrow { margin-left: auto; color: var(--muted); }
.nav-category-parent-arrow svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-category-dropdown a::after { display: none; }
.nav-category-dropdown a:hover,
.nav-category-dropdown a:focus-visible,
.nav-category-entry:focus-within > .nav-category-parent { background: var(--soft); }

.nav-category-submenu {
    min-width: 210px;
    position: absolute;
    top: -10px;
    left: 100%;
    z-index: 36;
    padding: 10px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .99);
    box-shadow: 18px 18px 38px rgba(35, 25, 18, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

@media (min-width: 981px) {
    .nav-category-entry:hover > .nav-category-submenu,
    .nav-category-entry:focus-within > .nav-category-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-category-entry:hover > .nav-category-parent .nav-category-parent-arrow svg,
    .nav-category-entry:focus-within > .nav-category-parent .nav-category-parent-arrow svg {
        transform: translateX(2px);
    }
}

.cart-coupon-box { margin-top: 16px; padding: 16px; border: 1px solid var(--line); background: var(--paper); }
.cart-summary .cart-coupon-box > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 8px 0 0; border: 0; }
.cart-coupon-box label { font-size: 12px; font-weight: 700; }
.cart-coupon-box .ghost { min-width: 100px; padding-inline: 14px; }
.coupon-error { display: block; margin-top: 6px; color: #9b2630; }
.coupon-remove { margin-top: 8px; padding: 0; border: 0; background: transparent; text-decoration: underline; cursor: pointer; }

.mobile-shop-item { display: grid; gap: 0; }
.mobile-shop-row { display: grid; grid-template-columns: 1fr 52px; gap: 8px; }
.mobile-shop-row > button { padding: 0; display: grid; place-items: center; border: 1px solid var(--line); background: #fffaf5; cursor: pointer; }
.mobile-shop-row > button svg { width: 17px; height: 17px; transition: transform .2s ease; }
.mobile-menu-categories { max-height: 0; display: grid; gap: 6px; padding: 0 0 0 18px; overflow: hidden; opacity: 0; transition: max-height .28s ease, opacity .2s ease, padding .28s ease; }
.mobile-shop-item.category-open .mobile-menu-categories { max-height: 320px; padding-top: 8px; padding-bottom: 4px; opacity: 1; }
.mobile-shop-item.category-open .mobile-shop-row > button svg { transform: rotate(90deg); }
.mobile-menu-categories a { min-height: 40px; font-size: 12px; background: var(--paper); }

.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;
    gap: 12px;
}

.header-contact-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(205, 193, 181, .72);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 253, 250, .96), rgba(244, 236, 227, .68));
    box-shadow: 0 8px 24px rgba(54, 41, 30, .06);
}

.header-contact-info a {
    min-height: 29px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    transition: color .22s ease, background .22s ease, transform .22s ease;
}

.header-contact-info a:hover {
    color: var(--ink);
    background: rgba(255, 250, 245, .95);
    transform: translateY(-1px);
}

.header-contact-info a + a {
    border-top: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
}

.header-contact-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(35, 30, 25, .12);
    border-radius: 50%;
    background: rgba(255, 250, 245, .88);
}

.header-contact-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 1.6;
}

.header-contact-info small,
.header-contact-info strong {
    display: block;
    white-space: nowrap;
}

.header-contact-info small {
    margin-bottom: 1px;
    color: #978a7d;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-contact-info strong {
    color: #453d36;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0;
}

.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);
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.hero-slider.is-dragging {
    cursor: grabbing;
}

.hero-slider img {
    -webkit-user-drag: none;
    pointer-events: none;
}

.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-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--slide-overlay, #fff);
    opacity: var(--slide-overlay-opacity, 0);
    pointer-events: none;
}

.hero-slide.content-left .hero-copy {
    margin-right: auto;
}

.hero-slide.content-center .hero-copy {
    margin-right: auto;
    margin-left: auto;
    padding-right: 32px;
    padding-left: 32px;
}

.hero-slide.content-right .hero-copy {
    margin-left: auto;
    padding-right: 108px;
    padding-left: 32px;
}

.hero-slide.align-left .hero-copy {
    align-items: flex-start;
    text-align: left;
}

.hero-slide.align-center .hero-copy {
    align-items: center;
    text-align: center;
}

.hero-slide.align-right .hero-copy {
    align-items: flex-end;
    text-align: right;
}

.hero-slide .hero-copy .eyebrow {
    color: var(--slide-eyebrow, var(--ink));
    font-size: var(--slide-eyebrow-size, 11px);
}

.hero-slide .hero-copy h1 {
    color: var(--slide-title, var(--ink));
    font-size: clamp(28px, 4vw, var(--slide-title-size, 62px));
}

.hero-slide .hero-copy > p:last-of-type {
    color: var(--slide-text, var(--muted));
    font-size: var(--slide-text-size, 16px);
}

.hero-slide .hero-copy .rule {
    background: var(--slide-title, var(--ink));
}

.hero-slide .hero-copy .btn {
    border-color: var(--slide-button-border, var(--ink));
    border-radius: var(--slide-button-radius, 5px);
    background: var(--slide-button-bg, var(--ink));
    color: var(--slide-button-text, #fff);
    font-size: var(--slide-button-font-size, 11px);
}

.hero-slide .hero-copy .btn:hover,
.hero-slide .hero-copy .btn:focus-visible {
    border-color: var(--slide-button-border, var(--ink));
    background: var(--slide-button-hover-bg, #fff);
    color: var(--slide-button-hover-text, var(--ink));
}

.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;
    color: var(--category-title-color, var(--ink));
}

.category-copy p {
    max-width: 230px;
    margin: -12px 0 18px;
    color: var(--category-description-color, var(--muted));
    line-height: 1.55;
}

.link-line {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--category-button-color, var(--ink));
    border-bottom: 1px solid currentColor;
}

.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 {
    position: relative;
    aspect-ratio: 1 / 1;
    display: block;
    background: #eee8e1;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-gallery-track,
.product-card-gallery-slide {
    width: 100%;
    height: 100%;
    display: block;
}

.product-card-gallery-slide:not(:first-child),
.product-card-gallery-dots {
    display: none;
}

.product.is-sold-out .product-img img {
    opacity: .58;
    filter: grayscale(.22) saturate(.65);
}

.product-sold-out-label {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    min-height: 42px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(20, 18, 16, .9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    text-align: center;
    backdrop-filter: blur(3px);
}

.product-campaign-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 8px 10px;
    border-radius: 999px;
    color: #fffaf5;
    background: #172744;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-status-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: grid;
    justify-items: start;
    gap: 7px;
}

.product-status-badges.has-campaign {
    top: 52px;
}

.product-status-badge {
    width: max-content;
    max-width: calc(100% - 24px);
    min-width: 92px;
    min-height: 34px;
    height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 21, 17, .92);
    color: #fff;
    box-shadow: 0 7px 18px rgba(30, 23, 17, .14);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 26px rgba(30, 23, 17, .18);
}

.product-status-badge.is-last {
    background: #b4232d;
    color: #fff;
}

.product-status-badge.is-new {
    background: #b4232d;
    color: #fff;
}

.product-campaign-info {
    margin-top: 9px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #d9c8b6;
    border-radius: 8px;
    color: var(--ink);
    background: #f5ede4;
    font-size: 9px;
}

.product-campaign-info strong {
    font-size: 10px;
}

.product-campaign-info span {
    color: var(--muted);
    white-space: nowrap;
}

.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;
}

.arrow:disabled {
    opacity: .35;
    cursor: default;
    box-shadow: none;
}

.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: 42px 0 30px;
}

.shop-categories-heading {
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
    padding-bottom: 0;
    border-bottom: 0;
}

.shop-categories-heading h2 {
    max-width: 700px;
    margin: 4px 0 0;
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 400;
    line-height: 1.15;
}

.shop-categories-heading > p {
    max-width: 350px;
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mobile-shop-category-menu {
    display: none;
}

.shop-category-card {
    min-height: 310px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: block;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    color: var(--ink);
    transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.shop-category-card > img,
.shop-category-shade {
    position: absolute;
    inset: 0 0 66px;
    width: 100%;
    height: calc(100% - 66px);
    border-radius: 0;
}

.shop-category-card > img {
    z-index: 0;
    object-fit: cover;
    transition: transform .5s ease;
}

.shop-category-shade {
    display: none;
}

.shop-category-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    z-index: 3;
    width: auto;
    height: 2px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s ease;
}

.shop-category-card > div {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    width: 100%;
    min-height: 66px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    background: var(--paper);
}

.shop-category-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.shop-category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0;
    color: #9a8068;
}

.shop-category-link b {
    display: inline;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    color: inherit;
    font-size: 21px;
    font-weight: 400;
    transition: transform .25s ease;
}

.shop-category-all {
    color: var(--ink);
    background: #e7ddd1;
}

.shop-category-all::before {
    content: "V";
    position: absolute;
    inset: 0 0 66px;
    width: auto;
    height: auto;
    z-index: 0;
    display: grid;
    place-items: center;
    border-radius: 0;
    transform: none;
    color: rgba(71, 55, 42, .12);
    background: linear-gradient(145deg, #eee6dc, #d9cabb);
    font-family: Georgia, serif;
    font-size: 130px;
    line-height: 1;
}

.shop-category-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 4;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 253, 250, .92);
    box-shadow: 0 5px 18px rgba(45, 35, 27, .08);
    backdrop-filter: blur(6px);
}

.shop-category-icon svg {
    width: 19px;
    height: 19px;
}

.shop-category-card:hover,
.shop-category-card.active {
    transform: translateY(-3px);
    border-color: rgba(37, 30, 24, .42);
    box-shadow: 0 14px 32px rgba(50, 37, 27, .09);
}

.shop-category-card:hover::after,
.shop-category-card.active::after {
    transform: scaleX(1);
}

.shop-category-card:hover > img {
    transform: scale(1.035);
}

.shop-category-card:hover .shop-category-link b {
    transform: translateX(2px);
}

.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;
    align-items: start;
}

.product-thumbs {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.product-thumbs::-webkit-scrollbar {
    display: none;
}

.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 {
    position: relative;
    align-self: start;
    width: 100%;
    aspect-ratio: 1 / 1.42;
    overflow: hidden;
    line-height: 0;
    background: var(--white);
    border: 1px solid var(--line);
}

.product-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(31, 25, 20, .22);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 252, 248, .88);
    box-shadow: 0 8px 24px rgba(40, 30, 22, .09);
    backdrop-filter: blur(7px);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.product-gallery-arrow.prev {
    left: 18px;
}

.product-gallery-arrow.next {
    right: 18px;
}

.product-gallery-arrow svg {
    width: 19px;
    height: 19px;
}

.product-gallery-arrow:hover {
    border-color: var(--ink);
    background: var(--paper);
    transform: translateY(-50%) scale(1.04);
}

.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-description {
    margin: -4px 0 26px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--ink);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(247, 239, 230, .82), rgba(255, 250, 245, .96));
}

.product-description h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-description p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.product-detail-campaign {
    margin: -8px 0 25px;
    padding: 16px 18px;
    border: 1px solid #d7c4b0;
    border-radius: 10px;
    background: #f5ede4;
}

.product-detail-campaign > span,
.product-detail-campaign > strong {
    display: block;
}

.product-detail-campaign > span {
    margin-bottom: 6px;
    color: #806a56;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.product-detail-campaign > strong {
    margin-bottom: 6px;
    font-size: 14px;
}

.product-detail-campaign p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.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;
}

.product-custom-variation-choice .variant-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.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;
}

.category-filter-tree {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.category-filter-new,
.category-filter-row > a {
    min-height: 34px;
    display: flex;
    align-items: center;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.category-filter-new {
    margin-bottom: 4px;
    font-size: 15px;
}

.category-filter-new.active,
.category-filter-row > a.active,
.category-filter-children a.active {
    color: #9a7050;
    font-weight: 700;
}

.category-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    align-items: center;
}

.category-filter-row > button {
    width: 30px;
    height: 30px;
    padding: 0;
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.category-filter-row > button::before,
.category-filter-row > button::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 8px;
    width: 14px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease;
}

.category-filter-row > button::after {
    transform: rotate(90deg);
}

.category-filter-group.open .category-filter-row > button::after {
    transform: rotate(0);
}

.category-filter-children {
    max-height: 0;
    padding: 0 0 0 12px;
    display: grid;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height .32s ease, padding .32s ease, opacity .22s ease, transform .32s ease, visibility 0s linear .32s;
}

.category-filter-group.open .category-filter-children {
    max-height: 520px;
    padding: 2px 0 8px 12px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: max-height .36s ease, padding .36s ease, opacity .26s ease .06s, transform .36s ease, visibility 0s;
}

.category-filter-children a {
    min-height: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
}

.category-filter-children small {
    font-size: 10px;
    color: #a3988e;
}

.filter-special-link {
    min-height: 54px;
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 245, .72);
    color: var(--ink);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.filter-special-link > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fffaf5;
}

.filter-special-link svg {
    width: 17px;
    height: 17px;
}

.filter-special-link strong {
    font-size: 12px;
    font-weight: 600;
}

.filter-special-link small {
    color: var(--muted);
    font-size: 10px;
    white-space: nowrap;
}

.filter-special-link:hover,
.filter-special-link.active {
    transform: translateY(-1px);
    border-color: #bda994;
    background: #f1e6da;
}

.filter-block-toggle {
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    color: inherit;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-align: left;
}

.filter-block-toggle i {
    display: none;
}

.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-clear-chip {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
}

.shop-filter .filter-block {
    border-bottom: 1px solid var(--line);
}

.shop-filter .filter-block:first-of-type {
    border-top: 1px solid var(--line);
}

.shop-filter .filter-block-toggle {
    min-height: 54px;
    margin: 0;
    cursor: pointer;
}

.shop-filter .filter-block-toggle i {
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 16px;
}

.shop-filter .filter-block-toggle i::before,
.shop-filter .filter-block-toggle i::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 1px;
    background: var(--muted);
    transition: transform .2s ease;
}

.shop-filter .filter-block-toggle i::after {
    transform: rotate(90deg);
}

.shop-filter .filter-block.open .filter-block-toggle i::after {
    transform: rotate(0);
}

.shop-filter .filter-block-content {
    display: none;
    padding: 2px 0 18px;
}

.shop-filter .filter-block.open .filter-block-content.price-grid,
.shop-filter .filter-block.open .filter-block-content.filter-option-list,
.shop-filter .filter-block.open .filter-block-content.price-filter-content {
    display: grid;
}

.filter-option-list {
    gap: 4px;
}

.price-preset-list {
    display: grid;
}

.price-filter-content {
    gap: 14px;
}

.custom-price-title {
    margin: 4px 0 -2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.filter-option-list .filter-chip {
    width: 100%;
    display: block;
}

.filter-option-list .filter-chip span {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    justify-content: flex-start;
    border: 0;
    border-radius: 6px;
    background: transparent;
}

.filter-option-list label.filter-chip.is-selected span {
    background: #f1e7dc;
}

.filter-option-list label.filter-chip span::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: auto;
    flex: 0 0 16px;
    border: 1px solid #b9aa9b;
    border-radius: 3px;
    background: #fff;
    box-shadow: none;
}

.filter-option-list label.filter-chip.is-selected span::after {
    border-color: var(--ink);
    background: var(--ink);
    box-shadow: inset 0 0 0 3px #f1e7dc;
}

.filter-option-list .filter-clear-chip span {
    color: var(--muted);
    font-size: 12px;
}

.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 {
    border-color: var(--ink);
    background: #f1e7dc;
}

@media (hover: hover) and (pointer: fine) {
    .filter-chip:hover span {
        border-color: var(--ink);
        background: #f1e7dc;
    }
}

.filter-option-list label.filter-chip span {
    padding-right: 10px;
    background: transparent;
}

.filter-option-list label.filter-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.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);
}

.contact-form-notice {
    margin: 16px 0 20px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.6;
}

.contact-form-notice.success {
    background: #eef4ec;
    border-color: #bdcdb8;
    color: #31452d;
}

.contact-form-notice.error {
    background: #f8ece8;
    border-color: #dfbbb0;
    color: #7a3026;
}

.contact-form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.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;
}

.internal-test-notice {
    margin: 0 0 20px;
    padding: 15px 17px;
    display: grid;
    gap: 4px;
    border: 1px solid #c9b38f;
    border-radius: 10px;
    background: #f8eedc;
    color: #5c4627;
    font-size: 11px;
}

.internal-test-notice strong {
    letter-spacing: 1px;
}

.test-card-form {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbf7f2;
}

.test-card-help {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px dashed var(--line);
    color: var(--muted);
    font-size: 11px;
}

.test-card-help p {
    margin: 3px 0;
}

.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: 34px 30px 28px;
    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-brand.admin-logo:has(.brand-logo-image) {
    width: 100%;
    height: 82px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.site-auth-brand.admin-logo .brand-logo-image {
    width: 280px;
    max-width: none;
    max-height: none;
    height: auto;
    flex: 0 0 auto;
}

.site-auth-panel .site-auth-kicker {
    text-align: center;
}

.site-auth-panel .site-auth-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-auth-panel .site-auth-actions > * {
    width: 100%;
    min-width: 0;
}

.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;
}

/* Müşteri giriş ve kayıt sayfaları */
.site-auth-body {
    background:
        radial-gradient(circle at 12% 16%, rgba(218, 199, 181, .22), transparent 29%),
        radial-gradient(circle at 88% 84%, rgba(220, 201, 184, .2), transparent 28%),
        linear-gradient(145deg, #fbf8f4 0%, #f4ece3 100%);
}

.site-auth-panel,
.site-auth-panel-wide {
    width: min(100%, 660px);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(205, 190, 176, .78);
    border-radius: 20px;
    background: rgba(255, 252, 248, .96);
    box-shadow: 0 28px 70px rgba(53, 39, 27, .1);
}

.site-auth-panel-wide {
    width: min(100%, 740px);
}

.site-auth-card-head {
    padding: 28px 42px 25px;
    display: grid;
    justify-items: center;
    position: relative;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(246, 236, 226, .75), rgba(255, 252, 248, .96)),
        var(--paper);
    text-align: center;
}

.site-auth-card-head::after {
    content: "";
    width: 42px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    background: var(--ink);
}

.site-auth-brand {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 52px;
    line-height: 1;
}

.site-auth-brand:has(.brand-logo-image) {
    width: 320px;
    max-width: 100%;
    height: 94px;
    overflow: hidden;
}

.site-auth-brand .brand-logo-image {
    width: 320px;
    max-width: none;
    max-height: none;
    height: auto;
    flex: 0 0 auto;
}

.site-auth-card-head .site-auth-kicker {
    margin: 0 0 8px;
    color: #8c7968;
    font-size: 10px;
    letter-spacing: 2.4px;
}

.site-auth-card-head h1 {
    margin: 0;
    font-size: clamp(25px, 4vw, 34px);
    font-weight: 500;
    letter-spacing: -.8px;
}

.site-auth-card-head .site-auth-note {
    max-width: 520px;
    margin: 10px auto 0;
    font-size: 12px;
    line-height: 1.7;
}

.site-auth-content {
    padding: 30px 42px 34px;
}

.site-auth-form {
    gap: 16px;
}

.google-auth-button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #d8cec4;
    border-radius: 10px;
    background: #fff;
    color: #28231f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.google-auth-button:hover {
    border-color: #9e8e7f;
    box-shadow: 0 7px 20px rgba(48, 35, 24, .08);
    transform: translateY(-1px);
}

.google-auth-icon,
.google-auth-icon svg {
    width: 21px;
    height: 21px;
    display: block;
    flex: 0 0 21px;
}

.site-auth-divider {
    margin: 19px 0;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #978b80;
    font-size: 9px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.site-auth-divider::before,
.site-auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.site-auth-form .field label,
.site-auth-label-row label {
    margin-bottom: 7px;
    color: #5e554d;
    font-size: 11px;
}

.site-auth-form input {
    min-height: 50px;
    padding-inline: 16px;
    border-color: #ded2c6;
    border-radius: 10px;
    background: #fbf7f2;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-auth-form input:focus {
    outline: none;
    border-color: #7f6f60;
    background: #fffdfa;
    box-shadow: 0 0 0 3px rgba(125, 105, 87, .09);
}

.site-auth-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.site-auth-label-row a {
    color: #8a7969;
    font-size: 10px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-auth-forgot {
    width: max-content;
    margin: 8px 2px 0 auto;
    display: block;
    color: #8a7969;
    font-size: 10px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-auth-panel .site-auth-actions {
    margin-top: 4px;
    display: block;
}

.site-auth-panel .site-auth-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
}

.site-auth-switch {
    margin-top: 20px;
    padding: 15px 18px;
    display: flex;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8f1e9;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.site-auth-switch a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-auth-back {
    width: max-content;
    margin: 18px auto 0;
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.site-auth-back:hover,
.site-auth-label-row a:hover,
.site-auth-forgot:hover {
    color: var(--ink);
}

.account-auth-shell {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 0 78px;
}

/* Müşteri hesap paneli */
.customer-panel-page { background: #f5eee6; }
.customer-panel-shell { width: min(calc(100% - 48px), 1380px); margin: 0 auto; padding: 42px 0 76px; display: grid; grid-template-columns: 285px minmax(0, 1fr); gap: 24px; align-items: start; }
.customer-panel-mobile-toggle,
.customer-panel-mobile-close,
.customer-panel-mobile-overlay { display:none; }
.customer-panel-sidebar, .customer-welcome-card, .customer-settings-card, .customer-stat-grid article { border: 1px solid #ded2c6; border-radius: 14px; background: rgba(255,251,247,.94); }
.customer-panel-sidebar { position: sticky; top: 20px; padding: 22px; }
.customer-profile-summary { display: flex; align-items: center; gap: 13px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.customer-avatar { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: white; font-size: 18px; font-weight: 700; }
.customer-avatar.large { width: 62px; height: 62px; flex-basis: 62px; border-radius: 16px; font-size: 23px; }
.customer-profile-summary strong, .customer-profile-summary small { display: block; max-width: 175px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.customer-profile-summary small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.customer-mini-stats { margin: 18px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.customer-mini-stats div { padding: 11px; border-radius: 9px; background: var(--soft); text-align: center; }
.customer-mini-stats strong, .customer-mini-stats span { display: block; }
.customer-mini-stats strong { font-size: 17px; }.customer-mini-stats span { color: var(--muted); font-size: 9px; }
.customer-panel-nav { display: grid; gap: 5px; }
.customer-panel-nav a { min-height: 46px; padding: 0 12px; display: flex; align-items: center; gap: 11px; border-radius: 9px; color: #625951; font-size: 11px; font-weight: 600; transition: .2s ease; }
.customer-panel-nav a:hover { background: #eee3d8; color: var(--ink); transform: translateX(3px); }
.customer-panel-nav a.active { background: var(--ink); color: #fff; }
.customer-panel-nav a.active:hover { background: var(--ink); color: #fff; transform: none; }
.customer-panel-nav svg { width: 18px; height: 18px; stroke-width: 1.6; }
.customer-panel-nav .customer-nav-logout { margin-top: 9px; color: #8c3434; border-top: 1px solid var(--line); border-radius: 0; }
.customer-panel-content { min-width: 0; display: grid; gap: 22px; }
.customer-welcome-card { padding: 25px 28px; display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.customer-welcome-main { display: flex; align-items: center; gap: 17px; }.customer-welcome-main .eyebrow { margin-bottom: 4px; }.customer-welcome-main h1 { margin: 0; font-size: 25px; font-weight: 600; }.customer-welcome-main p:last-child { margin: 6px 0 0; color: var(--muted); }
.customer-member-date { padding: 11px 15px; border: 1px solid var(--line); border-radius: 9px; text-align: right; white-space: nowrap; }.customer-member-date span,.customer-member-date strong { display:block; }.customer-member-date span { color:var(--muted);font-size:8px;text-transform:uppercase;letter-spacing:1px; }.customer-member-date strong { margin-top:3px;font-size:11px; }
.customer-stat-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px; }.customer-stat-grid article { padding:18px; }.customer-stat-grid span,.customer-stat-grid strong,.customer-stat-grid small { display:block; }.customer-stat-grid span { color:var(--muted);font-size:9px;text-transform:uppercase;letter-spacing:.8px; }.customer-stat-grid strong { margin:8px 0 4px;font-size:22px; }.customer-stat-grid small { color:#91877e;font-size:9px; }
.customer-overview-links { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px; }
.customer-overview-links a { min-height:92px;padding:18px;display:flex;align-items:center;gap:14px;border:1px solid #ded2c6;border-radius:14px;background:rgba(255,251,247,.94);color:var(--ink);transition:.2s ease; }
.customer-overview-links a>svg { width:40px;height:40px;padding:10px;flex:0 0 40px;border-radius:10px;background:var(--soft); }
.customer-overview-links strong,.customer-overview-links small { display:block; }
.customer-overview-links small { margin-top:5px;color:var(--muted);font-size:9px; }
.customer-overview-links a:hover { border-color:#b9aa9d;transform:translateY(-2px);box-shadow:0 12px 25px rgba(44,35,28,.06); }
.customer-panel-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px; }.customer-settings-card { padding:23px; scroll-margin-top:20px; }
.customer-card-head { min-height:48px; margin-bottom:20px; padding-bottom:16px; display:flex;justify-content:space-between;align-items:flex-start;gap:15px;border-bottom:1px solid var(--line); }.customer-card-head>div { display:flex;align-items:center;gap:11px; }.customer-card-head svg { width:20px;height:20px; }.customer-card-head strong,.customer-card-head small { display:block; }.customer-card-head small { margin-top:3px;color:var(--muted);font-size:9px; }.customer-card-head b { padding:5px 8px;border-radius:999px;background:#f4e6e4;color:#8a3c3c;font-size:8px;text-transform:uppercase; }.customer-card-head b.verified { background:#e7efe4;color:#406139; }
.customer-account-form { display:grid;grid-template-columns:1fr 1fr;gap:13px; }.customer-account-form .full,.customer-account-form button { grid-column:1/-1; }.customer-account-form input,.customer-account-form textarea { border-radius:8px;background:#faf5ef; }.customer-account-form textarea { min-height:90px; }.customer-account-form small { display:block;margin-top:5px;color:var(--muted);font-size:8px; }
.customer-orders-card { grid-column:1/-1; }.customer-order-list { display:grid;gap:9px; }.customer-order-list article { padding:16px;display:grid;grid-template-columns:1.3fr 1fr 1fr .8fr;gap:16px;align-items:center;border:1px solid var(--line);border-radius:9px;background:#faf5ef; }.customer-order-list span,.customer-order-list strong { display:block; }.customer-order-list span { margin-bottom:5px;color:var(--muted);font-size:8px;text-transform:uppercase;letter-spacing:.35px; }.customer-order-list strong { font-size:10px; }.customer-order-list small { display:block;margin-top:6px;color:var(--muted);font-size:9px; }.customer-order-list .status-badge { width:fit-content;min-width:0;min-height:26px;padding:0 10px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;white-space:nowrap; }
.customer-order-list .customer-return-box,.customer-order-list .customer-return-status { grid-column:1/-1; }
.customer-return-box { padding-top:12px;border-top:1px solid var(--line); }
.customer-return-box summary { width:fit-content;padding:9px 13px;border:1px solid var(--ink);border-radius:6px;font-size:9px;font-weight:700;cursor:pointer; }
.customer-return-box form { margin-top:13px;display:grid;gap:10px; }
.customer-return-box p { margin:0;color:var(--muted);font-size:10px; }
.customer-return-item { padding:10px;display:flex;align-items:center;justify-content:space-between;gap:12px;border:1px solid var(--line);border-radius:7px;background:#fff; }
.customer-return-item span { margin:0;text-transform:none;letter-spacing:0; }
.customer-return-item select,.customer-return-box textarea { padding:9px;border:1px solid var(--line);border-radius:6px;background:#fff; }
.customer-return-box textarea { min-height:75px;resize:vertical; }
.customer-return-contact { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px; }
.customer-return-contact input { min-width:0;padding:9px;border:1px solid var(--line);border-radius:6px;background:#fff; }
.customer-return-confirm { display:flex;align-items:flex-start;gap:9px;color:var(--muted);font-size:9px;line-height:1.5; }.customer-return-confirm input { margin-top:2px; }
.customer-return-address { margin-top:9px;padding:11px;border:1px dashed #b9a38f;border-radius:6px;background:#fff;line-height:1.6;font-size:10px; }.customer-return-address b { display:block;margin-bottom:4px; }
.customer-return-box .btn { width:fit-content; }
.customer-return-status { padding:10px 12px;border-radius:7px;background:#eee6dc; }
.customer-return-status strong,.customer-return-status span { display:inline-block;margin:0 10px 0 0; }
.account-return-message { margin-bottom:14px;padding:12px;border-radius:7px;font-size:11px; }.account-return-message.success { background:#e6efe4;color:#315b35; }.account-return-message.error { background:#f4e4e1;color:#8a3434; }
.customer-empty-state { padding:28px;text-align:center; }.customer-empty-state .btn { margin:14px auto 0; }
.customer-notification-form { display:flex;flex-direction:column;align-items:flex-end;gap:16px; }
.customer-notification-form>div { width:100%;padding:16px;display:flex;align-items:center;gap:13px;border:1px solid var(--line);border-radius:10px;background:#faf5ef; }.customer-setting-icon { width:38px;height:38px;flex:0 0 38px;display:grid;place-items:center;border-radius:9px;background:var(--ink);color:white; }.customer-setting-icon svg { width:17px;height:17px; }.customer-notification-form p { flex:1;margin:0; }.customer-notification-form p strong,.customer-notification-form p small { display:block; }.customer-notification-form p small { margin-top:4px;color:var(--muted);font-size:9px; }
.customer-switch input { position:absolute;opacity:0; }.customer-switch span { width:44px;height:24px;display:block;position:relative;border-radius:99px;background:#cfc4b9;cursor:pointer;transition:.2s; }.customer-switch span::after { content:"";width:18px;height:18px;position:absolute;left:3px;top:3px;border-radius:50%;background:white;transition:.2s; }.customer-switch input:checked+span { background:var(--ink); }.customer-switch input:checked+span::after { transform:translateX(20px); }
.customer-favorites-card .shop-products { grid-template-columns:repeat(3,minmax(0,1fr)); }

@media (max-width: 980px) {
    .customer-panel-shell { grid-template-columns:1fr; }
    .customer-panel-sidebar { position:static;padding:16px; }
    .customer-panel-nav { grid-template-columns:repeat(4,minmax(130px,1fr));overflow-x:auto; }
    .customer-panel-nav a { white-space:nowrap; }
}

@media (max-width: 720px) {
    .customer-panel-page { width:100%;max-width:100%;overflow-x:clip; }
    .customer-return-contact { grid-template-columns:1fr; }
    .customer-panel-shell { width:calc(100% - 24px);max-width:100%;padding:20px 0 54px;grid-template-columns:minmax(0,1fr);gap:14px; }
    .customer-panel-shell > *,
    .customer-panel-content,
    .customer-panel-sidebar,
    .customer-settings-card,
    .customer-welcome-card { min-width:0;max-width:100%;box-sizing:border-box; }
    .customer-panel-mobile-toggle {
        width:46px;
        height:46px;
        padding:0;
        display:grid;
        place-items:center;
        border:1px solid #d7cabd;
        border-radius:50%;
        background:#fffaf5;
        color:var(--ink);
        box-shadow:0 8px 20px rgba(35,27,20,.08);
        cursor:pointer;
    }
    .customer-panel-mobile-toggle svg { width:20px;height:20px; }
    .customer-panel-mobile-overlay {
        position:fixed;
        inset:0;
        z-index:110;
        display:block;
        opacity:0;
        visibility:hidden;
        background:rgba(22,17,13,.3);
        backdrop-filter:blur(2px);
        transition:opacity .24s ease,visibility .24s ease;
    }
    .customer-panel-sidebar {
        position:fixed;
        top:12px;
        bottom:12px;
        left:12px;
        z-index:112;
        width:min(330px,calc(100% - 24px));
        max-width:none;
        padding:20px 18px;
        overflow-x:hidden;
        overflow-y:auto;
        transform:translateX(calc(-100% - 24px));
        box-shadow:22px 0 54px rgba(29,21,15,.18);
        transition:transform .28s ease;
    }
    .customer-panel-mobile-close {
        position:absolute;
        top:16px;
        right:16px;
        width:38px;
        height:38px;
        padding:0;
        display:grid;
        place-items:center;
        border:1px solid var(--line);
        border-radius:50%;
        background:#fff;
        color:var(--ink);
        cursor:pointer;
    }
    .customer-panel-mobile-close svg { width:18px;height:18px; }
    .customer-menu-open { overflow:hidden; }
    .customer-menu-open .customer-panel-mobile-overlay { opacity:1;visibility:visible; }
    .customer-menu-open .customer-panel-sidebar { transform:translateX(0); }
    .customer-panel-nav { width:100%;max-width:100%;grid-template-columns:minmax(0,1fr);grid-auto-flow:row;grid-auto-columns:auto;padding-bottom:0;overflow:visible; }
    .customer-panel-nav a { width:100%;min-height:46px;padding:0 12px;background:var(--soft);white-space:normal; }
    .customer-profile-summary { min-width:0; }
    .customer-profile-summary { padding-right:48px; }
    .customer-profile-summary > div,
    .customer-welcome-main > div { min-width:0; }
    .customer-profile-summary strong,
    .customer-profile-summary small { max-width:100%; }
    .customer-mini-stats { display:none; }
    .customer-welcome-card { padding:19px;align-items:flex-start;flex-direction:column;overflow:hidden; }
    .customer-welcome-main { width:100%;min-width:0;align-items:flex-start; }
    .customer-welcome-main h1,
    .customer-welcome-main p { max-width:100%;overflow-wrap:anywhere; }
    .customer-member-date { width:100%;text-align:left; }
    .customer-stat-grid { grid-template-columns:1fr 1fr;gap:9px; }.customer-stat-grid article { padding:14px; }.customer-stat-grid strong { font-size:17px; }
    .customer-panel-grid { grid-template-columns:1fr;gap:14px; }.customer-settings-card { padding:17px; }.customer-account-form { grid-template-columns:1fr; }.customer-account-form .full,.customer-account-form button { grid-column:auto; }
    .customer-order-list article { grid-template-columns:1fr 1fr;gap:12px; }
    .customer-order-list article > div { min-width:0; }
    .customer-order-list article strong,
    .customer-order-list article small { max-width:100%;overflow-wrap:anywhere; }
    .customer-overview-links { grid-template-columns:1fr;gap:9px; }
    .customer-overview-links a { min-width:0;min-height:78px;padding:14px; }
    .customer-overview-links a span { min-width:0; }
    .customer-overview-links strong,
    .customer-overview-links small { overflow-wrap:anywhere; }
    .customer-favorites-card { overflow:hidden; }
    .customer-favorites-card .shop-products { width:100%;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px; }
    .customer-favorites-card .product { min-width:0; }
    .customer-notification-form>div { align-items:flex-start;flex-wrap:wrap; }.customer-notification-form p { min-width:calc(100% - 55px); }.customer-switch { margin-left:auto; }
    .customer-notification-form .ghost { width:100%; }
}

@media (max-width: 420px) {
    .customer-favorites-card .shop-products { grid-template-columns:minmax(0,1fr); }
}

.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 minmax(0, 1fr) auto;
    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-edit-link {
    min-height: 36px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .6px;
}

.user-edit-link:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.user-edit-panel {
    margin-bottom: 20px;
}

.user-edit-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.user-edit-form textarea {
    min-height: 95px;
}

.user-edit-wide,
.user-account-switches,
.user-edit-submit {
    grid-column: 1 / -1;
}

.user-account-switches {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.user-account-switches label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 600;
}

.user-account-switches input {
    width: 18px;
    height: 18px;
}

.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 {
    min-height: 222px;
    height: 100%;
    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: minmax(240px, 1.15fr) repeat(3, minmax(0, 1fr));
    column-gap: clamp(44px, 6vw, 96px);
    row-gap: 34px;
}

.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: 0;
    color: inherit;
    background: transparent;
    box-shadow: none;
}

.social-link.instagram {
    background: transparent;
}

.social-link.pinterest {
    background: transparent;
}

.social-link.facebook {
    background: transparent;
}

.social-link.youtube,
.social-link.linkedin,
.social-link.whatsapp,
.social-link.tiktok,
.social-link.x { background: transparent; }

.social-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.social-link img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.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: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px 20px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-credit {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: .02em;
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
}

.footer-credit img {
    width: 88px;
    height: auto;
    display: block;
    transition: opacity .2s ease;
}

.footer-credit:hover img {
    opacity: .72;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 720px) {
    body:not(.admin-body) {
        padding-bottom: 76px;
    }

    .mobile-bottom-nav {
        height: 68px;
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 5px max(8px, env(safe-area-inset-right)) max(5px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        border-top: 1px solid var(--line);
        background: rgba(255, 253, 250, .98);
        box-shadow: 0 -8px 24px rgba(34, 25, 19, .08);
        backdrop-filter: blur(10px);
    }

    .mobile-bottom-nav a {
        min-width: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 600;
    }

    .mobile-bottom-nav a.active {
        color: var(--ink);
    }

    .mobile-bottom-nav a.active::before {
        content: "";
        width: 24px;
        height: 2px;
        position: absolute;
        top: -5px;
        border-radius: 2px;
        background: var(--ink);
    }

    .mobile-bottom-nav svg {
        width: 22px;
        height: 22px;
        stroke-width: 1.6;
    }

    .mobile-bottom-nav b {
        min-width: 16px;
        height: 16px;
        position: absolute;
        top: 2px;
        left: calc(50% + 8px);
        padding: 0 4px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: var(--ink);
        color: #fff;
        font-size: 9px;
    }
}

@media (max-width: 560px) {
    .site-auth-brand.admin-logo:has(.brand-logo-image) {
        height: 68px;
    }

    .site-auth-brand.admin-logo .brand-logo-image {
        width: 224px;
    }

    .site-auth-panel .site-auth-actions {
        grid-template-columns: 1fr;
    }
}

.footer-legal-links {
    justify-self: center;
    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: 18px 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 {
    width: 100%;
    height: 92px;
    min-height: 92px;
    margin: 0 0 14px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 40px;
}

.admin-brand .brand-logo-image {
    width: 240px;
    height: 240px;
    max-width: none;
    max-height: none;
    flex: 0 0 240px;
    object-fit: contain;
}

.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-tool-menu {
    position: relative;
}

.admin-profile {
    display: grid;
    grid-template-columns: 54px auto;
    column-gap: 12px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.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);
}

.admin-profile:hover strong,
.admin-profile:focus-visible strong {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.admin-dropdown {
    width: 300px;
    padding: 8px;
    position: absolute;
    z-index: 60;
    top: calc(100% + 12px);
    right: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fffaf5;
    box-shadow: 0 20px 48px rgba(38, 29, 22, .14);
}

.admin-dropdown[hidden] {
    display: none;
}

.admin-dropdown-head {
    padding: 10px 11px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.admin-dropdown-head small {
    color: var(--muted);
    font-size: 9px;
}

.admin-dropdown a {
    min-height: 58px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 8px;
    color: var(--ink);
}

.admin-dropdown a:hover {
    background: var(--soft);
}

.admin-dropdown a > svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.admin-dropdown a strong,
.admin-dropdown a small {
    display: block;
}

.admin-dropdown a strong {
    font-size: 11px;
}

.admin-dropdown a small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

.admin-dropdown .admin-dropdown-logout {
    color: #8c3434;
    border-top: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
}

.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;
}

.orders-table {
    table-layout: auto;
}

.orders-table th,
.orders-table td {
    padding-right: 12px;
    padding-left: 12px;
}

.orders-table th:nth-child(1),
.orders-table td:nth-child(1) { min-width: 130px; }
.orders-table th:nth-child(2),
.orders-table td:nth-child(2) { min-width: 110px; }
.orders-table th:nth-child(3),
.orders-table td:nth-child(3) { min-width: 220px; }
.orders-table th:nth-child(4),
.orders-table td:nth-child(4) { min-width: 165px; }
.orders-table th:nth-child(5),
.orders-table td:nth-child(5) { min-width: 75px; white-space: nowrap; }
.orders-table th:nth-child(6),
.orders-table td:nth-child(6) { min-width: 95px; }
.orders-table th:nth-child(7),
.orders-table td:nth-child(7) { min-width: 185px; }
.orders-table th:nth-child(8),
.orders-table td:nth-child(8) { min-width: 100px; white-space: nowrap; }

.order-progress-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 165px;
    max-width: 190px;
    gap: 8px;
    align-items: center;
}

.order-progress-form select {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf5;
    color: var(--ink);
    font: inherit;
    font-size: 11px;
    font-weight: 600;
}

.order-progress-form > .ghost {
    width: 100%;
    min-width: 0;
}

.order-current-status {
    min-height: 38px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fffaf5;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.order-step-btn {
    min-width: 76px;
    width: 76px;
    min-height: 38px;
    padding: 0 14px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: width .28s ease, color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.order-step-default,
.order-step-target {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity .2s ease, transform .28s ease;
}

.order-step-default {
    opacity: 1;
    transform: translateX(0);
}

.order-step-target {
    padding: 0 10px;
    opacity: 0;
    transform: translateX(18px);
    font-size: 11px;
}

.order-step-btn:not(:disabled):is(:hover, :focus-visible) {
    width: 132px;
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.order-step-btn:not(:disabled):is(:hover, :focus-visible) .order-step-default {
    opacity: 0;
    transform: translateX(-18px);
}

.order-step-btn:not(:disabled):is(:hover, :focus-visible) .order-step-target {
    opacity: 1;
    transform: translateX(0);
}

.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;
}

.slider-style-title {
    margin: 10px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 18px;
    font-weight: 600;
}

.banner-admin-form input[type="color"] {
    width: 100%;
    min-height: 48px;
    padding: 5px;
    cursor: pointer;
}

.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[data-variation-group="size"]:has(input:checked) {
    border-color: var(--ink);
    background: #f1e7dc;
}

.field-help {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.combination-stock-editor {
    display: none;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.combination-stock-editor.is-visible {
    display: block;
}

.combination-stock-head {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.combination-stock-head h4,
.combination-stock-head p {
    margin: 0;
}

.combination-stock-head h4 {
    font-size: 15px;
}

.combination-stock-head p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.combination-stock-head > strong {
    flex: 0 0 auto;
    font-size: 12px;
}

.combination-stock-summary {
    display: grid;
    justify-items: end;
    gap: 7px;
}

.combination-stock-summary strong {
    font-size: 12px;
    white-space: nowrap;
}

.combination-stock-summary button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.combination-stock-summary button[hidden] {
    display: none;
}

.combination-stock-list {
    display: grid;
    gap: 9px;
}

.combination-stock-row[hidden] {
    display: none;
}

.combination-stock-empty {
    margin: 0;
    padding: 16px;
    border: 1px dashed #d9c8b6;
    border-radius: 7px;
    color: var(--muted);
    background: rgba(255, 250, 245, .5);
    font-size: 11px;
    line-height: 1.6;
}

.variation-pill.active-size-tab span {
    font-weight: 700;
}

.variation-pill.active-size-tab {
    box-shadow: 0 0 0 2px rgba(23, 21, 17, .12);
}

.combination-stock-row {
    min-height: 54px;
    padding: 8px 10px 8px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 32px;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 250, 245, .72);
}

.combination-stock-row > span {
    min-width: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
}

.combination-stock-row > span b {
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
}

.combination-stock-row > span i {
    color: var(--muted);
    font-style: normal;
}

.combination-stock-row input {
    width: 90px;
    min-height: 38px;
    padding: 7px 9px;
    text-align: center;
}

.combination-stock-row small {
    color: var(--muted);
    font-size: 11px;
}

.combination-delete {
    width: 54px;
    min-width: 0;
    min-height: 36px;
    padding: 0 8px;
    border: 1px solid #b4232d;
    border-radius: 7px;
    background: transparent;
    color: #b4232d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.combination-delete:hover,
.combination-delete:focus-visible {
    background: #b4232d;
    color: #fff;
}

.admin-table-actions {
    white-space: nowrap;
}

.admin-table-action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-table-action-buttons form {
    margin: 0;
}

.contact-message-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.contact-message-card {
    padding: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 245, .7);
}

.contact-message-card.is-new {
    border-left: 4px solid var(--ink);
    background: var(--white);
}

.contact-message-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.contact-message-head h3 {
    margin: 10px 0 7px;
    font-size: 18px;
}

.contact-message-head p,
.contact-message-links a {
    color: var(--muted);
    font-size: 12px;
}

.contact-message-links {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 8px;
}

.contact-message-status {
    display: inline-flex;
    min-height: 25px;
    padding: 0 10px;
    align-items: center;
    border-radius: 999px;
    background: #eee6dc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.contact-message-status.status-new {
    background: var(--ink);
    color: var(--white);
}

.contact-message-status.status-replied {
    background: #e5efe2;
    color: #34522e;
}

.contact-message-body {
    margin-top: 18px;
    padding: 18px;
    background: var(--cream);
    font-size: 14px;
    line-height: 1.75;
}

.contact-message-reply {
    margin-top: 14px;
    padding: 16px 18px;
    border-left: 3px solid #78906f;
    background: #eef4ec;
    font-size: 13px;
}

.contact-message-reply p {
    margin: 6px 0 0;
}

.contact-message-reply-form {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 12px;
}

.contact-message-reply-form label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.contact-message-reply-form textarea {
    min-height: 92px;
}

.verification-code-input {
    text-align: center;
    font-size: 24px !important;
    font-weight: 700;
    letter-spacing: 9px;
}

.contact-message-actions {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    margin-top: 16px;
}

.contact-message-actions form {
    margin: 0;
}

.contact-message-actions label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.contact-message-actions select {
    min-width: 150px;
}

.contact-message-empty {
    margin-top: 20px;
    padding: 32px 20px;
    border: 1px dashed var(--line);
    color: var(--muted);
    text-align: center;
}

@media (max-width: 720px) {
    .contact-message-head,
    .contact-message-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-message-links {
        justify-items: start;
    }

    .contact-message-actions select,
    .contact-message-actions form,
    .contact-message-actions .ghost {
        width: 100%;
    }

    .contact-message-reply-form {
        grid-template-columns: 1fr;
    }

    .contact-message-reply-form .btn {
        width: 100%;
    }
}

.variation-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.variation-display-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.field label.variation-display-option {
    min-width: 0;
    min-height: 76px;
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 48px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 250, 245, .76);
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.field label.variation-display-option input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 0;
    position: absolute;
    left: 16px;
    top: 50%;
    padding: 0;
    margin: 0;
    border: 1px solid #aa9d91;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 4px #fff;
    transform: translateY(-50%);
    cursor: pointer;
}

.variation-display-option span,
.variation-display-option b,
.variation-display-option small {
    display: block;
}

.variation-display-option b {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.variation-display-option small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.field label.variation-display-option:has(input:checked) {
    border-color: #bda58d;
    background: #f2e7db;
    box-shadow: 0 8px 20px rgba(49, 36, 25, .07);
}

.field label.variation-display-option input:checked {
    border-color: var(--ink);
    background: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
    .field label.variation-display-option:hover {
        border-color: #bda58d;
        transform: translateY(-1px);
    }
}

.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;
}

.smtp-config-state {
    margin: 0 0 18px;
    padding: 13px 15px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--line);
    font-size: 11px;
}

.smtp-config-state.is-ready {
    border-color: #b9cbb3;
    background: #eef4ec;
    color: #34522e;
}

.smtp-config-state.is-missing {
    border-color: #dfbbb0;
    background: #f8ece8;
    color: #7a3026;
}

.settings-section-save {
    margin-top: 18px;
}

.settings-section-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.delivery-methods {
    margin: 22px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.delivery-method-option {
    position: relative;
    min-height: 92px;
    padding: 18px 18px 18px 48px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.delivery-method-option:has(input:checked) {
    border-color: var(--ink);
    background: var(--soft);
}

.delivery-method-option input {
    position: absolute;
    left: 18px;
    width: 17px;
    height: 17px;
    accent-color: var(--ink);
}

.delivery-method-option span,
.delivery-method-option small {
    display: block;
}

.delivery-method-option b {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.delivery-method-option small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.pickup-verify-form {
    width: 100%;
    min-width: 145px;
    max-width: 165px;
    margin-top: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
}

.pickup-verify-form input {
    min-width: 0;
    width: 100%;
    height: 36px;
    padding: 0 9px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.pickup-verify-form .ghost {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 0 10px;
    font-size: 9px;
}

.paytr-refund-form { display:grid; gap:6px; margin-top:10px; min-width:180px; }
.paytr-refund-form input { width:100%; min-width:0; padding:8px 10px; border:1px solid #d9d2ca; border-radius:6px; background:#fff; }
.paytr-refund-form button { width:100%; padding:8px 10px; }
.paytr-refund-form small, .paytr-refund-form label { color:#746d65; font-size:11px; }
.refund-history, .refund-disabled-note { display:block; margin-top:7px; color:#746d65; font-size:11px; line-height:1.35; }
.refund-disabled-note { color:#9b4d43; }
.admin-return-request { min-width:210px;margin-bottom:10px;padding:10px;display:grid;gap:6px;border:1px solid #d9c9ba;border-radius:7px;background:#fff8f1; }
.admin-return-request strong,.admin-return-request small { display:block; }
.admin-return-request form { display:grid;gap:5px; }
.admin-return-request input { width:100%;min-width:0;padding:7px;border:1px solid #d9d2ca;border-radius:5px; }
.admin-return-request :is(.btn,.ghost) { width:100%;padding:7px;font-size:8px; }

.admin-order-products {
    min-width: 190px;
    display: grid;
    gap: 7px;
}

.admin-order-product {
    display: flex;
    align-items: center;
    gap: 9px;
}

.admin-order-product img {
    width: 46px;
    height: 58px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    object-fit: cover;
}

.admin-order-product > span,
.admin-order-product strong,
.admin-order-product small {
    display: block;
}

.admin-order-product strong {
    max-width: 180px;
    overflow: hidden;
    color: var(--ink);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-order-product small {
    margin-top: 3px;
    color: #746b63;
    font-size: 10px;
    line-height: 1.45;
}

.admin-order-campaign {
    width: fit-content;
    margin-top: 4px;
    padding: 3px 5px;
    display: block;
    border-radius: 4px;
    color: #fffaf5;
    background: var(--ink);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .7px;
}

.admin-order-product .admin-order-campaign-detail {
    max-width: 220px;
    color: #654d38;
    font-weight: 600;
    white-space: normal;
}

.admin-order-products-mobile {
    margin: 14px 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.pickup-verified-label {
    display: block;
    margin-top: 7px;
    color: #537052;
    font-size: 10px;
    font-weight: 600;
}

.pickup-resend-form {
    margin-top: 5px;
}

.pickup-resend-form button {
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--muted);
    font-size: 9px;
    cursor: pointer;
}

.verification-resend-form {
    margin-top: 10px;
}

.verification-resend-form .ghost {
    width: 100%;
}

.campaign-admin-section {
    border-top: 3px solid var(--ink);
}

.campaign-rule-preview {
    justify-content: center;
    text-align: center;
}

.campaign-rule-preview > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.campaign-rule-preview > strong {
    display: block;
    margin: 12px 0 22px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
}

.campaign-list-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.cart-summary .cart-campaign-status {
    margin: 0 0 18px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: initial;
    gap: 0;
    border: 1px solid #d8c7b5;
    border-radius: 10px;
    background: #f5ede4;
}

.cart-summary .cart-campaign-status > span,
.cart-summary .cart-campaign-status > strong,
.cart-summary .cart-campaign-status > small {
    display: block;
}

.cart-summary .cart-campaign-select {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 4px;
    padding: 9px 12px;
    border: 1px solid currentColor;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
}

.cart-summary .cart-campaign-status > span {
    margin-bottom: 6px;
    color: #8a7460;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.cart-summary .cart-campaign-status > strong {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.4;
}

.cart-summary .cart-campaign-status > small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.cart-summary .cart-campaign-status.is-applied {
    border-color: #9eb397;
    background: #edf3e9;
}

.cart-summary .cart-campaign-status.is-applied > span {
    color: #466342;
}

@media (max-width: 720px) {
    .settings-section-save,
    .settings-section-actions,
    .settings-section-actions .btn,
    .settings-section-actions .ghost {
        width: 100%;
    }

    .delivery-methods {
        grid-template-columns: 1fr;
    }

    .pickup-verify-mobile {
        margin: 14px 0;
    }

    .pickup-verify-mobile input {
        width: 100%;
    }
}

.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: 14px 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 {
        height: 82px;
        min-height: 82px;
        margin: 0 0 12px;
        font-size: 32px;
    }

    .admin-brand .brand-logo-image {
        width: 210px;
        height: 210px;
        max-width: none;
        max-height: none;
        flex-basis: 210px;
    }

    .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;
    }

    .header-contact-info {
        display: none;
    }

    .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;
    }

    .header-wrap.menu-active {
        z-index: 120;
    }

    .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: 122;
    }

    .header-wrap.menu-active .mobile-menu {
        transform: translateX(0);
    }

    .header-wrap.menu-active .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        z-index: 121;
    }

    .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));
    }

    .mobile-menu-footer {
        display: grid;
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid var(--line);
    }

    .mobile-menu-footer .mobile-menu-tools {
        gap: 10px;
    }

    .mobile-menu-page-tools {
        padding-bottom: 10px;
        border-bottom: 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.active {
        color: var(--ink);
        background: var(--soft);
        border-color: #d9c7b4;
    }

    .mobile-menu-tools a span {
        max-width: 100%;
        font-size: 10px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .mobile-menu-nav {
        gap: 0;
        border-top: 1px solid var(--line);
    }

    .mobile-menu-nav > .mobile-home-link {
        min-height: 74px;
        padding: 11px 14px;
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr) 18px;
        gap: 12px;
        align-items: center;
        border: 1px solid #ddcdbd;
        border-bottom-color: #ddcdbd;
        background: linear-gradient(135deg, #f2e5d7 0%, #fffaf5 100%);
    }

    .mobile-home-icon {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        background: var(--ink);
    }

    .mobile-home-icon svg {
        width: 18px;
        height: 18px;
        stroke-width: 1.6;
    }

    .mobile-home-copy {
        min-width: 0;
        display: grid;
        gap: 3px;
    }

    .mobile-home-copy strong {
        font-size: 13px;
        letter-spacing: .02em;
    }

    .mobile-home-copy small {
        color: var(--muted);
        font-size: 10px;
        font-weight: 500;
    }

    .mobile-home-arrow {
        display: grid;
        place-items: center;
    }

    .mobile-home-arrow svg {
        width: 17px;
        height: 17px;
        stroke-width: 1.5;
    }

    .mobile-menu-nav > a.mobile-home-link.active {
        background: linear-gradient(135deg, #ead8c5 0%, #f8eee4 100%);
    }

    .mobile-menu-nav > a,
    .mobile-shop-row > a {
        min-height: 50px;
        padding: 0 12px;
        border: 0;
        border-bottom: 1px solid var(--line);
        background: #fff;
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-menu-nav > a.active {
        color: var(--ink);
        background: var(--soft);
        border-color: var(--line);
    }

    .mobile-shop-row {
        grid-template-columns: 1fr 50px;
        gap: 0;
    }

    .mobile-shop-row > button {
        min-height: 50px;
        border: 0;
        border-left: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: #fff;
    }

    .mobile-shop-item.category-open .mobile-shop-row > button {
        background: var(--ink);
        color: #fff;
    }

    .mobile-shop-item.category-open .mobile-menu-categories {
        max-height: 520px;
        padding: 0;
    }

    .mobile-menu-categories {
        padding: 0;
        gap: 0;
        background: #fff;
    }

    .mobile-menu-categories a {
        min-height: 50px;
        padding: 7px 18px;
        display: grid;
        grid-template-columns: 22px 1fr;
        gap: 12px;
        align-items: center;
        border: 0;
        border-bottom: 1px solid var(--line);
        background: #fff;
        color: var(--muted);
        font-size: 14px;
        font-weight: 400;
    }

    .mobile-menu-categories img {
        width: 22px;
        height: 30px;
        object-fit: cover;
    }

    .mobile-category-tree {
        padding: 10px 0 4px;
        background: #fffaf5;
    }

    .mobile-category-tree > a.mobile-category-new {
        min-height: 36px;
        padding: 0 13px;
        display: flex;
        align-items: center;
        border: 0;
        background: transparent;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .mobile-category-item {
        display: grid;
    }

    .mobile-category-row {
        min-height: 36px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 38px;
        align-items: center;
    }

    .mobile-category-row > a {
        min-height: 36px;
        padding: 0 13px;
        display: flex;
        align-items: center;
        border: 0;
        background: transparent;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .mobile-category-row > button {
        width: 38px;
        height: 36px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .mobile-category-row > button span,
    .mobile-category-row > button span::after {
        width: 15px;
        height: 1px;
        display: block;
        background: currentColor;
        transition: transform .25s ease;
    }

    .mobile-category-row > button span {
        position: relative;
    }

    .mobile-category-row > button span::after {
        position: absolute;
        inset: 0;
        content: '';
        transform: rotate(90deg);
    }

    .mobile-category-item.open .mobile-category-row > button span::after {
        transform: rotate(0deg);
    }

    .mobile-category-children {
        max-height: 0;
        padding: 0 13px 0 24px;
        display: grid;
        overflow: hidden;
        opacity: 0;
        transition: max-height .32s ease, opacity .22s ease, padding .32s ease;
    }

    .mobile-category-item.open .mobile-category-children {
        max-height: 420px;
        padding-top: 4px;
        padding-bottom: 8px;
        opacity: 1;
    }

    .mobile-category-children a {
        min-height: 31px;
        padding: 0 10px;
        display: flex;
        align-items: center;
        border: 0;
        border-left: 1px solid #d8c2ad;
        background: transparent;
        color: var(--muted);
        font-size: 11px;
        font-weight: 600;
    }

    .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);
    }

    .products-wrap .arrow {
        width: 40px;
        height: 40px;
        display: grid;
    }

    .products-wrap .arrow.left {
        left: -8px;
    }

    .products-wrap .arrow.right {
        right: -8px;
    }

    .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 {
        display: none;
    }

    .mobile-shop-category-menu {
        display: block;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 250, 245, .82);
    }

    .mobile-shop-category-toggle {
        width: 100%;
        min-height: 72px;
        padding: 10px 14px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 22px;
        gap: 12px;
        align-items: center;
        border: 0;
        background: transparent;
        color: var(--ink);
        text-align: left;
        cursor: pointer;
    }

    .mobile-shop-category-toggle-icon,
    .mobile-shop-category-thumb {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        overflow: hidden;
        border: 1px solid rgba(23, 21, 17, .1);
        border-radius: 50%;
        background: #fff;
    }

    .mobile-shop-category-toggle-icon svg,
    .mobile-shop-category-thumb svg {
        width: 18px;
        height: 18px;
    }

    .mobile-shop-category-toggle > span:nth-child(2) {
        display: grid;
        gap: 4px;
    }

    .mobile-shop-category-toggle small {
        color: var(--muted);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 1.2px;
    }

    .mobile-shop-category-toggle strong {
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-shop-category-toggle > svg {
        width: 18px;
        height: 18px;
        transition: transform .25s ease;
    }

    .mobile-shop-category-menu.open .mobile-shop-category-toggle > svg {
        transform: rotate(90deg);
    }

    .mobile-shop-category-list {
        max-height: 0;
        overflow: hidden;
        border-top: 1px solid transparent;
        transition: max-height .35s ease, border-color .25s ease;
    }

    .mobile-shop-category-menu.open .mobile-shop-category-list {
        max-height: 460px;
        overflow-y: auto;
        border-top-color: var(--line);
    }

    .mobile-shop-category-list a {
        min-height: 62px;
        padding: 8px 14px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        background: rgba(255, 253, 250, .78);
    }

    .mobile-shop-category-list a:last-child {
        border-bottom: 0;
    }

    .mobile-shop-category-list a.active {
        background: #f0e5d9;
    }

    .mobile-shop-category-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-shop-category-thumb.is-all {
        background: #eee3d7;
    }

    .mobile-shop-category-list strong {
        overflow: hidden;
        font-size: 13px;
        font-weight: 500;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-shop-category-list small {
        min-width: 26px;
        color: var(--muted);
        font-size: 10px;
        text-align: right;
    }

    .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;
    }

    .user-edit-form {
        grid-template-columns: 1fr;
    }

    .user-edit-wide,
    .user-account-switches,
    .user-edit-submit {
        grid-column: auto;
    }

    .user-row-card {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .user-row-card img,
    .user-avatar-chip {
        width: 50px;
        height: 50px;
    }

    .user-edit-link {
        grid-column: 1 / -1;
        width: 100%;
    }

    .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-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 10px;
        justify-content: center;
    }

    .footer-legal-links a + a::before {
        display: none;
    }

    .footer-legal-links a {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    .footer-credit {
        justify-self: 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;
    }

    .admin-dropdown {
        right: auto;
        left: 0;
        width: min(300px, calc(100vw - 48px));
    }

    .shop-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .shop-products .product-img.has-mobile-gallery {
        touch-action: pan-x pan-y;
    }

    .shop-products .has-mobile-gallery .product-card-gallery-track {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .shop-products .has-mobile-gallery .product-card-gallery-track::-webkit-scrollbar {
        display: none;
    }

    .shop-products .has-mobile-gallery .product-card-gallery-slide {
        flex: 0 0 100%;
        display: block;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .shop-products .has-mobile-gallery .product-card-gallery-dots {
        position: absolute;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 5;
        display: flex;
        justify-content: center;
        gap: 5px;
        pointer-events: none;
    }

    .shop-products .product-card-gallery-dots i {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .58);
        box-shadow: 0 0 0 1px rgba(20, 18, 16, .18);
        transition: width .2s ease, background-color .2s ease;
    }

    .shop-products .product-card-gallery-dots i.active {
        width: 14px;
        border-radius: 999px;
        background: #fff;
    }

    .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-filter-mobile-head .ghost {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        display: grid;
        place-items: center;
        border-radius: 50%;
    }

    .shop-filter-mobile-head .ghost svg {
        width: 19px;
        height: 19px;
    }

    .shop-filter-header {
        display: none;
    }

    .shop-filter-form {
        gap: 0;
    }

    .shop-filter-form .filter-special-link {
        margin-bottom: 12px;
    }

    .filter-block {
        border-bottom: 1px solid var(--line);
    }

    .filter-block:first-of-type {
        border-top: 1px solid var(--line);
    }

    .filter-block-toggle {
        min-height: 54px;
        margin: 0;
        cursor: pointer;
        font-size: 13px;
        letter-spacing: 0;
        text-transform: none;
    }

    .filter-block-toggle i {
        position: relative;
        width: 16px;
        height: 16px;
        display: block;
    }

    .filter-block-toggle i::before,
    .filter-block-toggle i::after {
        content: '';
        position: absolute;
        top: 7px;
        left: 2px;
        width: 12px;
        height: 1px;
        background: var(--muted);
        transition: transform .2s ease;
    }

    .filter-block-toggle i::after {
        transform: rotate(90deg);
    }

    .filter-block.open .filter-block-toggle i::after {
        transform: rotate(0);
    }

    .filter-block.has-value .filter-block-toggle span::after {
        content: '';
        width: 5px;
        height: 5px;
        margin-left: 8px;
        display: inline-block;
        border-radius: 50%;
        background: #9a7f65;
        vertical-align: middle;
    }

    .filter-block-content {
        display: none;
        padding: 2px 0 18px;
    }

    .filter-block.open .filter-block-content {
        display: flex;
    }

    .filter-block.open .filter-block-content.price-grid {
        display: grid;
    }

    .filter-actions {
        margin-top: 20px;
    }

    .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;
    }

    .variation-display-options {
        grid-template-columns: 1fr;
    }

    .admin-table-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .combination-stock-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .combination-stock-summary {
        width: 100%;
        justify-items: start;
    }

    .combination-stock-row {
        grid-template-columns: minmax(0, 1fr) 70px 24px;
        padding-left: 10px;
    }

    .combination-stock-row input {
        width: 70px;
    }

    .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-gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .product-gallery-arrow.prev {
        left: 10px;
    }

    .product-gallery-arrow.next {
        right: 10px;
    }

    .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;
        min-height: 0;
        height: auto;
    }

    .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;
    }
}

.category-admin-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}

.category-admin-actions form {
    margin: 0;
}

.category-admin-actions .danger {
    color: #a33a32;
    border-color: rgba(163, 58, 50, .32);
}

.category-list-wrap {
    margin-top: 18px;
    overflow-x: auto;
}

.category-list-table {
    min-width: 880px;
}

.category-list-table td {
    vertical-align: middle;
}

.category-list-thumb {
    width: 58px;
    height: 70px;
    object-fit: cover;
    background: #f1e8de;
}

.category-list-title {
    min-width: 190px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.category-list-title > span {
    color: #9a7050;
    font-size: 18px;
}

.category-list-title div {
    display: grid;
    gap: 5px;
}

.category-list-title small,
.category-parent-name,
.category-list-table td[data-label="İçerik"] small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.category-list-table .is-child-category td:first-child {
    border-left: 3px solid #c7aa8c;
}

.category-list-table .is-child-category {
    transform: translateX(24px);
}

.category-list-table .is-child-category .category-list-title > span {
    margin-left: 0;
}

/* 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: 12px 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-current-status {
        width: 100%;
    }

    .order-step-btn:not(:disabled):is(:hover, :focus-visible) {
        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: 1 / 1;
    }

    .hero-media picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-media picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-slider-arrow {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

    .hero-slider-arrow.prev { left: 10px; }
    .hero-slider-arrow.next { right: 10px; }

    .hero-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-slider-dots {
        bottom: 12px;
    }

    .hero-slide .hero-copy {
        width: min(71%, 320px);
        height: 100%;
        padding: 18px 20px 39px;
        background: transparent;
        text-shadow: 0 1px 14px rgba(255, 250, 245, .28);
    }

    .hero-slide .hero-copy h1 {
        font-size: clamp(21px, 5.9vw, 26px);
        line-height: 1.08;
    }

    .hero-slide .hero-copy > p:last-of-type {
        font-size: min(var(--slide-text-size, 16px), 13px);
        line-height: 1.43;
    }

    .hero-slide .hero-copy .btn {
        min-height: 40px;
        padding: 0 19px;
    }

    .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;
    }

    .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;
    }
}

@media (max-width: 640px) {
    .site-auth-shell {
        padding: 14px;
    }

    .site-auth-panel,
    .site-auth-panel-wide {
        padding: 0;
        border-radius: 16px;
    }

    .site-auth-card-head {
        padding: 20px 20px 22px;
    }

    .site-auth-brand,
    .site-auth-brand:has(.brand-logo-image) {
        width: 250px;
        height: 76px;
        margin-bottom: 10px;
    }

    .site-auth-brand .brand-logo-image {
        width: 250px;
        max-width: none;
        max-height: none;
    }

    .site-auth-content {
        padding: 24px 20px 26px;
    }

    .site-auth-panel-wide .form-grid {
        grid-template-columns: 1fr;
    }

    .site-auth-panel-wide .field.full {
        grid-column: auto;
    }

    .site-auth-switch {
        align-items: center;
        flex-direction: column;
        gap: 3px;
    }
}
/* Mobil admin başlığı: bildirimler ve profil sağ üstte kalır. */
@media (max-width: 720px) {
    .admin-dashboard-top {
        position: relative;
        min-height: 70px;
        padding-right: 148px;
    }

    .admin-dashboard-top .admin-top-tools {
        width: auto;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .admin-top-tools .admin-profile {
        grid-template-columns: 38px auto;
        column-gap: 8px;
    }

    .admin-top-tools .admin-profile img {
        width: 38px;
        height: 38px;
    }

    .admin-top-tools .admin-profile strong {
        max-width: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11px;
    }

    .admin-top-tools .admin-profile small {
        font-size: 9px;
    }

    .admin-notification-dropdown {
        right: -132px;
        left: auto;
    }

    .admin-profile-dropdown {
        right: 0;
        left: auto;
    }
}

/* Admin actions use the same visual language as product-card actions. */

/* Security operations center */
.security-hero {
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.security-hero h2 {
    max-width: 720px;
    margin: 8px 0 10px;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
}

.security-hero p:last-child { max-width: 760px; color: var(--muted); }
.security-live-state { min-width: 170px; padding: 18px; display: grid; grid-template-columns: 12px 1fr; gap: 3px 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--soft); }
.security-live-state i { width: 10px; height: 10px; margin-top: 5px; border-radius: 50%; background: #a33; box-shadow: 0 0 0 6px rgba(163,51,51,.1); }
.security-live-state span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .8px; }
.security-live-state strong { grid-column: 2; font-size: 18px; }
.security-live-state.is-active i { background: #297a52; box-shadow: 0 0 0 6px rgba(41,122,82,.12); }
.security-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .75fr); gap: 20px; }
.security-panel { min-width: 0; padding: 26px; }
.security-panel .panel-head { margin-bottom: 20px; align-items: flex-start; }
.security-panel .panel-head h2 { margin: 0 0 5px; }
.security-panel .panel-head p { margin: 0; color: var(--muted); font-size: 12px; }
.security-events-panel { grid-row: span 2; }
.security-event-list { max-height: 780px; overflow: auto; border-top: 1px solid var(--line); }
.security-event { padding: 15px 0; display: grid; grid-template-columns: 66px minmax(0,1fr) 112px 76px; gap: 13px; align-items: center; border-bottom: 1px solid var(--line); }
.security-event.is-resolved { opacity: .56; }
.security-event p { margin: 3px 0 5px; font-size: 12px; }
.security-event small { color: var(--muted); font-size: 10px; overflow-wrap: anywhere; }
.security-event time, .security-event em { color: var(--muted); font-size: 10px; font-style: normal; }
.security-severity { padding: 6px 8px; border-radius: 999px; background: #ece7df; font-size: 9px; font-weight: 700; text-align: center; text-transform: uppercase; }
.severity-high .security-severity { color: #8b3b10; background: #fae7d9; }
.severity-critical .security-severity { color: #fff; background: #a92b34; }
.severity-low .security-severity { color: #235d48; background: #e0f0e8; }
.security-settings-form { display: grid; gap: 15px; }
.security-settings-form .toggle-field { margin: 0; }
.security-inline-form { display: grid; grid-template-columns: 1fr 1.5fr 90px auto; gap: 8px; }
.security-inline-form input { min-width: 0; }
.security-block-list, .security-assessment-list { margin-top: 18px; display: grid; gap: 8px; }
.security-block-list > div, .security-assessment-list > div { padding: 12px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 9px; }
.security-block-list span, .security-assessment-list span { min-width: 0; flex: 1; display: grid; gap: 3px; }
.security-block-list small, .security-assessment-list small { color: var(--muted); overflow-wrap: anywhere; }
.security-block-list b, .security-assessment-list b { color: var(--muted); font-size: 10px; }
.security-block-list b.active { color: #a92b34; }
.security-scan-panel, .security-assessment-panel, .security-maintenance-panel { grid-column: 1 / -1; }
.security-scan-list { display: grid; gap: 9px; }
.security-scan-list details { border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.security-scan-list summary { padding: 15px; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; }
.security-scan-list summary span { display: grid; gap: 4px; }
.security-scan-list summary small { color: var(--muted); }
.security-scan-list details > div { padding: 0 15px 15px; display: grid; gap: 7px; }
.security-scan-list details p { margin: 0; padding: 11px; display: grid; gap: 4px; border-left: 3px solid #caa978; background: var(--soft); }
.security-scan-list details p.finding-high, .security-scan-list details p.finding-critical { border-color: #a92b34; }
.security-scan-list details p span { color: var(--muted); font-size: 11px; }
.security-professional-note { margin-bottom: 18px; padding: 15px 17px; border: 1px solid #d8c5ad; border-radius: 10px; background: #f4ede4; }
.security-professional-note p { margin: 5px 0 0; color: var(--muted); }
.security-assessment-form textarea { min-height: 100px; }
.security-maintenance-panel { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.security-maintenance-panel h2 { margin: 0 0 6px; }
.security-maintenance-panel p { margin: 0; color: var(--muted); }
.security-empty { padding: 30px 12px; color: var(--muted); text-align: center; }

@media (max-width: 1100px) {
    .security-grid { grid-template-columns: 1fr; }
    .security-events-panel, .security-scan-panel, .security-assessment-panel, .security-maintenance-panel { grid-column: auto; grid-row: auto; }
}

@media (max-width: 720px) {
    .security-hero { padding: 22px; align-items: flex-start; flex-direction: column; }
    .security-live-state { width: 100%; }
    .security-panel { padding: 18px; }
    .security-event { grid-template-columns: 62px minmax(0,1fr); }
    .security-event time, .security-event form, .security-event em { grid-column: 2; }
    .security-inline-form { grid-template-columns: 1fr; }
    .security-maintenance-panel { align-items: stretch; flex-direction: column; }
    .security-block-list > div, .security-assessment-list > div { align-items: flex-start; flex-wrap: wrap; }
}
.admin-body .btn,
.admin-body .ghost,
.admin-body .settings-section-save {
    width: fit-content;
    min-width: 156px;
    min-height: 50px;
    height: 50px;
    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: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .7px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    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;
}

.admin-body .btn,
.admin-body .settings-section-save {
    background: var(--ink);
    color: #fff;
}

.admin-body .ghost {
    background: transparent;
    color: var(--ink);
}

.admin-body .btn:hover,
.admin-body .btn:focus-visible,
.admin-body .settings-section-save:hover,
.admin-body .settings-section-save:focus-visible {
    background: #342f29;
    border-color: #342f29;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(31, 25, 20, .13);
}

.admin-body .ghost:hover,
.admin-body .ghost:focus-visible {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(31, 25, 20, .1);
}

.admin-body :is(.btn, .ghost, .settings-section-save):disabled {
    opacity: .42;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Dense tables keep the same button design at a compact, non-breaking size. */
.admin-body .admin-table-action-buttons :is(.btn, .ghost),
.admin-body .order-progress-form :is(.btn, .ghost),
.admin-body .pickup-verify-form :is(.btn, .ghost),
.admin-body .editor-toolbar .ghost {
    min-width: 0;
    min-height: 40px;
    height: 40px;
    padding-inline: 16px;
    border-radius: 8px;
}

/* Sipariş adım düğmeleri genel admin buton ölçülerinden bağımsızdır. */
.admin-body .order-progress-form .order-step-btn {
    width: 76px;
    min-width: 76px;
    padding: 0;
    transition: width .28s ease, color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.admin-body .order-progress-form .order-step-btn:first-of-type {
    justify-self: start;
}

.admin-body .order-progress-form .order-step-btn:last-of-type {
    justify-self: end;
}

.admin-body .order-progress-form .order-step-btn:not(:disabled):is(:hover, :focus-visible) {
    width: 132px;
    min-width: 132px;
}

@media (max-width: 980px) {
    .admin-body .order-progress-form {
        min-width: 0;
        grid-template-columns: 1fr;
    }

    .admin-body .order-progress-form .order-step-btn,
    .admin-body .order-progress-form .order-step-btn:not(:disabled):is(:hover, :focus-visible) {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }
}

.admin-body .panel-head :is(button, a) {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.admin-body .panel-head :is(button, a):hover,
.admin-body .panel-head :is(button, a):focus-visible {
    background: var(--ink);
    color: #fff;
}

@media (max-width: 720px) {
    .admin-body .panel > form > .btn,
    .admin-body .inline-editor > .btn,
    .admin-body .settings-section-actions :is(.btn, .ghost),
    .admin-body .banner-preview-card :is(.btn, .ghost) {
        width: 100%;
        min-width: 0;
    }
}
