/*
Theme Name: Step by Step Remix
Author: Antigravity
Description: Rebuilt from the Step by Step Standalone HTML layout.
Version: 1.0
*/

:root {
  --ink: #0a0a0b;
  --ink-2: #141417;
  --paper: #f6f5f1;
  --paper-2: #ecebe5;
  --line: rgba(10, 10, 11, .12);
  --line-2: rgba(255, 255, 255, .12);
  --orange: #ff5a1f;
  --aqua: #1ec8c8;
  --sand: #e9e2d3;
  --muted: #6b6a66;

}

* {
  box-sizing: border-box
}

html {
  margin: 0;
  padding: 0
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden
}

body {
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
}

img {
  display: block;
  max-width: 100%
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer
}

.display {
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  letter-spacing: .01em;
  line-height: .9
}

.mono {
  font-family: "Space Grotesk", ui-monospace, monospace;
  letter-spacing: .02em
}

.jp {
  font-family: "Noto Sans JP", sans-serif
}

/* ---------- Announcement bar ---------- */
.ann {
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ann .track {
  display: flex;
  justify-content: center;
  gap: 56px;
}

.ann span {
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.ann i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange)
}

.ann-dup {
  display: none !important
}

/* Mobile: marquee scroll for announcement bar */
@media(max-width:720px) {
  .ann {
    font-size: 11px;
    letter-spacing: .1em
  }

  .ann .track {
    justify-content: flex-start;
    gap: 40px;
    animation: ann-scroll 20s linear infinite;
    width: max-content;
  }

  .ann-dup {
    display: inline-flex !important
  }
}

@keyframes ann-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: box-shadow .3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(10, 10, 11, .1);
}

.nav-inner {
  background: rgba(246, 245, 241, .92);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid var(--line);
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
}

.brand-text {
  line-height: 1
}

.brand-text b {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: .04em
}

.brand-text small {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 500
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: #1a1a1c
}

.nav-links a:hover {
  color: var(--orange)
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid transparent;
  transition: .2s;
  position: relative;
  flex-shrink: 0;
}

.icon-btn:hover {
  background: #fff;
  border-color: var(--line)
}

.icon-btn .dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
}

.cart-btn .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 28px 20px;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 20px;
}

.hero-main {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: var(--paper);
  min-height: 450px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
  pointer-events: none;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10, 10, 11, .4) 0%, rgba(10, 10, 11, .05) 35%, rgba(10, 10, 11, .35) 70%, rgba(10, 10, 11, .75) 100%),
    radial-gradient(600px 380px at 85% 110%, rgba(255, 90, 31, .25), transparent 60%),
    radial-gradient(420px 420px at 10% 0%, rgba(30, 200, 200, .1), transparent 60%);
  pointer-events: none;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 20px;
  flex-wrap: wrap
}

.hero-logo-img {
  width: 100%;
  max-width: 180px;
  height: auto
}

.hero-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, .7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 90, 31, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0)
  }
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(64px, 10vw, 152px);
  line-height: .88;
  letter-spacing: -.01em;
}

.hero-title .accent {
  color: var(--orange)
}

.hero-title .thin {
  -webkit-text-stroke: 1.5px var(--paper);
  color: transparent
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  gap: 32px;
  flex-wrap: wrap
}

.hero-desc {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246, 245, 241, .78)
}

.hero-desc b {
  color: var(--paper)
}

.hero-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  transition: .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff
}

.btn-primary:hover {
  transform: translateY(-2px)
}

.btn-ghost {
  border: 1px solid #fff;
  background: #fff;
  color: var(--ink);
  justify-content: center
}

.btn-ghost:hover {
  background: var(--paper-2)
}

.btn .arr {
  transition: .2s
}

.btn:hover .arr {
  transform: translate(3px, -3px)
}

.btn-sale {
  background: linear-gradient(135deg, #e53935, var(--orange));
  color: #fff;
  border: none;
  font-weight: 800;
  letter-spacing: .1em;
}

.btn-sale:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(229, 57, 53, .35)
}

.sale-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
  animation: sale-blink 1.4s infinite;
}

@keyframes sale-blink {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0)
  }
}

@media (max-width:480px) {
  .hero-ctas {
    gap: 6px
  }

  .hero-ctas .btn {
    padding: 11px 16px;
    font-size: 11px;
    gap: 5px
  }
}

.hero-num {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 340px;
  line-height: .8;
  color: rgba(255, 255, 255, .04);
  pointer-events: none;
  z-index: 0;
}

.hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px
}

.hero-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.hero-card .media {
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--sand);
  flex: 1;
  min-height: 160px;
}

.hero-card .media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: .6s ease
}

.hero-card:hover .media img {
  transform: scale(1.05)
}

.hero-card .meta {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  gap: 12px;
}

.hero-card .meta h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-card .meta span {
  font-size: 10px;
  color: var(--muted)
}

.hero-card .meta .price {
  white-space: nowrap;
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0
}

.hero-card .meta .price del {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-right: 4px
}

.hero-card .meta .price ins {
  text-decoration: none;
  color: var(--orange)
}

.hero-card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .18em;
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card .tag.alt {
  background: var(--orange);
  color: #fff
}

/* ---------- Ticker strip ---------- */
.strip {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 8px;
}

.strip .track {
  display: inline-flex;
  gap: 48px;
  animation: marq 32s linear infinite;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: .04em
}

.strip .track span {
  display: inline-flex;
  align-items: center;
  gap: 48px
}

.strip .track em {
  font-style: normal;
  color: var(--orange)
}

.strip .star {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 2px;
  transform: rotate(45deg);
  margin: 0 6px
}

/* ---------- Section ---------- */
section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 90px 28px
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.sec-head .eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sec-head .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink)
}

.sec-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 6vw, 88px);
  line-height: .92;
  margin: 0;
  letter-spacing: -.005em;
}

.sec-head .lead {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a2c
}

/* Category bento */
.cats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 14px
}

.cat {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink-2);
  color: var(--paper);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: .6s ease;
  filter: saturate(.9);
}

.cat:hover img {
  transform: scale(1.06);
  opacity: .6
}

.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .55));
}

.cat>* {
  position: relative;
  z-index: 1
}

.cat .num {
  font-family: "Space Grotesk", monospace;
  font-size: 11px;
  letter-spacing: .2em;
  opacity: .8
}

.cat .t {
  display: flex;
  justify-content: space-between;
  align-items: flex-end
}

.cat h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: .95;
  letter-spacing: .01em;
}

.cat .sub {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .78;
  margin-top: 4px
}

.cat .go {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: .25s;
}

.cat:hover .go {
  background: var(--orange);
  color: #fff;
  transform: rotate(-45deg)
}

.c-shoes {
  grid-column: span 6;
  grid-row: span 2
}

.c-wear {
  grid-column: span 3;
  grid-row: span 2
}

.c-ball {
  grid-column: span 3;
  grid-row: span 1
}

.c-acc {
  grid-column: span 3;
  grid-row: span 1
}

.c-sock {
  grid-column: span 3;
  grid-row: span 1
}

.c-kids {
  grid-column: span 3;
  grid-row: span 2
}

.c-sale {
  grid-column: span 3;
  grid-row: span 1;
  background: var(--orange)
}

.c-sale::after {
  display: none
}

.c-sale img {
  display: none
}

.c-sale .num {
  color: rgba(255, 255, 255, .9)
}

.c-med {
  grid-column: span 3;
  grid-row: span 1
}

/* ---------- Product grid ---------- */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.tab {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  color: #444;
  letter-spacing: .04em;
}

.tab.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink)
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .3s;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(10, 10, 11, .18)
}

.card .img {
  aspect-ratio: 1/1;
  background: var(--sand);
  overflow: hidden;
  position: relative
}

.card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.card:hover .img img {
  transform: scale(1.04)
}

.card .chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 700;
}

.card .chip.hot {
  background: var(--orange)
}

.card .chip.aq {
  background: var(--aqua);
  color: var(--ink)
}

.card .fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: .2s;
  opacity: 0;
}

.card:hover .fav {
  opacity: 1
}

.card .fav:hover {
  background: var(--orange);
  color: #fff
}

.card .body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.card .brand-tag {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600
}

.card h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  min-height: 36px;
  color: #17171a
}

.card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px
}

.card .price {
  font-family: "Space Grotesk", monospace;
  font-size: 16px;
  font-weight: 700
}

.card .price small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 3px
}

.card .add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: .2s;
}

.card .add:hover {
  background: var(--orange)
}

.card .rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  line-height: .8;
  color: #fff;
  -webkit-text-stroke: 1.5px var(--ink);
}

/* ---------- Editorial split ---------- */
.editorial {
  background: var(--ink);
  color: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ed-left {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px
}

.ed-right {
  position: relative;
  background: var(--ink-2);
  overflow: hidden
}

.ed-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px
}

.ed-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 11, .6), transparent 40%);
}

.ed-top .sup {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px
}

.ed-top .sup::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange)
}

.ed-top h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  margin: 0 0 18px;
}

.ed-top p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(246, 245, 241, .78);
  max-width: 420px
}

.ed-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line-2);
  padding-top: 28px;
  margin-top: 40px
}

.ed-stats .k {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--orange)
}

.ed-stats .v {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246, 245, 241, .6);
  margin-top: 6px
}

/* ---------- Brand strip ---------- */
.brands {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.brand-cell {
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: #222;
  transition: .2s;
  min-height: 84px;
  text-align: center;
}

.brand-cell img {
  max-width: 92%;
  max-height: 60px;
  object-fit: contain;
  transition: .2s
}

.brand-cell img.scale-up {
  transform: scale(1.5)
}

.brand-cell:hover img.scale-up {
  transform: scale(1.55)
}

.brand-cell:hover {
  background: rgba(0, 0, 0, .02)
}

.brand-cell:nth-child(8n) {
  border-right: 0
}

/* ---------- Store heading ---------- */
.store-heading {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 53px);
  line-height: 1.08;
  letter-spacing: -.015em;
  font-feature-settings: "palt" 1;
  text-wrap: balance;
  margin: 0;
  color: var(--ink);
}

.store-heading .num {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.18em;
  letter-spacing: .02em;
  margin: 0 .04em;
  color: var(--orange);
  vertical-align: -.02em;
}

/* ---------- Visit / info ---------- */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.visit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.visit-card.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: transparent
}

.visit h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  margin: 0;
  letter-spacing: .01em
}

.kv {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px 24px;
  font-size: 13px;
  line-height: 1.6;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.visit-card.dark .kv {
  border-top-color: var(--line-2)
}

.kv dt {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px
}

.visit-card.dark .kv dt {
  color: rgba(246, 245, 241, .55)
}

.kv dd {
  margin: 0;
  font-weight: 500
}

.hours {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 8px
}

.hours .d {
  aspect-ratio: 1/1;
  border-radius: 10px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #444;
}

.hours .d.off {
  background: rgba(255, 90, 31, .12);
  color: var(--orange)
}

.hours .d.today {
  background: var(--ink);
  color: var(--paper)
}

.note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6
}

/* ---------- Info cards ---------- */
.infos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.info {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: .3s;
}

.info:hover {
  border-color: var(--ink)
}

.info .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em
}

.info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #3a3a3c
}

.info .go2 {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--paper);
  margin-top: 80px;
}

.foot-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 28px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px
}

.foot-brand h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  line-height: .9;
  margin: 0 0 16px;
  letter-spacing: .01em
}

.foot-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(246, 245, 241, .7);
  text-align: center
}

.foot-col h5 {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(246, 245, 241, .55);
  margin: 0 0 18px;
  font-weight: 600
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 13px
}

.foot-col a:hover {
  color: var(--orange)
}

/* Utility links row (Uniqlo-style) */
.foot-util {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 28px;
  border-top: 1px solid var(--line-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 0;
  font-size: 12px;
  line-height: 2;
  color: rgba(246, 245, 241, .65);
}

.foot-util a {
  color: rgba(246, 245, 241, .75);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}

.foot-util a:hover {
  color: var(--orange)
}

.foot-util .sep {
  margin: 0 10px;
  color: rgba(246, 245, 241, .2);
  font-weight: 300;
  user-select: none;
}

.foot-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(246, 245, 241, .55);
  font-weight: 600;
  letter-spacing: .08em;
}

.foot-lang a {
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(246, 245, 241, .18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.foot-lang a:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.foot-bot {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 28px;
  border-top: 1px solid var(--line-2);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246, 245, 241, .4);
  text-align: center;
}

/* Mega title on bottom */
.mega {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(120px, 26vw, 380px);
  line-height: .8;
  letter-spacing: -.01em;
  margin: 60px 0 -40px;
  padding: 0 28px;
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}

/* Responsive */
@media (max-width:1100px) {
  .hero {
    grid-template-columns: 1fr
  }

  .hero-side {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr
  }

  .grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .editorial {
    grid-template-columns: 1fr
  }

  .ed-right img {
    min-height: 340px
  }

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

  .brand-cell:nth-child(8n) {
    border-right: 1px solid var(--line)
  }

  .brand-cell:nth-child(4n) {
    border-right: 0
  }

  .visit {
    grid-template-columns: 1fr
  }

  .foot-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .infos {
    grid-template-columns: 1fr
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px
  }

  .nav-links {
    display: none
  }

  .hide-on-mobile {
    display: none !important
  }

  .show-on-mobile {
    display: grid !important
  }

  .mob-icon-btn.show-on-mobile {
    display: flex !important
  }

  .cart-btn {
    padding: 8px;
    border-radius: 12px;
    gap: 6px
  }
}

@media (max-width:720px) {
  section {
    padding: 64px 18px
  }

  .nav-inner {
    padding: 12px 18px
  }

  .hero {
    padding: 18px 18px 12px
  }

  .hero-main {
    padding: 28px;
    min-height: 500px
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%
  }

  .hero-logo-img {
    max-width: 90px
  }

  .hero-top-right {
    margin-top: 0
  }

  .hero-top-right .pulse {
    display: none
  }

  .hero-num {
    display: none
  }

  .grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cats {
    grid-auto-rows: 120px
  }

  .c-shoes {
    grid-column: span 12
  }

  .c-wear {
    grid-column: span 6;
    grid-row: span 2
  }

  .c-kids {
    grid-column: span 6;
    grid-row: span 2
  }

  .c-ball,
  .c-acc,
  .c-sock,
  .c-med {
    grid-column: span 6
  }

  .c-sale {
    grid-column: span 12
  }

  .ed-left {
    padding: 36px 24px
  }

  .foot-inner {
    grid-template-columns: 1fr
  }

  .mega {
    margin-top: 30px
  }

  .brands {
    grid-template-columns: repeat(2, 1fr)
  }

  .brand-cell {
    font-size: 18px;
    padding: 16px 10px;
    min-height: 64px
  }

  .brand-cell:nth-child(odd) {
    border-right: 1px solid var(--line)
  }

  .brand-cell:nth-child(even) {
    border-right: 0
  }
}

/* svg icons inherit */
svg {
  display: block
}

.news-row:hover {
  background: var(--paper)
}

.news-row:hover svg {
  color: var(--orange);
  transform: translateX(3px);
  transition: .2s
}

@media (max-width:900px) {
  #news>div:nth-of-type(2) {
    grid-template-columns: 1fr !important
  }
}

#obk a[href]:hover img {
  transform: scale(1.04)
}

@media (max-width:900px) {
  #obk>div>div:nth-of-type(2) {
    grid-template-columns: 1fr !important
  }

  #obk>div>div:nth-of-type(2)>div:last-child {
    padding: 0 24px 32px !important
  }
}

.ig-tile {
  display: block;
  transition: .4s ease;
  cursor: pointer
}

.ig-tile img {
  transition: .5s ease;
  filter: saturate(.95)
}

.ig-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.05)
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .6));
  opacity: 0;
  transition: .3s;
  pointer-events: none;
}

.ig-tile:hover .ig-overlay {
  opacity: 1
}

.ig-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  display: flex;
  gap: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(8px);
  transition: .3s;
}

.ig-tile:hover .ig-meta {
  opacity: 1;
  transform: translateY(0)
}

.ig-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.ig-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .18em;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

.ig-carousel {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: #fff;
}

@media (max-width:900px) {
  #instagram>div:nth-of-type(2) {
    grid-template-columns: 1fr !important
  }

  #instagram .ig-tile {
    border-radius: 12px
  }
}

@media (max-width:560px) {
  #instagram>div:nth-of-type(2)>div:last-child {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: none !important
  }

  #instagram>div:nth-of-type(2)>div:last-child>a:first-child {
    grid-column: span 2;
    grid-row: auto !important
  }
}

/* ---------- Smooth scroll ---------- */
html {
  scroll-behavior: smooth
}

/* ---------- Mobile Navigation Drawer ---------- */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(10, 10, 11, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible
}

/* Menu drawer (slides from left) */
.menu-drawer {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(380px, 100%);
  background: var(--paper);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
  box-shadow: 30px 0 80px -40px rgba(10, 10, 11, .4);
}

.menu-drawer.open {
  transform: translateX(0)
}

.menu-drawer .drawer-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  flex-shrink: 0;
}

.menu-drawer .drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  transition: .2s;
}

.menu-drawer .drawer-close:hover {
  background: #fff;
  color: var(--ink)
}

/* Search inside menu */
.menu-search {
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.menu-search .search {
  max-width: none
}

/* Scrollable body */
.menu-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 18px
}

/* Section headings */
.menu-h5 {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 10px 4px 10px;
  font-weight: 700
}

.menu-h5:first-child {
  margin-top: 0
}

/* Category image grid */
.menu-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.menu-cat {
  position: relative;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-2);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
  text-decoration: none;
}

.menu-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6
}

.menu-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .65))
}

.menu-cat span {
  position: relative;
  z-index: 1;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: .02em
}

/* Support links list */
.menu-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.menu-list a {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  transition: .2s;
}

.menu-list a:last-child {
  border-bottom: 0
}

.menu-list a:hover {
  background: var(--paper-2);
  color: var(--orange)
}

.menu-list svg {
  color: var(--muted)
}

/* Footer (lang) */
.menu-f {
  padding: 18px;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.menu-f .lang {
  display: flex;
  gap: 6px
}

.menu-f .lang button {
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--paper-2);
  font-weight: 700;
  font-size: 11px;
  border: none;
  cursor: pointer;
  transition: .15s
}

.menu-f .lang button.active {
  background: var(--ink);
  color: #fff
}

/* body scroll lock when drawer is open */
body.drawer-open {
  overflow: hidden
}

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 11, .88);
  backdrop-filter: saturate(1.2) blur(24px);
  -webkit-backdrop-filter: saturate(1.2) blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible
}

.search-overlay-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  transition: .2s;
}

.search-overlay-close:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3)
}

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  text-align: center;
  transform: translateY(16px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1) .08s, opacity .35s ease .08s;
}

.search-overlay.open .search-overlay-inner {
  transform: translateY(0);
  opacity: 1
}

.search-overlay-label {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(246, 245, 241, .45);
  margin-bottom: 28px;
}

.search-overlay-form {
  position: relative;
  margin-bottom: 32px
}

.search-overlay-input {
  width: 100%;
  padding: 20px 56px 20px 24px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, .2);
  background: transparent;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: .02em;
  color: #fff;
  outline: none;
  transition: border-color .3s;
}

.search-overlay-input::placeholder {
  color: rgba(246, 245, 241, .2)
}

.search-overlay-input:focus {
  border-bottom-color: var(--orange)
}

.search-overlay-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s;
}

.search-overlay-submit:hover {
  transform: translateY(-50%) scale(1.08)
}

.search-overlay-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px
}

.search-overlay-tags .stag {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: transparent;
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(246, 245, 241, .65);
  cursor: pointer;
  transition: .2s;
}

.search-overlay-tags .stag:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}



/* ---------- Refined transitions ---------- */
.btn {
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), background .2s, box-shadow .25s
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 31, .3)
}

.card {
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease
}

.card .img img {
  transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.cat img {
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .4s
}

.info {
  transition: border-color .25s, transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s
}

.info:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}

.brand-cell {
  transition: background .2s, color .2s, transform .2s
}

.brand-cell:hover {
  transform: scale(1.04)
}

/* ===================================================================
   HEADER SEARCH BAR — inline pill
   =================================================================== */
.nav-inner {
  grid-template-columns: auto 1fr auto;
  gap: 32px
}

.nav-mid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  min-width: 0
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 500;
  order: 2;
  position: static
}

.search {
  position: relative;
  order: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto
}

.search-input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 44px 0 44px;
  font: 500 13.5px/1 "Inter", "Noto Sans JP", sans-serif;
  color: var(--ink);
  transition: .2s;
}

.search-input::placeholder {
  color: #9a9a96;
  font-weight: 400
}

.search-input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .12)
}

.search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none
}

/* ===================================================================
   MEGA MENU PANEL — full-width dropdown on nav hover
   =================================================================== */
.nav-item {
  position: static
}

.nav-item>a {
  position: relative;
  padding: 14px 0;
  color: #1a1a1c;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  transition: color .15s;
}

.nav-item>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}

.nav-item:hover>a,
.nav-item:focus-within>a {
  color: var(--orange)
}

.nav-item:hover>a::after,
.nav-item:focus-within>a::after {
  transform: scaleX(1)
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 39;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  box-shadow: 0 30px 80px -22px rgba(10, 10, 11, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  pointer-events: none;
}

.megamenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
  background: transparent;
  pointer-events: auto;
}

.nav-item:hover>.megamenu,
.nav-item:focus-within>.megamenu,
.megamenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}

.nav-item>a {
  padding-bottom: 18px
}

.mm-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 28px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  position: relative;
}

.mm-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 320px at 95% 0%, rgba(255, 90, 31, .06), transparent 60%);
  pointer-events: none;
}

.mm-inner>* {
  position: relative;
  z-index: 1
}

.mm-side .sub {
  font-family: "Space Grotesk", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mm-side .sub::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--orange)
}

.mm-side h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  letter-spacing: -.005em;
  margin: 14px 0 16px;
  line-height: .92;
  color: var(--ink);
}

.mm-side .lead {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(10, 10, 11, .55);
  margin: 0 0 22px;
  max-width: 240px
}

.mm-side .links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 12px
}

.mm-side .links a {
  font-size: 13px;
  color: rgba(10, 10, 11, .7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: color .15s, padding-left .2s ease;
  font-weight: 600;
  text-decoration: none;
}

.mm-side .links a:last-child {
  border-bottom: 0
}

.mm-side .links a:hover {
  color: var(--orange);
  padding-left: 4px
}

.mm-side .links a .arr {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  opacity: .5;
  transition: opacity .15s, transform .2s ease
}

.mm-side .links a:hover .arr {
  opacity: 1;
  transform: translateX(3px)
}

.mm-side .links a.hot {
  color: var(--ink)
}

.mm-side .links a.hot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, .7);
  animation: mmPulse 1.6s infinite;
  flex-shrink: 0;
  margin-right: 8px;
}

@keyframes mmPulse {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 90, 31, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0)
  }
}

.mm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-self: start;
  border-top: 1px solid var(--line);
}

.mm-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  text-decoration: none;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink) !important;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background .18s ease, color .15s ease, padding-left .25s cubic-bezier(.2, .7, .2, 1);
}

.mm-brand:nth-child(4n) {
  border-right: 0
}

.mm-brand::before {
  content: "›";
  color: var(--orange);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1);
}

.mm-brand::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.mm-brand:hover {
  background: rgba(255, 90, 31, .06);
  color: var(--orange) !important;
  padding-left: 28px
}

.mm-brand:hover::before {
  transform: translateX(4px)
}

.mm-brand:hover::after {
  transform: scaleY(1)
}

.mm-brand.accent {
  color: var(--orange) !important;
  font-weight: 700;
  background: rgba(255, 90, 31, .04);
  justify-content: center
}

.mm-brand.accent:hover {
  padding-left: 20px
}

/* Logo-card variant for brand items with logos */
.mm-brand:has(.mm-brand-logo) {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(10, 10, 11, .5) !important;
}

.mm-brand:has(.mm-brand-logo)::before {
  display: none
}

.mm-brand:has(.mm-brand-logo)::after {
  display: none
}

.mm-brand:has(.mm-brand-logo):hover {
  background: rgba(10, 10, 11, .03);
  padding-left: 12px;
  color: var(--ink) !important;
}

/* Brand logo in mega menu */
.mm-brand-logo {
  display: inline-block !important;
  height: 48px !important;
  width: auto !important;
  max-width: 96px !important;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .2s, transform .25s ease;
}

.mm-brand:hover .mm-brand-logo {
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width:1100px) {
  .megamenu {
    display: none
  }
}

/* ===================================================================
   QUICK VIEW MODAL
   =================================================================== */
.qv-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, .65);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.qv-scrim.open {
  opacity: 1;
  pointer-events: auto
}

.qv {
  background: var(--paper);
  border-radius: 24px;
  width: min(960px, 100%);
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(.96);
  transition: transform .25s cubic-bezier(.2, .7, .2, 1);
}

.qv-scrim.open .qv {
  transform: scale(1)
}

.qv-l {
  position: relative;
  background: var(--sand);
  min-height: 480px
}

.qv-l img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .3);
}

.qv-close:hover {
  background: var(--orange);
  color: #fff
}

.qv-thumbs {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 6px;
  z-index: 2
}

.qv-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.qv-thumb.active {
  border-color: var(--ink)
}

.qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.qv-r {
  padding: 30px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.qv-r .qv-brand {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700
}

.qv-r h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  line-height: 1;
  margin: 4px 0 0;
  letter-spacing: .01em
}

.qv-r .sub {
  font-size: 13px;
  color: #3a3a3c;
  line-height: 1.6;
  margin-top: 0
}

.qv-r .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap
}

.qv-r .pp {
  font-family: "Space Grotesk", monospace;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap
}

.qv-r .pp small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px
}

.qv-r .rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #3a3a3c;
  flex-wrap: wrap
}

.qv-r .rating-row .stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1.5px
}

.qv-r .rating-row a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px
}

.qv-section {
  padding-top: 14px;
  border-top: 1px solid var(--line)
}

.qv-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px
}

.qv-label a {
  color: var(--orange);
  letter-spacing: .04em;
  text-transform: none;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none
}

.qv-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.qv-size {
  min-width: 48px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.qv-size:hover {
  border-color: var(--ink)
}

.qv-size.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.qv-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.qv-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: .15s;
}

.qv-color:hover {
  border-color: var(--ink)
}

.qv-color.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ink)
}

.qv-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 6px
}

.qv-add {
  padding: 16px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: .04em;
  min-height: 54px;
  transition: .2s;
}

.qv-add:hover {
  background: var(--orange)
}

.qv-fav {
  width: 54px;
  min-height: 54px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.qv-fav:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.qv-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: #3a3a3c
}

.qv-trust .ti {
  display: flex;
  gap: 8px;
  align-items: flex-start
}

.qv-trust svg {
  flex-shrink: 0;
  color: var(--ink);
  margin-top: 1px
}

.qv-trust b {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 12px
}

@media (max-width:720px) {
  .qv {
    grid-template-columns: 1fr;
    max-height: 94vh
  }

  .qv-l {
    min-height: 280px
  }

  .qv-r {
    padding: 24px 20px
  }
}

/* ===================================================================
   CART DRAWER — side panel
   =================================================================== */
.cart-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, .55);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  backdrop-filter: blur(2px);
}

.cart-scrim.open {
  opacity: 1;
  pointer-events: auto
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(480px, 100%);
  background: var(--paper);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
  overflow: hidden;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .12);
}

.cart-drawer.open {
  transform: translateX(0)
}

.cart-drawer-h {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
}

.cart-drawer-h h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: .02em;
  display: flex;
  align-items: baseline
}

.cart-drawer-h .count {
  font-family: "Space Grotesk", monospace;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 8px
}

.cart-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: .15s;
}

.cart-drawer-close:hover {
  background: var(--ink);
  color: #fff
}

/* Free shipping banner */
.cart-ship-banner {
  margin: 0 0 4px;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.cart-ship-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(260px 180px at 90% 100%, rgba(255, 90, 31, .32), transparent 60%);
}

.cart-ship-banner>* {
  position: relative;
  z-index: 1
}

.cart-ship-banner .eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cart-ship-banner .eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange)
}

.cart-ship-title {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
}

.cart-ship-title .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6em;
  color: #fff;
  margin: 0 .06em
}

.cart-ship-title .hl {
  color: var(--orange);
  font-weight: 800
}

.cart-ship-sub {
  font-size: 11px;
  color: rgba(246, 245, 241, .65);
  margin-top: 6px;
  line-height: 1.5
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overscroll-behavior: contain
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.cart-drawer-item .di-img {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand)
}

.cart-drawer-item .di-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cart-drawer-item .di-meta {
  min-width: 0
}

.cart-drawer-item .di-brand {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600
}

.cart-drawer-item .di-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 3px
}

.cart-drawer-item .di-opt {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px
}

.cart-drawer-item .di-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 8px
}

.qty {
  display: inline-flex;
  align-items: center;
  background: var(--paper-2);
  border-radius: 999px;
  overflow: hidden
}

.qty button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #333
}

.qty button:hover {
  color: var(--orange)
}

.qty span {
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
  font-size: 12px;
  min-width: 18px;
  text-align: center
}

.di-price {
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
  font-size: 14px
}

.di-remove {
  font-size: 11px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  cursor: pointer
}

.di-remove:hover {
  color: var(--orange)
}

.cart-drawer-f {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cart-drawer-totals {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  font-size: 13px;
  line-height: 1.6
}

.cart-drawer-totals .lbl {
  color: #3a3a3c
}

.cart-drawer-totals .val {
  font-family: "Space Grotesk", monospace;
  font-weight: 600;
  text-align: right
}

.cart-drawer-totals .total .lbl {
  font-weight: 700
}

.cart-drawer-totals .total .val {
  font-weight: 700;
  font-size: 16px
}

.cart-drawer-cta {
  width: 100%;
  padding: 16px 22px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .2s;
  min-height: 52px;
  text-decoration: none;
}

.cart-drawer-cta:hover {
  background: var(--orange)
}

.cart-drawer-cta2 {
  width: 100%;
  padding: 13px 22px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .15s;
}

.cart-drawer-cta2:hover {
  background: var(--paper-2)
}

.cart-drawer-pay {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  justify-content: center;
  margin-top: 4px;
}

.cart-drawer-pay svg {
  color: #0a8a3a
}

body.cart-open {
  overflow: hidden
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.crumbs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 28px 0;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.crumbs a {
  color: var(--muted);
  transition: color .2s;
  text-decoration: none
}

.crumbs a:hover {
  color: var(--ink)
}

.crumbs .sep {
  opacity: 0.5;
  font-size: 10px
}

.crumbs .cur {
  color: var(--ink);
  font-weight: 600
}

@media (max-width:768px) {
  .crumbs {
    padding: 12px 18px 0;
    font-size: 10px
  }
}

/* ============================================================
   PDP – Product Detail Page
   ============================================================ */

/* Layout */
.pdp {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.pdp-l {
  position: sticky;
  top: 84px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  max-height: calc(100vh - 120px)
}

/* Gallery thumbs */
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand);
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: .2s;
  position: relative
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.thumb.active {
  border-color: var(--ink)
}

.thumb:hover {
  transform: translateX(2px)
}

.thumb.video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .4))
}

/* Gallery main */
.gallery {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1/1
}

.gallery .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.g-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2
}

.g-chip span {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  letter-spacing: .18em;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase
}

.g-chip .alt {
  background: #fff;
  color: var(--ink)
}

.g-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .25)
}

.g-zoom:hover {
  background: var(--ink);
  color: #fff
}

/* Info column */
.pdp .info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px
}

.pdp .info .meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap
}

.pdp .info .meta-row>* {
  white-space: nowrap
}

.pdp .info .meta-row a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px
}

.pdp .info h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: .95;
  margin: 0;
  letter-spacing: .005em
}

.pdp .info .sub {
  font-size: 14px;
  color: #2a2a2c;
  line-height: 1.6;
  margin: 0;
  max-width: 540px
}

/* Rating */
.pdp .rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  flex-wrap: wrap
}

.pdp .rating-row .stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 1.5px
}

.pdp .rating-row a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 12px
}

/* Price */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px
}

.price-now {
  font-family: "Space Grotesk", monospace;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap
}

.price-now.sale {
  color: var(--orange)
}

.price-now small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px
}

.price-now.sale small {
  color: var(--orange);
  opacity: .7
}

.price-was {
  font-family: "Space Grotesk", monospace;
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500
}

.price-off {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 8px;
  border-radius: 6px
}

.pdp .divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0
}

/* Color picker */
.pdp .label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap
}

.pdp .label-row .lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.pdp .label-row .lbl b {
  color: var(--ink);
  font-weight: 700;
  text-transform: none;
  letter-spacing: .02em;
  font-size: 13px;
  margin-left: 8px
}

.pdp .label-row .aux {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500
}

.pdp .label-row a {
  color: var(--orange);
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap
}

.pdp .label-row a:hover {
  text-decoration: underline;
  text-underline-offset: 2px
}

.pdp .colors {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.pdp .color {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
  cursor: pointer;
  transition: box-shadow .15s, border-color .15s;
  box-sizing: border-box
}

.pdp .color.color-light {
  border-color: rgba(0, 0, 0, .25)
}

.pdp .color.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ink)
}

.pdp .color:hover:not(.active) {
  border-color: #888
}

.pdp .color .lo {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 8px;
  background: var(--orange);
  color: #fff;
  padding: 1px 5px;
  border-radius: 6px;
  font-weight: 700;
  z-index: 1
}

/* Sizes */
.pdp .sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pdp .sz {
  min-width: 60px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: .15s;
  overflow: hidden
}

.pdp .sz:hover {
  border-color: var(--ink)
}

.pdp .sz.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.pdp .sz.out {
  color: #c0c0bc;
  cursor: not-allowed;
  background: #f7f7f5;
  border-color: #e0e0dc;
  pointer-events: auto
}

.pdp .sz.out:hover {
  border-color: #e0e0dc
}

.pdp .sz.out::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 141%;
  height: 1.5px;
  background: #c0c0bc;
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none
}

.pdp .sz .lo {
  position: absolute;
  top: -6px;
  right: -4px;
  font-size: 9px;
  background: var(--orange);
  color: #fff;
  padding: 1px 5px;
  border-radius: 6px;
  font-weight: 700
}

.pdp .stock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #3a3a3c;
  flex-wrap: wrap;
  margin-top: 6px
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30, 177, 88, .1);
  color: #0a8a3a;
  transition: all .3s ease
}

.stock-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1eb158;
  transition: background .3s ease
}

.stock-pill.out-stock {
  background: linear-gradient(135deg, rgba(255, 59, 48, .15), rgba(220, 53, 69, .2));
  color: #d32f2f;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, .18)
}

.stock-pill.out-stock::before {
  background: #ff3b30;
  animation: stockPulse 1.6s ease-in-out infinite
}

@keyframes stockPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

/* CTA */
.cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: stretch
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--paper-2, #ecebe5);
  border: none;
  border-radius: 999px;
  overflow: hidden;
  height: 54px
}

.qty-stepper button {
  width: 48px;
  height: 100%;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px
}

.qty-stepper button:hover {
  color: var(--orange)
}

.qty-stepper span {
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
  font-size: 16px;
  min-width: 28px;
  text-align: center;
  color: var(--ink)
}

.add-main {
  padding: 0 32px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  transition: .2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none
}

.cta-row-inquiry {
  grid-template-columns: 1fr
}

.add-main:hover {
  background: var(--orange)
}

.fav-btn {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer
}

.fav-btn:hover {
  border-color: var(--orange);
  color: var(--orange)
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px
}

.trust-grid .ti {
  display: flex;
  gap: 10px;
  padding: 12px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: #3a3a3c
}

.trust-grid .ti svg {
  flex-shrink: 0;
  color: var(--ink);
  margin-top: 1px
}

.trust-grid .ti b {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 2px
}

/* Accordion */
.pdp-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 6px
}

.pdp-acc {
  border-bottom: 1px solid var(--line)
}

.pdp-acc summary {
  list-style: none;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em
}

.pdp-acc summary::-webkit-details-marker {
  display: none
}

.pdp-acc summary .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  transition: .2s;
  color: var(--ink)
}

.pdp-acc[open] summary .ico {
  background: var(--ink);
  color: #fff;
  transform: rotate(180deg)
}

.pdp-acc .acc-body {
  padding: 4px 0 22px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #2a2a2c
}

.pdp-acc .acc-body p {
  margin: 0 0 12px
}

.pdp-acc .acc-body ul {
  padding-left: 18px;
  margin: 0 0 8px
}

.pdp-acc .acc-body li {
  margin-bottom: 6px
}

.spec-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 18px;
  font-size: 13px;
  line-height: 1.6
}

.spec-grid dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 3px
}

.spec-grid dd {
  margin: 0;
  font-weight: 500
}

/* Related products */
/* ===== Recommendation Sections (Uniqlo-style) ===== */
.pdp-rec-section {
  border-top: 1px solid var(--line);
  padding: 48px 0
}

.pdp-rec-section:first-of-type {
  margin-top: 40px
}

.rec-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px
}

.rec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}

.rec-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
  font-family: 'Noto Sans JP', sans-serif
}

.rec-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: .2s;
  white-space: nowrap
}

.rec-more:hover {
  color: var(--orange)
}

.rec-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -28px;
  padding: 0 28px
}

.rec-scroll-wrap::-webkit-scrollbar {
  display: none
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.rec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .3s;
  text-decoration: none;
  color: inherit
}

.rec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(10, 10, 11, .16)
}

.rec-card .rec-img {
  aspect-ratio: 1/1;
  background: var(--sand);
  overflow: hidden;
  position: relative
}

.rec-card .rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.rec-card:hover .rec-img img {
  transform: scale(1.04)
}

.rec-card .rec-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1
}

.rec-card .rec-chip.sale {
  background: var(--orange);
  color: #fff
}

.rec-card .rec-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.rec-card .rec-brand {
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600
}

.rec-card .rec-body h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1
}

.rec-card .rec-price {
  font-family: "Space Grotesk", monospace;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap
}

.rec-card .rec-price small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 2px
}

.rec-card .rec-price del {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  text-decoration: line-through
}

.rec-card .rec-price ins {
  text-decoration: none;
  color: var(--orange);
  font-size: 16px;
  font-weight: 800
}

/* Sticky add-to-cart bar */
.sticky-bar {
  position: sticky;
  bottom: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -20px rgba(10, 10, 11, .15);
  padding: 12px 28px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: none;
  flex-direction: column;
  gap: 10px
}

.sticky-bar.show {
  display: flex
}

.sticky-bar-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
  width: 100%
}

.sticky-bar .si {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 320px
}

.sticky-bar .si img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--sand);
  flex-shrink: 0
}

.sticky-bar .si .t {
  min-width: 0
}

.sticky-bar .si .r-brand {
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700
}

.sticky-bar .si .name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.sticky-bar .pp {
  font-family: "Space Grotesk", monospace;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0
}

.sticky-bar-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
  width: 100%
}

.sticky-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
  color: var(--ink)
}

.sticky-action-btn:hover {
  border-color: var(--ink);
  background: var(--paper-2)
}

.sticky-action-btn:active {
  transform: scale(.93)
}

.sticky-action-btn.on {
  border-color: var(--orange);
  color: var(--orange)
}

.sticky-action-btn.on .wish-ico {
  fill: var(--orange);
  stroke: var(--orange)
}

.sticky-cart-form {
  flex: 1;
  min-width: 0;
  max-width: 480px
}

.sticky-cart-form .add-main {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  min-height: 44px;
  font-size: 13px;
  border-radius: 999px
}

/* Share + Wishlist row */
.pdp-action-row {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.pdp-share-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
}

.pdp-share-btn:hover {
  border-color: var(--ink);
  background: var(--paper-2)
}

.pdp-wish-btn {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: .2s;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink);
}

.pdp-wish-btn:hover {
  border-color: var(--ink);
  background: var(--paper-2)
}

.pdp-wish-btn.on {
  border-color: var(--orange);
  color: var(--orange)
}

.pdp-wish-btn.on .wish-ico {
  fill: var(--orange);
  stroke: var(--orange)
}

/* Share Modal */
body.share-open {
  overflow: hidden !important
}

body.share-open>*:not(.share-modal-overlay) {
  pointer-events: none !important
}

.share-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  background: rgba(0, 0, 0, .45);
  pointer-events: auto;
}

.share-modal-overlay.open {
  display: block
}

.share-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001;
  transform: translate(-50%, -50%);
  will-change: transform;
  background: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  max-width: 360px;
  width: 88%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
  pointer-events: auto;
}

.share-modal-title {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink)
}

.share-modal-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.7;
  text-align: left
}

.share-modal-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px
}

.share-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: transform .15s;
  text-decoration: none
}

.share-ico:hover {
  transform: scale(1.1)
}

.share-ico svg {
  display: block
}

.share-modal-cancel {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: .2s;
}

.share-modal-cancel:hover {
  background: var(--paper-2);
  border-color: var(--ink)
}

/* Store pickup notice */
.pdp-pickup-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  font-size: 14px;
  color: var(--ink);
}

.pdp-pickup-notice svg {
  flex-shrink: 0;
  color: var(--ink)
}

.pdp-pickup-notice strong {
  font-weight: 800
}

/* PDP Responsive */
@media (max-width:1100px) {
  .pdp {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .pdp-l {
    position: static;
    max-height: none
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:720px) {
  .pdp {
    padding: 18px 18px 0;
    gap: 24px
  }

  .pdp-l {
    grid-template-columns: 1fr
  }

  .thumbs {
    flex-direction: row;
    overflow-x: auto
  }

  .thumb {
    width: 64px;
    height: 64px
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .price-now {
    font-size: 28px
  }

  .cta-row {
    grid-template-columns: auto 1fr;
    gap: 12px
  }

  .cta-row .qty-stepper {
    grid-row: 1;
    grid-column: 1
  }

  .cta-row .add-main {
    grid-row: 1;
    grid-column: 2;
    padding: 0 16px;
    white-space: nowrap
  }

  .sticky-bar {
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px
  }

  .sticky-bar .si img {
    width: 40px;
    height: 40px;
    border-radius: 8px
  }

  .sticky-bar .si .name {
    max-width: calc(100vw - 180px)
  }

  .sticky-action-btn {
    width: 40px;
    height: 40px
  }

  .sticky-cart-form .add-main {
    height: 40px;
    min-height: 40px;
    font-size: 13px
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .pdp-rec-section {
    padding: 32px 0
  }

  .rec-inner {
    padding: 0 16px
  }

  .rec-title {
    font-size: 18px
  }

  .rec-scroll-wrap {
    margin: 0 -16px;
    padding: 0 16px
  }

  .rec-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch
  }

  .rec-grid::-webkit-scrollbar {
    display: none
  }

  .rec-card .rec-body {
    padding: 10px 12px
  }

  .rec-card .rec-body h4 {
    font-size: 12px
  }
}

/* ================================================================
   ACCOUNT / AUTH SYSTEM
   ================================================================ */

/* --- Auth page (login / register) --- */
.acct-auth {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 18px 12px
}

.woocommerce-account .woocommerce,
.woocommerce-account .site-main,
.woocommerce-account .entry-content,
.woocommerce-account .content-area,
.woocommerce-account article {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important
}

.woocommerce-account #main.site-main {
  padding: 0 !important;
  max-width: none !important
}

.woocommerce-account .content-area {
  overflow-x: hidden
}

body.woocommerce-account {
  overflow-x: hidden
}

/* Hide WooCommerce "マイアカウント" page title */
.woocommerce-account .entry-title,
.woocommerce-account .page-title,
.woocommerce-account .woocommerce-MyAccount-content>h2:first-child,
.woocommerce-account article>header {
  display: none !important
}

.acct-hero {
  background: var(--ink);
  margin: 0 -18px;
  padding: 40px 32px 28px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 32px;
}

.acct-logo {
  height: 36px;
  width: auto
}

/* Tabs */
.acct-tabs {
  display: flex;
  border-bottom: 2px solid var(--line);
  margin-bottom: 28px
}

.acct-tab {
  flex: 1;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: var(--muted);
  transition: .2s;
}

.acct-tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink)
}

.acct-tab:hover:not(.active) {
  color: var(--ink-2)
}

/* Panels */
.acct-panel {
  display: none
}

.acct-panel.active {
  display: block
}

.acct-panel-head {
  margin-bottom: 28px
}

.acct-panel-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .04em;
  margin: 0 0 6px
}

.acct-panel-head p {
  font-size: 13px;
  color: var(--muted);
  margin: 0
}

/* Fields */
.acct-field {
  margin-bottom: 20px
}

.acct-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 8px;
  color: var(--ink)
}

.acct-field .req {
  color: var(--orange)
}

.acct-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}

.acct-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 10, 11, .08)
}

.acct-input::placeholder {
  color: #bbb
}

.acct-pw-wrap {
  position: relative
}

.acct-pw-wrap .acct-input {
  padding-right: 48px
}

.acct-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  transition: .2s;
}

.acct-pw-toggle.show {
  color: var(--orange)
}

.acct-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px
}

/* Forgot password link (Uniqlo-style, below password field) */
.acct-forgot {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--muted);
  transition: .2s;
}

.acct-forgot:hover {
  color: var(--orange);
  text-decoration-color: var(--orange)
}

/* Remember me */
.acct-remember {
  display: flex;
  justify-content: center;
  margin-bottom: 24px
}

.acct-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 500;
  user-select: none;
}

.acct-check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
  position: relative;
  background: #fff;
}

.acct-check input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}

.acct-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.acct-check input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .25);
}

.acct-link {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
  white-space: nowrap;
}

.acct-link:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px
}

/* Buttons */
.acct-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: .2s;
}

.acct-btn:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 10, 11, .2)
}

.acct-btn-outline {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: .2s;
}

.acct-btn-outline:hover {
  background: var(--ink);
  color: #fff
}

/* Password Reset page (Uniqlo-inspired) */
.acct-reset-info {
  margin-bottom: 28px
}

.acct-reset-info h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.acct-reset-info p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.acct-reset-back {
  margin-top: 16px;
}

.acct-reset-back .acct-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

/* Alt section */
.acct-alt {
  text-align: center;
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line)
}

.acct-alt p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px
}

/* Benefits */
.acct-benefits {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.acct-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600
}

.acct-benefit svg {
  color: var(--orange);
  flex-shrink: 0
}

/* Agreement */
.acct-agree {
  margin: 20px 0 24px
}

.acct-agree a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px
}

.acct-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.acct-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange)
}

/* Registration perks */
.acct-reg-perks {
  margin-top: 36px;
  padding: 28px;
  background: var(--paper-2);
  border-radius: 16px
}

.acct-reg-perks h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0 0 18px
}

.acct-perks-grid {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.acct-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.acct-perk svg {
  flex-shrink: 0;
  color: var(--orange)
}

.acct-perk strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px
}

.acct-perk span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5
}

/* --- Account pages (logged in) — Mobile-first rewrite --- */
.acct-wrap {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 0 40px;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Hero */
.acct-dash-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 20px 24px;
  position: relative;
}

.acct-dash-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 300px at 20% 30%, rgba(255, 90, 31, .12), transparent 60%);
  pointer-events: none;
}

.acct-dash-hero-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.acct-dash-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .2);
  object-fit: cover;
}

.acct-dash-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .04em;
  margin: 0;
  line-height: 1;
}

.acct-dash-greeting {
  font-size: 12px;
  color: rgba(246, 245, 241, .6);
  margin: 4px 0 0
}

/* Layout — single column on mobile */
.acct-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Navigation — horizontal scroll tabs on mobile */
.acct-nav {
  margin: 0 -16px 20px
}

.acct-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 2px solid var(--line);
}

.acct-nav ul::-webkit-scrollbar {
  display: none
}

.acct-nav li {
  flex-shrink: 0
}

.acct-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: .15s;
}

.acct-nav li.active a,
.acct-nav li a[aria-current="page"] {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.acct-nav li a:hover {
  color: var(--ink)
}

.acct-nav-ico {
  display: none
}

.acct-nav-arr {
  display: none
}

/* Content area */
.acct-content {
  min-height: auto;
  min-width: 0;
  width: 100%;
  box-sizing: border-box
}

/* Dashboard cards — stacked on mobile */
.acct-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.acct-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: .2s;
  text-align: center;
  min-width: 0;
  box-sizing: border-box;
}

.acct-card:last-child {
  grid-column: 1 / -1
}

.acct-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 10, 11, .08)
}

.acct-card svg {
  color: var(--orange);
  width: 22px;
  height: 22px;
  flex-shrink: 0
}

.acct-card span {
  font-size: 12px;
  font-weight: 700
}

/* Sections */
.acct-section {
  margin-bottom: 20px
}

.acct-section-title {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink)
}

/* Info grid */
.acct-info-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px
}

.acct-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px
}

.acct-info-row:last-child {
  border-bottom: 0
}

.acct-info-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600
}

.acct-info-value {
  flex: 1;
  font-weight: 500;
  font-size: 13px;
  word-break: break-word
}

.acct-muted {
  color: var(--muted);
  font-weight: 400
}

/* Edit link */
.acct-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: .2s;
}

.acct-edit-link:hover {
  gap: 10px;
  text-decoration: underline
}

/* Menu list (vertical links) */
.acct-menu-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden
}

.acct-menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  transition: .15s;
  min-height: 52px;
}

.acct-menu-list a:last-child {
  border-bottom: 0
}

.acct-menu-list a:hover {
  background: var(--paper-2);
  color: var(--orange)
}

.acct-menu-list svg {
  color: var(--muted);
  flex-shrink: 0
}

/* Logout */
.acct-logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: .2s;
  padding: 14px 0;
}

.acct-logout:hover {
  color: #dc3545
}

/* WooCommerce tables on mobile (orders etc) */
.acct-content table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse
}

.acct-content .woocommerce-orders-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden
}

.acct-content .woocommerce-orders-table thead {
  display: none
}

.acct-content .woocommerce-orders-table tr {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line)
}

.acct-content .woocommerce-orders-table tr:last-child {
  border-bottom: 0
}

.acct-content .woocommerce-orders-table td,
.acct-content .woocommerce-orders-table th {
  display: block;
  padding: 4px 0;
  border: 0;
  text-align: left
}

.acct-content .woocommerce-orders-table td::before,
.acct-content .woocommerce-orders-table th::before {
  content: attr(data-title) ": ";
  font-weight: 700;
  color: var(--muted);
  font-size: 11px
}

/* WooCommerce forms on mobile */
.acct-content .woocommerce-EditAccountForm .form-row,
.acct-content .woocommerce-address-fields .form-row {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin-bottom: 16px !important
}

.acct-content .woocommerce-EditAccountForm input[type="text"],
.acct-content .woocommerce-EditAccountForm input[type="email"],
.acct-content .woocommerce-EditAccountForm input[type="password"],
.acct-content .woocommerce-EditAccountForm input[type="tel"],
.acct-content .woocommerce-address-fields input[type="text"],
.acct-content .woocommerce-address-fields input[type="email"],
.acct-content .woocommerce-address-fields input[type="tel"],
.acct-content .woocommerce-address-fields select {
  width: 100% !important;
  padding: 12px 14px;
  font-size: 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  box-sizing: border-box;
  font-family: inherit;
}

.acct-content button[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: .2s;
  margin-top: 8px;
}

.acct-content button[type="submit"]:hover {
  background: #222
}

/* ===== DESKTOP (768px+) ===== */
@media (min-width:769px) {
  .acct-wrap {
    padding-bottom: 80px
  }

  /* Hero */
  .acct-dash-hero {
    padding: 80px 28px 36px
  }

  .acct-dash-hero-inner {
    gap: 18px
  }

  .acct-dash-avatar img {
    width: 56px;
    height: 56px
  }

  .acct-dash-hero h1 {
    font-size: 32px
  }

  .acct-dash-greeting {
    font-size: 13px
  }

  /* Layout — sidebar + content */
  .acct-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 40px 28px 0;
  }

  /* Navigation — vertical sidebar */
  .acct-nav {
    position: sticky;
    top: 100px;
    align-self: start;
    margin: 0
  }

  .acct-nav ul {
    flex-direction: column;
    overflow: visible;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .acct-nav li a {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    margin-bottom: 0;
    white-space: normal;
    letter-spacing: 0;
    color: var(--ink);
    gap: 14px;
  }

  .acct-nav li:last-child a {
    border-bottom: 0
  }

  .acct-nav li.active a,
  .acct-nav li a[aria-current="page"] {
    background: var(--paper-2);
    color: var(--orange);
    border-bottom-color: var(--line);
  }

  .acct-nav li a:hover {
    background: var(--paper-2)
  }

  .acct-nav-ico {
    display: flex;
    align-items: center;
    color: var(--muted);
    flex-shrink: 0
  }

  .acct-nav li.active .acct-nav-ico,
  .acct-nav li a[aria-current="page"] .acct-nav-ico {
    color: var(--orange)
  }

  .acct-nav-label {
    flex: 1
  }

  .acct-nav-arr {
    display: block;
    color: var(--muted);
    margin-left: auto
  }

  /* Content area */
  .acct-content {
    min-height: 400px
  }

  /* Dashboard cards — 3 columns */
  .acct-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px
  }

  .acct-card {
    padding: 28px 18px;
    gap: 10px;
    border-radius: 16px
  }

  .acct-card:last-child {
    grid-column: auto
  }

  .acct-card svg {
    width: 24px;
    height: 24px
  }

  .acct-card span {
    font-size: 13px
  }

  /* Sections */
  .acct-section {
    margin-bottom: 28px
  }

  .acct-section-title {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 10px
  }

  /* Info grid */
  .acct-info-grid {
    border-radius: 14px
  }

  .acct-info-row {
    flex-direction: row;
    gap: 0;
    padding: 16px 20px
  }

  .acct-info-label {
    width: 140px;
    flex-shrink: 0;
    font-size: 13px
  }

  .acct-info-value {
    font-size: 14px
  }

  /* Edit link */
  .acct-edit-link {
    font-size: 13px
  }

  /* Menu list */
  .acct-menu-list {
    border-radius: 14px
  }

  .acct-menu-list a {
    padding: 16px 20px;
    font-size: 14px;
    min-height: auto
  }

  /* Logout */
  .acct-logout {
    font-size: 14px;
    padding: 12px 0
  }

  /* WooCommerce tables — normal display */
  .acct-content .woocommerce-orders-table thead {
    display: table-header-group
  }

  .acct-content .woocommerce-orders-table tr {
    display: table-row;
    padding: 0;
    border-bottom: 0
  }

  .acct-content .woocommerce-orders-table td,
  .acct-content .woocommerce-orders-table th {
    display: table-cell;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left
  }

  .acct-content .woocommerce-orders-table td::before,
  .acct-content .woocommerce-orders-table th::before {
    content: none
  }

  /* WooCommerce forms — side by side */
  .acct-content .woocommerce-EditAccountForm .form-row-first,
  .acct-content .woocommerce-address-fields .form-row-first {
    width: 48% !important;
    float: left !important;
    margin-right: 4% !important
  }

  .acct-content .woocommerce-EditAccountForm .form-row-last,
  .acct-content .woocommerce-address-fields .form-row-last {
    width: 48% !important;
    float: left !important
  }
}

/* ================================================================
   CART PAGE – Uniqlo-inspired
   ================================================================ */
.sbs-cart {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 60px
}

.woocommerce-cart .site-main {
  max-width: none !important;
  padding: 40px 20px !important;
  margin: 0 !important
}

.sbs-cart-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .04em;
  margin: 0 0 24px;
  color: var(--ink)
}

/* Free shipping banner */
.sbs-ship-banner {
  position: relative;
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.sbs-ship-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(350px 250px at 85% 80%, rgba(255, 90, 31, .25), transparent 60%),
    radial-gradient(200px 200px at 15% 20%, rgba(255, 255, 255, .04), transparent 50%);
}

.sbs-ship-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  gap: 24px;
}

.sbs-ship-left {
  flex: 1;
  min-width: 0
}

.sbs-ship-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sbs-ship-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: sbs-pulse 2s ease-in-out infinite
}

@keyframes sbs-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.sbs-ship-headline {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
}

.sbs-ship-headline strong {
  color: var(--orange)
}

.sbs-ship-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6em;
  color: var(--orange);
  margin: 0 2px;
  vertical-align: baseline;
}

.sbs-ship-yen {
  font-size: .7em;
  color: var(--orange);
  font-weight: 800
}

.sbs-ship-sub {
  font-size: 11px;
  color: rgba(246, 245, 241, .6);
  margin-top: 6px;
  line-height: 1.5
}

/* Progress bar */
.sbs-ship-bar-wrap {
  margin-top: 14px;
  max-width: 320px
}

.sbs-ship-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  overflow: hidden;
}

.sbs-ship-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  transition: width .6s cubic-bezier(.2, .7, .2, 1);
}

.sbs-ship-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 10px;
  color: rgba(246, 245, 241, .45);
  font-family: 'Space Grotesk', monospace;
}

/* Right side */
.sbs-ship-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.sbs-ship-price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 10px 20px;
  backdrop-filter: blur(8px);
}

.sbs-ship-price-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6)
}

.sbs-ship-price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--orange);
  line-height: 1
}

.sbs-ship-truck {
  color: rgba(255, 255, 255, .2);
  margin-top: -4px
}

/* Free shipping achieved */
.sbs-ship-free .sbs-ship-bar-fill {
  background: linear-gradient(90deg, #34c759, #7cdf8c)
}

.sbs-ship-free .sbs-ship-price-val {
  color: #34c759
}

.sbs-ship-free .sbs-ship-headline strong {
  color: #34c759
}

.sbs-ship-free .sbs-ship-eyebrow {
  color: #34c759
}

.sbs-ship-free .sbs-ship-dot {
  background: #34c759
}

/* Two-column layout (desktop) */
.sbs-cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start
}

.sbs-cart-main {
  min-width: 0
}

/* Mobile summary hidden on desktop */
.sbs-cart-summary-mobile {
  display: none
}

/* --- Cart Item Cards --- */
.sbs-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0
}

.sbs-cart-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line)
}

.sbs-cart-card:first-child {
  padding-top: 0
}

.sbs-cart-img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand)
}

.sbs-cart-img a {
  display: block;
  width: 100%;
  height: 100%
}

.sbs-cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sbs-cart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0
}

.sbs-cart-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  color: var(--ink)
}

.sbs-cart-name a {
  color: inherit;
  text-decoration: none
}

.sbs-cart-name a:hover {
  text-decoration: underline
}

.sbs-cart-meta {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6
}

.sbs-cart-meta p {
  margin: 0
}

.sbs-cart-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink)
}

.sbs-cart-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px
}

/* Quantity selector */
.sbs-cart-qty .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  height: 36px
}

.sbs-cart-qty .quantity input[type="number"] {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--ink);
  outline: none;
  padding: 0;
  margin: 0;
  -moz-appearance: textfield
}

.sbs-cart-qty .quantity input::-webkit-inner-spin-button,
.sbs-cart-qty .quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

.sbs-cart-qty .quantity .minus,
.sbs-cart-qty .quantity .plus {
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--muted);
  transition: .15s
}

.sbs-cart-qty .quantity .minus:hover,
.sbs-cart-qty .quantity .plus:hover {
  color: var(--ink);
  background: var(--sand)
}

/* Remove */
.sbs-remove-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: .15s
}

.sbs-remove-link:hover {
  color: #c0350a;
  text-decoration: underline
}

.sbs-remove-link svg {
  flex-shrink: 0
}

/* Subtotal */
.sbs-cart-subtotal {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed var(--line)
}

.sbs-subtotal-label {
  font-size: 12px;
  color: var(--muted)
}

.sbs-subtotal-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink)
}

/* Update */
.sbs-cart-update {
  padding: 20px 0;
  display: flex;
  justify-content: flex-end
}

.sbs-update-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: .2s
}

.sbs-update-btn:hover {
  background: var(--sand);
  border-color: var(--ink)
}

/* --- Order Summary --- */
.sbs-summary-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px
}

.sbs-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 16px
}

.sbs-summary-header h2 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: var(--ink)
}

.sbs-summary-count {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink)
}

.sbs-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line)
}

.sbs-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--ink)
}

.sbs-summary-row span:last-child {
  font-weight: 600
}

.sbs-shipping-note {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--line)
}

.sbs-muted {
  color: var(--muted);
  font-weight: 400 !important
}

.sbs-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink)
}

.sbs-summary-total span:last-child {
  font-size: 20px
}

.sbs-summary-tax {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line)
}

/* Coupon */
.sbs-coupon-section {
  margin-top: 16px
}

.sbs-coupon-toggle {
  border: none
}

.sbs-coupon-toggle summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 12px 0;
  list-style: none;
  transition: .2s
}

.sbs-coupon-toggle summary::-webkit-details-marker {
  display: none
}

.sbs-coupon-arr {
  margin-left: auto;
  transition: transform .2s
}

.sbs-coupon-toggle[open] .sbs-coupon-arr {
  transform: rotate(180deg)
}

.sbs-coupon-form {
  display: flex;
  gap: 8px;
  padding: 8px 0 4px
}

.sbs-coupon-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  outline: none;
  transition: .2s
}

.sbs-coupon-input:focus {
  border-color: var(--ink)
}

.sbs-coupon-apply {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap
}

.sbs-coupon-apply:hover {
  background: #333
}

/* Checkout */
.sbs-checkout-wrap {
  margin-top: 20px
}

.sbs-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: .2s
}

.sbs-checkout-btn:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
}

.sbs-checkout-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.6
}

/* --- Recommendations --- */
.sbs-cart-recs {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line)
}

.sbs-recs-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 20px
}

.sbs-recs-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none
}

.sbs-recs-scroll::-webkit-scrollbar {
  display: none
}

.sbs-rec-card {
  flex-shrink: 0;
  width: 160px;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--ink);
  transition: .2s
}

.sbs-rec-card:hover {
  transform: translateY(-2px)
}

.sbs-rec-img {
  width: 160px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 10px
}

.sbs-rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sbs-rec-noimg {
  width: 100%;
  height: 100%;
  background: var(--line)
}

.sbs-rec-name {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.sbs-rec-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink)
}

/* --- Sticky bar --- */
.sbs-cart-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.sbs-sticky-total {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.sbs-sticky-label {
  font-size: 11px;
  color: var(--muted)
}

.sbs-sticky-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink)
}

.sbs-sticky-checkout {
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
  letter-spacing: .04em
}

.sbs-sticky-checkout:hover {
  background: #222
}

/* Hide WC defaults */
.sbs-cart .shop_table {
  border: none !important
}

.sbs-cart .cart_totals>h2 {
  display: none
}

.sbs-cart .cart_totals .shop_table {
  display: none
}

.sbs-cart .cart_totals .wc-proceed-to-checkout {
  display: none
}

.sbs-cart .woocommerce-cart-form__contents {
  display: none
}

.sbs-cart .cross-sells {
  display: none
}

.woocommerce-cart .page-title,
.woocommerce-cart .entry-title,
.woocommerce-cart article>header {
  display: none !important
}

.woocommerce-cart .woocommerce-message {
  display: none !important
}

/* Continue shopping */
/* Empty cart state */
.sbs-cart-empty {
  padding: 48px 20px 40px;
  text-align: center;
}

.sbs-cart-empty-inner {
  max-width: 420px;
  margin: 0 auto;
}

.sbs-cart-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--paper-2, #ecebe5);
  color: var(--muted, #888);
}

.sbs-cart-empty-icon svg {
  opacity: .5;
}

.sbs-cart-empty-heading {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.sbs-cart-empty-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 28px;
}

.sbs-cart-empty-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
  margin: 0 auto 32px;
}

.sbs-cart-empty-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  padding: 10px 16px;
  background: var(--paper-2, #ecebe5);
  border-radius: 10px;
}

.sbs-cart-empty-info-item svg {
  flex-shrink: 0;
  color: var(--orange, #ff5a1f);
}

.sbs-cart-empty-info-item strong {
  color: var(--orange, #ff5a1f);
}

.sbs-cart-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--ink, #0a0a0b);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: .2s;
}

.sbs-cart-empty-btn:hover {
  background: var(--orange, #ff5a1f);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 90, 31, .25);
}

.sbs-cart-empty-btn svg {
  transition: transform .2s;
}

.sbs-cart-empty-btn:hover svg {
  transform: translateX(-3px);
}

@media(max-width:768px) {
  .sbs-cart-empty {
    padding: 32px 12px 28px
  }

  .sbs-cart-empty-heading {
    font-size: 18px
  }

  .sbs-cart-empty-text {
    font-size: 13px;
    margin-bottom: 24px
  }

  .sbs-cart-empty-info {
    max-width: 100%
  }

  .sbs-cart-empty-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px
  }
}

.sbs-cart-continue {
  text-align: center;
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--line)
}

.sbs-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: .2s;
}

.sbs-continue-btn:hover {
  background: var(--ink);
  color: #fff
}

.sbs-continue-btn svg {
  transition: transform .2s
}

.sbs-continue-btn:hover svg {
  transform: translateX(-3px)
}

/* === Mobile === */
@media(max-width:768px) {
  .sbs-cart {
    padding: 0 16px 90px
  }

  .sbs-cart-title {
    font-size: 22px;
    margin-bottom: 20px
  }

  .sbs-cart-layout {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .sbs-ship-banner {
    margin-bottom: 20px;
    border-radius: 12px
  }

  .sbs-ship-content {
    padding: 20px 18px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start
  }

  .sbs-ship-headline {
    font-size: 18px
  }

  .sbs-ship-num {
    font-size: 1.4em
  }

  .sbs-ship-right {
    flex-direction: row;
    gap: 12px;
    width: 100%;
    justify-content: space-between
  }

  .sbs-ship-price-badge {
    padding: 8px 16px;
    flex-direction: row;
    gap: 6px;
    align-items: baseline
  }

  .sbs-ship-price-val {
    font-size: 24px
  }

  .sbs-ship-truck {
    width: 48px;
    height: 48px
  }

  .sbs-ship-bar-wrap {
    max-width: 100%
  }

  .sbs-cart-card {
    gap: 14px;
    padding: 18px 0
  }

  .sbs-cart-img {
    width: 90px;
    height: 90px;
    border-radius: 8px
  }

  .sbs-cart-name {
    font-size: 13px
  }

  .sbs-cart-price {
    font-size: 14px
  }

  .sbs-cart-meta {
    font-size: 11px
  }

  .sbs-cart-actions {
    flex-wrap: wrap;
    gap: 12px
  }

  .sbs-cart-qty .quantity {
    height: 32px
  }

  .sbs-cart-qty .quantity input[type="number"] {
    width: 34px;
    font-size: 13px
  }

  .sbs-cart-qty .quantity .minus,
  .sbs-cart-qty .quantity .plus {
    width: 32px;
    font-size: 16px
  }

  .sbs-cart-sticky-bar {
    display: flex
  }

  .sbs-summary-card {
    position: static;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 20px;
    background: #fff
  }

  .sbs-checkout-note {
    margin-bottom: 16px
  }

  .sbs-cart-recs {
    margin-top: 32px;
    padding-top: 24px
  }

  .sbs-recs-title {
    font-size: 16px;
    margin-bottom: 16px
  }

  .sbs-rec-card {
    width: 140px
  }

  .sbs-rec-img {
    width: 140px;
    height: 180px;
    border-radius: 8px
  }

  .sbs-cart-continue {
    margin-top: 24px;
    padding-top: 24px
  }

  .sbs-continue-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 12px 24px
  }
}

/* --- STORE Menu adjustments --- */
.mm-brand.store-brand {
  justify-content: center !important;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mm-brand.store-brand:hover {
  padding-left: 20px;
}

/* ================================================================
   Points & Rewards Tab - Uniqlo-inspired UI Override
   ================================================================ */
.wps_wpr_badge_way_points_main_wrap {
  margin-bottom: 28px;
}

.wps_wpr_points_wrapper_with_exp {
  margin-bottom: 24px;
}

.wps_wpr_points_only {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.wps_wpr_heading_para {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wps_wpr_heading_para .wps_wpr_heading {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.wps_wpr_heading_para .wps_wpr_total_earn_points {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
}

.wps_wpr_view_log a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 16px;
  background: var(--paper-2);
  border-radius: 8px;
  transition: 0.2s;
}

.wps_wpr_view_log a:hover {
  background: var(--ink);
  color: #fff;
}

.wps_ways_to_gain_points_section>.wps_wpr_heading {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.wps_wpr_each_section_wrap .wps_wpr_each_section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Hide some messy texts if needed */
.wps_wpr_each_section_wrap fieldset {
  border: none;
  margin: 0;
}

/* ================================================================
   Profile Completion Notice
   ================================================================ */
.acct-notice-profile {
  display: flex;
  flex-direction: column;
  background: #fff4e6;
  border: 1px solid #ffcc80;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  gap: 16px;
  align-items: flex-start;
}

.acct-notice-content h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
}

.acct-notice-content p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.acct-notice-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
}

.acct-notice-btn:hover {
  background: #e64a19;
  color: #fff;
}

@media (min-width: 768px) {
  .acct-notice-profile {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .acct-notice-btn {
    flex-shrink: 0;
  }
}

/* Hide Country field since it is Japan only */
.acct-hidden-field {
  display: none !important;
}

/* Fallback: Hide any yomigana fields completely */
p[id*="yomigana"],
div[id*="yomigana"],
.yomigana-field {
  display: none !important;
}

/* ================================================================
   WOOCOMMERCE NOTICES (Message, Error, Info)
   ================================================================ */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background-color: var(--paper-2, #f5f5f5) !important;
  color: var(--ink, #0a0a0b) !important;
  border: 1px solid var(--line, #e2e1dc) !important;
  border-top: 1px solid var(--line, #e2e1dc) !important;
  /* override WC thick top border */
  border-radius: 12px !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
  outline: none !important;
  list-style: none !important;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  content: none !important;
  /* Hide default WC icons */
}

/* Custom pseudo icons */
.woocommerce-message::after {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--orange, #ff5a1f);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  order: -1;
}

.woocommerce-error::after {
  content: "!";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #e63946;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  order: -1;
}

.woocommerce-info::after {
  content: "i";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--ink, #0a0a0b);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-style: italic;
  font-weight: 800;
  flex-shrink: 0;
  order: -1;
}

.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
  color: var(--orange, #ff5a1f) !important;
  text-decoration: underline !important;
  margin-left: auto;
}

/* Fix inner list items for errors */
.woocommerce-error li {
  margin: 0 !important;
}

/* ============================================
 * CHECKOUT PAGE: Design Improvements
 * ============================================ */

/* --- 各セクション（連絡先情報、お届け先住所 etc）の余白引き締め --- */
.wc-block-checkout__main .wc-block-components-checkout-step {
  padding-top: 4px !important;
  padding-bottom: 16px !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid #eaeaea;
}
.wc-block-checkout__main .wc-block-components-checkout-step:last-child {
  border-bottom: none;
}
.wc-block-checkout__main .wc-block-components-checkout-step .wc-block-components-checkout-step__container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.wc-block-checkout__main .wc-block-components-checkout-step .wc-block-components-checkout-step__content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* --- セクション見出し --- */
.wc-block-checkout__main .wc-block-components-checkout-step__heading {
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px;
  color: #222 !important;
  margin-bottom: 4px !important;
}
.wc-block-checkout__main .wc-block-components-checkout-step__title {
  padding-left: 10px;
  border-left: 3px solid #e85b2a;
}

/* --- 注文概要カード --- */
.wp-block-woocommerce-checkout-order-summary-block {
  background: #faf8f5;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e8e4de;
}
.wc-block-components-order-summary-item__image img {
  border-radius: 6px;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #e85b2a !important;
}

/* --- 注文ボタン --- */
.wc-block-components-checkout-place-order-button {
  background: #222 !important;
  font-size: 16px !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.1s !important;
}
.wc-block-components-checkout-place-order-button:hover {
  background: #e85b2a !important;
  transform: translateY(-1px) !important;
}

/* --- 配送先住所カード --- */
.wc-block-components-shipping-address .wc-block-components-address-card {
  border: 1px solid #e0dcd6;
  border-radius: 8px;
  padding: 14px 16px;
  background: #faf8f5;
}

/* --- クーポン非表示 --- */
.wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-panel,
.wp-block-woocommerce-cart-order-summary-coupon-form-block .wc-block-components-panel {
  display: none !important;
}

/* --- ポイントトグル非表示 --- */
#wps_wpr_button_to_add_points_section {
  display: none !important;
}

/* --- カートページ不要要素非表示 --- */
.sbs-update-btn {
  display: none !important;
}
.sbs-coupon-section {
  display: none !important;
}
.sbs-cart-update .wps_wpr_apply_custom_points {
  display: none !important;
}

/* --- モバイルチェックアウト --- */
@media (max-width: 782px) {
  .wc-block-checkout__sidebar {
    display: none !important;
  }
  .wc-block-checkout__main {
    display: flex !important;
    flex-direction: column !important;
  }
  .wc-block-checkout__main > .wp-block-woocommerce-checkout-totals-block {
    order: -1 !important;
    margin-bottom: 24px;
  }
  .wp-block-woocommerce-checkout-order-summary-block {
    padding: 16px;
  }
}

/* --- よみがなフィールドを非表示 --- */
.wc-block-components-text-input[id*="yomigana"],
[id*="yomigana"].wc-block-components-text-input,
.wc-block-components-text-input:has(input[id*="yomigana"]) {
  display: none !important;
}

/* --- 国・地域フィールドを非表示 --- */
.wc-block-components-combobox:has(input[id*="country"]),
.wc-block-components-address-form__country,
.wc-block-components-address-form .wc-block-components-country-input {
  display: none !important;
}

/* --- 建物名・部屋番号の必須マーク(*) および (任意) テキストを非表示 --- */
.wc-block-components-text-input:has(input[id*="address_2"]) label .wc-block-components-text-input__required-mark,
.wc-block-components-text-input:has(input[id*="address_2"]) label .required,
.wc-block-components-text-input:has(input[id*="address_2"]) label abbr,
.wc-block-components-text-input:has(input[id*="address_2"]) label::after,
.wc-block-components-text-input:has(input[id*="address_2"]) label .wc-block-components-text-input__optional-mark {
  display: none !important;
  content: none !important;
}

/* --- 都道府県・国ドロップダウンの段差修正 --- */
/* コンボボックス全体 */
.wc-block-checkout__form .wc-block-components-combobox {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.wc-block-checkout__form .wc-block-components-combobox .components-combobox-control {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* ラベルを上部に固定表示（ドロップダウンの外に出す） */
.wc-block-checkout__form .wc-block-components-combobox label,
.wc-block-components-combobox .components-base-control__label {
  position: static !important;
  transform: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #333 !important;
  display: block !important;
  margin-bottom: 4px !important;
  opacity: 1 !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.4 !important;
  order: -1 !important;
  pointer-events: none;
}
/* ドロップダウン入力欄の高さ統一 */
.wc-block-checkout__form .wc-block-components-combobox .components-combobox-control input,
.wc-block-components-combobox .components-combobox-control input[role="combobox"] {
  height: 44px !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  font-size: 15px !important;
}
/* コンボボックス内部のWordPressコンテナ余白リセット */
.wc-block-components-combobox .components-combobox-control .components-input-control__container {
  padding: 0 !important;
}
.wc-block-components-combobox .components-combobox-control .components-input-control__backdrop {
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
}
/* アドレスフォームの横並び - 上端揃え */
.wc-block-components-address-form {
  align-items: flex-start !important;
}
