/* ============================================================
   WATER&Co. — Shop / Vol.I — Stillness
   Layered on top of styles.css. Same palette, same world.
   ============================================================ */

.shop-body { padding-top: 0; }
.nav a.active {
  color: var(--chrome-1);
  border-bottom: 1px solid var(--klein);
  padding-bottom: 4px;
}

/* ============================================================
   SHOP HERO
   ============================================================ */
.shop-hero {
  position: relative;
  min-height: 100vh;
  padding: 160px var(--pad) 120px;
  text-align: center;
  background-color: var(--ink);
  background-image:
    /* dark veil for text legibility */
    linear-gradient(180deg,
      rgba(3, 6, 15, 0.55) 0%,
      rgba(3, 6, 15, 0.35) 30%,
      rgba(3, 6, 15, 0.35) 70%,
      rgba(3, 6, 15, 0.65) 100%),
    /* cobalt blooms over the photo */
    radial-gradient(ellipse 50% 35% at 15% 20%, rgba(45, 110, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 80%, rgba(45, 110, 255, 0.14), transparent 60%),
    /* the photo */
    url('images/shop_hero_bra.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center 30%;
  background-repeat: no-repeat;
  background-attachment: scroll, scroll, scroll, scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* liquid layered semi-transparently over the hero photo */
.shop-hero > .hero-liquid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url('images/soon_overlay.gif') center / cover no-repeat;
  opacity: 0.35;
  mix-blend-mode: screen;
}
/* keep hero content above the liquid */
.shop-hero > .shop-mark,
.shop-hero > .shop-sub,
.shop-hero > .shop-coord { position: relative; z-index: 1; }

.shop-id {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 40px);
  margin-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  z-index: 2;
}
.shop-id .big-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(96px, 16vw, 240px);
  line-height: 0.78;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 30%, var(--klein) 75%, var(--klein-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 60px rgba(45, 110, 255, 0.40));
}
.shop-id-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: clamp(14px, 1.6vw, 28px);
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chrome-3);
  font-weight: 500;
}
.shop-id-meta .dim { color: var(--chrome-4); }
.shop-id-meta .sym { color: var(--klein-light); }

.shop-mark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.028em;
  margin-bottom: 56px;
  background: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 45%, var(--chrome-4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 50px rgba(45, 110, 255, 0.20));
}
.shop-mark em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cream) 0%, var(--klein-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.shop-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--chrome-3);
  line-height: 1.6;
  margin-bottom: 96px;
  max-width: 720px;
}
.shop-coord {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chrome-3);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-coord .dot,
.shop-coord .sym { color: var(--klein-light); }

/* ============================================================
   PRODUCT GRID — uses .frame / .frame-left / .frame-right
   from styles.css, with product-specific tweaks
   ============================================================ */
.shop-grid {
  background:
    radial-gradient(ellipse 50% 30% at 5% 5%,  rgba(45, 110, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 45% 30% at 95% 35%, rgba(45, 110, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 30% at 50% 70%, rgba(45, 110, 255, 0.12), transparent 60%),
    var(--ink-2);
  padding: 160px var(--pad) 200px;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.product { padding: 100px 0; }

/* Product image swatch — placeholder block in the colorway */
.product-img {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    0 50px 140px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px var(--rule-bold),
    inset 0 0 100px rgba(45, 110, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232, 236, 243, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 236, 243, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.product-img::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 35%, rgba(45, 110, 255, 0.22), transparent 60%);
  pointer-events: none;
}

/* SVG garment mockups — chic flat-lay style */
.garment {
  width: 60%;
  height: auto;
  max-height: 78%;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
.product-cap .garment   { width: 68%; max-height: 60%; }
.product-scarf .garment { width: 64%; max-height: 70%; }
.product-pin .garment   { width: 52%; max-height: 65%; }
.product-tote .garment  { width: 56%; max-height: 80%; }
.product-hoodie .garment, .product-crew .garment { width: 56%; max-height: 80%; }
.product-tee .garment   { width: 58%; max-height: 76%; }

/* Swatch stack — kept for legacy fallback, now unused */
.swatch-stack {
  display: flex;
  gap: 0;
  height: 60%;
  width: 30%;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 20px 60px -10px rgba(0, 0, 0, 0.8),
    0 0 0 1px var(--rule);
  position: relative;
  z-index: 1;
}
.swatch {
  flex: 1;
  background: var(--surface);
  position: relative;
}
.swatch::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 50%, rgba(0,0,0,0.25) 100%);
}

/* Colorway palette — matches the line palette */
.sw-void     { background: linear-gradient(165deg, #14182A 0%, #03060F 100%); }
.sw-cobalt   { background: linear-gradient(165deg, #3D7BFF 0%, #1F4FE8 100%); }
.sw-cream    { background: linear-gradient(165deg, #F5EAD0 0%, #D4C29A 100%); }
.sw-bone     { background: linear-gradient(165deg, #ECE5D6 0%, #BFB59E 100%); }
.sw-charcoal { background: linear-gradient(165deg, #3A4150 0%, #1B202E 100%); }
.sw-natural  { background: linear-gradient(165deg, #D9CBA8 0%, #A8987A 100%); }
.sw-chrome   { background: linear-gradient(165deg, #FFFFFF 0%, #C9D2E0 40%, #6F7888 100%); }

.img-label {
  position: absolute;
  bottom: 22px; left: 24px;
  font-family: 'Inter', 'SF Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome-4);
  z-index: 2;
}

/* Product-specific visual tweaks (placeholder differentiation) */
.product-hoodie .swatch-stack { height: 70%; }
.product-tee .swatch-stack    { height: 55%; }
.product-crew .swatch-stack   { height: 65%; }
.product-cap .swatch-stack    { height: 30%; width: 40%; flex-direction: row; }
.product-scarf .swatch-stack  { height: 50%; width: 50%; }
.product-tote .swatch-stack   { height: 65%; width: 45%; }
.product-pin .swatch-stack    { height: 25%; width: 25%; border-radius: 50%; }

/* Colorways list inside product card */
.colorways {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 24px;
  font-family: 'Inter', sans-serif;
}
.frame-right .colorways { justify-content: flex-end; }
.cw-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--chrome-4);
  margin-right: 6px;
}
.cw-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid var(--rule-bold);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cw-dot:hover {
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(45, 110, 255, 0.6);
}

/* Price */
.price {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: 0.04em;
  color: var(--chrome-1);
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.frame-right .price { justify-content: flex-end; }
.price-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--chrome-4);
  text-transform: uppercase;
}

/* Stock label on f-num */
.product .f-num {
  font-family: 'Inter', 'SF Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.30em;
}

/* ============================================================
   SHOP INFO — Materials / Drop / Next Volume
   ============================================================ */
.shop-info {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(45, 110, 255, 0.14), transparent 60%),
    var(--ink-3);
  padding: 160px var(--pad);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(48px, 6vw, 96px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.info-col {
  padding: 32px;
  background: rgba(19, 28, 46, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rule);
  position: relative;
}
.info-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--klein-light);
  box-shadow: 0 0 10px rgba(45, 110, 255, 0.7);
}
.info-h {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--klein-light);
  margin-bottom: 28px;
}
.info-body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--chrome-3);
}
.info-body em {
  color: var(--cream);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .shop-id { flex-direction: column; align-items: center; gap: 24px; }
  .shop-id-meta { text-align: center; padding-bottom: 0; align-items: center; }
  .shop-info { grid-template-columns: 1fr; }
  .product { padding: 60px 0; }
}
@media (max-width: 720px) {
  .shop-hero { padding: 130px var(--pad) 80px; }
  .colorways, .frame-right .colorways { justify-content: flex-start; }
  .frame-right .price { justify-content: flex-start; }
}

/* ============================================================
   COMING SOON — next volume teaser (full screen, after the hero)
   ============================================================ */
.shop-soon {
  position: relative;
  min-height: 100vh;
  padding: 160px var(--pad);
  text-align: center;
  background:
    radial-gradient(ellipse 50% 35% at 20% 25%, rgba(45, 110, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 75%, rgba(45, 110, 255, 0.12), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* keep all content above the animated overlay */
.shop-soon > * {
  position: relative;
  z-index: 2;
}
/* the cobalt liquid GIF, full-bleed behind the text */
.shop-soon > .soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/soon_overlay.gif') center / cover no-repeat;
}
/* dark veil over the GIF so the wordmark stays legible */
.shop-soon > .soon-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 92% 75% at 50% 50%,
    rgba(3, 6, 15, 0.55) 0%,
    rgba(3, 6, 15, 0.42) 52%,
    rgba(3, 6, 15, 0.68) 100%);
}
.soon-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--klein-light);
  margin-bottom: 40px;
}
.soon-mark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(64px, 12vw, 208px);
  line-height: 1.08;          /* room for the "g" descender (clip:text) */
  padding-bottom: 0.08em;
  letter-spacing: -0.028em;
  margin-bottom: 48px;
  background: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 45%, var(--chrome-4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 50px rgba(45, 110, 255, 0.22));
}
.soon-mark em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cream) 0%, var(--klein-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.soon-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 26px);
  color: var(--chrome-3);
  line-height: 1.6;
  margin-bottom: 80px;
  max-width: 700px;
}
.soon-coord {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--chrome-3);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.soon-coord .dot,
.soon-coord .sym { color: var(--klein-light); }

/* ============================================================
   FOOTER — carry the cobalt liquid through to the WATER&Co slide
   ============================================================ */
.shop-body .foot { position: relative; overflow: hidden; }
.shop-body .foot > .foot-liquid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url('images/soon_overlay.gif') center / cover no-repeat;
}
/* dark veil over the liquid so the wordmark + links stay legible */
.shop-body .foot > .foot-liquid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(3, 6, 15, 0.80) 0%,
    rgba(3, 6, 15, 0.62) 45%,
    rgba(3, 6, 15, 0.82) 100%);
}
/* keep footer content above the liquid */
.shop-body .foot > p,
.shop-body .foot > div:not(.foot-liquid) { position: relative; z-index: 1; }
