:root {
  --dk-bg: #f4ecdf;
  --dk-surface: #fffaf1;
  --dk-text: #0b0b0b;
  --dk-muted: #665d52;
  --dk-line: #cfc2b1;
  --dk-accent: #fff000;
  --dk-accent-soft: #fff000;
  --dk-black: #070706;
  --dk-ink: #17130f;
  --dk-font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --dk-font-display: "Bricolage Grotesque", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --dk-nav-h: 72px;

  /* Spacing scale — used for section padding / vertical rhythm */
  --dk-space-1: 4px;
  --dk-space-2: 8px;
  --dk-space-3: 12px;
  --dk-space-4: 16px;
  --dk-space-5: 24px;
  --dk-space-6: 32px;
  --dk-space-7: 48px;
  --dk-space-8: 64px;

  /* Shadow + radius scale — used on cards, panels, and modals */
  --dk-shadow-sm: 0 8px 24px rgba(7, 7, 6, .07);
  --dk-shadow-md: 0 16px 40px rgba(7, 7, 6, .09);
  --dk-shadow-lg: 0 24px 64px rgba(7, 7, 6, .14);
  --dk-radius-sm: 14px;
  --dk-radius-md: 20px;
  --dk-radius-lg: 28px;
}

html {
  overflow-x: clip;
  width: 100%;
  overscroll-behavior-x: none;
}

.dk-body {
  background: var(--dk-bg);
  color: var(--dk-text);
  font-family: var(--dk-font);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}
.dk-body button,
.dk-body input,
.dk-body select,
.dk-body textarea {
  font-family: var(--dk-font);
  font-weight: 700;
}

.dk-body img,
.dk-body video {
  max-width: 100%;
  height: auto;
}

.dk-body main,
.dk-body header,
.dk-body footer,
.dk-body section {
  max-width: 100%;
}

.dk-body .section {
  padding: clamp(2.25rem, 4vw, 3.75rem) 0;
}

.dk-body .section__label {
  color: var(--dk-muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dk-body .section__title {
  font-family: var(--dk-font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -.045em;
  line-height: .98;
  font-weight: 850;
}

.dk-body .section__desc {
  max-width: 480px;
  color: var(--dk-muted);
  line-height: 1.62;
  font-weight: 600;
}

.dk-nav {
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: visible;
  background: rgba(255, 250, 242, .94) !important;
  border-bottom: 1px solid rgba(11, 11, 11, .08);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 10px 30px rgba(5, 5, 5, .05);
}
.dk-nav .nav__inner {
  gap: .75rem 1rem;
  min-width: 0;
  width: 100%;
  flex: 0 0 auto;
  overflow-x: visible;
  padding-left: clamp(.5rem, 2.6vw, 1.25rem);
  padding-right: clamp(.4rem, 2.2vw, 1.05rem);
  box-sizing: border-box;
}
.dk-nav .nav__logo {
  margin-right: 0;
  margin-left: clamp(-.55rem, -1.9vw, -.3rem);
  flex-shrink: 0;
  padding-left: 0;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.dk-nav .nav__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.dk-nav .nav__logo-mark,
.dk-nav .nav__logo img {
  display: block;
  height: 48px;
  width: min(160px, 42vw);
  object-fit: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .16));
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.dk-logo-protected {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.dk-logo-protected::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.dk-logo-mark {
  display: block;
  width: 100%;
  max-width: min(280px, 72vw);
  min-height: clamp(120px, 28vw, 240px);
  margin-inline: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: clamp(.65rem, 2.2vw, 1.15rem);
  min-width: 0;
  flex: 1 1 0;
  max-width: none;
  padding-right: .25rem;
}
.nav__ticker {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 2rem;
  padding: .52rem 0;
  background: rgba(7, 7, 6, .07);
  border-top: 1px solid rgba(7, 7, 6, .1);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
.nav__ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: dk-nav-ticker 28s linear infinite;
}
.nav__ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.75rem;
  padding-right: 1.75rem;
}
.nav__ticker-track span {
  white-space: nowrap;
  font-size: clamp(.58rem, 1.4vw, .68rem);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dk-black);
  opacity: 1;
  text-shadow: none;
}
@keyframes dk-nav-ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav__ticker-track {
    animation: none;
  }
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-left: auto;
  margin-right: clamp(-.35rem, -1.2vw, -.12rem);
  flex-shrink: 0;
}
.nav__cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(5, 5, 5, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--dk-black);
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  flex-shrink: 0;
}
.nav__cart-btn .nav__cart-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.nav__cart-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--dk-black);
  color: var(--dk-accent);
  font-size: .62rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
}
.nav__cart-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(5, 5, 5, .28);
  background: #fff;
}
.dk-nav .nav__links a {
  color: var(--dk-black) !important;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: none;
}
.dk-nav .nav__links a:hover,
.dk-nav .nav__links a.is-active {
  color: #000 !important;
}
.dk-nav .nav__links a.is-active {
  color: var(--dk-text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .45rem;
  text-decoration-color: var(--dk-accent);
}
.dk-nav .nav__item {
  position: relative;
}
.dk-nav .nav__dropdown {
  position: relative;
}
.dk-nav .nav__dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--dk-black);
  font-size: .8rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
.dk-nav .nav__dropdown summary::-webkit-details-marker {
  display: none;
}
.dk-nav .nav__dropdown summary::after {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-left: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-.15rem) rotate(45deg);
  transition: transform .2s ease;
}
.dk-nav .nav__dropdown[open] summary::after {
  transform: translateY(.05rem) rotate(225deg);
}
.dk-nav .nav__dropdown-menu {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem;
  right: 0;
  top: calc(100% + 1rem);
  z-index: 20;
  min-width: 220px;
  padding: .55rem;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 18px;
  background: rgba(255, 250, 242, .98);
  box-shadow: 0 22px 54px rgba(5, 5, 5, .14);
}
.dk-nav .nav__dropdown-menu a {
  display: flex;
  justify-content: space-between;
  padding: .72rem .85rem;
  border-radius: 13px;
  font-size: .82rem;
  letter-spacing: .04em;
}
.dk-nav .nav__dropdown-menu a:hover {
  background: var(--dk-accent);
}
.dk-nav .nav__lang {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .28rem;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  color: var(--dk-black);
}
.dk-nav .nav__lang button {
  min-width: 30px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--dk-black);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.dk-nav .nav__lang button.is-active {
  background: var(--dk-black);
  color: var(--dk-accent);
}
.dk-nav .nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--dk-black);
  border: 1px solid rgba(5, 5, 5, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  flex-shrink: 0;
  margin-right: clamp(-.45rem, -1.6vw, -.2rem);
}
.dk-nav .nav__toggle svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.dk-nav .nav__collapse.open {
  background: var(--dk-bg);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(5, 5, 5, .14);
  padding: 1rem;
}

.dk-page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--dk-nav-h) + clamp(2rem, 4vw, 3.2rem)) 0 clamp(2.35rem, 4vw, 3.55rem);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 240, 0, .28), transparent 22rem),
    linear-gradient(135deg, #fbf3e7 0%, #e6dac7 100%);
  border-bottom: 1px solid rgba(5, 5, 5, .1);
}
.dk-page-hero--dark {
  background:
    radial-gradient(circle at 88% 15%, rgba(215, 217, 58, .22), transparent 18rem),
    linear-gradient(135deg, #060606 0%, #1a1712 100%);
  color: #fff;
}
.dk-page-hero--contact {
  background:
    radial-gradient(circle at 82% 10%, rgba(215, 217, 58, .34), transparent 20rem),
    linear-gradient(135deg, #080807 0%, #2c241b 100%);
  color: #fff;
}
.dk-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 220px), 420px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.dk-page-hero h1 {
  max-width: 860px;
  font-family: var(--dk-font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.05rem) !important;
  line-height: 1;
  letter-spacing: -.045em;
  margin: .3rem 0 1rem;
}
.dk-page-hero p:not(.section__label) {
  max-width: 620px;
  color: inherit;
  opacity: .78;
  line-height: 1.62;
  font-size: clamp(.95rem, 1.45vw, 1.05rem);
  font-weight: 600;
}
.dk-page-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 30px;
  background: rgba(255, 250, 242, .88);
  box-shadow: 0 28px 80px rgba(5, 5, 5, .16);
}
.dk-page-hero img[src*="logo"] {
  max-height: 240px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .28));
}

.dk-page-hero__inner--story {
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
}
.dk-page-hero__lead {
  margin: 1.35rem 0 0;
  max-width: 520px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: inherit;
  opacity: .52;
  line-height: 1.5;
}

.dk-page-hero--dark img,
.dk-page-hero--contact img {
  background: rgba(255, 255, 255, .08);
}
.dk-page-hero--dark img[src*="logo"],
.dk-page-hero--contact img[src*="logo"] {
  background: transparent;
}

.dk-hero {
  position: relative;
  padding: calc(var(--dk-nav-h) + clamp(1.6rem, 3.6vw, 3.2rem)) 0 1.1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 10%, rgba(255, 240, 0, .28), transparent 27rem),
    linear-gradient(135deg, #fbf3e7 0%, #e8dcc9 54%, #fff7ea 100%);
  border-bottom: 1px solid rgba(11, 11, 11, .1);
}
.dk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 5, 5, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}
.dk-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.dk-hero__copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.dk-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--dk-black);
  margin: 0 0 1rem;
  padding-right: .5rem;
}
.dk-hero h1 {
  max-width: 860px;
  font-family: var(--dk-font-display);
  font-size: clamp(2rem, 3.65vw, 3rem) !important;
  font-weight: 850;
  letter-spacing: -.05em;
  line-height: 1.02;
  margin: 0 0 1rem;
}
.dk-hero__lead {
  color: #312d28;
  font-size: clamp(.95rem, 1.45vw, 1.05rem);
  max-width: 560px;
  line-height: 1.6;
  font-weight: 560;
}
.dk-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 0; }
.dk-hero__visual {
  position: relative;
  display: block;
  height: clamp(320px, 42vw, 460px);
  padding: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ee 100%);
  border: 1px solid rgba(5, 5, 5, .14);
  border-radius: 28px;
  box-shadow: 0 20px 58px rgba(5, 5, 5, .12);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.dk-hero__brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(5, 5, 5, .16);
}
.dk-brand-card__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 240, 0, .22), transparent 58%),
    linear-gradient(180deg, #fff 0%, #fff9ef 100%);
  border: 1px solid rgba(5, 5, 5, .06);
}
.dk-brand-card__logo {
  width: min(58%, 220px);
  height: auto;
  display: block;
}
.dk-brand-card__tag {
  margin: 0;
  font-size: clamp(.78rem, 1.2vw, .88rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4a453d;
}
.dk-brand-card__badge {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  padding: .65rem .85rem;
  border-radius: 999px;
  background: var(--dk-accent);
  color: #000;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}
.dk-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
}
.dk-btn {
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: .02em;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: .82rem;
}
.dk-btn.btn--primary {
  background: linear-gradient(135deg, #070706 0%, #252018 100%);
  border-color: #070706;
  color: #fff;
  box-shadow: 0 14px 30px rgba(5, 5, 5, .16);
}
.dk-btn.btn--primary:hover {
  background: linear-gradient(135deg, #000 0%, #15120d 100%);
  box-shadow: 0 18px 38px rgba(5, 5, 5, .22);
}
.dk-btn--ghost {
  background: rgba(255, 250, 242, .55);
  border-color: rgba(5, 5, 5, .2);
  color: rgba(5, 5, 5, .72);
}
.dk-proof {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 250, 242, .74);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
}
.dk-proof span {
  padding: 1rem;
  text-align: center;
  color: #161616;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dk-proof span + span { border-left: 1px solid rgba(5, 5, 5, .12); }

.dk-strip {
  display: flex;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  padding: .82rem 0;
  background: var(--dk-black);
  color: var(--dk-accent-soft);
  font-family: var(--dk-font);
  font-size: clamp(.92rem, 1.8vw, 1.22rem);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  max-width: 100%;
  contain: layout paint;
}
.dk-strip span {
  display: inline-block;
  min-width: max-content;
  animation: dk-marquee 26s linear infinite;
  will-change: transform;
}
@keyframes dk-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-120%); }
}


.dk-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.dk-categories-section {
  background: linear-gradient(180deg, var(--dk-bg) 0%, #eadfce 100%);
  overflow: visible;
}
.dk-categories-section .container {
  overflow: visible;
}
.dk-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .8rem;
  overflow: visible;
}
.dk-category {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: var(--dk-black);
  text-align: left;
  font: inherit;
  background: rgba(255, 248, 237, .92);
  border: 1px solid rgba(7, 7, 6, .14);
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 7, 6, .07);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.dk-category:hover,
.dk-category.is-active {
  transform: translateY(-4px);
  border-color: rgba(7, 7, 6, .38);
  background: #fffaf2;
  box-shadow: 0 16px 36px rgba(7, 7, 6, .1);
}
  .dk-category span {
  font-family: var(--dk-font-display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  overflow-wrap: anywhere;
}
.dk-category strong {
  color: var(--dk-muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dk-category:not(.is-coming) {
  background:
    radial-gradient(circle at 85% 10%, rgba(215, 217, 58, .28), transparent 7rem),
    var(--dk-surface);
}
.dk-category.is-active {
  box-shadow:
    0 16px 36px rgba(7, 7, 6, .1),
    0 0 0 3px rgba(215, 217, 58, .52);
}
.dk-category.is-coming {
  opacity: .58;
}
.dk-empty-category {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 217, 58, .2), transparent 16rem),
    var(--dk-surface);
  border: 1px solid rgba(7, 7, 6, .14);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(7, 7, 6, .08);
}
.dk-empty-category h3 {
  margin: .2rem 0 .5rem;
  font-family: var(--dk-font-display);
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  letter-spacing: -.04em;
}
.dk-empty-category p {
  max-width: 460px;
  margin: 0 auto 1.2rem;
  color: var(--dk-muted);
  line-height: 1.7;
}

.dk-lookbook-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 217, 58, .16), transparent 18rem),
    linear-gradient(135deg, #080807 0%, #18130f 100%);
  color: #fff;
}
.dk-lookbook-section .section__label,
.dk-lookbook-section .section__desc {
  color: rgba(255, 255, 255, .68);
}
.dk-body .dk-lookbook-section .section__title {
  color: #fff !important;
}
.dk-body .dk-lookbook-section .section__label {
  color: rgba(255, 255, 255, .72) !important;
}
.dk-body .dk-lookbook-section .section__desc {
  color: rgba(255, 255, 255, .68) !important;
}
.dk-body .dk-lookbook-section .section__label::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent) !important;
}
.dk-lookbook-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.dk-lookbook {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: minmax(170px, 21vw);
  gap: clamp(.75rem, 2vw, 1.25rem);
}
.dk-lookbook--compact {
  grid-auto-rows: minmax(160px, 19vw);
}
.dk-lookbook__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
.dk-lookbook__item--wide {
  grid-row: span 2;
}
.dk-lookbook__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
  transition: transform .35s ease, filter .35s ease;
}
.dk-lookbook__item:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.08);
}
.dk-lookbook__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .28), transparent 55%);
  pointer-events: none;
}

.shop-grid {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.shop-card.is-sold-out { opacity: .88; }
.shop-card.is-sold-out .shop-card__media img { filter: grayscale(.35); }
.shop-card__sold {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(15, 15, 15, .82);
  color: #fff;
}
.shop-card__order.is-disabled {
  pointer-events: none;
  opacity: .55;
  cursor: not-allowed;
}
.shop-card__cart:disabled {
  opacity: .55;
  cursor: not-allowed;
}
  position: relative;
  background: linear-gradient(180deg, #fffdf8 0%, var(--dk-surface) 100%);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: var(--dk-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--dk-shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, .32);
  box-shadow: 0 22px 56px rgba(5, 5, 5, .12);
}
.shop-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: #fff;
  padding: .85rem;
  overflow: hidden;
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .28s ease;
}
.shop-card:hover .shop-card__media img { transform: scale(1.035); }
.shop-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: var(--dk-black);
  color: #fff;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shop-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.shop-card__kicker {
  color: var(--dk-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0;
  text-transform: uppercase;
}
.shop-card__body h3 {
  font-family: var(--dk-font-display);
  font-size: 1.05rem;
  letter-spacing: -.03em;
  margin: 0;
  line-height: 1.08;
}
.shop-card__body h3 a { color: inherit; text-decoration: none; }
.shop-card__desc { color: var(--dk-muted); font-size: .9rem; line-height: 1.55; margin: 0; flex: 1; }
.shop-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.shop-card__chips span {
  padding: .42rem .58rem;
  border-radius: 999px;
  background: rgba(7, 7, 6, .06);
  color: #332d24;
  font-size: .72rem;
  font-weight: 700;
}
.shop-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: .4rem;
  border-top: 1px solid rgba(5, 5, 5, .1);
}
.shop-card__meta span {
  color: var(--dk-muted);
  font-size: .76rem;
  font-weight: 800;
}
.shop-card__meta strong {
  color: var(--dk-black);
  font-size: 1.06rem;
  font-weight: 900;
  white-space: nowrap;
}
.shop-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin-top: .25rem;
}
.shop-card__cart.is-added {
  border-color: rgba(7, 7, 6, .42);
  background: var(--dk-accent);
}
.shop-card__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.shop-card__price { font-weight: 900; margin: .25rem 0; }
.btn--block { width: 100%; text-align: center; }

/* ── Cart drawer ── */
body.dk-cart-open {
  overflow: hidden;
}
.dk-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
}
.dk-cart-drawer.open {
  pointer-events: auto;
}
.dk-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 6, .48);
  opacity: 0;
  transition: opacity .24s ease;
}
.dk-cart-drawer.open .dk-cart-drawer__backdrop {
  opacity: 1;
}
.dk-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fffaf2;
  border-left: 1px solid rgba(7, 7, 6, .12);
  box-shadow: -24px 0 80px rgba(7, 7, 6, .18);
  transform: translateX(102%);
  transition: transform .28s ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.dk-cart-drawer.open .dk-cart-drawer__panel {
  transform: translateX(0);
}
.dk-cart-drawer__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: max(1rem, env(safe-area-inset-top, 0)) 1.15rem 1rem;
  border-bottom: 1px solid rgba(7, 7, 6, .1);
}
.dk-cart-drawer__head h2 {
  margin: .2rem 0 0;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  letter-spacing: -.04em;
}
.dk-cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(7, 7, 6, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--dk-black);
  cursor: pointer;
}
.dk-cart-drawer__close svg {
  display: block;
  width: 22px;
  height: 22px;
}
.dk-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.15rem;
  -webkit-overflow-scrolling: touch;
}
.dk-cart-drawer__foot {
  padding: 1rem 1.15rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(7, 7, 6, .1);
  display: grid;
  gap: .65rem;
  background: #fff7ea;
}
.dk-cart-drawer__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.dk-cart-drawer__note {
  margin: 0;
  color: var(--dk-muted);
  font-size: .82rem;
  line-height: 1.5;
}
.dk-cart-empty {
  margin: 2rem 0;
  text-align: center;
  color: var(--dk-muted);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.dk-cart-toast {
  position: fixed;
  left: 50%;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  transform: translate(-50%, 120%);
  z-index: 1400;
  max-width: min(92vw, 360px);
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(7, 7, 6, .94);
  color: #fffaf2;
  font-size: .88rem;
  line-height: 1.45;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.dk-cart-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.dk-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(7, 7, 6, .1);
}
.dk-cart-item__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(7, 7, 6, .1);
  background: #fff;
}
.dk-add-cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1450;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.dk-add-cart-modal[hidden] {
  display: none !important;
}
body.dk-add-cart-modal-open {
  overflow: hidden;
}
.dk-add-cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 6, .48);
  backdrop-filter: blur(2px);
}
.dk-add-cart-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: #fffaf2;
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(7, 7, 6, .18);
  overflow: hidden;
}
.dk-add-cart-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem .85rem;
  border-bottom: 1px solid rgba(7, 7, 6, .08);
}
.dk-add-cart-modal__head h2 {
  margin: .2rem 0 0;
  font-size: 1.15rem;
}
.dk-add-cart-modal__product {
  margin: .35rem 0 0;
  color: var(--dk-muted);
  font-size: .88rem;
}
.dk-add-cart-modal__close {
  border: 0;
  background: transparent;
  color: var(--dk-black);
  padding: .25rem;
  cursor: pointer;
}
.dk-add-cart-modal__body {
  padding: 1rem 1.15rem;
}
.dk-add-cart-modal__field {
  display: grid;
  gap: .45rem;
}
.dk-add-cart-modal__field span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.dk-add-cart-modal__field select {
  width: 100%;
  padding: .72rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(7, 7, 6, .14);
  background: #fff;
  font: inherit;
}
.dk-add-cart-modal__foot {
  display: flex;
  gap: .65rem;
  padding: .85rem 1.15rem 1.15rem;
}
.dk-add-cart-modal__foot .btn {
  flex: 1 1 0;
}
.dk-cart-item__kicker {
  margin: 0;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.dk-cart-item h3 {
  margin: .15rem 0;
  font-size: .95rem;
  line-height: 1.25;
}
.dk-cart-item h3 a,
.dk-cart-item__checkout {
  color: inherit;
  text-decoration: none;
}
.dk-cart-item__meta {
  margin: 0;
  color: var(--dk-muted);
  font-size: .82rem;
}
.dk-cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .45rem;
}
.dk-cart-item__checkout {
  font-size: .78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dk-cart-item__remove {
  padding: 0;
  border: 0;
  background: none;
  color: #9a2b2b;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-checkout-lines {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cart-line {
  padding: 1rem;
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 20px;
  background: #fffdf8;
}
.cart-line__head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: .85rem;
  align-items: center;
  margin-bottom: .85rem;
}
.cart-line__head--compact {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: .65rem;
}
.cart-line__head img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(7, 7, 6, .1);
}
.cart-line__index {
  margin: 0;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.cart-line__head h3 {
  margin: .15rem 0;
  font-size: .98rem;
  line-height: 1.2;
}
.cart-line__price,
.cart-line__meta {
  margin: 0;
  color: var(--dk-muted);
  font-size: .82rem;
}
.cart-line__fields {
  display: grid;
  gap: .75rem;
}
.cart-line__field select {
  width: 100%;
  margin-top: .35rem;
}
.cart-line__label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.cart-line .form__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  min-width: 0;
}
.cart-line .form__option {
  min-width: 0;
  min-height: 44px;
}

/* ── Size picker grid ── */
.dk-size-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
  gap: .55rem;
}
.dk-size-picker__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  min-height: 3.25rem;
  padding: .55rem .45rem;
  border: 1.5px solid rgba(7, 7, 6, .14);
  border-radius: 14px;
  background: #fff;
  color: var(--dk-black);
  font: inherit;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .12s ease;
}
.dk-size-picker__btn:hover:not(:disabled) {
  border-color: rgba(7, 7, 6, .32);
  transform: translateY(-1px);
}
.dk-size-picker__btn.is-selected {
  border-color: var(--dk-black);
  background: var(--dk-accent);
  box-shadow: 0 8px 20px rgba(7, 7, 6, .08);
}
.dk-size-picker__btn.is-disabled {
  opacity: .58;
  cursor: not-allowed;
  text-decoration: line-through;
}
.dk-size-picker__size {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.dk-size-picker__extra {
  font-size: .62rem;
  font-weight: 700;
  color: var(--dk-muted);
}
.dk-size-picker__hint {
  font-size: .58rem;
  font-weight: 700;
  color: #9a2b2b;
  text-align: center;
  line-height: 1.2;
}
.dk-size-picker__btn.is-available:not(.is-disabled) {
  border-color: rgba(15, 107, 50, .58);
  background: rgba(26, 122, 60, .07);
}
.dk-size-picker__btn.is-available:not(.is-disabled):hover {
  border-color: rgba(15, 107, 50, .78);
  background: rgba(26, 122, 60, .12);
}
.dk-size-picker__hint.dk-size-picker__hint--available,
.dk-size-picker__btn.is-available:not(.is-disabled) .dk-size-picker__hint {
  color: #0f6b32;
  font-weight: 800;
  background: rgba(26, 122, 60, .18);
  padding: .12rem .42rem;
  border-radius: 999px;
}
.dk-size-picker__btn.is-selected.is-available .dk-size-picker__hint--available {
  color: #0a5a28;
  background: rgba(26, 122, 60, .24);
}
.form__note--available {
  color: #0f6b32;
  font-weight: 700;
}
.dk-size-picker__empty {
  margin: 0;
  color: var(--dk-muted);
  font-size: .85rem;
}

/* ── Checkout product card ── */
.checkout-product-card {
  display: grid;
  grid-template-columns: minmax(96px, 120px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 20px;
  background: #fffdf8;
  margin-bottom: 1rem;
}
.checkout-product-card__media {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 7, 6, .1);
}
.checkout-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-product-card__body {
  display: grid;
  gap: .85rem;
  align-content: start;
}
.checkout-product-locked {
  margin-bottom: .15rem;
  padding: .95rem 1rem;
  background: rgba(255, 250, 242, .92);
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 18px;
}
.checkout-product-locked__label {
  margin: 0 0 .35rem;
  color: var(--dk-muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.checkout-product-locked__name {
  margin: 0;
  font-family: var(--dk-font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.checkout-product-locked__meta {
  margin: .35rem 0 0;
  color: var(--dk-muted);
  font-size: .88rem;
}
.cart-line__size-picker { margin-top: .35rem; }

.dk-add-cart-modal__intro {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.dk-add-cart-modal__thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(7, 7, 6, .1);
  background: #fff;
}
.dk-add-cart-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dk-add-cart-modal__field-label {
  display: block;
  margin-bottom: .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.dk-add-cart-modal.is-open .dk-add-cart-modal__panel {
  animation: dkModalSlideUp .28s ease;
}
@keyframes dkModalSlideUp {
  from { transform: translateY(12px); opacity: .92; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 640px) {
  .dk-size-picker__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;
  }
  .dk-size-picker__btn {
    min-height: 2.85rem;
    padding: .45rem .35rem;
    border-radius: 12px;
  }
  .checkout-product-card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: .85rem;
    gap: .75rem;
  }
  .cart-line__head {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: .65rem;
  }
  .cart-line__head img {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 380px) {
  .dk-size-picker__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dk-policy {
  display: grid;
  gap: 1.25rem;
  max-width: 760px;
}
.dk-policy__block {
  padding: 1.35rem 1.4rem;
  background: #fffaf2;
  border: 1px solid rgba(7, 7, 6, .1);
  border-radius: 22px;
}
.dk-policy__block h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -.03em;
}
.dk-policy__block p {
  margin: 0 0 .75rem;
  line-height: 1.65;
  color: #2e2a25;
}
.dk-policy__list {
  margin: 0 0 .85rem 1.1rem;
  padding: 0;
  line-height: 1.65;
  color: #2e2a25;
}
.dk-policy__list li + li {
  margin-top: .35rem;
}
.dk-policy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .5rem;
}
.dk-footer-legal {
  margin: 0 0 .35rem;
  text-align: center;
}
.dk-footer-legal a {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dk-footer-legal a:hover {
  color: #fff;
}

.product-gallery {
  margin: 1.5rem 0 2rem;
}
.checkout-page .product-gallery {
  margin: 1rem 0 1.35rem;
}
.checkout-page #product-summary {
  margin: 0 0 1rem;
  line-height: 1.55;
  color: var(--dk-muted);
}
.product-gallery__grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.checkout-page .product-gallery__grid {
  gap: .8rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.product-gallery__item {
  margin: 0;
  background: var(--dk-surface);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 24px;
  overflow: hidden;
  padding: .9rem;
  box-shadow: 0 16px 44px rgba(5, 5, 5, .08);
}
.checkout-page .product-gallery__item {
  border-radius: 18px;
  padding: .55rem;
}
.product-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}
.checkout-page .product-gallery__item img {
  aspect-ratio: 1 / 1;
  max-height: 210px;
}
.size-chart {
  margin-top: 1rem;
  background: var(--dk-surface);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(5, 5, 5, .08);
}
.size-chart summary {
  cursor: pointer;
  font-weight: 800;
  padding: .9rem 1rem;
}
.size-chart img {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
}

.checkout-page {
  background:
    radial-gradient(circle at 92% 6%, rgba(215, 217, 58, .18), transparent 24rem),
    var(--dk-bg);
  padding: calc(var(--dk-nav-h) + 1.5rem) 0 3rem;
  min-height: 100vh;
  overflow-x: clip;
}
.checkout-page__inner {
  max-width: min(980px, 100%);
  width: 100%;
}
.checkout-page .section__title {
  word-break: break-word;
}
.checkout-page .preorder__steps {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}
.checkout-page .preorder__steps li {
  align-items: flex-start;
  line-height: 1.45;
}
.checkout-form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
  overflow: visible;
}
.checkout-section {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(255, 250, 242, .96);
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: var(--dk-radius-md);
  box-shadow: var(--dk-shadow-sm);
  overflow: visible;
  min-width: 0;
}
#single-checkout-panel[hidden],
#cart-checkout-panel[hidden] {
  display: none !important;
}
.checkout-form .form__group {
  margin-bottom: 1rem;
  min-width: 0;
}
.checkout-form .form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.checkout-form label {
  color: #201b15;
  font-weight: 850;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .18);
  border-radius: 16px;
  box-sizing: border-box;
}
.checkout-form textarea {
  min-height: 96px;
}
.checkout-form select {
  appearance: auto;
  -webkit-appearance: menulist;
  padding-right: 2rem;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: 2px solid rgba(215, 217, 58, .72);
  border-color: rgba(7, 7, 6, .5);
}
.checkout-form .form__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}
.checkout-form .form__options--stack {
  grid-template-columns: 1fr;
}
.checkout-form .form__option {
  position: relative;
  min-height: 48px;
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .13);
  cursor: pointer;
  user-select: none;
  min-width: 0;
}
.checkout-form .form__option input[type="radio"],
.checkout-form .form__option input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.checkout-form .form__option span {
  position: relative;
  z-index: 0;
  pointer-events: none;
}
.checkout-section__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem;
  align-items: start;
  margin-bottom: 1rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid rgba(7, 7, 6, .1);
}
.checkout-section__head span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--dk-black);
  color: var(--dk-accent-soft);
  font-weight: 900;
  flex-shrink: 0;
}
.checkout-section__head h2 {
  margin: 0;
  font-family: var(--dk-font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -.03em;
  line-height: 1.08;
  word-break: break-word;
}
.checkout-section__head p {
  margin: .35rem 0 0;
  color: var(--dk-muted);
  line-height: 1.55;
}
#colour-options .form__option span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
#colour-options .form__option span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(7, 7, 6, .25);
  background: #111;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .42);
}
#colour-options .form__option:nth-child(2) span::before {
  background: #c9c9c6;
}
.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}
.checkout-trust span {
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgba(7, 7, 6, .08);
  color: #2d271f;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-form .form__submit {
  min-height: 58px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #070706 0%, #2a2319 100%);
  box-shadow: 0 18px 38px rgba(7, 7, 6, .2);
  text-transform: uppercase;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(5, 5, 5, .14);
  border-radius: 999px;
  background: var(--dk-surface);
  color: var(--dk-text);
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
}
.contact-chip:hover { border-color: #bbb; }
.contact-ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer social (elegant) ── */
.dk-footer-social {
  width: 100%;
  max-width: 34rem;
}
.dk-footer-social__label {
  margin: 0 0 1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}
.dk-footer-social__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}
.dk-social-link {
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: 1rem 1.15rem;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.dk-social-link:last-child { border-bottom: none; }
.dk-social-link:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.dk-social-link__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  flex-shrink: 0;
}
.dk-social-link__icon .contact-ico {
  width: 1.05rem;
  height: 1.05rem;
  opacity: .92;
}
.dk-social-link__body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
  flex: 1;
}
.dk-social-link__title {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
}
.dk-social-link__desc {
  font-size: .76rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, .48);
  font-weight: 500;
}
.dk-social-link:hover .dk-social-link__desc { color: rgba(255, 255, 255, .62); }
.dk-social-link__arrow {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, .34);
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.dk-social-link:hover .dk-social-link__arrow {
  color: var(--dk-black);
  background: var(--dk-accent, #fff000);
  transform: translate(1px, -1px);
}

.dk-footer-social--page .dk-footer-social__label { color: rgba(255, 255, 255, .55); }
.dk-footer-social--page .dk-footer-social__links {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}
.dk-footer-social--page .dk-social-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .1);
}
.dk-footer-social--page .dk-social-link:hover { background: rgba(255, 255, 255, .1); }
.dk-footer-social--page .dk-social-link__icon {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}
.dk-footer-social--page .dk-social-link__desc { color: rgba(255, 255, 255, .58); }

.dk-about {
  display: grid;
  grid-template-columns: minmax(min(100%, 220px), 360px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.dk-about__media {
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 240, 0, .2), transparent 13rem),
    var(--dk-black);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(5, 5, 5, .16);
}
.dk-about__media img {
  width: min(82%, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .32));
}
.dk-about p { max-width: 760px; line-height: 1.75; color: #2e2a25; }
.dk-about p span {
  display: block;
  margin-bottom: .9rem;
}
.dk-about__tagline {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: .75rem;
}
.dk-about--page .dk-about__media {
  min-height: 280px;
}
.dk-about--page .dk-about__media img {
  width: min(72%, 260px);
}
.dk-contact-card {
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 242, 57, .5), transparent 17rem),
    var(--dk-black);
  color: #fff;
  border-radius: 34px;
}
.dk-contact-card .section__label,
.dk-contact-card .section__desc { color: rgba(255, 255, 255, .72); }
.dk-contact-card .contact-chip {
  background: #fff;
  color: #000;
  border-color: transparent;
}
.dk-contact-card--page {
  max-width: 980px;
}
.dk-size-preview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(min(100%, 260px), 520px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.dk-size-preview img {
  width: 100%;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(5, 5, 5, .12);
}
/* ── dk-nav-list: editorial homepage menu ── */
.dk-nav-list-section {
  border-top: 1px solid rgba(7, 7, 6, .1);
}
.dk-nav-list {
  display: flex;
  flex-direction: column;
}
.dk-nav-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(7, 7, 6, .1);
  text-decoration: none;
  color: var(--dk-black);
  transition: background .18s ease, padding .18s ease;
}
.dk-nav-list__item:first-child {
  border-top: 1px solid rgba(7, 7, 6, .1);
}
@media (hover: hover) and (pointer: fine) {
  .dk-nav-list__item:hover {
    padding-left: .65rem;
    padding-right: .65rem;
    margin-left: -.65rem;
    margin-right: -.65rem;
    background: rgba(255, 240, 0, .12);
    border-color: transparent;
  }
  .dk-nav-list__item:hover .dk-nav-list__arrow {
    color: var(--dk-black);
    transform: translateX(5px);
  }
}
.dk-nav-list__left {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.dk-nav-list__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--dk-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dk-nav-list__name {
  font-family: var(--dk-font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.dk-nav-list__arrow {
  flex-shrink: 0;
  color: rgba(7, 7, 6, .35);
  transition: color .18s ease, transform .18s ease;
}
.dk-nav-list-section {
  overflow-x: clip;
}

/* ── dk-values-list: clean horizontal pills ── */
.dk-values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.dk-values-list__item {
  padding: clamp(1.15rem, 2.5vw, 1.65rem) clamp(1rem, 2.2vw, 1.5rem);
  border-right: 1px solid rgba(7, 7, 6, .12);
}
.dk-values-list__item:last-child {
  border-right: 0;
}
.dk-values-list__item h3 {
  font-family: var(--dk-font-display);
  font-size: clamp(.98rem, 1.8vw, 1.18rem);
  font-weight: 850;
  letter-spacing: -.025em;
  margin: 0 0 .5rem;
  line-height: 1.1;
}
.dk-values-list__item p {
  margin: 0;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dk-muted);
  line-height: 1.55;
}

/* ── QRIS payment modal ── */
.dk-body .modal {
  z-index: 1200;
}
.checkout-feedback {
  margin: 0 0 1rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: #fff0f0;
  border: 1px solid rgba(180, 40, 40, .28);
  color: #8b1a1a;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.5;
}
.qris-modal {
  width: min(420px, calc(100% - 2rem));
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(7, 7, 6, .22);
  font-family: var(--dk-font);
}
.qris-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem .85rem;
  border-bottom: 1px solid rgba(7, 7, 6, .08);
}
.qris-modal__brand {
  font-weight: 850;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--dk-black);
}
.qris-modal__close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(7, 7, 6, .14);
  background: transparent;
  color: rgba(7, 7, 6, .55);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.qris-modal__close:hover {
  background: rgba(7, 7, 6, .06);
  color: var(--dk-black);
}
.qris-modal__body {
  padding: 1.15rem 1.35rem 1.35rem;
}
.qris-modal__amount-block {
  text-align: center;
  padding: .85rem .5rem;
  background: var(--dk-black);
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.qris-modal__amount-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .3rem;
}
.qris-modal__amount {
  display: block;
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.1;
}
.qris-modal__amount-note {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  margin-top: .35rem;
  letter-spacing: .01em;
}
.qris-modal__qr {
  text-align: center;
  margin-bottom: 1rem;
}
.qris-modal__qr-inner {
  display: inline-block;
  padding: .85rem;
  background: #fff;
  border: 1.5px solid rgba(7, 7, 6, .12);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(7, 7, 6, .07);
}
.qris-modal__qr-inner img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.qris-modal__scan-hint {
  margin: .65rem 0 0;
  font-size: .72rem;
  color: rgba(7, 7, 6, .45);
  letter-spacing: .01em;
}
.qris-modal__meta {
  background: rgba(7, 7, 6, .04);
  border-radius: 10px;
  padding: .7rem 1rem;
  margin-bottom: .9rem;
}
.qris-modal__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(7, 7, 6, .5);
  padding: .25rem 0;
}
.qris-modal__meta-row + .qris-modal__meta-row {
  border-top: 1px solid rgba(7, 7, 6, .07);
  margin-top: .15rem;
  padding-top: .4rem;
}
.qris-modal__meta-row strong {
  color: var(--dk-black);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: -.01em;
}
.qris-modal__meta-row--timer strong {
  font-size: 1rem;
  letter-spacing: -.02em;
}
.pay-countdown {
  font-variant-numeric: tabular-nums;
}
.pay-countdown--urgent {
  color: #e53e3e;
}
.pay-countdown--ended {
  color: #e53e3e;
  opacity: .7;
}
.qris-modal__status {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  border-radius: 10px;
  border: 1.5px solid rgba(7, 7, 6, .1);
  background: rgba(7, 7, 6, .03);
  transition: border-color .3s ease, background .3s ease;
}
.qris-modal__status[data-state="success"] {
  border-color: rgba(22, 163, 74, .3);
  background: rgba(22, 163, 74, .07);
}
.qris-modal__status[data-state="error"] {
  border-color: rgba(220, 38, 38, .3);
  background: rgba(220, 38, 38, .07);
}
.qris-modal__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: pulseDot 1.6s ease-in-out infinite;
}
.qris-modal__status[data-state="success"] .qris-modal__status-dot {
  background: #16a34a;
  animation: none;
}
.qris-modal__status[data-state="error"] .qris-modal__status-dot {
  background: #dc2626;
  animation: none;
}
.qris-modal__status-text {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(7, 7, 6, .65);
}
.qris-modal__status[data-state="success"] .qris-modal__status-text {
  color: #15803d;
}
.qris-modal__status[data-state="error"] .qris-modal__status-text {
  color: #dc2626;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.75); }
}

/* ── Checkout payment info display ── */
.checkout-payment-info {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .85rem 1rem;
  background: rgba(7, 7, 6, .04);
  border: 1px solid rgba(7, 7, 6, .1);
  border-radius: 10px;
  font-size: .88rem;
  color: rgba(7, 7, 6, .7);
  line-height: 1.5;
}
.checkout-payment-info svg {
  flex-shrink: 0;
  margin-top: .1rem;
  color: rgba(7, 7, 6, .5);
}
.checkout-payment-info strong {
  color: var(--dk-black);
  font-weight: 750;
}

/* ═══════════════════════════════════════════════════════════
   Light-theme contrast — overrides style.css dark defaults
   (nav, checkout forms, steps, shipping, status/lunas)
   ═══════════════════════════════════════════════════════════ */
.dk-body .nav.scrolled,
.dk-body .nav.dk-nav {
  background: rgba(255, 250, 242, .96) !important;
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom-color: rgba(11, 11, 11, .08) !important;
  box-shadow: 0 10px 30px rgba(5, 5, 5, .05);
}

.dk-body .nav__links a,
.dk-body .nav__links a:hover,
.dk-body .nav__links a.is-active {
  color: var(--dk-black) !important;
  opacity: 1;
}

.dk-body .nav__links a::after {
  background: var(--dk-accent);
}

.dk-body .nav__toggle {
  color: var(--dk-black);
}

.dk-body .section__label {
  color: var(--dk-muted);
}

.dk-body .section__label::before {
  background: linear-gradient(90deg, rgba(7, 7, 6, .55), transparent);
}

.dk-body .section__title {
  color: var(--dk-black);
}

.dk-body .section__desc,
.dk-body .section__desc .link-arrow {
  color: var(--dk-muted);
}

.dk-body .link-arrow {
  color: var(--dk-black);
  font-weight: 750;
}

.dk-body .form__group label {
  color: #201b15;
}

.dk-body .form__group input,
.dk-body .form__group select,
.dk-body .form__group textarea {
  color: var(--dk-black);
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .18);
}

.dk-body .form__group input::placeholder,
.dk-body .form__group textarea::placeholder {
  color: rgba(7, 7, 6, .42);
}

.dk-body .form__group input:focus,
.dk-body .form__group select:focus,
.dk-body .form__group textarea:focus {
  border-color: rgba(7, 7, 6, .5);
  box-shadow: 0 0 0 3px rgba(255, 240, 0, .28);
  background: #fff;
}

.dk-body .form__group select option {
  background: #fff;
  color: var(--dk-black);
}

.dk-body .form__option {
  color: #2d271f;
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .14);
}

.dk-body .form__option:hover {
  border-color: rgba(7, 7, 6, .32);
  color: var(--dk-black);
}

.dk-body .form__option:has(input:checked) {
  color: var(--dk-black);
  background: rgba(255, 240, 0, .24);
  border-color: rgba(7, 7, 6, .48);
  box-shadow: inset 0 0 0 1px rgba(255, 240, 0, .35);
}

.dk-body .form__option input {
  accent-color: var(--dk-black);
}

.dk-body .form__note,
.dk-body .form__hint {
  color: var(--dk-muted);
  text-align: left;
}

.dk-body .preorder__steps li {
  color: var(--dk-muted);
  border-bottom-color: rgba(7, 7, 6, .12);
}

.dk-body .preorder__steps li::before {
  color: var(--dk-black);
  font-weight: 850;
}

.dk-body .orders-closed {
  background: rgba(255, 250, 242, .98);
  border: 1px solid rgba(7, 7, 6, .14);
  border-radius: 18px;
}

.dk-body .orders-closed__title {
  color: var(--dk-black);
}

.dk-body .orders-closed__text {
  color: var(--dk-muted);
}

.dk-body .orders-closed--wallet {
  border-color: rgba(180, 120, 0, 0.28);
  background: rgba(255, 244, 214, 0.95);
}

.dk-body .form__option--disabled {
  opacity: 0.45;
  pointer-events: none;
}

.dk-body .price-summary {
  background: var(--dk-black);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
}

.dk-body .price-summary__row {
  color: rgba(255, 255, 255, .68);
}

.dk-body .price-summary__row--highlight,
.dk-body .price-summary__row strong {
  color: #fff;
}

.dk-body .wilayah-cascade {
  background: rgba(255, 250, 242, .95);
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 16px;
}

.dk-body #wilayah-summary {
  color: var(--dk-muted);
  font-size: .82rem;
  font-weight: 650;
}

.dk-body .shipping-origin-note {
  color: #4a4010;
  background: rgba(255, 240, 0, .2);
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 12px;
}

.dk-body .shipping-warning {
  color: #b45309;
  font-weight: 650;
}

.dk-body .shipping-rates .form__option {
  width: 100%;
}

.dk-body .btn--outline {
  color: var(--dk-black);
  border-color: rgba(7, 7, 6, .28);
  background: #fffdf8;
}

.dk-body .btn--outline:hover {
  color: var(--dk-black);
  border-color: var(--dk-black);
  background: rgba(255, 240, 0, .22);
}

.dk-body .btn--primary {
  color: #fff;
}

.dk-body .dk-nav .nav__dropdown summary {
  color: var(--dk-black);
}

.dk-body .dk-nav .nav__dropdown-menu {
  background: rgba(255, 250, 242, .98);
  border: 1px solid rgba(7, 7, 6, .1);
}

.dk-body .dk-nav .nav__dropdown-menu a {
  color: var(--dk-black);
}

.dk-body .dk-nav .nav__dropdown-menu a:hover {
  background: rgba(255, 240, 0, .35);
  color: var(--dk-black);
}

.dk-body .dk-nav .nav__collapse.open {
  background: rgba(255, 250, 242, .98);
  border-top: 1px solid rgba(7, 7, 6, .08);
}

.dk-body .dk-nav .nav__collapse.open .nav__links a {
  color: var(--dk-black) !important;
  background: rgba(255, 250, 242, .92);
}

.dk-body .status-card,
.dk-body .lunas-card,
.dk-body .modal__box {
  color: var(--dk-black);
}

.dk-body .status-card label,
.dk-body .lunas-card label {
  color: #201b15;
}

.dk-body .note {
  color: var(--dk-muted);
}

.checkout-form .form__option span {
  color: inherit;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  color: var(--dk-black);
}

.checkout-form .form__option:has(input:checked) {
  color: var(--dk-black);
  background: rgba(255, 240, 0, .24);
  border-color: rgba(7, 7, 6, .48);
}

.checkout-form .form__option {
  color: #2d271f;
}

.checkout-form .form__note {
  color: var(--dk-muted);
  text-align: left;
}

.dk-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--dk-black);
  color: rgba(255, 255, 255, .76);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  text-align: left;
}
.dk-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.dk-footer__bottom {
  width: 100%;
  max-width: 34rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.dk-footer .footer__copy {
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .58);
  margin: 0;
}
.footer__powered {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, .38);
}
.footer__powered a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__powered a:hover {
  color: rgba(255, 255, 255, .72);
}
.section--muted { background: #ebe2d5; }

@media (min-width: 1181px) {
  .dk-nav .nav__collapse {
    flex-shrink: 0;
  }
  .nav__actions {
    flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  .dk-hero__visual,
  .dk-hero__brand-card {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: clamp(360px, 78vw, 440px);
    padding: .8rem;
  }
  .dk-brand-card__frame {
    min-height: clamp(320px, 70vw, 400px);
    padding: clamp(1.5rem, 5vw, 2.2rem) 1.25rem 1.35rem;
    gap: 1.15rem;
  }
  .dk-brand-card__logo {
    width: min(72vw, 320px);
    max-width: 320px;
  }
  .dk-brand-card__tag {
    font-size: clamp(.82rem, 2.4vw, .95rem);
  }
  .dk-brand-card__badge {
    left: 1.15rem;
    bottom: 1.15rem;
    font-size: .8rem;
    padding: .72rem 1rem;
  }
}

@media (max-width: 1180px) {
  .dk-nav .nav__inner {
    position: relative;
    flex-wrap: nowrap;
    gap: .65rem;
  }
  .dk-nav .nav__collapse:not(.open) {
    display: none;
  }
  .dk-nav .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .dk-nav .nav__collapse.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    box-sizing: border-box;
    z-index: 200;
    margin: 0;
    border-radius: 0 0 20px 20px;
  }
  .dk-nav .nav__collapse.open .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
  }
  .dk-nav .nav__collapse.open .nav__links a,
  .dk-nav .nav__collapse.open .nav__dropdown summary {
    display: block;
    padding: .72rem .85rem;
    border-radius: 12px;
    background: rgba(255, 250, 242, .8);
  }
  .dk-nav .nav__collapse.open .nav__dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: .35rem;
    padding: .4rem;
    box-shadow: none;
    background: rgba(5, 5, 5, .06);
  }
  .dk-nav .nav__collapse.open .nav__dropdown-menu a {
    background: rgba(255, 250, 242, .9);
  }
  .nav__brand {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
  .nav__ticker {
    min-height: 1.85rem;
    padding: .48rem 0;
  }
  .nav__ticker-group {
    gap: 1.25rem;
    padding-right: 1.25rem;
  }
  .nav__ticker-track {
    animation-duration: 24s;
  }
  .nav__ticker-track span {
    font-size: clamp(.48rem, 1.1vw, .58rem);
    letter-spacing: .1em;
    color: var(--dk-black);
  }
  .dk-hero__inner,
  .dk-page-hero__inner,
  .dk-about,
  .dk-size-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dk-hero__visual {
    width: 100%;
    max-width: none;
    min-height: clamp(360px, 78vw, 440px);
    height: auto;
    transform: none;
    margin-inline: 0;
  }
  .dk-brand-card__logo {
    width: min(72vw, 320px);
    max-width: 320px;
  }
  .dk-page-hero img {
    max-height: 280px;
    max-width: min(420px, 100%);
    margin-inline: auto;
  }
  .dk-section-head {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }
  .dk-section-head .section__desc {
    max-width: 100%;
  }
  .dk-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dk-lookbook {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .dk-lookbook__item,
  .dk-lookbook__item--wide {
    grid-row: auto;
    grid-column: auto;
  }
  .dk-lookbook__item img {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
  }
  .dk-size-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-card__actions {
    grid-template-columns: 1fr;
  }
  .checkout-page__inner {
    width: min(100% - 1.5rem, 980px);
  }
  .checkout-form .form__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .checkout-page .product-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 932px), (orientation: landscape) and (max-height: 820px) {
  .dk-nav .nav__inner {
    flex-wrap: wrap;
    align-items: center;
    row-gap: .5rem;
  }
  :root {
    --dk-nav-h: 100px;
  }
  .nav__brand {
    display: contents;
  }
  .dk-nav .nav__logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav__actions {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }
  .dk-nav .nav__toggle {
    order: 3;
    flex-shrink: 0;
  }
  .dk-nav .nav__collapse {
    order: 5;
    width: 100%;
  }
  .nav__ticker-group {
    gap: 1.35rem;
    padding-right: 1.35rem;
  }
  .nav__ticker-track {
    animation-duration: 16s;
  }
  .nav__ticker-track span {
    color: var(--dk-black);
    font-size: .6rem;
    letter-spacing: .13em;
  }
}

@media (max-width: 768px) {
  .dk-body {
    font-size: 14.5px;
  }
  .dk-hero {
    padding-top: calc(var(--dk-nav-h) + 1.15rem);
  }
  .dk-hero__inner,
  .dk-about,
  .dk-page-hero__inner,
  .dk-size-preview {
    grid-template-columns: 1fr;
  }
  .dk-hero__visual {
    width: 100%;
    max-width: none;
    min-height: clamp(380px, 88vw, 460px);
    height: auto;
    transform: none;
    margin-inline: 0;
    padding: .75rem;
  }
  .dk-hero__brand-card {
    display: flex;
    flex-direction: column;
    gap: .7rem;
  }
  .dk-brand-card__frame {
    flex: 1 1 auto;
    height: auto;
    min-height: clamp(300px, 72vw, 380px);
    padding: 1.6rem 1.15rem 1.25rem;
    gap: 1.2rem;
  }
  .dk-brand-card__logo {
    width: min(78vw, 340px);
    max-width: 340px;
  }
  .dk-brand-card__tag {
    font-size: .88rem;
  }
  .dk-brand-card__badge {
    position: static;
    align-self: center;
    margin-top: .35rem;
    font-size: .82rem;
    padding: .75rem 1.1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
  }
  .dk-proof {
    grid-template-columns: 1fr 1fr;
  }
  .dk-proof span:nth-child(odd) { border-left: 0; }
  .dk-proof span:nth-child(n + 3) { border-top: 1px solid rgba(5, 5, 5, .12); }
  .dk-section-head {
    align-items: start;
    flex-direction: column;
  }
  .dk-lookbook {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .dk-lookbook__item,
  .dk-lookbook__item--wide {
    grid-row: auto;
    grid-column: auto;
  }
  .dk-lookbook__item img {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
  }
  .dk-page-hero {
    padding-top: calc(var(--dk-nav-h) + 1.35rem);
    padding-bottom: 2.4rem;
  }
  .dk-page-hero img {
    max-height: 260px;
    border-radius: 22px;
  }
  .dk-page-hero h1 {
    font-size: clamp(1.75rem, 7.6vw, 2.35rem) !important;
    letter-spacing: -.045em;
    line-height: 1;
  }
  .dk-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
    line-height: 1;
  }
  .dk-body .section__title {
    font-size: clamp(1.7rem, 8.8vw, 2.55rem);
    line-height: 1.02;
  }
  .dk-nav .nav__logo-mark,
  .dk-nav .nav__logo img {
    height: 38px;
    width: min(92px, 24vw);
  }
  .nav__brand {
    gap: .55rem;
    flex-wrap: nowrap;
    padding-right: .15rem;
  }
  .nav__cart-btn {
    width: 40px;
    height: 40px;
  }
  .nav__cart-btn .nav__cart-icon {
    width: 24px;
    height: 24px;
  }
  .dk-nav .nav__toggle {
    width: 40px;
    height: 40px;
    margin-right: clamp(-.35rem, -1.4vw, -.1rem);
  }
  .shop-card__actions {
    grid-template-columns: 1fr;
  }
  .checkout-form .form__options {
    grid-template-columns: 1fr;
  }
  .checkout-form .form__row {
    grid-template-columns: 1fr;
  }
  .checkout-page {
    padding-top: calc(var(--dk-nav-h) + 1rem);
  }
  .checkout-section {
    border-radius: 18px;
    padding: 1rem;
  }
  .checkout-section__head {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: .75rem;
  }
  .checkout-section__head span {
    width: 36px;
    height: 36px;
    font-size: .82rem;
  }
  .cart-line__head {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .checkout-page .product-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .dk-about--page .dk-about__media {
    min-height: 220px;
  }
  .dk-nav .nav__collapse.open .nav__links {
    gap: .3rem;
  }
  .dk-nav .nav__collapse.open .nav__lang {
    justify-content: center;
    width: 100%;
    margin-top: .2rem;
  }
  .dk-nav .nav__collapse.open .nav__links a {
    display: block;
    padding: .72rem .85rem;
    border-radius: 12px;
    background: rgba(255, 250, 242, .8);
  }
  .dk-nav-list__name {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
  .qris-modal {
    width: calc(100% - 2rem);
    border-radius: 16px;
  }
  .qris-modal__qr-inner img {
    width: 170px;
    height: 170px;
  }
  .qris-modal__amount {
    font-size: 1.55rem;
  }
  .dk-values-list {
    grid-template-columns: 1fr;
  }
  .dk-values-list__item {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 6, .12);
  }
  .dk-values-list__item:last-child {
    border-bottom: 0;
  }
  .dk-nav .nav__collapse.open .nav__dropdown summary {
    display: block;
    padding: .72rem .85rem;
    border-radius: 12px;
    background: rgba(255, 250, 242, .8);
  }
  .dk-nav .nav__collapse.open .nav__dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: .35rem;
    padding: .4rem;
    box-shadow: none;
    background: rgba(5, 5, 5, .06);
  }
  .dk-nav .nav__collapse.open .nav__dropdown-menu a {
    background: rgba(255, 250, 242, .9);
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-card__meta {
    flex-wrap: wrap;
    gap: .35rem .75rem;
  }
  .shop-card__meta strong {
    white-space: normal;
    word-break: break-word;
  }
  .dk-body .container {
    width: min(100% - 1.5rem, var(--max-width));
  }
  .dk-body .section {
    padding: clamp(1.75rem, 6vw, 2.5rem) 0;
  }
  .dk-nav-list-section {
    padding: .25rem 0 1rem;
  }
  .dk-nav-list__item {
    padding: 1.15rem 0;
    gap: 1rem;
  }
  .checkout-page__inner {
    width: min(100% - 1.25rem, 980px);
    margin-inline: auto;
  }
  .checkout-form {
    gap: 1.25rem;
  }
  .checkout-section {
    padding: 1.15rem 1.05rem;
  }
  .checkout-form .form__group {
    margin-bottom: 1.1rem;
  }
  .cart-line {
    padding: .95rem .9rem;
  }
  .cart-line__head h3 {
    word-break: break-word;
    hyphens: auto;
  }
  .dk-policy__block {
    padding: 1.15rem 1.05rem;
  }
  .dk-body .shipping-rates {
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .checkout-page .product-gallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .65rem;
    padding-bottom: .35rem;
    scrollbar-width: thin;
  }
  .checkout-page .product-gallery__item {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }
  .checkout-form .form__submit {
    position: sticky;
    bottom: calc(.65rem + env(safe-area-inset-bottom, 0));
    z-index: 20;
    box-shadow: 0 8px 28px rgba(7, 7, 6, .18);
  }
  .dk-add-cart-modal {
    place-items: end center;
    padding: 0;
    align-items: stretch;
  }
  .dk-add-cart-modal__panel {
    width: 100%;
    max-width: 100%;
    border-radius: 22px 22px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .dk-categories {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .65rem;
    padding: 1rem clamp(.7rem, 4vw, 1.05rem) 2.5rem;
    margin: -1rem calc(-1 * clamp(.7rem, 4vw, 1.05rem)) -2.5rem;
    scrollbar-width: thin;
  }
  .dk-category {
    flex: 0 0 auto;
    min-width: 132px;
    scroll-snap-align: start;
  }
  .dk-cart-drawer__head {
    padding-top: max(1rem, env(safe-area-inset-top, 0));
  }
  .dk-cart-drawer__panel {
    width: 100%;
    max-width: 100%;
  }
  .dk-cart-drawer__head,
  .dk-cart-drawer__body,
  .dk-cart-drawer__foot {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .dk-hero__actions {
    gap: .65rem;
  }
  .dk-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .dk-social-link {
    padding: .9rem 1rem;
    gap: .75rem;
  }
  .dk-social-link__desc {
    font-size: .72rem;
  }
}

@media (max-width: 480px) {
  .dk-nav .nav__inner {
    padding-left: clamp(.7rem, 4vw, 1.05rem);
    padding-right: clamp(.45rem, 3.2vw, .85rem);
  }
  .dk-nav .nav__logo {
    margin-left: clamp(-.65rem, -2.2vw, -.35rem);
  }
  .nav__actions {
    margin-right: clamp(-.45rem, -1.6vw, -.18rem);
  }
  .nav__brand {
    flex: 1 1 0;
    max-width: none;
  }
  .dk-categories {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .55rem;
    padding: 1rem clamp(.7rem, 4vw, 1.05rem) 2.5rem;
    margin: -1rem calc(-1 * clamp(.7rem, 4vw, 1.05rem)) -2.5rem;
  }
  .dk-category {
    flex: 0 0 auto;
    min-width: 120px;
  }
  .dk-proof {
    grid-template-columns: 1fr;
  }
  .dk-proof span {
    border-left: 0 !important;
  }
  .checkout-trust {
    gap: .45rem;
  }
  .checkout-trust span {
    font-size: .68rem;
    padding: .48rem .62rem;
  }
}

@media (max-width: 360px) {
  .nav__brand {
    max-width: none;
  }
  .nav__ticker-track span {
    font-size: .48rem;
    letter-spacing: .1em;
  }
  .dk-nav .nav__logo-mark,
  .dk-nav .nav__logo img {
    max-width: min(84px, 38vw);
    width: min(84px, 38vw);
  }
  .dk-nav .nav__toggle {
    margin-right: clamp(-.4rem, -1.5vw, -.12rem);
  }
}

/* Landscape tablet/desktop short: keep two-row ticker from query above */

/* Landscape — phone nav tweaks */
@media (orientation: landscape) and (max-height: 520px) {
  :root {
    --dk-nav-h: 68px;
  }
  .nav__ticker {
    display: none;
  }
  .dk-nav .nav__inner {
    min-height: 56px;
    padding-block: .35rem;
  }
  .dk-hero__visual {
    width: 100%;
    max-width: none;
    min-height: 280px;
    height: auto;
  }
  .dk-brand-card__logo {
    width: min(64vw, 280px);
  }
  .dk-page-hero img {
    max-height: min(220px, 48vh);
  }
  .dk-nav .nav__logo-mark,
  .dk-nav .nav__logo img {
    height: 32px;
    width: min(80px, 18vw);
  }
  .nav__cart-btn {
    width: 36px;
    height: 36px;
  }
  .nav__cart-btn .nav__cart-icon {
    width: 22px;
    height: 22px;
  }
}

/* Landscape — short viewports: page content compact */
@media (orientation: landscape) and (max-height: 820px) {
  .dk-hero,
  .dk-page-hero {
    padding-top: calc(var(--dk-nav-h) + 1.15rem);
    padding-bottom: 1.15rem;
  }
  .dk-hero__inner,
  .dk-page-hero__inner,
  .dk-about,
  .dk-size-preview {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dk-hero h1,
  .dk-page-hero h1 {
    font-size: clamp(1.4rem, 3.8vw, 2rem) !important;
    line-height: 1.05;
    margin-bottom: .55rem;
  }
  .dk-hero__lead,
  .dk-page-hero p:not(.section__label) {
    font-size: .88rem;
    line-height: 1.5;
  }
  .dk-body .section {
    padding: 1.35rem 0;
  }
  .dk-section-head {
    flex-direction: column;
    align-items: start;
    gap: .65rem;
    margin-bottom: 1rem;
  }
  .dk-nav .nav__collapse.open {
    max-height: calc(100dvh - var(--dk-nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dk-cart-drawer__panel {
    max-height: 100dvh;
    overflow-y: auto;
  }
  .dk-cart-drawer__head {
    padding-top: max(1rem, env(safe-area-inset-top, 0));
    padding-bottom: .75rem;
  }
  .checkout-page {
    padding-top: calc(var(--dk-nav-h) + .65rem);
    padding-bottom: 1.5rem;
  }
  .checkout-section {
    padding: .85rem;
    border-radius: 16px;
  }
  .checkout-section__head {
    gap: .65rem;
  }
  .qris-modal {
    max-height: calc(100dvh - 1rem);
    overflow-y: auto;
  }
  .qris-modal__body {
    padding: .85rem 1rem 1rem;
  }
  .qris-modal__qr-inner img {
    width: min(130px, 28vh);
    height: min(130px, 28vh);
  }
  .qris-modal__amount {
    font-size: 1.35rem;
  }
}

/* Grid-column-count compaction is only appropriate for genuinely narrow
   landscape phones — a short-but-wide laptop (e.g. 1366x768) has plenty of
   horizontal room and should keep its normal multi-column grids instead of
   the phone-style 2-column + tall aspect-ratio layout. */
@media (orientation: landscape) and (max-height: 820px) and (max-width: 900px) {
  .dk-categories {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .55rem;
    padding: 1rem clamp(.7rem, 4vw, 1.05rem) 2.5rem;
    margin: -1rem calc(-1 * clamp(.7rem, 4vw, 1.05rem)) -2.5rem;
    scrollbar-width: thin;
  }
  .dk-category {
    flex: 0 0 auto;
    min-width: 120px;
    scroll-snap-align: start;
  }
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }
  .shop-card__media {
    aspect-ratio: 1 / 1;
  }
  .shop-card__body {
    padding: .85rem;
  }
  .shop-card__body h3 {
    font-size: .95rem;
  }
  .dk-lookbook {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: .65rem;
  }
  .dk-lookbook__item,
  .dk-lookbook__item--wide {
    grid-row: auto;
    grid-column: auto;
  }
  .dk-lookbook__item img {
    aspect-ratio: 4 / 5;
    max-height: none;
    object-fit: cover;
  }
  .checkout-page .product-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }
}

@media (orientation: landscape) and (max-height: 480px) {
  :root {
    --dk-nav-h: 60px;
  }
  .nav__brand {
    max-width: none;
  }
  .dk-hero__actions {
    margin-top: .85rem;
    gap: .5rem;
  }
  .dk-hero__actions .btn {
    padding: .62rem .85rem;
    font-size: .78rem;
  }
  .dk-categories {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    gap: .55rem;
    padding: 1rem clamp(.7rem, 4vw, 1.05rem) 2.5rem;
    margin: -1rem calc(-1 * clamp(.7rem, 4vw, 1.05rem)) -2.5rem;
  }
  .dk-category {
    flex: 0 0 auto;
    min-width: 110px;
    min-height: 92px;
  }
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .dk-lookbook {
    grid-template-columns: 1fr;
  }
}

/* ── Cek Order / Status page ── */
.status-page {
  padding: calc(var(--dk-nav-h) + 1.25rem) 0 2.5rem;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(215, 217, 58, .14), transparent 28rem),
    var(--dk-bg);
}
.status-page__inner {
  max-width: 680px;
  margin: 0 auto;
}
.status-page__head {
  margin-bottom: 1.35rem;
}
.status-form__card {
  background: #fffaf2;
  border: 1px solid rgba(7, 7, 6, .1);
  border-radius: var(--dk-radius-md);
  padding: 1.15rem;
  box-shadow: var(--dk-shadow-sm);
}
.status-form__feedback {
  margin: .25rem 0 .85rem;
  padding: .65rem .85rem;
  border-radius: 12px;
  font-size: .88rem;
  background: rgba(21, 128, 61, .08);
  color: #166534;
}
.status-form__feedback--error {
  background: rgba(220, 38, 38, .08);
  color: #991b1b;
}
.status-form__submit {
  width: 100%;
  margin-top: .35rem;
  min-height: 52px;
  background: linear-gradient(135deg, #070706 0%, #2a2319 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 12px 28px rgba(7, 7, 6, .18);
}
.status-form__submit:hover {
  background: linear-gradient(135deg, #000 0%, #15120d 100%);
}
.status-result__card .ship-progress::before {
  background: rgba(7, 7, 6, .12);
}
.status-result__card .ship-step__dot {
  background: #fff;
  border-color: rgba(7, 7, 6, .2);
}
.status-result__card .ship-step__label {
  color: var(--dk-muted);
}
.status-result__card .ship-step--done .ship-step__dot,
.status-result__card .ship-step--active .ship-step__dot {
  background: var(--dk-accent);
  border-color: var(--dk-black);
}
.status-result__card .ship-step--active .ship-step__label,
.status-result__card .ship-step--done .ship-step__label {
  color: var(--dk-black);
  font-weight: 700;
}
.status-where {
  margin: .85rem 0;
  padding: .75rem .85rem;
  border: 1px solid var(--dk-border, #e8e4dc);
  border-radius: 12px;
  background: #fff;
}
.status-where .status-row__label {
  display: block;
  margin-bottom: .25rem;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.status-where__val {
  display: block;
  font-size: .95rem;
  color: var(--dk-black);
}
.status-where__time {
  display: block;
  margin-top: .25rem;
  font-size: .75rem;
  color: var(--dk-muted);
}
.status-result__card .track-timeline-title {
  color: var(--dk-black);
}
.status-result__card .track-event__note {
  color: #2e2a25;
}
.status-result__card .track-event__meta,
.status-result__card .track-event__time {
  color: var(--dk-muted);
}
@media (max-width: 768px) {
  .ship-progress--status {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .35rem;
  }
  .ship-progress--status::before {
    display: none;
  }
}
@media (max-width: 480px) {
  .dk-lookbook {
    grid-template-columns: 1fr;
  }
}
.status-result {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}
.status-result__hero {
  text-align: center;
  padding: 1rem .5rem .25rem;
}
.status-result__order-id {
  margin: .55rem 0 .15rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.status-result__name {
  font-family: var(--dk-font-display);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  line-height: 1.05;
}
.status-result__card {
  background: #fffaf2;
  border: 1px solid rgba(7, 7, 6, .1);
  border-radius: var(--dk-radius-md);
  padding: 1rem;
  box-shadow: var(--dk-shadow-sm);
}
.status-section + .status-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(7, 7, 6, .08);
}
.status-section__title {
  margin: 0 0 .65rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dk-muted);
}
.status-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  font-size: .9rem;
  line-height: 1.45;
}
.status-row__label {
  color: var(--dk-muted);
  flex-shrink: 0;
}
.status-row span,
.status-row strong {
  text-align: right;
}
.status-row--highlight {
  background: rgba(255, 240, 0, .14);
  margin: .25rem -.55rem;
  padding: .55rem .55rem;
  border-radius: 12px;
}
.status-products {
  list-style: none;
  display: grid;
  gap: .55rem;
}
.status-products li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 7, 6, .08);
}
.status-products li span {
  color: var(--dk-muted);
  font-size: .82rem;
  text-align: right;
}
.status-resi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem .85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .85);
  border: 1px dashed rgba(7, 7, 6, .16);
  margin-bottom: .55rem;
}
.status-resi__code {
  display: block;
  margin-top: .2rem;
  font-size: 1rem;
  letter-spacing: .04em;
}
.ship-progress--status {
  margin: 0 0 .85rem;
}
.status-result__actions {
  display: grid;
  gap: .65rem;
}
.status-result__actions .btn {
  width: 100%;
  justify-content: center;
}
.btn--sm {
  padding: .45rem .75rem;
  font-size: .78rem;
}

@media (max-width: 768px) {
  .status-page {
    padding-top: calc(var(--dk-nav-h) + .85rem);
  }
  .status-form__submit {
    position: sticky;
    bottom: calc(.65rem + env(safe-area-inset-bottom, 0));
    z-index: 10;
    box-shadow: 0 8px 24px rgba(7, 7, 6, .16);
  }
  .ship-progress--status {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .35rem;
  }
  .ship-step__label {
    font-size: .62rem;
  }
}
