﻿:root {
  --bg: #f8f7f3;
  --surface: #fffdfa;
  --text: #1f2522;
  --muted: #66706c;
  --line: #d7ddd7;
  --line-strong: #0f5047;
  --brand: #0e5a52;
  --brand-soft: #dfeee9;
  --accent: #f4a91b;
  --shadow: 0 24px 60px rgba(16, 45, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(219, 235, 226, 0.75), transparent 28%),
    linear-gradient(180deg, #fcfcf8 0%, #f7f5ef 100%);
  color: var(--text);
  font-family: "SUIT", sans-serif;
}

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

button,
input {
  font: inherit;
}

code {
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  background: rgba(14, 90, 82, 0.08);
  color: var(--brand);
}

.top-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  background: #050505;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 250, 0.88);
  border-bottom: 1px solid rgba(215, 221, 215, 0.9);
}

.utility-links {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.branding-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px 18px;
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  align-items: center;
}

.menu-button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  align-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.brand {
  text-align: center;
}

.brand-kicker,
.section-label {
  margin: 0 0 10px;
  color: var(--brand);
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #a8aaab;
}

.brand-subtitle {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  font-size: 1.6rem;
}

.category-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 16px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  position: relative;
  padding: 10px 0;
  font-weight: 500;
  color: #2e3231;
}

.category-nav a.active {
  color: var(--brand);
  font-weight: 700;
}

.category-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--brand);
}

.category-nav a.accent {
  color: var(--accent);
  font-weight: 700;
}

main,
.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.2fr);
  gap: 42px;
  align-items: center;
  min-height: 72vh;
}

.hero-copy h2,
.collection-section h2,
.membership-head h2,
.compact-head h2,
.page-hero h1,
.detail-info h1,
.cart-summary-box h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #184f48;
}

.hero-description {
  margin: 28px 0 0;
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--brand);
  font-weight: 700;
}

.hero-subcopy {
  margin: 26px 0 0;
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #40504a;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button,
.submit-button,
.toggle-button,
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  height: 56px;
  padding: 0 28px;
  border: 1px solid var(--brand);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.button:hover,
.submit-button:hover,
.toggle-button:hover,
.social-button:hover {
  transform: translateY(-2px);
}

.button.primary,
.submit-button,
.toggle-button.active {
  background: var(--brand);
  color: #ffffff;
}

.button.secondary,
.toggle-button {
  background: rgba(255, 255, 255, 0.75);
  color: var(--brand);
}

.social-button {
  width: 100%;
  border: 0;
  font-weight: 700;
}

.social-button.kakao {
  background: #fee500;
  color: #191919;
}

.social-button.naver {
  background: #03c75a;
  color: #ffffff;
}

.hero-media {
  position: relative;
}

.video-shell {
  position: relative;
  min-height: 680px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 63, 56, 0.18), rgba(20, 63, 56, 0.06)),
    linear-gradient(135deg, #e6efe8, #a3b49a 52%, #6e7b62 100%);
  box-shadow: var(--shadow);
}

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

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

.video-fallback {
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(249, 251, 247, 0.05) 0%, rgba(8, 26, 22, 0.28) 100%);
}

.mist {
  position: absolute;
  inset: auto auto 15% -10%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 62%);
  animation: drift 8s ease-in-out infinite alternate;
}

.video-copy {
  position: relative;
  max-width: 360px;
  color: #ffffff;
}

.video-copy span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  font-weight: 700;
}

.video-copy strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
}

.video-copy p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.trust-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip article,
.member-card,
.panel,
.product-tile,
.flow-card,
.search-box-panel,
.cart-list-box,
.cart-summary-box,
.detail-info,
.detail-gallery {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 221, 215, 0.9);
  box-shadow: var(--shadow);
}

.trust-strip strong,
.member-card h3,
.panel h3,
.product-tile h3,
.flow-card h3,
.cart-item h3 {
  display: block;
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--brand);
}

.trust-strip p,
.panel p,
.membership-intro,
.storage-list,
.status-box,
.form-message,
.account-panel p,
.product-tile p,
.site-footer p,
.flow-card p,
.page-hero p,
.detail-copy,
.detail-meta p,
.cart-item p,
.social-guide {
  margin: 0;
  color: #46534d;
  line-height: 1.8;
}

.featured-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.72fr 1.8fr 0.72fr;
  gap: 22px;
}

.card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--surface);
}

.card-image {
  position: absolute;
  inset: 0;
}

.card-image-black {
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.02), rgba(16, 16, 16, 0.46)),
    url("https://images.unsplash.com/photo-1516826957135-700dedea698c?auto=format&fit=crop&w=900&q=80") center/cover;
}

.card-image-center {
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.04), rgba(20, 20, 20, 0.34)),
    url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.card-image-right {
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.04), rgba(20, 20, 20, 0.38)),
    url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=900&q=80") center/cover;
}

.card-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #ffffff;
}

.card-copy span,
.flow-card span {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.card-copy h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.6vw, 3.1rem);
  line-height: 1.12;
}

.card-copy p {
  margin: 14px 0 0;
  max-width: 320px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.product-list-section,
.flow-links-section,
.membership-section,
.collection-section {
  margin-top: 96px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compact-head h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.product-list-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.catalog-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tile-link {
  display: block;
}

.tile-image {
  width: 100%;
  aspect-ratio: 0.82;
  margin-bottom: 18px;
  border-radius: 18px;
}

.tile-image-one {
  background: url("https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80") center/cover;
}

.tile-image-two {
  background: url("https://images.unsplash.com/photo-1473966968600-fa801b869a1a?auto=format&fit=crop&w=900&q=80") center/cover;
}

.tile-image-three {
  background: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=900&q=80") center/cover;
}

.tile-image-four {
  background: url("https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=900&q=80") center/cover;
}

.product-tile strong,
.detail-price {
  display: block;
  margin-top: 14px;
  color: #173f3a;
  font-size: 1.1rem;
}

.flow-links-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flow-card {
  display: block;
}

.membership-intro {
  max-width: 760px;
}

.membership-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.social-auth-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.social-guide {
  margin-bottom: 18px;
}

.eyebrow,
.account-badge,
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.filter-chip.active {
  background: var(--brand);
  color: #fff;
}

.storage-list {
  margin-top: 18px;
  padding-left: 1.2rem;
}

.status-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(14, 90, 82, 0.06);
}

.auth-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.toggle-button {
  min-width: 0;
  flex: 1;
}

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

.auth-form .login-main-button {
  width: 100%;
  min-width: 0;
  height: 54px;
  border: 1px solid #d9ddd6;
  background: #fff;
  color: #24312c;
  font-size: 15px;
  font-weight: 700;
}

.auth-form .login-main-button:hover {
  background: #f7f8f6;
}

.social-auth-row {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.social-auth-row .button,
.auth-form .login-main-button {
  justify-content: center;
  width: 100%;
  border-radius: 0;
}

.social-auth-row [data-kakao-auth] {
  background: #fee500;
  border-color: #fee500;
  color: #191600;
}

.social-auth-row .google-auth-button {
  background: #fff;
  border: 1px solid #dadce0;
  color: #3c4043;
}

.social-auth-row [data-facebook-auth] {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.auth-form label {
  display: grid;
  gap: 8px;
}

.auth-form span {
  font-weight: 600;
  color: #2d3733;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.submit-button {
  width: 100%;
}

.form-message {
  min-height: 32px;
}

.account-panel {
  display: grid;
  gap: 12px;
}

.account-panel h3 {
  margin: 0;
  font-size: 1.7rem;
  color: #173f3a;
}

.account-logout {
  width: fit-content;
}

.collection-section h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  max-width: 760px;
}

.collection-tabs {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  min-width: 112px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}

.tab.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(14, 90, 82, 0.16);
}

.collection-panels {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 28px;
}

.page-topbar a {
  font-weight: 700;
}

.page-actions {
  display: flex;
  gap: 16px;
}

.page-breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.compact-page-hero {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 221, 215, 0.9);
}

.category-hero-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.95fr);
  align-items: stretch;
  gap: 26px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,250,248,0.96));
  box-shadow: 0 28px 60px rgba(21, 49, 43, 0.08);
  overflow: hidden;
}

.category-hero-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(16px, 3vw, 32px);
}

.category-hero-copy .section-label {
  margin: 0;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
}

.category-hero-shell h1 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  color: #184f48;
}

.category-hero-description {
  margin: 0;
  max-width: 34ch;
  color: #53635e;
  font-size: 1rem;
  line-height: 1.8;
}

.category-hero-count {
  margin: 8px 0 0;
  color: #184f48;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.category-hero-visual {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  justify-self: end;
  border-radius: 24px;
  background: linear-gradient(160deg, #eef5f2, #ffffff);
}

.category-hero-shell[data-category-hero="food-drinks"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.12)), url('/assets/category/food-drinks-hero.png');
  background-size: cover;
  background-position: center;
}

.category-hero-shell[data-category-hero="household"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08)), url('/assets/category/household-hero.png');
  background-size: cover;
  background-position: center;
}

.category-hero-shell[data-category-hero="bedding"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.08)), url('/assets/category/bedding-hero.png');
  background-size: cover;
  background-position: center;
}

.category-hero-shell[data-category-hero="beauty"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.08)), url('/assets/category/beauty-hero.png');
  background-size: cover;
  background-position: center;
}

.category-hero-shell[data-category-hero="fashion"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08)), url('/assets/category/fashion-hero.png');
  background-size: cover;
  background-position: center;
}

.category-hero-shell[data-category-hero="goods"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08)), url('/assets/category/goods-hero.png');
  background-size: cover;
  background-position: center;
}

.category-hero-shell[data-category-hero="electronics"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08)), url('/assets/category/electronics-hero.png');
  background-size: cover;
  background-position: center;
}

.category-hero-shell[data-category-hero="shoes"] .category-hero-visual {
  background-image: linear-gradient(180deg, rgba(20,20,20,0.04), rgba(20,20,20,0.08)), url('/assets/category/shoes-hero.png');
  background-size: cover;
  background-position: center;
}

.search-box-panel {
  margin-bottom: 28px;
}

.search-bar-large {
  display: flex;
  align-items: center;
  height: 62px;
  padding: 0 20px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  color: #2d3733;
  font-size: 1.1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.detail-main-image {
  aspect-ratio: 0.88;
  margin-bottom: 14px;
}

.detail-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-thumb {
  margin-bottom: 0;
  aspect-ratio: 0.9;
}

.detail-copy {
  margin-top: 18px;
}

.option-box {
  margin-top: 20px;
}

.option-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.detail-meta {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.cart-list-box {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(215, 221, 215, 0.9);
}

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

.cart-thumb {
  margin-bottom: 0;
  aspect-ratio: 0.84;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  color: #3e4d47;
}

.summary-row.total {
  padding-top: 16px;
  border-top: 1px solid rgba(215, 221, 215, 0.9);
  font-size: 1.08rem;
}

.summary-button {
  width: 100%;
  margin-top: 24px;
}

.site-footer {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 32px 24px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(215, 221, 215, 0.9);
}

.site-footer strong,
.footer-brand {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 700;
}

.footer-brand {
  font-size: 1.2rem;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  to {
    transform: translate3d(12%, -8%, 0) scale(1.06);
  }
}

@media (max-width: 1080px) {
  .hero,
  .featured-grid,
  .collection-panels,
  .trust-strip,
  .membership-grid,
  .product-list-grid,
  .site-footer,
  .flow-links-grid,
  .detail-layout,
  .cart-layout,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .video-shell,
  .card {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .utility-links {
    display: none;
  }

  .branding-row {
    grid-template-columns: 52px 1fr 56px;
    padding-inline: 16px;
  }

  .category-nav,
  main,
  .page-shell,
  .site-footer {
    padding-inline: 16px;
  }

  .hero-copy h2,
  .collection-section h2,
  .membership-head h2,
  .compact-head h2,
  .page-hero h1,
  .detail-info h1,
  .cart-summary-box h2 {
    font-size: 2.7rem;
  }

  .hero-description {
    font-size: 1.18rem;
  }

  .hero-subcopy {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions,
  .auth-toggle,
  .detail-actions,
  .page-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .page-actions {
    justify-content: space-between;
  }

  .button,
  .toggle-button {
    width: 100%;
  }

  .video-shell,
  .card {
    min-height: 420px;
    border-radius: 18px;
  }

  .collection-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }
}


.ai-studio-section {
  margin-top: 88px;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  border-top: 1px solid rgba(215, 221, 215, 0.9);
  border-bottom: 1px solid rgba(215, 221, 215, 0.9);
}

.ai-studio-copy h2 {
  margin: 0;
  max-width: 560px;
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  color: #184f48;
}

.ai-studio-copy p:last-child {
  margin: 24px 0 0;
  max-width: 560px;
  color: #40504a;
  line-height: 1.9;
}

.ai-studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.ai-studio-grid article {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 221, 215, 0.95);
}

.ai-studio-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ai-studio-grid h3 {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 1.28rem;
}

.ai-studio-grid p {
  margin: 0;
  color: #48534e;
  line-height: 1.75;
}

.product-tile .ai-tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(14, 90, 82, 0.22);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 1080px) {
  .ai-studio-section,
  .ai-studio-grid {
    grid-template-columns: 1fr;
  }
}

.fit-guide-section {
  margin-top: 46px;
  padding: 34px 0 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  border-top: 1px solid rgba(215, 221, 215, 0.9);
}

.fit-guide-section h2 {
  margin: 0;
  color: #184f48;
  font-size: 2rem;
}

.fit-guide-section p:last-child {
  color: #40504a;
  line-height: 1.8;
}

.fit-meter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.fit-meter-grid div {
  padding: 18px;
  border: 1px solid rgba(215, 221, 215, 0.9);
  background: rgba(255, 255, 255, 0.74);
}

.fit-meter-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.fit-meter-grid strong {
  color: var(--brand);
  letter-spacing: 0.06em;
}

@media (max-width: 1080px) {
  .fit-guide-section,
  .fit-meter-grid {
    grid-template-columns: 1fr;
  }
}



.admin-hero {
  border-bottom: 1px solid rgba(215, 221, 215, 0.9);
  padding-bottom: 34px;
}

.admin-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.admin-form,
.upload-preview {
  display: grid;
  gap: 16px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(215, 221, 215, 0.95);
  background: rgba(255, 255, 255, 0.78);
  padding: 15px 16px;
  color: var(--text);
  outline: none;
}

.admin-form textarea {
  resize: vertical;
  line-height: 1.7;
}

.upload-box {
  min-height: 220px;
  padding: 28px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(215, 221, 215, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(14, 90, 82, 0.18)),
    url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=900&q=80") center/cover;
  color: #fff;
}

.upload-box.ai-ready {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(14, 90, 82, 0.28)),
    url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=900&q=80") center/cover;
}

.upload-box span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.upload-box strong {
  margin-top: 10px;
  font-size: 1.45rem;
}

.upload-box p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.admin-status-list {
  padding: 24px;
  border: 1px solid rgba(215, 221, 215, 0.9);
  background: rgba(255, 255, 255, 0.76);
}

.admin-status-list p {
  display: flex;
  gap: 12px;
  margin: 0 0 14px;
  color: #40504a;
}

.admin-status-list p:last-child {
  margin-bottom: 0;
}

.admin-status-list strong {
  color: var(--accent);
}

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

.youtube-section {
  margin-top: 88px;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  border-top: 1px solid rgba(215, 221, 215, 0.9);
  border-bottom: 1px solid rgba(215, 221, 215, 0.9);
}

.youtube-copy h2 {
  margin: 0;
  max-width: 560px;
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  color: #184f48;
}

.youtube-copy p:not(.section-label) {
  margin: 22px 0 28px;
  max-width: 560px;
  color: #40504a;
  line-height: 1.9;
}

.youtube-video-card {
  min-height: 360px;
  padding: 30px;
  display: grid;
  align-content: end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.56)),
    url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1100&q=80") center/cover;
}

.youtube-video-card span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.youtube-video-card strong {
  margin-top: 12px;
  font-size: 2rem;
}

.youtube-video-card p {
  margin: 10px 0 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

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


.admin-button-row,
.admin-row-actions,
.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(215, 221, 215, 0.9);
}

.admin-product-row:last-child {
  border-bottom: 0;
}

.admin-product-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.admin-row-actions button,
.cart-remove {
  border: 1px solid rgba(14, 90, 82, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand);
  padding: 8px 10px;
  cursor: pointer;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

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

.checkout-form h1 {
  margin: 0;
  color: #184f48;
  font-size: 2.5rem;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea,
.search-input-large {
  width: 100%;
  border: 1px solid rgba(215, 221, 215, 0.95);
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 16px;
  color: var(--text);
  outline: none;
}

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

.order-card {
  padding: 24px;
  border: 1px solid rgba(215, 221, 215, 0.9);
  background: rgba(255, 255, 255, 0.76);
}

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

.order-card h3 {
  margin: 8px 0;
  color: var(--brand);
}

.empty-state {
  padding: 28px;
  border: 1px solid rgba(215, 221, 215, 0.9);
  color: var(--muted);
}

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

@media (max-width: 720px) {
  .brand h1 {
    font-size: 1.9rem;
    overflow-wrap: anywhere;
  }

  .brand-subtitle {
    letter-spacing: 0.08em;
    font-size: 0.78rem;
  }

  .category-nav {
    gap: 14px;
  }

  .product-list-grid,
  .flow-links-grid,
  .ai-studio-grid {
    gap: 14px;
  }

  .admin-product-row,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .admin-row-actions,
  .admin-button-row,
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .youtube-video-card,
  .upload-box {
    min-height: 280px;
  }
}

.admin-dashboard {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-dashboard article {
  padding: 22px;
  border: 1px solid rgba(215, 221, 215, 0.95);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.admin-dashboard span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-dashboard strong {
  color: var(--brand);
  font-size: 2rem;
}

.admin-list-head {
  padding: 22px 24px 0;
  border: 1px solid rgba(215, 221, 215, 0.9);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.76);
}

.admin-list-head strong {
  display: block;
  color: var(--brand);
  font-size: 1.2rem;
}

.admin-list-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-product-row small {
  display: block;
  margin-top: 8px;
  color: #52615b;
  line-height: 1.6;
}

.status-active {
  color: var(--brand);
}

.status-danger {
  color: #b42318;
}

.status-muted {
  color: var(--muted);
}

.admin-row-actions .danger-button {
  border-color: rgba(180, 35, 24, 0.25);
  color: #b42318;
}

@media (max-width: 1080px) {
  .admin-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .admin-dashboard {
    grid-template-columns: 1fr;
  }
}

.admin-login-shell {
  min-height: calc(100vh - 44px);
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.admin-login-card {
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid rgba(215, 221, 215, 0.95);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  margin: 0;
  color: var(--brand);
  font-size: 2.4rem;
}

.admin-login-card p:not(.section-label) {
  color: var(--muted);
  line-height: 1.8;
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
}

.admin-login-form input {
  width: 100%;
  border: 1px solid rgba(215, 221, 215, 0.95);
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 16px;
  color: var(--text);
  outline: none;
}

.admin-logout-button {
  border: 1px solid rgba(14, 90, 82, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand);
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
}

.admin-app-shell {
  max-width: none;
  min-height: calc(100vh - 44px);
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-app-shell[hidden],
.admin-login-shell[hidden] {
  display: none;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  min-height: calc(100vh - 44px);
  padding: 28px 20px;
  background: #102f2b;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-sidebar-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

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

.admin-side-nav a,
.admin-store-link,
.admin-logout-button {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.admin-side-nav a.active {
  background: #fff;
  color: #102f2b;
}

.admin-store-link {
  margin-top: auto;
  text-align: center;
}

.admin-sidebar .admin-logout-button {
  width: 100%;
  cursor: pointer;
}

.admin-workspace {
  padding: 34px 34px 80px;
}

.admin-workspace-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-home-button {
  white-space: nowrap;
}

.admin-workspace-topbar h2 {
  margin: 0;
  color: var(--brand);
  font-size: 2rem;
}

.admin-role-badge {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.admin-panel-card {
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(215,221,215,0.95);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}

.admin-panel-card h2 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 1.8rem;
}

.admin-panel-card p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

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

  .admin-sidebar {
    position: static;
    min-height: auto;
  }

  .admin-workspace {
    padding: 24px 16px 64px;
  }

  .admin-topbar-actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* Market storefront rebuild */
.market-body { margin: 0; background: #fff; color: #1f2424; font-family: "SUIT", sans-serif; overflow-x: hidden; }
.home-page-bg {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.97)), url('/assets/brand/product-flatlay.png');
  background-size: 1400px auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (max-width: 900px) {
  .home-page-bg { background-size: 900px auto; }
}
.market-body a { color: inherit; text-decoration: none; }
.market-header { position: sticky; top: 0; z-index: 20; background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid #e8e3dc; backdrop-filter: blur(12px); }
.market-headline { min-height: 128px; display: grid; grid-template-columns: 260px 1fr 260px; align-items: center; gap: 24px; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.market-header.compact .market-headline { min-height: 104px; }
.kakao-consult { justify-self: start; display: inline-flex; align-items: center; gap: 13px; border: 1px solid #dedbd5; border-radius: 10px; padding: 13px 18px; background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,.04); font-size: 18px; }
.kakao-badge { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: #ffe812; color: #111; font-weight: 900; }
.market-logo { justify-self: center; text-align: center; line-height: 1; }
.market-logo span { display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: .42em; color: #222; }
.market-logo strong { display: block; font-family: "Noto Serif KR", serif; font-size: clamp(34px, 4.2vw, 56px); font-weight: 900; letter-spacing: -.08em; color: #292929; }
.market-logo em { display: block; margin-top: 12px; font-style: normal; letter-spacing: .38em; color: #0066cc; font-weight: 800; font-size: 14px; }
.market-tools { justify-self: end; display: flex; gap: 16px; align-items: center; color: #555; font-size: 14px; }
.market-tabs { height: 42px; display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 72px); border-top: 1px solid #eee9e2; font-size: 13px; font-weight: 800; }
.market-tabs a { padding: 14px 0; white-space: nowrap; }
.market-tabs a:hover, .market-tabs .tab-sale { color: #0066cc; }
.hamburger-button { position: absolute; left: 28px; display: grid; gap: 5px; width: 30px; border: 0; background: transparent; padding: 0; cursor: pointer; }
.hamburger-button span { display: block; height: 2px; background: #222; }
.market-main { max-width: 1280px; margin: 0 auto; padding: 18px 28px 80px; }
.notice-strip { display: flex; justify-content: center; gap: 28px; padding: 12px; color: #777; font-size: 13px; }
.market-section { margin-top: 28px; }
.market-section-title { text-align: center; margin: 22px 0 28px; font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; letter-spacing: -.04em; }
.market-section-title span { color: #0066cc; }
.market-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px 18px; }
.market-product-grid.wide { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px 22px; }
.market-product-card { min-width: 0; text-align: center; }
.market-product-card h3 { margin: 13px 4px 4px; font-size: 15px; font-weight: 500; color: #333; }
.market-product-card p { min-height: 20px; margin: 0 4px 6px; color: #777; font-size: 12px; }
.market-product-image { position: relative; height: 270px; background-size: cover; background-position: center; background-color: #f1f1ef; overflow: hidden; }
.market-product-grid.wide .market-product-image { height: 420px; }
.rank-badge { position: absolute; top: 10px; left: 10px; padding: 4px 7px; background: rgba(255,255,255,.82); font-size: 11px; font-weight: 800; }
.soldout-badge { position: absolute; top: 10px; right: 10px; padding: 4px 7px; background: #111; color: #fff; font-size: 11px; }
.market-price-row { display: flex; justify-content: center; align-items: baseline; gap: 8px; font-size: 12px; }
.market-price-row strong { font-size: 13px; }
.market-price-row del { color: #999; }
.market-guide-band { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; border-top: 1px solid #eee; padding-top: 28px; }
.market-guide-band article { padding: 24px; background: #f7f5f1; }
.market-guide-band strong { font-size: 18px; }
.market-guide-band p { color: #666; line-height: 1.7; }
.market-guide-band .guide-with-image { background-size: cover; background-position: center; }
.hero-carousel { position: relative; margin: 24px 0 8px; min-height: 560px; overflow: hidden; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; cursor: pointer; }
.hero-carousel-track { display: flex; height: 560px; transition: transform 0.45s ease; }
.hero-carousel-slide { flex: 0 0 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; padding: 0 8vw; user-select: none; }
.hero-carousel-slide .hero-banner-copy { max-width: 560px; color: #fff; }
.hero-banner-copy .section-label { letter-spacing: 0.12em; opacity: 0.85; margin-bottom: 10px; }
.hero-banner-copy h2 { font-size: 42px; line-height: 1.3; margin: 6px 0 18px; }
.hero-banner-copy p { line-height: 1.8; opacity: 0.92; font-size: 16px; }
.hero-carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); border: none; background: rgba(0,0,0,0.32); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.hero-carousel-arrow.prev { left: 24px; }
.hero-carousel-arrow.next { right: 24px; }
.hero-carousel-arrow:hover { background: rgba(0,0,0,0.5); }
.hero-carousel-dots { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.55); cursor: pointer; padding: 0; }
.hero-carousel-dots button.active { background: #ff8a00; width: 22px; border-radius: 5px; }
@media (max-width: 900px) {
  .hero-carousel, .hero-carousel-track { min-height: 380px; height: 380px; }
  .hero-carousel-slide { padding: 0 24px; }
  .hero-banner-copy h2 { font-size: 26px; }
}
.mart-footer { border-top: 1px solid #eee; margin-top: 40px; }

.oz-header {
  background: rgba(255, 253, 250, 0.96);
  border-bottom: 1px solid #ece6de;
  backdrop-filter: blur(18px);
}

.oz-topbar,
.oz-brand-row,
.oz-category-row {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.oz-topbar {
  min-height: 62px;
  padding: 14px 24px 10px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: center;
  gap: 18px;
}

.oz-search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 44px;
  border: 1px solid #d9d2c8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.oz-search input {
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 18px;
  color: #1e2422;
}

.oz-search input::placeholder {
  color: #8a857c;
}

.oz-search button {
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: #0e5a52;
  font-weight: 800;
  cursor: pointer;
}

.oz-member-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  color: #5f685f;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* 관리자 진입 링크 — 회원메뉴 6개 중에 묻히지 않도록 구분되게 표시합니다.
   auth.js의 ensureAdminLink()가 모든 페이지에 이 링크를 자동으로 넣습니다. */
.oz-member-links a.admin-entry-link,
.shop-utility-bar a.admin-entry-link,
.oz-member-links a[href="/admin"],
.shop-utility-bar a[href="/admin"] {
  padding: 2px 9px;
  border: 1px solid #0e5a52;
  border-radius: 999px;
  color: #0e5a52;
  font-weight: 700;
  white-space: nowrap;
}

.oz-member-links a.admin-entry-link:hover,
.shop-utility-bar a.admin-entry-link:hover,
.oz-member-links a[href="/admin"]:hover,
.shop-utility-bar a[href="/admin"]:hover {
  background: #0e5a52;
  color: #fff;
}

/* 관리자 링크 앞의 구분자는 테두리와 겹쳐 지저분해 보이므로 숨깁니다. */
.oz-member-links span:has(+ a[href="/admin"]),
.shop-utility-bar span:has(+ a[href="/admin"]) {
  display: none;
}

.oz-member-links span {
  color: #c9c1b7;
}

.oz-member-links a:hover {
  color: #0e5a52;
}

.oz-brand-row {
  min-height: 132px;
  padding: 18px 24px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 28px;
}

.oz-logo {
  display: inline-grid;
  justify-self: start;
  gap: 8px;
}

.oz-logo em {
  color: #0e5a52;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.oz-logo strong {
  color: #16201d;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.oz-category-row {
  min-height: 58px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #eee7df;
  border-bottom: 1px solid #eee7df;
}

.oz-category-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.oz-category-tabs::-webkit-scrollbar {
  display: none;
}

.oz-category-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: #2d3532;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.oz-category-tabs a:hover {
  color: #0e5a52;
}

.oz-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d9d2c8;
  border-radius: 999px;
  background: #fff;
  color: #16201d;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.oz-cart-icon:hover {
  border-color: #0e5a52;
  color: #0e5a52;
}

.site-footer-topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
  color: #777;
  font-size: 12px;
}
.site-footer-topbar .site-footer-brand { color: #1f2424; font-weight: 700; font-size: 13px; }

.site-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 28px 20px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}
.site-footer-logo { display: flex; align-items: center; gap: 8px; color: #1f2424; }
.site-footer-logo-mark { color: #ff8a00; letter-spacing: 2px; font-size: 10px; }
.site-footer-logo strong { font-size: 16px; }

.site-footer-address-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  color: #666;
  font-size: 13px;
}
.site-footer-address-grid strong { color: #333; font-weight: 600; display: block; margin-bottom: 6px; line-height: 1.5; }
.site-footer-address-grid p { margin: 0; color: #888; }

.site-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #999;
  font-size: 12px;
  border-top: 1px solid #f2f2f2;
}

.site-version-switch { display: flex; gap: 10px; }
.site-version-switch button { border: 1px solid #ccc; background: #fff; color: #333; font-size: 12px; padding: 7px 16px; border-radius: 20px; cursor: pointer; }
.site-version-switch button:hover { border-color: #ff8a00; color: #ff8a00; }

@media (max-width: 720px) {
  .site-footer-topbar { flex-wrap: wrap; gap: 8px 14px; padding: 12px 16px; }
  .site-footer-main { grid-template-columns: 1fr; padding: 24px 16px; }
  .site-footer-address-grid { grid-template-columns: 1fr; }
  .site-footer-bottom { flex-direction: column; padding: 14px 16px 24px; text-align: center; }
}

body.force-mobile-version { display: flex; justify-content: center; background: #ddd; }
body.force-mobile-version > * { max-width: 430px; width: 100%; }
body.force-mobile-version { display: block; }
body.force-mobile-version::after { content: ""; }
body.force-mobile-version .oz-header,
body.force-mobile-version .market-main,
body.force-mobile-version .mart-footer {
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px #ddd;
}
body.force-mobile-version .hero-carousel,
body.force-mobile-version .hero-carousel-track { width: 430px; height: 300px; min-height: 300px; left: auto; margin-left: 0; margin-right: 0; }
body.force-mobile-version .hero-banner-copy h2 { font-size: 22px; }
body.force-mobile-version .hero-carousel-slide { padding: 0 20px; }
body.force-mobile-version .market-product-grid,
body.force-mobile-version .market-product-grid.wide { grid-template-columns: repeat(2, 1fr) !important; }
body.force-mobile-version .market-guide-band { grid-template-columns: 1fr !important; }
body.force-mobile-version .oz-topbar,
body.force-mobile-version .oz-brand-row {
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 42px;
}

.oz-kakao-card {
  justify-self: end;
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr 18px;
  align-items: center;
  gap: 14px;
  width: min(320px, 100%);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 229, 0, 0.16), rgba(255, 255, 255, 0.92) 52%),
    #fff;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
  padding: 14px 18px;
  color: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.oz-kakao-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.12);
  border-color: rgba(17, 17, 17, 0.2);
}

.oz-kakao-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fee500;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08);
}

.oz-kakao-copy {
  display: grid;
  gap: 4px;
}

.oz-kakao-copy small {
  color: #6a6252;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oz-kakao-copy strong {
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.08em;
}

.oz-kakao-arrow {
  font-size: 19px;
  font-weight: 700;
  color: #111;
}

@media (max-width: 900px) {
  .oz-brand-row {
    height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .oz-kakao-card {
    width: min(340px, 100%);
    justify-self: center;
  }

  .oz-kakao-copy strong {
    font-size: 22px;
  }
  .oz-topbar { grid-template-columns: 1fr; min-height: auto; gap: 8px; padding: 8px 14px 10px; }
  .oz-search, .oz-member-links { justify-self: center; width: 100%; }
  .oz-search { max-width: 100%; }
  .oz-member-links { gap: 8px; font-size: 13px; justify-content: center; }
  .oz-category-row { grid-template-columns: 1fr 78px; padding: 0 12px; height: 52px; column-gap: 8px; }
  .oz-category-tabs { justify-content: flex-start; overflow-x: auto; gap: 18px; font-size: 15px; }
}

/* Customer flow polish */
.category-products h2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #16201d;
}

.category-products h2 span {
  color: #16201d;
}

.category-products h2 em {
  color: #6d7d77;
  font-style: normal;
  font-family: "SUIT", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .category-hero-shell {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .category-hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .category-hero-copy {
    padding: 10px;
  }

  .category-hero-description {
    max-width: none;
    font-size: 0.92rem;
  }

  .category-products h2 {
    flex-direction: column;
    gap: 6px;
  }
}
.category-count { margin: 0 0 18px; color: #555; font-size: 11px; letter-spacing: .04em; }
.category-summary { min-height: 18px; margin: 3px 0 5px; color: #777; font-size: 12px; }
.empty-cart-state { padding: 44px 24px; text-align: center; border: 1px solid #e7e3dc; background: #fff; }
.empty-cart-state strong { display: block; margin-bottom: 10px; font-size: 22px; color: #222; }
.empty-cart-state p { margin: 0 0 22px; color: #777; }
.category-product-card:hover .category-product-image, .market-product-card:hover .market-product-image { filter: brightness(.96); }
.category-product-card h3, .market-product-card h3 { word-break: keep-all; }

.auth-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: #0e5a52;
  font-size: 13px;
  text-align: left;
}

.auth-message.error {
  color: #b42318;
}

.kakao-start-button,
.signup-choice.kakao,
.signup-choice.facebook {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.mypage-card .login-main-button,
.mypage-card .guest-order-button {
  width: 100%;
  margin-top: 12px;
}

.mypage-info-grid {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px 14px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid #e6e0d8;
  background: #fbfaf7;
  text-align: left;
}

.mypage-info-grid span {
  color: #8b8580;
  font-size: 13px;
}

.mypage-info-grid strong {
  color: #1d2a24;
  font-size: 14px;
}

.admin-inline-form {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.admin-inline-form input,
.admin-inline-form textarea {
  width: 100%;
  border: 1px solid #d8ddd6;
  border-radius: 0;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.admin-inline-form textarea {
  resize: vertical;
}

.shop-page-shell {
  padding-top: 44px;
}

.cart-title-block,
.checkout-title-block {
  margin: 0 0 26px;
  padding: 28px 30px;
  border: 1px solid #e2ded6;
  background: linear-gradient(135deg, #fff 0%, #f7f5ef 100%);
}

.cart-title-block h1,
.checkout-title-block h1 {
  margin: 4px 0 8px;
  color: #123f3a;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(32px, 5vw, 56px);
}

.cart-title-block p,
.checkout-title-block p {
  margin: 0;
  color: #5f6762;
}

.cart-summary-box .summary-button + .summary-button {
  margin-top: 10px;
}

.checkout-bank-box {
  margin: 8px 0 18px;
  padding: 16px;
  border: 1px solid #d9e4dc;
  background: #f6faf6;
  color: #24433c;
}

.checkout-bank-box strong {
  display: block;
  margin-bottom: 6px;
}

.checkout-bank-box p {
  margin: 0;
  line-height: 1.6;
}

button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
}

.checkout-item small {
  display: block;
  margin-top: 6px;
  color: #7a817a;
  font-size: 12px;
}
.payment-method-button {
  min-width: 120px;
  height: 46px;
  padding: 0 18px;
  border: 1px solid #d8ddd6;
  background: rgba(255, 255, 255, 0.88);
  color: #24433c;
  font-weight: 700;
  cursor: pointer;
}

.payment-method-button.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.checkout-panel {
  padding: 22px;
  border: 1px solid #e4e0d8;
  background: rgba(255, 255, 255, 0.82);
}

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

.checkout-summary-grid > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.checkout-summary-total {
  padding-top: 14px;
  border-top: 1px solid #e6e0d8;
  font-size: 1.08rem;
}

.checkout-agree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #43514b;
}

.checkout-agree-row input {
  width: 18px;
  height: 18px;
}

.section-head-row h2 {
  margin: 0 0 14px;
  color: #123f3a;
  font-size: 1.2rem;
}











.signup-choice-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.signup-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.signup-choice strong {
  font-size: 15px;
}

.signup-form-panel {
  margin-top: 18px;
}

.admin-body {
  background:
    radial-gradient(circle at top right, rgba(204, 227, 217, 0.4), transparent 25%),
    linear-gradient(180deg, #f5f3ee 0%, #ece8df 100%);
}

.admin-console {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar-rich {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 28px 20px 24px;
  background: #132320;
  color: #eff6f2;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-rich .admin-sidebar-brand {
  display: grid;
  gap: 6px;
  padding: 0 6px 22px;
  color: #fff;
}

.admin-sidebar-rich .admin-sidebar-brand span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
}

.admin-sidebar-rich .admin-sidebar-brand strong {
  font-size: 28px;
  font-family: "Noto Serif KR", serif;
  letter-spacing: -0.05em;
}

.admin-sidebar-section p {
  margin: 0 0 12px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.admin-sidebar-rich .admin-side-nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar-rich .admin-side-nav a,
.admin-sidebar-footer .admin-store-link,
.admin-sidebar-footer .admin-logout-button {
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-sidebar-rich .admin-side-nav a:hover,
.admin-sidebar-rich .admin-side-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateX(2px);
}

.admin-sidebar-footer {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.admin-sidebar-footer .admin-store-link {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-sidebar-footer .admin-logout-button {
  width: 100%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.admin-workspace-rich {
  padding: 30px;
  display: grid;
  gap: 22px;
}

.admin-workspace-topbar-rich {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.admin-workspace-topbar-rich h1 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  letter-spacing: -0.05em;
  color: #15211e;
}

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

.admin-search-shell span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #4f635b;
  text-transform: uppercase;
}

.admin-search-shell input {
  width: min(360px, 72vw);
  height: 48px;
  border-radius: 16px;
  border: 1px solid #d0d8d2;
  background: rgba(255, 255, 255, 0.85);
  padding: 0 16px;
}

.admin-hero-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 22px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(14, 90, 82, 0.96), rgba(17, 35, 32, 0.98));
  color: #fff;
  box-shadow: 0 24px 60px rgba(18, 40, 37, 0.18);
}

.admin-hero-banner h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.admin-hero-banner p:not(.section-label) {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.admin-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  justify-content: flex-end;
}

.admin-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.admin-screen {
  display: grid;
  gap: 20px;
}

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

.admin-screen-grid-wide {
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.9fr);
}

.admin-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
}

.admin-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(214, 219, 213, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(18, 40, 37, 0.08);
}

.admin-card.subcard {
  padding: 20px;
}

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

.admin-card-head strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: #16211f;
}

.admin-card-head p {
  margin: 6px 0 0;
  color: #64736d;
  line-height: 1.7;
}

.admin-card-actions {
  display: flex;
  gap: 10px;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.admin-metric-card,
.admin-mini-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #dde4de;
  background: #fff;
}

.admin-metric-card span,
.admin-mini-card span {
  display: block;
  color: #66746d;
  font-size: 13px;
  font-weight: 700;
}

.admin-metric-card strong,
.admin-mini-card strong {
  display: block;
  margin-top: 10px;
  color: #132320;
  font-size: 28px;
  letter-spacing: -0.05em;
}

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

.tone-primary { background: linear-gradient(180deg, #f3fbff, #ffffff); }
.tone-success { background: linear-gradient(180deg, #f0faf6, #ffffff); }
.tone-warning { background: linear-gradient(180deg, #fff8ef, #ffffff); }
.tone-danger { background: linear-gradient(180deg, #fff3f2, #ffffff); }
.tone-neutral { background: linear-gradient(180deg, #f7f8f7, #ffffff); }

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

.admin-form-rich .admin-form-span-2 {
  grid-column: 1 / -1;
}

.admin-form-rich label {
  display: grid;
  gap: 8px;
}

.admin-form-rich span {
  font-size: 13px;
  font-weight: 700;
  color: #4d5d57;
}

.admin-form-rich input,
.admin-form-rich select,
.admin-form-rich textarea,
.admin-inline-form input,
.admin-inline-form select,
.admin-inline-form textarea {
  width: 100%;
  border: 1px solid #d2dad4;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  color: #172220;
}

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

.admin-inline-form-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.admin-side-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.admin-media-box {
  min-height: 220px;
  border-radius: 24px;
  background-color: #f0f2ef;
}

.admin-status-list {
  display: grid;
  gap: 12px;
}

.admin-log-row,
.admin-order-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #e0e5e0;
  background: #fff;
}

.admin-log-row strong,
.admin-order-card strong {
  color: #16211f;
  font-size: 16px;
}

.admin-log-row span,
.admin-order-card span,
.admin-log-row small,
.admin-order-card small {
  color: #61716a;
  line-height: 1.6;
}

.admin-inline-danger {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #b42318;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eef1ed;
}

.admin-product-row:last-child {
  border-bottom: 0;
}

.admin-product-thumb {
  width: 84px;
  height: 84px;
  border-radius: 18px;
}

.admin-row-actions {
  display: flex;
  gap: 8px;
}

.admin-row-actions button {
  border: 1px solid #d1d8d3;
  border-radius: 999px;
  background: #fff;
  padding: 9px 14px;
  cursor: pointer;
}

.admin-order-card {
  gap: 8px;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-paid,
.status-completed,
.status-delivered { background: #e7f6ee; color: #157347; }
.status-preparing,
.status-shipped { background: #eef5ff; color: #1f5fbf; }
.status-return_requested,
.status-cancel_requested { background: #fff4e8; color: #b96a06; }
.status-cancelled,
.status-sold_out { background: #fff0f0; color: #b42318; }

.admin-login-card-rich {
  max-width: 560px;
}

.admin-login-card-rich h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.empty-state {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #f6f8f6;
  color: #66756d;
}

@media (max-width: 1200px) {
  .admin-console {
    grid-template-columns: 240px minmax(0, 1fr);
  }

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

  .admin-screen-grid-wide,
  .admin-split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .admin-console {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-rich {
    position: static;
    min-height: auto;
    border-right: 0;
  }

  .admin-workspace-rich {
    padding: 18px;
  }

  .admin-workspace-topbar-rich {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-search-shell input {
    width: 100%;
  }

  .admin-hero-banner,
  .admin-screen-grid,
  .admin-inline-form,
  .admin-inline-form-wide,
  .admin-form-rich,
  .admin-metric-grid,
  .admin-mini-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-row-actions {
    flex-wrap: wrap;
  }
}


