:root {
  color-scheme: light;
  --ink: #101010;
  --muted: #6b6762;
  --line: #e7e2dc;
  --line-strong: #cbc3ba;
  --paper: #ffffff;
  --soft: #f7f4f0;
  --warm: #eadbcd;
  --wine: #7c2331;
  --green: #295f4e;
  --gold: #a87c42;
  --theme-accent: #111111;
  --footer: #101010;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  --serif: "Times New Roman", "Noto Serif KR", Georgia, serif;
  --shadow: 0 14px 34px rgba(29, 25, 21, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #ece9e5; color: var(--ink); font-family: var(--sans); font-size: 14px; letter-spacing: 0; }
body:has(.admin-shell) { background: #f3f4f6; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, select { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.45; }
img { display: block; width: 100%; }
svg { flex: 0 0 auto; }
.app-root { min-height: 100vh; }
.store-shell { width: min(100%, 1920px); min-height: 100vh; margin: 0 auto; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.04); }
.primary-button, .secondary-button { min-height: 42px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--ink); border-radius: 0; font-weight: 800; }
.primary-button { background: var(--theme-accent); color: #fff; }
.primary-button:hover { background: #292929; }
.secondary-button { background: #fff; color: var(--ink); }
.primary-button.full, .secondary-button.full { width: 100%; }
.icon-button { width: 40px; height: 40px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; }
.icon-button svg { width: 22px; height: 22px; stroke-width: 1.6; }
.toast { position: fixed; left: 50%; bottom: 84px; z-index: 200; max-width: calc(100% - 32px); padding: 12px 18px; transform: translate(-50%, 18px); background: #111; color: #fff; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

.guarantee-bar { min-height: 34px; padding: 0 36px; display: flex; align-items: center; gap: 18px; background: #050505; color: #f4f1ed; font-size: 11px; }
.guarantee-bar span { display: inline-flex; align-items: center; gap: 6px; }
.guarantee-bar svg { width: 14px; height: 14px; }
.guarantee-help { margin-left: auto; color: #d5d0ca; }
.desktop-header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); }
.header-main { width: min(100%, 1440px); min-height: 112px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 260px 1fr 250px; align-items: center; gap: 26px; }
.header-search { height: 42px; display: flex; align-items: center; border: 1px solid var(--line-strong); background: #fff; }
.header-search input { width: 100%; height: 100%; padding: 0 13px; border: 0; outline: 0; }
.header-search button { width: 44px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; }
.header-search svg { width: 18px; }
.header-logo { justify-self: center; }
.brand-mark { display: inline-grid; place-items: center; line-height: 1; font-family: var(--serif); }
.brand-mark b { font-size: 43px; font-weight: 500; letter-spacing: .22em; margin-right: -.22em; }
.brand-mark small { margin-top: 7px; font-size: 13px; letter-spacing: .48em; margin-right: -.48em; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 27px; }
.header-actions a { position: relative; min-width: 45px; display: grid; justify-items: center; gap: 5px; font-size: 11px; }
.header-actions svg { width: 24px; height: 24px; stroke-width: 1.45; }
.count-action { position: relative; }
.count-action em { position: absolute; top: -7px; right: 3px; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center; border-radius: 50%; background: #080808; color: #fff; font-size: 9px; font-style: normal; }
.category-nav-wrap { width: min(100%, 1440px); min-height: 54px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 40px 1fr auto auto; align-items: center; gap: 12px; border-top: 1px solid var(--line); }
.category-nav { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.category-nav button { height: 53px; padding: 0 15px; border: 0; border-bottom: 2px solid transparent; background: transparent; white-space: nowrap; font-size: 13px; }
.category-nav button:hover, .category-nav button.active { border-color: #111; font-weight: 800; }
.business-link, .admin-shortcut { padding: 8px 11px; white-space: nowrap; font-size: 12px; font-weight: 800; }
.business-link { color: var(--wine); }
.admin-shortcut { border: 1px solid var(--line-strong); }
.mobile-header, .mobile-bottom-nav { display: none; }

.hero-section { min-height: 570px; display: grid; grid-template-columns: 1.03fr .97fr; background: var(--soft); }
.hero-image { min-height: 570px; position: relative; overflow: hidden; background: #ddd; }
.hero-image img { height: 100%; object-fit: cover; object-position: 50% center; }
.hero-image span { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 70%, rgba(255,255,255,.18)); }
.hero-copy { min-width: 0; padding: 90px 7vw 74px 64px; position: relative; display: flex; flex-direction: column; justify-content: center; background: #e7d8ca; }
.hero-copy > p { margin: 0 0 12px; font: 19px var(--serif); }
.hero-copy h1 { margin: 0 0 20px; font: 500 50px/1 var(--serif); }
.hero-description { max-width: 400px; color: #332e29; font-size: 17px; line-height: 1.6; }
.hero-services { width: min(100%, 650px); margin: 44px 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hero-services span { min-width: 0; display: grid; justify-items: center; gap: 6px; text-align: center; }
.hero-services svg { width: 27px; height: 27px; stroke-width: 1.4; }
.hero-services b { font-size: 10px; white-space: nowrap; }
.hero-services small { color: #60564d; font-size: 9px; }
.hero-copy .primary-button { width: 168px; min-height: 48px; }
.hero-pager { position: absolute; left: 64px; bottom: 28px; display: flex; gap: 15px; color: #7c7269; font-size: 12px; }
.hero-pager b { color: #111; }
.benefit-strip { width: min(100%, 1440px); margin: 0 auto; padding: 34px 40px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; border-bottom: 1px solid var(--line); }
.benefit-strip article, .trust-band article { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 13px; }
.benefit-strip svg, .trust-band svg { width: 29px; height: 29px; stroke-width: 1.4; }
.benefit-strip strong, .trust-band strong { display: block; margin-bottom: 3px; font-size: 12px; }
.benefit-strip span, .trust-band span { color: var(--muted); font-size: 10px; }

.catalog-section, .instagram-section, .page-shell { width: min(100%, 1440px); margin: 0 auto; padding: 48px 40px; }
.section-title { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; }
.section-title small, .page-heading small, .admin-page-title small { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.section-title h2 { margin: 6px 0 0; font: 500 30px var(--serif); }
.section-title > a { display: flex; align-items: center; gap: 3px; font-size: 12px; }
.section-title > a svg { width: 15px; }
.section-title.centered { justify-content: center; text-align: center; }
.section-title.centered h2 { font-size: 24px; }
.section-title.centered p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.catalog-layout { display: grid; grid-template-columns: 220px 1fr; gap: 30px; }
.filter-panel { align-self: start; border-top: 2px solid #111; }
.filter-panel h3 { margin: 0; padding: 16px 2px; border-bottom: 1px solid var(--line); font-size: 16px; }
.filter-panel > div { padding: 17px 2px; display: grid; gap: 10px; border-bottom: 1px solid var(--line); }
.filter-panel > div > strong { margin-bottom: 3px; font-size: 12px; }
.filter-panel button { width: 100%; padding: 5px 0; display: flex; justify-content: space-between; border: 0; background: transparent; color: var(--muted); text-align: left; font-size: 12px; }
.filter-panel button.active { color: #111; font-weight: 800; }
.filter-panel label, .filter-panel p { margin: 0; color: var(--muted); font-size: 11px; }
.filter-panel input[type="range"] { width: 100%; accent-color: #111; }
.catalog-main { min-width: 0; }
.catalog-toolbar { min-height: 44px; margin-bottom: 15px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.catalog-toolbar span { color: var(--muted); font-size: 12px; }
.catalog-toolbar span b { color: #111; }
.catalog-toolbar select { height: 34px; padding: 0 28px 0 10px; border: 1px solid var(--line); background: #fff; color: #333; font-size: 11px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 25px 14px; }
.product-card { min-width: 0; position: relative; }
.product-image { aspect-ratio: 1 / 1.06; display: block; position: relative; overflow: hidden; background: #f4f2ef; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.discount-badge { position: absolute; left: 9px; top: 9px; padding: 4px 7px; background: var(--wine); color: #fff; font-size: 10px; font-weight: 800; }
.wish-button { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; display: grid; place-items: center; border: 0; background: rgba(255,255,255,.88); }
.wish-button svg { width: 17px; stroke-width: 1.4; }
.wish-button.is-active svg, .wish-large.is-active svg { fill: #111; }
.product-info { padding-top: 12px; }
.product-brand { margin: 0 0 4px; font-size: 10px; font-weight: 800; }
.product-name { min-height: 34px; display: block; font-size: 12px; line-height: 1.4; }
.product-meta { margin: 5px 0 0; color: var(--muted); font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-price { margin-top: 8px; display: grid; gap: 3px; }
.product-price del { color: #aaa; font-size: 9px; }
.product-price strong { font-size: 12px; }
.promo-grid { width: min(100%, 1440px); margin: 0 auto; padding: 0 40px 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.promo-card { min-height: 255px; padding: 28px; position: relative; display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; overflow: hidden; }
.promo-card.soft { background: #f1ebe5; }
.promo-card.warm { background: #dfc9b5; }
.promo-card small { font: 15px var(--serif); }
.promo-card h3 { margin: 10px 0 24px; color: #4b433b; font-size: 13px; font-weight: 500; }
.promo-card a { width: 78px; height: 32px; display: grid; place-items: center; border: 1px solid #7a726a; font-size: 10px; }
.promo-card > img { height: 175px; object-fit: cover; mix-blend-mode: multiply; }
.promo-card.photo { display: block; padding: 0; color: #fff; }
.promo-card.photo > img { height: 100%; object-fit: cover; filter: brightness(.64); mix-blend-mode: normal; }
.promo-card.photo > div { position: absolute; left: 28px; top: 38px; }
.promo-card.photo h3 { color: #fff; line-height: 1.5; }
.promo-card.photo a { border-color: #fff; }
.instagram-section { padding-top: 12px; }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.instagram-grid img { aspect-ratio: 1; object-fit: cover; }
.trust-band { width: min(100%, 1440px); margin: 0 auto; padding: 43px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.site-footer { min-height: 230px; padding: 46px 50px; display: grid; grid-template-columns: 230px 1.5fr 220px 180px; gap: 30px; align-items: start; background: var(--footer); color: #f6f3ef; }
.footer-logo .brand-mark b { font-size: 33px; }
.footer-logo .brand-mark small { font-size: 10px; }
.footer-company, .footer-cs, .site-footer nav { display: grid; gap: 7px; color: #bdb6af; font-size: 11px; line-height: 1.55; }
.footer-company strong { color: #fff; }
.footer-cs strong { color: #fff; font-size: 24px; }
.site-footer nav a:hover { color: #fff; }

.page-shell { min-height: 60vh; }
.page-heading { margin-bottom: 34px; text-align: center; }
.page-heading.left { text-align: left; }
.page-heading h1 { margin: 7px 0 9px; font: 500 36px var(--serif); }
.page-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.page-search { width: min(100%, 760px); height: 52px; margin: 0 auto 36px; display: flex; }
.page-search input { min-width: 0; flex: 1; padding: 0 16px; border: 1px solid #111; outline: 0; }
.page-search .primary-button { min-width: 120px; }
.mobile-category-chips { display: none; }
.search-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.empty-state { grid-column: 1 / -1; min-height: 180px; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); }
.breadcrumbs { margin-bottom: 22px; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; }
.breadcrumbs svg { width: 13px; }
.product-detail { display: grid; grid-template-columns: 1fr .9fr; gap: 62px; }
.product-gallery { min-width: 0; }
.main-photo { aspect-ratio: 1 / .92; overflow: hidden; background: #f3f1ee; }
.main-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { margin-top: 9px; display: grid; grid-template-columns: repeat(5, 76px); gap: 8px; }
.gallery-thumbs button { aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.gallery-thumbs button.active { border-color: #111; }
.gallery-thumbs img { height: 100%; object-fit: cover; }
.product-summary { padding-top: 12px; }
.product-detail-brand { margin: 0 0 9px; font-size: 12px; font-weight: 800; }
.product-summary h1 { margin: 0; font: 500 32px/1.3 var(--serif); }
.rating { margin: 12px 0 0; display: flex; align-items: center; gap: 6px; font-size: 11px; }
.rating svg { width: 15px; fill: var(--gold); color: var(--gold); }
.rating a { color: var(--muted); text-decoration: underline; }
.detail-price { margin-top: 30px; padding-bottom: 22px; display: flex; align-items: flex-end; gap: 10px; border-bottom: 1px solid var(--line); }
.detail-price span { color: var(--wine); font-size: 18px; font-weight: 800; }
.detail-price del { color: #aaa; font-size: 12px; }
.detail-price strong { margin-left: auto; font-size: 24px; }
.detail-facts { margin: 0; padding: 20px 0; display: grid; gap: 13px; border-bottom: 1px solid var(--line); }
.detail-facts > div { display: grid; grid-template-columns: 90px 1fr; font-size: 12px; }
.detail-facts dt { color: var(--muted); }
.detail-facts dd { margin: 0; }
.quantity-row, .detail-total { min-height: 58px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.quantity-row > span, .detail-total > span { color: var(--muted); font-size: 12px; }
.quantity-row > div { display: grid; grid-template-columns: 34px 40px 34px; border: 1px solid var(--line-strong); }
.quantity-row button { height: 32px; display: grid; place-items: center; border: 0; background: #fff; }
.quantity-row button svg { width: 14px; }
.quantity-row b { display: grid; place-items: center; font-size: 11px; }
.detail-total strong { font-size: 20px; }
.detail-actions { margin-top: 20px; display: grid; grid-template-columns: 48px 1fr 1fr; gap: 8px; }
.wish-large { display: grid; place-items: center; border: 1px solid #111; background: #fff; }
.wish-large svg { width: 20px; }
.detail-tabs { margin-top: 70px; }
.detail-tabs > nav { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #111; border-bottom: 1px solid var(--line); }
.detail-tabs > nav button { height: 50px; border: 0; border-bottom: 2px solid transparent; background: #fff; }
.detail-tabs > nav button.active { border-color: #111; font-weight: 800; }
.detail-tabs article { padding: 50px max(20px, 8vw); text-align: center; }
.detail-tabs article h2 { margin: 0 0 18px; font: 500 28px var(--serif); }
.detail-tabs article p { color: var(--muted); line-height: 1.8; }
.detail-tabs article > img { width: min(100%, 760px); margin: 32px auto 0; max-height: 700px; object-fit: cover; }
.detail-tabs ul { width: min(100%, 600px); margin: 20px auto; text-align: left; line-height: 2; }
.notice-table { margin: 0 auto; max-width: 760px; text-align: left; border-top: 1px solid #111; }
.notice-table div { display: grid; grid-template-columns: 160px 1fr; border-bottom: 1px solid var(--line); }
.notice-table dt, .notice-table dd { margin: 0; padding: 13px; }
.notice-table dt { background: var(--soft); font-weight: 800; }

.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 35px; align-items: start; }
.cart-list { border-top: 2px solid #111; }
.cart-list-head { min-height: 54px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-list-head label { font-size: 12px; }
.cart-list-head button { border: 0; background: transparent; color: var(--muted); font-size: 11px; text-decoration: underline; }
.cart-item { min-height: 145px; padding: 17px 8px; position: relative; display: grid; grid-template-columns: 24px 110px 1fr 140px 30px; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.cart-item > a img { width: 110px; height: 110px; object-fit: cover; }
.cart-item-info { min-width: 0; display: grid; gap: 5px; }
.cart-item-info > b { font-size: 10px; }
.cart-item-info > a { font-size: 13px; }
.cart-item-info > span { color: var(--muted); font-size: 10px; }
.cart-qty { width: 95px; margin-top: 7px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.cart-qty button { height: 28px; display: grid; place-items: center; border: 0; background: #fff; }
.cart-qty svg { width: 12px; }
.cart-qty b { display: grid; place-items: center; font-size: 10px; }
.cart-item > strong { text-align: right; font-size: 14px; }
.remove-item { width: 30px; height: 30px; display: grid; place-items: center; border: 0; background: transparent; }
.remove-item svg { width: 16px; }
.order-summary { padding: 24px; position: sticky; top: 190px; border: 1px solid #111; background: #fff; }
.order-summary h2 { margin: 0 0 22px; font-size: 17px; }
.order-summary dl { margin: 0; display: grid; gap: 13px; }
.order-summary dl > div { display: flex; justify-content: space-between; font-size: 12px; }
.order-summary dt { color: var(--muted); }
.order-summary dd { margin: 0; }
.order-summary .summary-total { margin-top: 9px; padding-top: 18px; align-items: center; border-top: 1px solid #111; }
.order-summary .summary-total dd { font-size: 20px; font-weight: 800; }
.order-summary .primary-button { margin-top: 24px; }
.order-summary > p { margin: 13px 0 0; display: flex; gap: 6px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.order-summary > p svg { width: 14px; }
.empty-cart, .login-gate { min-height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-cart > svg, .login-gate > svg { width: 52px; height: 52px; stroke-width: 1; }
.empty-cart h2, .login-gate h1 { margin: 20px 0 7px; font: 500 28px var(--serif); }
.empty-cart p, .login-gate p { margin: 0 0 25px; color: var(--muted); }
.login-gate { gap: 8px; }
.login-gate .secondary-button { margin-top: 0; }

.auth-page { min-height: calc(100vh - 34px); display: grid; grid-template-columns: 1.1fr .9fr; background: #fff; }
.auth-visual { position: relative; min-height: 740px; overflow: hidden; }
.auth-visual > img { height: 100%; object-fit: cover; filter: brightness(.72); }
.auth-visual > div { position: absolute; left: 0; right: 0; bottom: 60px; display: grid; justify-items: center; color: #fff; }
.auth-visual .brand-mark b { font-size: 55px; }
.auth-visual .brand-mark small { font-size: 16px; }
.auth-visual p { margin-top: 18px; font: 15px var(--serif); }
.auth-panel { width: min(100%, 520px); margin: auto; padding: 52px; }
.auth-logo { display: none; margin-bottom: 35px; }
.auth-panel > .eyebrow { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.auth-panel > h1 { margin: 8px 0; font: 500 34px var(--serif); }
.auth-panel > p:not(.eyebrow):not(.auth-switch) { margin: 0; color: var(--muted); line-height: 1.6; }
.social-login { margin-top: 30px; display: grid; gap: 9px; }
.social-login button { height: 45px; position: relative; border: 1px solid var(--line-strong); background: #fff; font-weight: 700; }
.social-login button b { position: absolute; left: 16px; }
.social-login .kakao { background: #fee500; border-color: #fee500; }
.social-login .naver { background: #03c75a; border-color: #03c75a; color: #fff; }
.auth-divider { margin: 25px 0; display: flex; align-items: center; gap: 12px; color: #aaa; font-size: 10px; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.auth-form { display: grid; gap: 13px; }
.auth-form label, .form-grid label, .design-properties label, .claim-card label { display: grid; gap: 7px; color: #4f4b47; font-size: 11px; font-weight: 700; }
.auth-form input, .form-grid input, .form-grid select, .design-properties input, .design-properties textarea, .claim-card textarea { width: 100%; height: 43px; padding: 0 12px; border: 1px solid var(--line-strong); background: #fff; outline: 0; }
.auth-form input:focus, .form-grid input:focus, .design-properties input:focus, .claim-card textarea:focus { border-color: #111; }
.check-line { display: flex !important; align-items: flex-start; grid-template-columns: 18px 1fr; gap: 8px !important; line-height: 1.5; }
.check-line input { width: 16px !important; height: 16px !important; margin: 2px 0 0; }
.auth-options { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; }
.auth-options label { display: flex; align-items: center; gap: 5px; }
.auth-options input { width: 14px; height: 14px; }
.auth-switch { margin: 22px 0 0; text-align: center; color: var(--muted); font-size: 11px; }
.auth-switch a { color: #111; font-weight: 800; text-decoration: underline; }

.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 35px; align-items: start; }
.checkout-sections { display: grid; gap: 22px; }
.form-section { border-top: 2px solid #111; }
.form-section-title { min-height: 54px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.form-section-title h2 { margin: 0; font-size: 16px; }
.form-section-title button { border: 0; background: transparent; font-size: 10px; text-decoration: underline; }
.form-grid { padding: 20px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid .wide { grid-column: 1 / -1; }
.form-grid textarea { min-height: 90px; padding: 12px; }
.checkout-product { padding: 16px 0; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.checkout-product img { width: 90px; height: 90px; object-fit: cover; }
.checkout-product b { font-size: 10px; }
.checkout-product p { margin: 5px 0; font-size: 12px; }
.checkout-product span { color: var(--muted); font-size: 9px; }
.payment-methods { padding: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.payment-methods label { min-width: 0; }
.payment-methods input { position: absolute; opacity: 0; }
.payment-methods span { min-height: 54px; padding: 10px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); text-align: center; font-size: 11px; }
.payment-methods input:checked + span { border: 2px solid #111; font-weight: 800; }
.payment-methods svg { width: 18px; }
.payment-note { margin: 0 0 20px; color: var(--muted); font-size: 10px; }
.checkout-summary .check-line { margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); }
.order-complete { min-height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.order-complete > svg { width: 66px; height: 66px; color: var(--green); stroke-width: 1.2; }
.order-complete > p { margin: 20px 0 6px; color: var(--gold); font: 13px var(--serif); }
.order-complete h1 { margin: 0 0 10px; font: 500 34px var(--serif); }
.order-complete > span { color: var(--muted); }
.order-complete > div { margin-top: 28px; display: flex; gap: 8px; }

.my-layout { display: grid; grid-template-columns: 210px 1fr; gap: 35px; }
.my-menu { align-self: start; border-top: 2px solid #111; }
.my-menu a { min-height: 45px; padding: 0 4px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.my-menu a.active { color: #111; font-weight: 800; }
.my-menu svg { width: 14px; }
.my-panel { min-width: 0; border-top: 2px solid #111; }
.my-panel > h2, .my-panel .panel-title { min-height: 56px; margin: 0; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.my-panel .panel-title { justify-content: space-between; }
.my-panel .panel-title h2 { margin: 0; font-size: 16px; }
.profile-info { margin: 0 0 20px; }
.profile-info div { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--line); }
.profile-info dt, .profile-info dd { margin: 0; padding: 14px; }
.profile-info dt { color: var(--muted); background: var(--soft); }
.wishlist-grid { padding-top: 20px; grid-template-columns: repeat(4, 1fr); }
.address-item { margin-top: 20px; padding: 20px; position: relative; border: 1px solid var(--line); }
.address-item > b { padding: 4px 7px; background: #111; color: #fff; font-size: 9px; }
.address-item h3 { margin: 14px 0 7px; }
.address-item p { margin: 0 0 5px; }
.address-item span { color: var(--muted); }
.address-item > div { position: absolute; top: 20px; right: 20px; }
.address-item button, .inquiry-list button { border: 0; background: transparent; color: var(--muted); font-size: 10px; text-decoration: underline; }
.inquiry-list article { min-height: 76px; padding: 14px 5px; display: grid; grid-template-columns: 75px 1fr 90px; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.inquiry-list p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.inquiry-list time { color: var(--muted); font-size: 10px; text-align: right; }
.status-chip { display: inline-flex; width: fit-content; padding: 4px 7px; border: 1px solid #cbd6d2; background: #eff6f3; color: var(--green); font-size: 9px; font-weight: 800; white-space: nowrap; }
.status-chip.waiting { border-color: #ead9b6; background: #fff8e7; color: #8a641a; }
.status-chip.complete { border-color: #c9dfd5; background: #edf8f2; color: #236247; }
.status-chip.danger { border-color: #e6c3c8; background: #fff0f2; color: var(--wine); }
.order-list { display: grid; gap: 14px; padding-top: 18px; }
.order-list article { border: 1px solid var(--line); }
.order-head { min-height: 42px; padding: 0 14px; display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 12px; background: var(--soft); font-size: 10px; }
.order-body { min-height: 90px; padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.order-body p { margin: 6px 0 0; color: var(--muted); font-size: 10px; }
.order-body > div:last-child { display: flex; gap: 6px; }
.business-form { max-width: 760px; }
.bulk-hero { min-height: 460px; display: grid; grid-template-columns: .9fr 1.1fr; background: #171717; color: #fff; }
.bulk-hero > div { padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.bulk-hero small { color: #d7b786; letter-spacing: .12em; }
.bulk-hero h1 { margin: 15px 0; font: 500 42px/1.25 var(--serif); }
.bulk-hero p { max-width: 500px; color: #d0cbc5; line-height: 1.8; }
.bulk-hero img { height: 100%; object-fit: cover; }
.bulk-features { padding: 50px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bulk-features article { padding: 0 25px; border-right: 1px solid var(--line); }
.bulk-features article:last-child { border-right: 0; }
.bulk-features svg { width: 30px; }
.bulk-features h2 { margin: 14px 0 8px; font: 500 20px var(--serif); }
.bulk-features p { color: var(--muted); line-height: 1.7; }

.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 232px 1fr; background: #f4f5f6; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 24px 15px 18px; display: flex; flex-direction: column; background: #131517; color: #fff; }
.admin-brand { padding: 0 10px 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.admin-brand > small { display: block; margin-bottom: 9px; color: #d7b786; font-size: 9px; letter-spacing: .2em; }
.admin-brand .brand-mark { display: inline-grid; }
.admin-brand .brand-mark b { font-size: 23px; }
.admin-brand .brand-mark small { font-size: 7px; }
.admin-brand > span { display: block; margin-top: 10px; color: #9ea2a6; font-size: 9px; }
.admin-sidebar nav { margin-top: 19px; display: grid; gap: 3px; }
.admin-sidebar nav button { width: 100%; height: 40px; padding: 0 11px; display: flex; align-items: center; gap: 11px; border: 0; border-left: 2px solid transparent; background: transparent; color: #c6c9cc; text-align: left; font-size: 12px; }
.admin-sidebar nav button svg { width: 17px; stroke-width: 1.6; }
.admin-sidebar nav button:hover { background: rgba(255,255,255,.06); color: #fff; }
.admin-sidebar nav button.active { border-left-color: #d7b786; background: #fff; color: #111; font-weight: 800; }
.admin-mode { margin-top: auto; padding: 12px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.04); }
.admin-mode b { font-size: 10px; }
.admin-mode p { margin: 6px 0 0; color: #aeb3b7; font-size: 9px; line-height: 1.6; }
.back-store { margin-top: 10px; height: 38px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.2); font-size: 10px; }
.back-store svg { width: 15px; }
.admin-workspace { min-width: 0; }
.admin-header { min-height: 86px; padding: 17px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid #dfe2e4; background: #fff; }
.admin-header small { color: var(--green); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.admin-header h1 { margin: 4px 0 2px; font-size: 20px; }
.admin-header p { margin: 0; color: #6d7277; font-size: 10px; }
.admin-header > div:last-child { display: flex; align-items: center; gap: 12px; }
.admin-user { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #17191b; color: #fff; font-size: 10px; font-weight: 800; }
.admin-content { width: min(100%, 1500px); margin: 0 auto; padding: 26px 28px 50px; }
.admin-page-title { margin-bottom: 19px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.admin-page-title h2 { margin: 5px 0 4px; font-size: 25px; }
.admin-page-title p { margin: 0; color: #686e73; font-size: 11px; }
.admin-page-title .primary-button svg, .admin-page-title .secondary-button svg { width: 16px; }
.admin-metrics { margin-bottom: 18px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.admin-metrics.compact { grid-template-columns: repeat(3, 1fr); }
.admin-metric { min-width: 0; padding: 15px; position: relative; border: 1px solid #dfe2e4; background: #fff; }
.admin-metric > svg { position: absolute; top: 14px; right: 14px; width: 20px; color: #747b80; stroke-width: 1.5; }
.admin-metric > span { display: block; color: #6d7378; font-size: 10px; }
.admin-metric > strong { display: block; margin-top: 13px; overflow: hidden; text-overflow: ellipsis; font-size: 18px; white-space: nowrap; }
.admin-metric > small { display: block; margin-top: 7px; color: #8b9094; font-size: 8px; }
.admin-band { margin-bottom: 18px; padding: 16px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 10px; border: 1px solid #cdded7; background: #eef6f2; }
.admin-band > div { padding: 8px; }
.admin-band small { color: var(--green); font-size: 8px; letter-spacing: .12em; }
.admin-band h3 { margin: 6px 0; font-size: 15px; }
.admin-band p { margin: 0; color: #486157; font-size: 9px; line-height: 1.5; }
.admin-band article { padding: 12px; border: 1px solid #cdded7; background: #fff; }
.admin-band article span, .admin-band article small { display: block; color: #597468; font-size: 8px; }
.admin-band article strong { display: block; margin: 10px 0 5px; font-size: 11px; }
.admin-two-column { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.admin-panel { min-width: 0; border: 1px solid #dfe2e4; background: #fff; }
.admin-panel > h3 { margin: 0; padding: 16px; border-bottom: 1px solid #e5e7e9; font-size: 14px; }
.panel-title { min-height: 51px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e5e7e9; }
.panel-title h3 { margin: 0; font-size: 13px; }
.panel-title button { border: 0; background: transparent; color: #687078; font-size: 9px; text-decoration: underline; }
.admin-table-wrap { max-width: 100%; overflow: auto; }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 10px; }
.admin-table th { height: 37px; padding: 0 11px; background: #f5f6f7; color: #60676d; font-size: 8px; white-space: nowrap; }
.admin-table td { min-height: 48px; padding: 11px; border-top: 1px solid #eceeef; color: #4e555b; white-space: nowrap; }
.admin-table td b { display: block; color: #16191b; }
.admin-table td small { display: block; margin-top: 3px; color: #92979b; font-size: 8px; }
.admin-table select { height: 29px; padding: 0 8px; border: 1px solid #d8dcdf; background: #fff; font-size: 9px; }
.table-button { margin-right: 3px; padding: 5px 7px; border: 1px solid #d4d8db; background: #fff; color: #3d444a; font-size: 8px; }
.stock-alerts { padding: 8px 15px; display: grid; }
.stock-alerts > div { padding: 9px 0; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid #eceeef; }
.stock-alerts img { width: 38px; height: 38px; object-fit: cover; }
.stock-alerts b, .stock-alerts small { display: block; font-size: 9px; }
.stock-alerts small { margin-top: 3px; color: #8b9094; }
.stock-alerts strong { font-size: 10px; }
.admin-create-form { margin-bottom: 15px; padding: 18px; border: 1px solid #dfe2e4; background: #fff; }
.admin-create-form.is-hidden { display: none; }
.admin-create-form h3 { margin: 0 0 12px; }
.admin-create-form .form-grid { padding: 0; grid-template-columns: repeat(3, 1fr); }
.admin-create-form .primary-button { margin-top: 14px; }
.table-toolbar { min-height: 55px; padding: 9px 12px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid #e5e7e9; }
.admin-search { width: 270px; height: 35px; padding: 0 10px; display: flex; align-items: center; gap: 8px; border: 1px solid #d8dcdf; }
.admin-search svg { width: 14px; }
.admin-search input { min-width: 0; flex: 1; border: 0; outline: 0; font-size: 9px; }
.table-toolbar > div:last-child { display: flex; gap: 4px; }
.table-toolbar > div:last-child button { height: 29px; padding: 0 9px; border: 1px solid #d8dcdf; background: #fff; font-size: 8px; }
.table-product { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 9px; }
.table-product img { width: 42px; height: 42px; object-fit: cover; }
.table-product span b { color: #6a7075; font-size: 8px; }
.table-product span strong { display: block; margin-top: 3px; color: #16191b; }
.claim-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.claim-card { padding: 17px; border: 1px solid #dfe2e4; background: #fff; }
.claim-card > div:first-child { display: flex; align-items: center; justify-content: space-between; }
.claim-card h3 { margin: 15px 0 7px; }
.claim-card p { margin: 0 0 15px; color: #6c7378; }
.claim-card textarea { min-height: 76px; padding: 9px; resize: vertical; }
.claim-card > div:last-child { margin-top: 12px; display: flex; justify-content: flex-end; gap: 5px; }
.design-studio { min-height: 650px; display: grid; grid-template-columns: 180px 1fr 260px; border: 1px solid #dfe2e4; background: #fff; }
.design-studio > aside, .design-properties { padding: 16px; }
.design-studio > aside { border-right: 1px solid #e3e5e7; }
.design-studio h3 { margin: 0 0 13px; font-size: 13px; }
.design-studio > aside button { width: 100%; height: 35px; padding: 0 10px; border: 0; border-left: 2px solid transparent; background: transparent; text-align: left; font-size: 9px; }
.design-studio > aside button.active { border-color: #111; background: #f1f2f3; font-weight: 800; }
.design-canvas { min-width: 0; padding: 14px; background-color: #f2f3f4; background-image: linear-gradient(#dfe2e4 1px, transparent 1px), linear-gradient(90deg, #dfe2e4 1px, transparent 1px); background-size: 20px 20px; }
.design-toolbar { height: 36px; margin-bottom: 12px; padding: 0 9px; display: flex; align-items: center; gap: 6px; background: #fff; }
.design-toolbar span { padding: 4px 7px; border: 1px solid #d8dcdf; font-size: 8px; }
.design-toolbar button { margin-left: auto; width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #d8dcdf; background: #fff; }
.design-toolbar button + button { margin-left: 0; }
.design-toolbar svg { width: 13px; }
.design-preview { max-width: 760px; min-height: 420px; margin: 35px auto; position: relative; overflow: hidden; background: #ddd; box-shadow: 0 5px 18px rgba(0,0,0,.12); }
.design-preview img { width: 100%; height: 420px; object-fit: cover; filter: brightness(.72); }
.design-preview > div { position: absolute; left: 38px; bottom: 38px; color: #fff; }
.design-preview small { font: 12px var(--serif); }
.design-preview h3 { margin: 8px 0; font: 500 35px var(--serif); }
.design-preview p { max-width: 350px; margin: 0; font-size: 10px; }
.design-properties { display: grid; align-content: start; gap: 12px; border-left: 1px solid #e3e5e7; }
.design-properties textarea { height: 70px; padding: 9px; resize: vertical; }
.design-properties input[type="file"] { padding: 9px 4px; font-size: 8px; }
.settings-list { margin: 0; padding: 15px; }
.settings-list div { min-height: 44px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eceeef; }
.settings-list dt { color: #747a7f; }
.settings-list dd { margin: 0; font-weight: 700; }
.settlement-total { min-height: 240px; padding: 35px; display: grid; align-content: center; justify-items: center; }
.settlement-total small { color: #6d7378; }
.settlement-total strong { margin: 14px 0; font-size: 30px; }
.settlement-total span { color: var(--green); font-weight: 800; }
.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.compliance-grid article { min-height: 74px; padding: 14px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; border: 1px solid #dfe2e4; background: #fff; }
.compliance-grid svg { width: 25px; color: var(--green); }
.compliance-grid h3 { margin: 0; font-size: 11px; }
.compliance-grid p { margin: 5px 0 0; color: #73797e; font-size: 9px; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.role-grid article { padding: 16px; border: 1px solid #dfe2e4; background: #fff; }
.role-grid span { color: var(--green); font-size: 8px; font-weight: 800; }
.role-grid h3 { margin: 6px 0 13px; font-size: 14px; }
.role-grid p { min-height: 46px; color: #697076; font-size: 9px; line-height: 1.6; }
.role-grid .secondary-button { min-height: 32px; padding: 0 10px; font-size: 9px; }

@media (max-width: 1180px) {
  .header-main { grid-template-columns: 210px 1fr 220px; }
  .category-nav { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .hero-services { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .search-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .admin-metrics { grid-template-columns: repeat(3, 1fr); }
  .admin-band { grid-template-columns: repeat(3, 1fr); }
  .admin-band > div { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .benefit-strip { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-card.photo { display: none; }
  .product-detail { gap: 28px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr 290px; gap: 20px; }
  .site-footer { grid-template-columns: 180px 1fr 180px; }
  .site-footer nav { display: none; }
  .admin-shell { grid-template-columns: 190px 1fr; }
  .admin-two-column { grid-template-columns: 1fr; }
  .design-studio { grid-template-columns: 150px 1fr; }
  .design-properties { grid-column: 1 / -1; border-top: 1px solid #e3e5e7; border-left: 0; }
}

@media (max-width: 760px) {
  body { background: #fff; font-size: 13px; }
  .store-shell { width: 100%; padding-bottom: 64px; box-shadow: none; }
  .guarantee-bar { min-height: 29px; padding: 0 12px; justify-content: center; gap: 8px; font-size: 9px; }
  .guarantee-bar span:nth-child(2)::before { content: "|"; margin-right: 8px; color: #777; }
  .guarantee-help { display: none !important; }
  .desktop-header { display: none; }
  .mobile-header { height: 58px; padding: 0 11px; position: sticky; top: 0; z-index: 80; display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); }
  .mobile-logo { justify-self: center; }
  .mobile-logo .brand-mark b { font-size: 20px; letter-spacing: .17em; margin-right: -.17em; }
  .mobile-logo .brand-mark small { margin-top: 4px; font-size: 7px; letter-spacing: .36em; margin-right: -.36em; }
  .mobile-cart { width: 42px; height: 42px; display: grid; place-items: center; }
  .mobile-cart svg { width: 22px; stroke-width: 1.5; }
  .mobile-cart em { top: 2px; right: 0; }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; height: 64px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; border-top: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 -5px 18px rgba(0,0,0,.06); }
  .mobile-bottom-nav a { display: grid; justify-items: center; gap: 4px; color: #555; font-size: 8px; }
  .mobile-bottom-nav svg { width: 18px; height: 18px; stroke-width: 1.6; }
  .hero-section { min-height: 0; display: block; position: relative; color: #fff; background: #111; }
  .hero-image { min-height: 0; height: 355px; }
  .hero-image img { height: 355px; object-position: 50% center; }
  .hero-image span { background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.76)); }
  .hero-copy { height: 355px; padding: 0 22px 52px; position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; text-align: center; background: transparent; }
  .hero-copy > p { margin-bottom: 7px; font-size: 13px; }
  .hero-copy h1 { margin-bottom: 9px; font-size: 27px; }
  .hero-description { max-width: 270px; color: #fff; font-size: 10px; line-height: 1.55; }
  .hero-services, .hero-copy .primary-button { display: none; }
  .hero-pager { left: 0; right: 0; bottom: 16px; justify-content: center; color: rgba(255,255,255,.7); font-size: 9px; }
  .hero-pager b { color: #fff; }
  .benefit-strip { padding: 21px 13px 23px; grid-template-columns: repeat(2, 1fr); gap: 22px 8px; }
  .benefit-strip article { display: grid; justify-items: center; gap: 7px; text-align: center; }
  .benefit-strip article:nth-child(5) { display: none; }
  .benefit-strip svg { width: 25px; height: 25px; }
  .benefit-strip strong { font-size: 10px; }
  .benefit-strip span { display: none; }
  .catalog-section, .instagram-section, .page-shell { padding: 27px 12px; }
  .section-title { margin-bottom: 14px; }
  .section-title small { display: none; }
  .section-title h2 { margin: 0; font-size: 20px; }
  .section-title > a { font-size: 9px; }
  .catalog-layout { display: block; }
  .filter-panel { display: none; }
  .catalog-toolbar { min-height: 38px; margin-bottom: 10px; }
  .catalog-toolbar select { height: 30px; }
  .product-grid, .search-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 7px; }
  .product-image { aspect-ratio: 1 / 1.05; }
  .wish-button { top: 5px; right: 5px; width: 28px; height: 28px; }
  .product-info { padding-top: 8px; }
  .product-brand { font-size: 8px; }
  .product-name { min-height: 29px; font-size: 10px; }
  .product-meta { display: none; }
  .product-price { margin-top: 4px; }
  .product-price strong { font-size: 10px; }
  .product-price del { font-size: 8px; }
  .discount-badge { top: 5px; left: 5px; font-size: 8px; }
  .promo-grid { padding: 0 12px 30px; grid-template-columns: 1fr; gap: 8px; }
  .promo-card { min-height: 140px; padding: 19px; }
  .promo-card small { font-size: 13px; }
  .promo-card h3 { margin: 6px 0 13px; font-size: 10px; }
  .promo-card a { width: 66px; height: 28px; font-size: 8px; }
  .promo-card > img { height: 100px; }
  .section-title.centered h2 { font-size: 14px; line-height: 1.4; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .trust-band { display: none; }
  .site-footer { min-height: 120px; padding: 22px 15px; display: block; text-align: center; }
  .footer-logo, .footer-company, .site-footer nav { display: none; }
  .footer-cs { color: #fff; }
  .footer-cs strong { font-size: 21px; }
  .page-heading { margin-bottom: 25px; text-align: left; }
  .page-heading h1 { font-size: 27px; }
  .page-search { height: 44px; margin-bottom: 15px; }
  .page-search .primary-button { min-width: 75px; padding: 0 10px; font-size: 10px; }
  .mobile-category-chips { margin-bottom: 17px; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
  .mobile-category-chips button { height: 30px; padding: 0 11px; flex: 0 0 auto; border: 1px solid var(--line); background: #fff; font-size: 9px; }
  .mobile-category-chips button.active { border-color: #111; background: #111; color: #fff; }
  .breadcrumbs { margin-bottom: 14px; }
  .product-detail { display: block; }
  .main-photo { aspect-ratio: 1; }
  .gallery-thumbs { grid-template-columns: repeat(4, 55px); }
  .product-summary { padding-top: 22px; }
  .product-summary h1 { font-size: 24px; }
  .detail-price { margin-top: 20px; }
  .detail-price strong { font-size: 20px; }
  .detail-facts > div { grid-template-columns: 75px 1fr; font-size: 10px; }
  .detail-actions { grid-template-columns: 44px 1fr 1fr; }
  .detail-actions .primary-button, .detail-actions .secondary-button { padding: 0 8px; font-size: 10px; }
  .detail-tabs { margin-top: 38px; }
  .detail-tabs > nav button { height: 43px; font-size: 10px; }
  .detail-tabs article { padding: 32px 0; }
  .detail-tabs article h2 { font-size: 22px; }
  .notice-table div { grid-template-columns: 100px 1fr; }
  .notice-table dt, .notice-table dd { padding: 10px; font-size: 10px; }
  .cart-layout, .checkout-layout { display: block; }
  .cart-item { min-height: 120px; padding: 13px 2px; grid-template-columns: 18px 75px 1fr 25px; gap: 9px; }
  .cart-item > a img { width: 75px; height: 82px; }
  .cart-item-info > a { font-size: 10px; }
  .cart-item-info > span { display: none; }
  .cart-item > strong { grid-column: 3; text-align: left; font-size: 10px; }
  .remove-item { grid-column: 4; grid-row: 1 / 3; }
  .order-summary { margin-top: 22px; position: static; }
  .auth-page { min-height: calc(100vh - 29px); display: block; }
  .auth-visual { display: none; }
  .auth-panel { width: 100%; padding: 36px 24px 50px; }
  .auth-logo { display: block; text-align: center; }
  .auth-logo .brand-mark b { font-size: 28px; }
  .auth-logo .brand-mark small { font-size: 9px; }
  .auth-panel > h1 { font-size: 28px; }
  .checkout-product { grid-template-columns: 70px 1fr; }
  .checkout-product img { width: 70px; height: 70px; }
  .checkout-product > strong { grid-column: 2; }
  .payment-methods { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .wide { grid-column: auto; }
  .order-complete { min-height: 420px; }
  .order-complete h1 { font-size: 27px; }
  .my-layout { display: block; }
  .my-menu { margin-bottom: 20px; display: flex; overflow-x: auto; border-top: 0; border-bottom: 1px solid var(--line); scrollbar-width: none; }
  .my-menu a { min-height: 37px; padding: 0 12px; flex: 0 0 auto; border-bottom: 2px solid transparent; }
  .my-menu a.active { border-color: #111; }
  .my-menu svg { display: none; }
  .profile-info div { grid-template-columns: 100px 1fr; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
  .order-head { grid-template-columns: 1fr auto; }
  .order-head > span:first-child { display: none; }
  .order-body { align-items: flex-start; flex-direction: column; }
  .address-item > div { position: static; margin-top: 12px; }
  .inquiry-list article { grid-template-columns: 65px 1fr; }
  .inquiry-list time { display: none; }
  .bulk-hero { min-height: 470px; display: block; position: relative; }
  .bulk-hero > div { min-height: 470px; padding: 45px 24px; position: relative; z-index: 2; justify-content: flex-end; }
  .bulk-hero h1 { font-size: 31px; }
  .bulk-hero img { position: absolute; inset: 0; filter: brightness(.45); }
  .bulk-features { grid-template-columns: 1fr; gap: 0; }
  .bulk-features article { padding: 23px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-shell { display: block; }
  .admin-sidebar { height: auto; padding: 12px; position: static; }
  .admin-brand { display: flex; align-items: center; gap: 8px; padding: 0 4px 11px; }
  .admin-brand > small, .admin-brand > span, .admin-mode, .back-store { display: none; }
  .admin-sidebar nav { margin-top: 10px; display: flex; overflow-x: auto; scrollbar-width: none; }
  .admin-sidebar nav button { width: auto; min-width: 92px; padding: 0 10px; justify-content: center; flex: 0 0 auto; border-left: 0; border-bottom: 2px solid transparent; }
  .admin-sidebar nav button.active { border-bottom-color: #d7b786; }
  .admin-header { min-height: 70px; padding: 12px 15px; }
  .admin-header h1 { font-size: 17px; }
  .admin-header p { display: none; }
  .admin-content { padding: 18px 12px 35px; }
  .admin-page-title { align-items: flex-start; }
  .admin-page-title h2 { font-size: 21px; }
  .admin-page-title p { display: none; }
  .admin-page-title .primary-button, .admin-page-title .secondary-button { min-height: 36px; padding: 0 10px; font-size: 9px; }
  .admin-metrics, .admin-metrics.compact { grid-template-columns: repeat(2, 1fr); }
  .admin-band { grid-template-columns: 1fr; }
  .admin-band > div { grid-column: auto; }
  .admin-create-form .form-grid { grid-template-columns: 1fr; }
  .table-toolbar { align-items: stretch; flex-direction: column; }
  .admin-search { width: 100%; }
  .claim-grid, .compliance-grid, .role-grid { grid-template-columns: 1fr; }
  .design-studio { display: block; }
  .design-studio > aside { display: none; }
  .design-canvas { min-height: 420px; }
  .design-preview { min-height: 300px; margin: 20px auto; }
  .design-preview img { height: 300px; }
  .design-preview > div { left: 20px; bottom: 20px; }
  .design-preview h3 { font-size: 25px; }
  .product-admin-table { min-width: 720px; }
}
