:root {
  /* ===== RHYTHEA design tokens ===== */
  --bg-cream: #fbf6ee;
  --bg-ivory: #fffaf3;
  --text-charcoal: #2f2a26;
  --text-muted: rgba(47, 42, 38, 0.72);
  --line-soft: rgba(47, 42, 38, 0.12);

  --accent-rose: #d7a3a3;
  --accent-rose-deep: #c98f8f;

  --radius-lg: 22px;
  --radius-md: 14px;

  --container: 1100px;
  --pad-x: 24px;

  --shadow-soft: 0 8px 26px rgba(47, 42, 38, 0.08);

  /* project-wide compatibility aliases */
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Noto Sans KR", sans-serif;
  --color-bg: var(--bg-cream);
  --color-bg-soft: var(--bg-ivory);
  --color-surface: var(--bg-ivory);
  --color-surface-muted: #f8efe6;
  --color-text: var(--text-charcoal);
  --color-text-muted: var(--text-muted);
  --color-charcoal: var(--text-charcoal);
  --color-accent: var(--accent-rose);
  --color-accent-deep: var(--accent-rose-deep);
  --color-accent-soft: rgba(255, 250, 243, 0.75);
  --color-line: var(--line-soft);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --radius-sm: 10px;
  --radius-xl: var(--radius-lg);
  --radius-pill: 999px;
  --shadow-card: 0 12px 30px rgba(47, 42, 38, 0.12);
  --bg: var(--color-bg);
  --panel: var(--color-surface);
  --ink: var(--color-text);
  --muted: var(--color-text-muted);
  --accent: var(--color-accent);
  --accent-deep: var(--color-accent-deep);
  --accent-soft: var(--color-accent-soft);
  --warm: #ab7764;
  --line: var(--color-line);
  --shadow: var(--shadow-soft);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(
      1200px 600px at 20% 0%,
      rgba(215, 163, 163, 0.1),
      transparent 55%
    ),
    radial-gradient(
      1200px 600px at 80% 10%,
      rgba(215, 163, 163, 0.08),
      transparent 60%
    ),
    var(--bg-cream);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    rgba(90, 90, 90, 0.06) 0.7px,
    transparent 0.7px
  );
  background-size: 4px 4px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -3;
}

.bg-bloom {
  position: fixed;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  opacity: 0.45;
  z-index: -2;
}

.bg-bloom-left {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 7%;
  background: #f7dfcc;
}

.bg-bloom-right {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: 4%;
  background: #dbe9d3;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--accent-deep);
  line-height: 0.95;
}

.logo span {
  display: block;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #6b7269;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  gap: 22px;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.93rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.cart-link {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--accent-deep);
  padding: 9px 14px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.cart-link span {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 74px;
}

.landing-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 18px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-logo {
  font-family: var(--font-display);
  font-size: 1.72rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--color-charcoal);
  line-height: 0.95;
  text-align: center;
}

.landing-logo span {
  display: block;
  margin-top: 4px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #81766f;
}

.landing-cart-link {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--color-line);
  background: rgba(255, 252, 247, 0.95);
  color: var(--color-charcoal);
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
}

.landing-cart-link span {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-accent-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.landing-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 74px;
  display: grid;
  gap: 26px;
}

.landing-main h1,
.landing-main h2,
.detail-main h1,
.detail-main h2 {
  font-family: "Noto Sans KR", sans-serif;
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  width: min(var(--container), calc(100% - var(--pad-x) * 2));
  margin: 26px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-ivory);
}

.hero__media {
  min-height: 72vh;
  background: linear-gradient(
      180deg,
      rgba(251, 246, 238, 0.1) 0%,
      rgba(251, 246, 238, 0.32) 60%,
      rgba(251, 246, 238, 0.66) 100%
    ),
    url("assets/hero-lifestyle.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(0.98);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 3.2vw, 40px);
  max-width: 720px;
}

.hero__kicker {
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(255, 250, 243, 0.92);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  margin: 0 0 10px;
}

.hero__title {
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.04;
  font-size: clamp(34px, 4.6vw, 60px);
  color: rgba(255, 250, 243, 0.97);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.hero__title-sub {
  font-weight: 600;
  opacity: 0.96;
}

.hero__desc {
  margin: 0 0 18px;
  color: rgba(255, 250, 243, 0.92);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.product-highlight {
  background: linear-gradient(
    150deg,
    var(--color-surface) 0%,
    var(--color-surface-muted) 100%
  );
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.section-head-center {
  text-align: center;
}

.product-preview-link {
  margin: 10px auto 0;
  display: block;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d9cebf;
  box-shadow: 0 16px 28px rgba(54, 50, 43, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-preview-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 32px rgba(54, 50, 43, 0.14);
}

.product-preview-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-preview-name {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.product-preview-price {
  margin: 4px 0 0;
  font-size: 1.04rem;
  color: var(--color-charcoal);
  font-weight: 700;
}

.instagram-section {
  background: linear-gradient(
    150deg,
    var(--color-surface) 0%,
    var(--color-surface-muted) 100%
  );
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}

.instagram-caption {
  margin: 10px auto 0;
  max-width: 460px;
  color: var(--color-text-muted);
  text-align: center;
}

.instagram-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.instagram-tile {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  border: 1px solid #ddd3c6;
}

.instagram-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.instagram-tile:hover img {
  transform: scale(1.04);
}

.instagram-btn {
  margin: 18px auto 0;
  display: inline-flex;
}

.landing-footer {
  max-width: 1120px;
  margin: 0 auto 24px;
  padding: 0 20px;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  text-align: center;
}

.landing-footer p {
  margin: 0;
}

.landing-footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-footer-links a {
  color: var(--color-charcoal);
  text-decoration: none;
  border-bottom: 1px solid #d4c6b9;
  padding-bottom: 1px;
}

.channel-talk-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  border: 1px solid #d0c4b4;
  background: linear-gradient(145deg, #fffaf2 0%, #fbe9dd 100%);
  color: #4f5f4c;
  padding: 11px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(61, 60, 54, 0.16);
}

.detail-main {
  display: grid;
  gap: 16px;
}

.detail-hero-shell,
.detail-legal-shell {
  background: linear-gradient(145deg, #fffdf9 0%, #f5efe6 100%);
}

.detail-product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: center;
}

.detail-product-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d8cebf;
}

.detail-product-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-product-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  color: #9f7558;
  font-weight: 700;
}

.detail-product-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.detail-product-summary {
  margin: 8px 0 0;
  color: #5f695f;
}

.detail-product-points {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #576154;
}

.detail-product-points li + li {
  margin-top: 4px;
}

.detail-price {
  margin: 14px 0 0;
  font-size: 1.4rem;
  color: #2f3b30;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

.detail-legal-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.detail-legal-links a {
  text-decoration: none;
  color: #4f5e4f;
  border-bottom: 1px solid #c2cbbe;
  padding-bottom: 1px;
}

.order-complete-shell {
  background: linear-gradient(145deg, #fffdf9 0%, #f5efe6 100%);
}

.order-complete-detail {
  margin-top: 10px;
}

.order-complete-replay {
  margin: 0 0 10px;
  color: #8a5e43;
  font-size: 0.88rem;
  font-weight: 700;
}

.order-complete-grid {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-complete-grid div {
  border: 1px solid #ddd2c4;
  border-radius: 12px;
  background: #fffcf7;
  padding: 10px;
}

.order-complete-grid dt {
  font-size: 0.8rem;
  color: #647060;
  font-weight: 700;
}

.order-complete-grid dd {
  margin: 4px 0 0;
  color: #394638;
  font-size: 0.9rem;
  word-break: break-all;
}

.order-complete-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero:not(.hero--lifestyle) {
  background: linear-gradient(138deg, #fffdf9 0%, #f3eee5 52%, #ece6dc 100%);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 26px 46px rgba(40, 47, 39, 0.1);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:not(.hero--lifestyle)::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 72%);
  top: -180px;
  left: -110px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--color-accent-deep);
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-intro {
  max-width: 520px;
  color: #576156;
  margin: 0;
  font-size: 0.99rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-bullets li {
  border: 1px solid #d8cfbf;
  border-radius: 999px;
  padding: 6px 12px;
  color: #516050;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.6);
}

.hero-price {
  margin: 16px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6d746b;
}

.hero-price span {
  margin-left: 10px;
  color: #2f3a31;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  font-size: 1rem;
}

.hero-visual {
  min-height: 360px;
  border-radius: 30px;
  background: linear-gradient(155deg, #e7ede2 0%, #f2ebe1 60%, #f9f4ec 100%);
  border: 1px solid #d4dccf;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-stage {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 30px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(233, 227, 216, 0.9) 100%);
  border: 1px solid rgba(205, 201, 191, 0.85);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-top {
  width: 210px;
  height: 210px;
  top: -70px;
  right: -44px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 72%);
}

.hero-glow-bottom {
  width: 240px;
  height: 240px;
  bottom: -140px;
  left: -90px;
  background: radial-gradient(circle, rgba(207, 223, 198, 0.55) 0%, rgba(207, 223, 198, 0) 74%);
}

.bag {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 22px 34px rgba(42, 51, 40, 0.2);
  z-index: 2;
}

.bag::before {
  content: "";
  position: absolute;
  width: 38%;
  height: 8px;
  left: 31%;
  top: -10px;
  border-radius: 6px;
  background: rgba(47, 57, 45, 0.75);
}

.bag::after {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.bag-main {
  width: 192px;
  height: 142px;
  bottom: 74px;
  left: 68px;
  background: linear-gradient(172deg, #8f9f89 0%, #6d7e67 100%);
  animation: floatUp 6.8s ease-in-out infinite;
}

.bag-sub {
  width: 144px;
  height: 104px;
  bottom: 88px;
  right: 40px;
  left: auto;
  background: linear-gradient(172deg, #d4b39f 0%, #b78972 100%);
  animation: floatUp 7.5s ease-in-out infinite;
}

.hero-note {
  position: absolute;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(120, 133, 116, 0.28);
  color: #435242;
  backdrop-filter: blur(2px);
  z-index: 3;
}

.note-left {
  top: 30px;
  left: 20px;
}

.note-top {
  top: 86px;
  right: 24px;
}

.note-right {
  bottom: 26px;
  right: 28px;
}

.btn,
.btn-primary,
.btn-secondary,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:active,
.btn-primary:active,
.btn-secondary:active,
.primary-btn:active,
.secondary-btn:active {
  transform: translateY(1px);
}

.btn-primary,
.primary-btn {
  background: var(--accent-rose);
  color: var(--bg-ivory);
}

.btn-primary:hover,
.primary-btn:hover {
  filter: brightness(0.96);
}

.btn-secondary,
.secondary-btn {
  background: rgba(255, 250, 243, 0.75);
  color: var(--text-charcoal);
  border-color: var(--line-soft);
}

.btn-secondary:hover,
.secondary-btn:hover {
  filter: brightness(0.98);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.primary-btn:focus-visible,
.secondary-btn:focus-visible {
  outline: 2px solid rgba(139, 95, 102, 0.44);
  outline-offset: 2px;
}

.surface-card,
.cart-shell,
.detail-hero-shell,
.detail-legal-shell,
.order-complete-shell,
.story,
.ritual,
.products,
.legal-notice,
.review,
.next-step {
  background: linear-gradient(
    150deg,
    var(--color-surface) 0%,
    var(--color-surface-muted) 100%
  );
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-control,
.checkout-form-grid input,
.checkout-form-grid textarea,
.admin-auth input,
.admin-toolbar select,
.admin-status-editor input,
.admin-status-editor select {
  border: 1px solid #ccc0b2;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  padding: 10px 12px;
  font: inherit;
}

.value-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.value-strip article {
  background: linear-gradient(135deg, #fffdf8 0%, #f8f5ee 100%);
  border: 1px solid #e1dbcd;
  border-radius: 22px;
  padding: 18px 20px;
}

.metric-label {
  margin: 0;
  color: #667062;
  font-size: 0.86rem;
}

.metric-value {
  margin: 6px 0 0;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.story,
.ritual,
.products,
.legal-notice,
.review,
.next-step {
  margin-top: 34px;
  padding: 33px;
}

.story p {
  color: var(--muted);
}

.section-head {
  margin-bottom: 18px;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.ritual-steps article {
  background: linear-gradient(180deg, #f4f0e8 0%, #fffef9 100%);
  border: 1px solid #e5decd;
  border-radius: 16px;
  padding: 16px;
}

.step-no {
  margin: 0;
  color: var(--warm);
  font-weight: 700;
  font-size: 0.78rem;
}

.ritual-steps h3 {
  font-size: 1.2rem;
  margin-top: 4px;
}

.ritual-steps p {
  color: var(--muted);
  margin: 6px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 12px;
}

.product-card {
  background: linear-gradient(165deg, #ffffff 0%, #f6f2ea 100%);
  border: 1px solid #dfd8ca;
  border-radius: 18px;
  padding: 17px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(58, 70, 57, 0.12);
}

.product-card .tag {
  margin: 0;
  color: #687963;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-card h3 {
  margin-top: 5px;
  font-size: 1.32rem;
}

.product-card p {
  color: var(--muted);
  margin: 6px 0 10px;
  min-height: 60px;
}

.product-card strong {
  font-size: 1.12rem;
}

.stock-info {
  min-height: auto;
  margin: 8px 0 0;
  color: #536051;
  font-size: 0.86rem;
}

.single-product {
  padding: 22px;
}

.product-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.product-actions .btn-primary,
.product-actions .btn-secondary,
.product-actions .primary-btn,
.product-actions .secondary-btn {
  text-align: center;
}

.product-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.detail-card {
  background: linear-gradient(165deg, #f6f2e8 0%, #fffdf8 100%);
  border: 1px solid #ddd6c8;
  border-radius: 18px;
  padding: 22px 20px;
}

.detail-card h3 {
  font-size: 1.42rem;
}

.detail-card ul {
  margin: 12px 0 0;
  padding-left: 19px;
  color: #5f675f;
}

.detail-card li + li {
  margin-top: 7px;
}

.inline-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(76, 91, 73, 0.4);
}

.notice-grid {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 16px;
}

.notice-grid div {
  background: linear-gradient(160deg, #fffef9 0%, #f5f0e6 100%);
  border: 1px solid #e0d9ca;
  border-radius: 14px;
  padding: 12px;
}

.notice-grid dt {
  font-size: 0.82rem;
  color: #657060;
  font-weight: 700;
}

.notice-grid dd {
  margin: 4px 0 0;
  color: #384238;
  font-size: 0.92rem;
}

.notice-caption {
  margin: 12px 0 0;
  color: #657061;
  font-size: 0.9rem;
}

.legal-body {
  margin-top: 12px;
}

.legal-body h3 {
  font-size: 1.25rem;
  margin-top: 14px;
}

.legal-body h3:first-child {
  margin-top: 0;
}

.legal-body p {
  margin: 7px 0 0;
  color: #4f5a50;
}

.review blockquote {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.35;
  color: #3c473d;
}

.review-author {
  margin: 8px 0 0;
  color: #6e756d;
  font-size: 0.93rem;
}

.next-step p {
  margin: 8px 0 0;
  color: #646d64;
}

#notify-btn {
  margin-top: 16px;
}

.cart-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 74px;
}

.cart-shell {
  background: #fffefb;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.cart-empty {
  color: #647062;
  margin: 8px 0 0;
}

.cart-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #ddd7ca;
  border-radius: 16px;
  background: linear-gradient(140deg, #fffef8 0%, #f5f1e9 100%);
  padding: 15px 14px;
}

.cart-item h3 {
  font-size: 1.3rem;
  margin: 0;
}

.cart-meta {
  color: #667062;
  font-size: 0.9rem;
  margin-top: 3px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #c8cfbf;
  border-radius: 10px;
  background: #fff;
  color: #304033;
  font-weight: 700;
  cursor: pointer;
}

.qty-value {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  color: #304033;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: #7f4e35;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.86rem;
  padding: 0;
}

.cart-summary {
  margin-top: 16px;
  border: 1px solid #d7d0c2;
  border-radius: 16px;
  background: #fcfaf5;
  padding: 16px;
}

.checkout-customer {
  margin-top: 16px;
  border: 1px solid #dbd4c6;
  border-radius: 16px;
  background: linear-gradient(160deg, #fffef8 0%, #f8f4ec 100%);
  padding: 16px;
}

.checkout-customer h3 {
  margin: 0;
  font-size: 1.24rem;
}

.checkout-form-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkout-form-grid label {
  display: grid;
  gap: 6px;
  color: #4f5a51;
  font-size: 0.86rem;
  font-weight: 600;
}

.checkout-form-grid .full-row {
  grid-column: 1 / -1;
}

.checkout-form-grid input,
.checkout-form-grid textarea {
  border-color: #ccc0b2;
}

.checkout-form-grid textarea {
  resize: vertical;
}

.checkout-form-grid input.field-invalid,
.checkout-form-grid textarea.field-invalid {
  border-color: #c56a6a;
  background: #fff8f8;
}

.field-error {
  margin: -1px 0 0;
  color: #8b2e2e;
  font-size: 0.78rem;
  line-height: 1.35;
}

.checkout-note {
  margin: 11px 0 0;
  color: #596559;
  font-size: 0.85rem;
}

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

.admin-auth {
  border: 1px solid #dad2c4;
  border-radius: 14px;
  background: #fcf9f2;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.admin-auth label {
  display: grid;
  gap: 6px;
  color: #4c584d;
  font-size: 0.86rem;
  font-weight: 600;
}

.admin-auth input,
.admin-toolbar select,
.admin-status-editor input,
.admin-status-editor select {
  border-color: #ccc0b2;
}

.admin-toolbar {
  border: 1px solid #d8d0c0;
  border-radius: 14px;
  background: #faf7f0;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.admin-toolbar label {
  display: grid;
  gap: 6px;
  color: #536051;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.admin-order-card {
  border: 1px solid #d7cfbf;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffef8 0%, #f4f0e7 100%);
  padding: 14px;
}

.admin-order-card header p {
  margin: 0;
}

.admin-order-no {
  font-weight: 700;
  color: #2e3c30;
}

.admin-order-meta {
  margin-top: 3px;
  color: #5f695f;
  font-size: 0.88rem;
}

.admin-order-body {
  margin-top: 10px;
  display: grid;
  gap: 4px;
}

.admin-order-body p {
  margin: 0;
  color: #465146;
  font-size: 0.88rem;
}

.admin-item-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #4f5b50;
  font-size: 0.9rem;
}

.admin-item-list li + li {
  margin-top: 3px;
}

.admin-item-list strong {
  margin-right: 6px;
}

.admin-status-editor {
  margin-top: 12px;
  border-top: 1px dashed #d2c9b8;
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: end;
}

.admin-status-editor label {
  display: grid;
  gap: 6px;
  color: #4f5b50;
  font-size: 0.83rem;
  font-weight: 600;
}

.cart-summary p {
  margin: 0;
  color: #5f675f;
}

.cart-summary strong {
  display: inline-block;
  margin-left: 8px;
  color: #253227;
  font-size: 1.2rem;
}

.cart-summary-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-summary-actions .btn-secondary,
.cart-summary-actions .btn-primary,
.cart-summary-actions .secondary-btn,
.cart-summary-actions .primary-btn {
  text-decoration: none;
}

#checkout-btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.checkout-consent {
  margin-top: 14px;
  border: 1px solid #d8d0c0;
  border-radius: 14px;
  background: #faf7f0;
  padding: 14px;
}

.checkout-consent h3 {
  font-size: 1.22rem;
  margin: 0;
}

.consent-list {
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.consent-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #4b574e;
  font-size: 0.9rem;
}

.consent-item input {
  margin-top: 2px;
}

.consent-item a {
  color: #2f4f35;
  text-underline-offset: 2px;
}

.checkout-result {
  margin-top: 13px;
  color: #2f5b37;
  font-weight: 700;
  min-height: 24px;
}

.checkout-result.is-error {
  color: #8b2e2e;
}

.checkout-result.is-ok {
  color: #2f5b37;
}

.ui-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #2f5b37;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto 20px;
  padding: 0 20px;
  color: #6a7068;
  font-size: 0.86rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 8px;
}

.footer-legal-links a {
  color: #566455;
  text-decoration: none;
  border-bottom: 1px solid #bfc8b8;
  padding-bottom: 1px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .landing-header {
    padding-top: 20px;
  }

  .landing-cart-link {
    right: 20px;
    padding: 8px 11px;
    font-size: 0.82rem;
  }

  .landing-main {
    gap: 20px;
  }

  .product-highlight,
  .instagram-section {
    padding: 24px;
    border-radius: 24px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-product-card {
    grid-template-columns: 1fr;
  }

  .detail-legal-links {
    justify-content: center;
  }

  .hero:not(.hero--lifestyle) {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 20px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-intro {
    max-width: none;
  }

  .hero-stage {
    left: 18px;
    right: 18px;
    bottom: 22px;
    height: 78px;
  }

  .bag-main {
    width: 150px;
    height: 112px;
    left: 34px;
    bottom: 62px;
  }

  .bag-sub {
    width: 118px;
    height: 88px;
    right: 24px;
    bottom: 74px;
  }

  .hero-note {
    font-size: 0.69rem;
  }

  .value-strip,
  .ritual-steps,
  .product-grid,
  .notice-grid,
  .order-complete-grid {
    grid-template-columns: 1fr;
  }

  .story,
  .ritual,
  .products,
  .legal-notice,
  .review,
  .next-step,
  .cart-shell {
    padding: 24px;
  }

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

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

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

  .review blockquote {
    font-size: 1.35rem;
  }
}

@media (max-width: 560px) {
  .site-header,
  .landing-header {
    padding-top: 18px;
  }

  .logo,
  .landing-logo {
    font-size: 1.45rem;
  }

  .cart-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .cart-link span {
    min-width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .landing-cart-link {
    right: 14px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .landing-cart-link span {
    min-width: 20px;
    height: 20px;
    font-size: 0.68rem;
  }

  :root {
    --pad-x: 16px;
  }

  .hero__media {
    min-height: 66vh;
  }

  .hero__content {
    max-width: 100%;
  }

  .btn {
    width: fit-content;
  }

  .product-highlight,
  .instagram-section {
    padding: 18px;
    border-radius: 20px;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .detail-product-card {
    gap: 14px;
  }

  .channel-talk-fab {
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .hero:not(.hero--lifestyle) {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-bullets {
    gap: 6px;
  }

  .hero-bullets li {
    font-size: 0.76rem;
    padding: 5px 10px;
  }

  .hero-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  .bag-main {
    width: 128px;
    height: 94px;
    left: 22px;
    bottom: 54px;
  }

  .bag-sub {
    width: 100px;
    height: 74px;
    right: 16px;
    bottom: 66px;
  }

  .note-top,
  .note-right {
    right: 12px;
  }

  .note-left {
    left: 12px;
  }
}
