*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0a0a0a;
  --bg-alt:       #111111;
  --accent:       #ffffff;
  --accent-panel: rgba(255, 255, 255, 0.06);
  --white:        #ffffff;
  --off-white:    #cccccc;
  --gray:         #555555;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-ui:      'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────
   SLIDESHOW CONTAINER
───────────────────────────────────────── */

.slides-container {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
}

/* Content slides have a fixed nav + scrollable body */
.slide--content {
  display: flex;
  flex-direction: column;
}

/* Slide top navigation bar */
.slide-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 7vw;
  height: 60px;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.slide-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
}

.slide-nav-link {
  position: relative;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}

.slide-nav-link:hover { color: var(--white); }

.slide-nav-link.is-active { color: var(--white); }

.slide-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--white);
}

.p5-back-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p5-back-btn:hover { color: var(--white); }

/* Scrollable area within each content slide */
.slide-content {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* ─────────────────────────────────────────
   TRANSITION OVERLAY (flash on navigate)
───────────────────────────────────────── */

.transition-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.08s ease;
}

.transition-overlay.is-active {
  opacity: 0.12;
}

/* ─────────────────────────────────────────
   HERO / MENU SCREEN
───────────────────────────────────────── */

.p5-hero {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

.p5-bg-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent 0,
    transparent 60px,
    rgba(255, 255, 255, 0.018) 60px,
    rgba(255, 255, 255, 0.018) 61px
  );
  pointer-events: none;
}

.p5-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  gap: 48px;
}

/* ── Left: Title + Nav ── */
.p5-left {
  flex: 1;
  max-width: 580px;
}

.p5-title-wrap {
  margin-bottom: 52px;
}

.p5-title-band {
  display: inline-block;
  background: var(--white);
  transform: skewX(-8deg);
  transform-origin: left center;
  padding: 14px 48px 14px 28px;
  margin-left: -8px;
  animation: bandIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

@keyframes bandIn {
  from { transform: skewX(-8deg) scaleX(0); }
  to   { transform: skewX(-8deg) scaleX(1); }
}

.p5-subtitle {
  display: inline-block;
  transform: skewX(8deg);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 6px;
}

.p5-title {
  display: inline-block;
  transform: skewX(8deg);
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 104px);
  line-height: 0.88;
  color: #0a0a0a;
  letter-spacing: 0.04em;
}

/* ── Menu items ── */
.p5-menu-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 36px;
}

.p5-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 28px 13px 20px;
  text-decoration: none;
  cursor: pointer;
  animation: itemSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 0.1s + 0.35s) both;
}

@keyframes itemSlideIn {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}

.p5-item-panel {
  position: absolute;
  inset: 0;
  background: var(--accent-panel);
  transform: skewX(-8deg);
  border-left: 4px solid var(--white);
  transition: background 0.15s ease, border-left-width 0.1s ease;
}

/* Normal hover */
.p5-menu-item:not(.is-selected):hover .p5-item-panel {
  background: var(--white);
  border-left-width: 7px;
}
.p5-menu-item:not(.is-selected):hover .p5-item-label {
  color: #0a0a0a;
  transform: translateX(3px);
}
.p5-menu-item:not(.is-selected):hover .p5-item-arrow {
  opacity: 1;
  color: #0a0a0a;
}

/* Selected (after first click) */
.p5-menu-item.is-selected .p5-item-panel {
  background: rgba(255, 255, 255, 0.14);
  border-left-width: 6px;
}
.p5-menu-item.is-selected .p5-item-arrow {
  opacity: 1;
  color: var(--white);
}

/* Flash animation (plays on first click) */
@keyframes panelFlash {
  0%   { background: var(--white);              border-left-width: 8px; }
  30%  { background: var(--white);              border-left-width: 8px; }
  65%  { background: rgba(255,255,255,0.08);    border-left-width: 6px; }
  100% { background: rgba(255,255,255,0.14);    border-left-width: 6px; }
}
@keyframes labelFlash {
  0%   { color: #0a0a0a; transform: translateX(3px); }
  30%  { color: #0a0a0a; transform: translateX(3px); }
  65%  { color: var(--white); transform: translateX(0); }
  100% { color: var(--white); transform: translateX(0); }
}

@keyframes arrowFlash {
  0%   { opacity: 1; color: #0a0a0a; }
  30%  { opacity: 1; color: #0a0a0a; }
  65%  { opacity: 1; color: var(--white); }
  100% { opacity: 1; color: var(--white); }
}

@keyframes arrowBounceLeft {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(7px); }
  50%  { transform: translateX(-3px); }
  70%  { transform: translateX(4px); }
  85%  { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

@keyframes arrowBounceRight {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-7px); }
  50%  { transform: translateX(3px); }
  70%  { transform: translateX(-4px); }
  85%  { transform: translateX(1px); }
  100% { transform: translateX(0); }
}

.p5-menu-item.is-flashing .p5-item-panel {
  animation: panelFlash 0.55s ease forwards;
}
.p5-menu-item.is-flashing .p5-item-label {
  animation: labelFlash 0.55s ease forwards;
}
.p5-menu-item.is-flashing .p5-item-arrow:not(.p5-item-arrow--right) {
  animation: arrowFlash 0.55s ease forwards, arrowBounceLeft 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}
.p5-menu-item.is-flashing .p5-item-arrow--right {
  animation: arrowFlash 0.55s ease forwards, arrowBounceRight 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.p5-item-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  opacity: 0;
  color: var(--white);
  transition: opacity 0.15s ease, color 0.15s ease;
}

.p5-item-arrow::before {
  content: '▶';
  font-size: 11px;
  line-height: 1;
}

.p5-item-arrow--right::before {
  content: '◀';
}

.p5-item-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.15s, transform 0.15s;
}

.p5-tagline {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
  animation: itemSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.p5-tagline em {
  color: var(--off-white);
  font-style: normal;
}

.p5-hint {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
  animation: itemSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* ── Right: Yin-Yang ── */
.p5-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p5-symbol-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: symbolIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes dragonGlow {
  0%, 100% {
    filter: brightness(1.15) contrast(1.1)
            drop-shadow(0 0 5px rgba(255, 255, 255, 0.3))
            drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  }
  50% {
    filter: brightness(1.4) contrast(1.15)
            drop-shadow(0 0 12px rgba(255, 255, 255, 0.7))
            drop-shadow(0 0 26px rgba(255, 255, 255, 0.4));
  }
}

@keyframes symbolIn {
  from { opacity: 0; transform: scale(0.75) rotate(-20deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.p5-yinyang {
  position: relative;
  z-index: 1;
  width: clamp(384px, 55vw, 744px);
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  transform: translateX(4vw);
  animation: dragonGlow 3s ease-in-out infinite;
}

/* ─────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────── */

.p5-section {
  background: var(--bg);
  padding: 72px 7vw;
}

.p5-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.p5-section-head {
  margin-bottom: 48px;
}

.p5-section-band {
  display: inline-block;
  position: relative;
  padding: 10px 44px 10px 20px;
}

.p5-section-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: skewX(-8deg);
}

.p5-section-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #0a0a0a;
}

/* ─────────────────────────────────────────
   NEW ARRIVALS — CARDS
───────────────────────────────────────── */

.p5-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.p5-card {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  transition: background 0.18s;
}

.p5-card:hover { background: #181818; }

.p5-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  transition: width 0.15s;
  z-index: 1;
}

.p5-card:hover::before { width: 5px; }

.p5-card-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gray);
  padding: 22px 24px 0;
}

.p5-card-img {
  height: 180px;
  margin-top: 12px;
}

.p5-card-img--dark  { background: #0d0d0d; }
.p5-card-img--light { background: #e8e8e8; }
.p5-card-img--split { background: linear-gradient(90deg, #0d0d0d 50%, #e8e8e8 50%); }

.p5-card-body {
  padding: 20px 24px 28px;
}

.p5-card-body h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.p5-card-body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 18px;
}

.p5-card-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.15s;
}

.p5-card-link:hover { color: var(--white); }

/* ── Featured single product ── */
.p5-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 920px;
  margin: 0 auto;
}

.p5-feature-media {
  position: relative;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  width: 100%;
  border: none;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.p5-feature-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.p5-feature-media:hover .p5-feature-img { transform: scale(1.03); }

.p5-feature-zoomhint {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--off-white);
  background: rgba(10, 10, 10, 0.7);
  padding: 6px 10px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.p5-feature-media:hover .p5-feature-zoomhint { opacity: 1; }

.p5-feature-tag {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  background: #0a0a0a;
  padding: 9px 16px;
}

.p5-feature-info {
  background: var(--bg-alt);
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
}

.p5-feature-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gray);
  margin-bottom: 18px;
}

.p5-feature-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 22px;
}

.p5-feature-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 24px;
}

.p5-feature-specs {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.p5-feature-specs li {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.92;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.p5-feature-buy {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.p5-feature-price {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.03em;
  color: var(--white);
}

/* ── Size + quantity selectors ── */
.p5-options {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 6px;
}

.p5-opt {
  display: flex;
  flex-direction: column;
}

.p5-size-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 10px;
}

.p5-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Quantity stepper */
.p5-qty {
  display: inline-flex;
  align-items: stretch;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.p5-qty-btn {
  width: 40px;
  background: transparent;
  border: none;
  color: var(--off-white);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.p5-qty-btn:hover { background: var(--white); color: #0a0a0a; }

.p5-qty-val {
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.p5-size {
  min-width: 46px;
  padding: 11px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--off-white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.p5-size:hover { border-color: var(--white); color: var(--white); }
.p5-size.is-active {
  background: var(--white);
  border-color: var(--white);
  color: #0a0a0a;
}

.p5-size-row.needs-pick { animation: sizeShake 0.4s ease; }
.p5-size-row.needs-pick .p5-size { border-color: rgba(255, 110, 110, 0.85); }
@keyframes sizeShake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

.p5-size-hint {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ff7a7a;
  min-height: 14px;
  margin-bottom: 18px;
  opacity: 0;
  transition: opacity 0.15s;
}
.p5-size-hint.show { opacity: 1; }

/* Size chip shown in the cart line */
.cart-item-size {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  background: var(--white);
  color: #0a0a0a;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

/* ─────────────────────────────────────────
   COLLECTIONS
───────────────────────────────────────── */

.p5-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.p5-collection {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.p5-col-img {
  aspect-ratio: 16/9;
  transition: opacity 0.2s;
}

.p5-collection:hover .p5-col-img { opacity: 0.85; }

.p5-col-info {
  padding: 20px 24px;
  background: #0f0f0f;
  border-left: 3px solid var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.15s, border-left-width 0.1s;
}

.p5-collection:hover .p5-col-info {
  background: #181818;
  border-left-width: 5px;
}

.p5-col-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

.p5-col-name {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── Coming soon placeholder ── */
.p5-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  padding: 60px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-alt);
}

.p5-soon-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gray);
  margin-bottom: 20px;
}

.p5-soon-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 104px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 18px;
}

.p5-soon-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--off-white);
  opacity: 0.85;
  letter-spacing: 0.02em;
  max-width: 360px;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */

.p5-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.p5-about-item {
  background: var(--bg);
  padding: 36px 28px;
  border-top: 3px solid var(--white);
  transition: background 0.15s;
}

.p5-about-item:hover { background: #111; }

.p5-about-num {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.p5-about-item h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.p5-about-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  opacity: 0.85;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

.p5-footer {
  border-top: 2px solid var(--white);
  padding: 28px 7vw;
  background: #050505;
}

.p5-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.p5-footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.p5-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.p5-footer-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.15s;
}

.p5-footer-links a:hover { color: var(--white); }

.p5-footer-copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray);
  opacity: 0.45;
}

/* ─────────────────────────────────────────
   SHOPPING CART
───────────────────────────────────────── */

.p5-cart-btn {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  line-height: 0;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
  transition: transform 0.15s, filter 0.15s;
}

.p5-cart-btn:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 11px rgba(255, 255, 255, 0.9));
}

.p5-cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0a0a0a;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border-radius: 9px;
}

.p5-cart-count.is-show { display: flex; }

.p5-cart-btn.bump { animation: cartBump 0.4s ease; }
@keyframes cartBump {
  0%, 100% { transform: scale(1); }
  35%      { transform: scale(1.28); }
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 1000;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 360px;
  max-width: 88vw;
  background: #0d0d0d;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--white);
}

.cart-close {
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s;
}
.cart-close:hover { color: var(--white); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

.cart-empty {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-align: center;
  padding: 48px 0;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.cart-item-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--off-white);
  opacity: 0.6;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.15s;
}
.cart-item-remove:hover { color: var(--white); }

.cart-line-total {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

/* In-cart quantity stepper */
.cart-qty {
  display: inline-flex;
  align-items: stretch;
  width: max-content;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cart-qty-btn {
  width: 28px;
  padding: 5px 0;
  background: transparent;
  border: none;
  color: var(--off-white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cart-qty-btn:hover { background: var(--white); color: #0a0a0a; }

.cart-qty-val {
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.cart-foot {
  padding: 20px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-total-row span:first-child {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--off-white);
}
.cart-total-row span:last-child {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
}

.cart-checkout {
  display: block;
  text-align: center;
  background: var(--white);
  color: #0a0a0a;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 14px;
  transition: opacity 0.15s;
}
.cart-checkout:hover { opacity: 0.85; }

/* ─────────────────────────────────────────
   PRODUCT ZOOM VIEWER
───────────────────────────────────────── */

.zoom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 10, 0.95);
  overflow: hidden;
  touch-action: none;
}
.zoom-lightbox.is-open { display: flex; }

.zoom-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.zoom-stage.is-zoomed   { cursor: grab; }
.zoom-stage.is-grabbing { cursor: grabbing; }

.zoom-img {
  max-width: 86vw;
  max-height: 86vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.12s ease;
  will-change: transform;
}
.zoom-img.no-transition { transition: none; }

.zoom-close {
  position: absolute;
  top: 20px;
  right: 26px;
  z-index: 2;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.zoom-close:hover { opacity: 1; }

.zoom-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zoom-ctrl {
  min-width: 52px;
  padding: 12px 18px;
  background: rgba(20, 20, 24, 0.92);
  border: none;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.zoom-ctrl--reset { font-size: 11px; letter-spacing: 0.2em; }
.zoom-ctrl:hover { background: var(--white); color: #0a0a0a; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

@media (max-width: 900px) {
  .p5-content    { flex-direction: column; padding: 80px 6vw 40px; gap: 40px; }
  .p5-right      { order: -1; }
  .p5-yinyang    { width: 360px; height: auto; transform: none; }
  .p5-about-grid { grid-template-columns: 1fr 1fr; }
  .p5-feature    { grid-template-columns: 1fr; max-width: 480px; }
  .p5-feature-media { min-height: 360px; }
  .p5-feature-title { font-size: 44px; }
}

@media (max-width: 640px) {
  .slide-nav         { gap: 12px; padding: 0 5vw; }
  .slide-nav-links   { gap: 14px; margin-left: 4px; }
  .slide-nav-link    { font-size: 10px; letter-spacing: 0.1em; }
  .p5-cards          { grid-template-columns: 1fr; }
  .p5-collections    { grid-template-columns: 1fr; }
  .p5-about-grid     { grid-template-columns: 1fr; }
  .p5-footer-inner   { flex-direction: column; text-align: center; }
}
