/* ============================================================
   ASCEND — Product Page & Cart Styles
   product.css · v20260624
   ============================================================ */

/* ── Product page base ── */
.product-page {
  background: #fff;
  color: #0a0a0a;
  font-family: "AcuminVariableConcept", "Helvetica Neue", sans-serif;
}

/* ── Product Nav ── */
.product-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}
.product-nav.is-dark {
  background: rgba(8,8,8,0.88);
  border-color: rgba(255,255,255,0.06);
}
.product-nav.is-dark .pnav-logo,
.product-nav.is-dark .pnav-back,
.product-nav.is-dark .cart-icon-btn { color: #f0ede8; }
.pnav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pnav-logo .nav-logo-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  /* Negro por defecto (fondo claro en producto) */
  filter: invert(1);
}
.product-nav.is-dark .pnav-logo .nav-logo-img {
  filter: none; /* blanco cuando el nav es oscuro */
}
.pnav-back {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s, opacity 0.2s;
}
.pnav-back:hover { opacity: 0.6; }
.pnav-actions { display: flex; align-items: center; gap: 1rem; }

/* ── Product Hero ── */
.product-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.product-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.product-hero-info {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 3.5rem;
  color: #f0ede8;
}
.product-hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(240,237,232,0.4);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 20px;
}
.product-hero-name {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.product-hero-scroll {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.product-hero-scroll::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ── Product Main Layout ── */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: start;
  position: sticky-parent;
}
.product-gallery {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
  background: #f4f1ed;
}
.product-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 3rem;
  box-sizing: border-box;
}
.product-gallery-thumbs {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.thumb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.thumb-dot.is-active { background: #0a0a0a; }

/* ── Product Info Panel ── */
.product-info {
  padding: 4rem 3.5rem 5rem;
}
.product-info-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4a882;
  margin-bottom: 1.2rem;
}
.product-info-name {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
}
.product-info-subtitle {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.product-info-price {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}
.product-info-price span {
  font-size: 0.85rem;
  color: #888;
  margin-left: 0.3rem;
  font-weight: 300;
}

/* ── Variants ── */
.variant-group { margin-bottom: 2rem; }
.variant-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.variant-label strong { color: #0a0a0a; }

/* Colors */
.color-options { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.color-swatch:hover { transform: scale(1.12); }
.color-swatch.is-selected {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0a0a0a;
}
/* ASCEND Brand Palette */
.color-swatch[data-color="Negro"]          { background: #000000; }
.color-swatch[data-color="Blanco"]         { background: #ffffff; border-color: #d0d0d0; }
.color-swatch[data-color="Azul Mineral"]   { background: #54627f; }
.color-swatch[data-color="Arena"]          { background: #ede2ca; border-color: #d4c9b0; }
.color-swatch[data-color="Verde Militar"]  { background: #656f70; }
.color-swatch[data-color="Gris"]           { background: #888989; }
.color-swatch[data-color="Blanco Mineral"] { background: #f1f2f0; border-color: #d0d1cf; }
.color-swatch[data-color="Tierra"]         { background: #7f685f; }
.color-swatch[data-color="Gris Mineral"]   { background: #656971; }
/* Legacy colors for backward compat */
.color-swatch[data-color="Oliva"]  { background: #5c6145; }
.color-swatch[data-color="Teal"]   { background: #2d6e7e; }
.color-swatch[data-color="Crema"]  { background: #f0ede8; border-color: #ddd; }
.color-swatch[data-color="Café"]   { background: #6b4c3b; }

/* Sizes */
.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  border: 1px solid #ddd;
  background: #fff;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  border-radius: 2px;
}
.size-btn:hover { border-color: #0a0a0a; }
.size-btn.is-selected { background: #0a0a0a; color: #f0ede8; border-color: #0a0a0a; }
.size-btn.is-unavailable { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* ── CTA Buttons ── */
.product-cta-group { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; }
.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: #0a0a0a;
  color: #f0ede8;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-add-cart:hover { background: #1a1a1a; }
.btn-add-cart:active { transform: scale(0.99); }
.btn-add-cart.is-loading { opacity: 0.6; cursor: wait; }

.btn-notify {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: transparent;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid #0a0a0a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-notify:hover { background: #0a0a0a; color: #f0ede8; }

.btn-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #888;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-wishlist:hover { color: #0a0a0a; }

/* ── Product details ── */
.product-details { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #eee; }
.product-details summary {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a0a0a;
  list-style: none;
  user-select: none;
}
.product-details summary::-webkit-details-marker { display: none; }
.product-details summary::after { content: "+"; font-size: 1rem; color: #888; transition: transform 0.2s; }
.product-details[open] summary::after { content: "−"; }
.product-details-body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
  padding: 0.5rem 0 1rem;
}
.product-details-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-details-body li {
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.product-details-body li::before { content: "—"; position: absolute; left: 0; color: #c4a882; }

/* ── Feature Sections ── */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
}
.product-feature.is-reversed { direction: rtl; }
.product-feature.is-reversed > * { direction: ltr; }
.feature-img-wrap {
  position: relative;
  overflow: hidden;
}
.feature-img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.feature-img-wrap:hover .feature-img { transform: scale(1.03); }
.feature-text-wrap {
  display: flex;
  align-items: center;
  padding: 5rem 4rem;
  background: #fff;
}
.feature-text-inner { max-width: 340px; }
.feature-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4a882;
  margin-bottom: 1.5rem;
}
.feature-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.feature-body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #555;
}
.feature-spec {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
  letter-spacing: 0.03em;
}
.feature-spec-item span:first-child { color: #888; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }

/* ── Full-bleed feature ── */
.feature-fullbleed {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-fullbleed-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}
.feature-fullbleed-text {
  position: relative;
  z-index: 2;
  color: #f0ede8;
  text-align: center;
  padding: 2rem;
}
.feature-fullbleed-quote {
  font-size: clamp(1.6rem, 4vw, 4rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 700px;
}

/* ── Editorial stat bar ── */
.product-stat-bar {
  background: #080808;
  color: #f0ede8;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item-num {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: #c4a882;
  display: block;
}
.stat-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.5);
  margin-top: 0.5rem;
  display: block;
}

/* ── Related products ── */
.product-related {
  padding: 5rem 2.5rem;
  background: #f4f1ed;
}
.related-title {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.related-card {
  text-decoration: none;
  color: #0a0a0a;
  display: block;
  transition: opacity 0.2s;
}
.related-card:hover { opacity: 0.75; }
.related-card-img {
  aspect-ratio: 3/4;
  background: #e8e4de;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1.5rem;
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-name { font-size: 0.88rem; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.related-card-price { font-size: 0.82rem; color: #888; }
.related-badge-soon {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #c4a882;
  color: #fff;
  padding: 0.2rem 0.6rem;
  margin-left: 0.5rem;
  border-radius: 2px;
  vertical-align: middle;
}

/* ============================================================
   CART DRAWER STYLES
   ============================================================ */

#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}
#cart-overlay.is-visible { opacity: 1; visibility: visible; }

#cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
#cart-drawer.is-open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.cart-title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}
#cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #0a0a0a;
  line-height: 1;
  padding: 0.25rem;
  transition: opacity 0.2s;
}
#cart-close:hover { opacity: 0.5; }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #888;
  text-align: center;
  padding: 2rem;
}
.cart-empty-icon { font-size: 2.5rem; opacity: 0.3; }
.cart-empty p { font-size: 0.88rem; }
.cart-shop-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid #0a0a0a;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.cart-shop-link:hover { opacity: 0.5; }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.cart-item-img {
  width: 72px;
  height: 90px;
  background: #f4f1ed;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.4rem; box-sizing: border-box; }
.cart-item-info { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.cart-item-name { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-variant { font-size: 0.72rem; color: #888; letter-spacing: 0.05em; margin: 0.2rem 0; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  border-radius: 2px;
}
.qty-btn:hover { background: #f4f1ed; }
.qty-num { font-size: 0.82rem; min-width: 18px; text-align: center; }
.cart-item-price { font-size: 0.85rem; font-weight: 400; }
.cart-item-remove {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.cart-item-remove:hover { color: #0a0a0a; }

.cart-footer {
  border-top: 1px solid #eee;
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cart-total-row { display: flex; justify-content: space-between; align-items: center; }
.cart-total-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #888; }
.cart-total-val { font-size: 1.2rem; font-weight: 400; }
.cart-shipping-note { font-size: 0.7rem; color: #aaa; letter-spacing: 0.04em; margin: 0; }
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.cart-checkout-btn:hover { background: #20bc5a; }
.checkout-icon { font-size: 0.9rem; }
.cart-continue-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s;
}
.cart-continue-btn:hover { color: #0a0a0a; }

/* ── Cart icon in nav ── */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.cart-icon-btn:hover { opacity: 0.6; }
.cart-badge {
  position: absolute;
  top: -2px; right: -4px;
  min-width: 16px;
  height: 16px;
  background: #c4a882;
  color: #fff;
  font-size: 0.6rem;
  font-family: inherit;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-weight: 600;
}

/* ── Toast ── */
#cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #0a0a0a;
  color: #f0ede8;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 2000;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s;
  white-space: nowrap;
  pointer-events: none;
}
#cart-toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-check { color: #c4a882; font-size: 0.9rem; }

/* ============================================================
   NOTIFY MODAL STYLES
   ============================================================ */

.notify-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}
.notify-overlay.is-visible { opacity: 1; visibility: visible; }

.notify-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.notify-modal.is-open { pointer-events: auto; opacity: 1; }
.notify-modal-inner {
  background: #fff;
  max-width: 440px;
  width: 100%;
  padding: 3rem 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.notify-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}
.notify-close:hover { color: #0a0a0a; }
.notify-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4a882;
  margin-bottom: 0.5rem;
}
.notify-product-name {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}
.notify-legal {
  font-size: 0.75rem;
  line-height: 1.65;
  color: #888;
  margin-bottom: 1.75rem;
}
.notify-legal a { color: #0a0a0a; }
.notify-form { display: flex; flex-direction: column; gap: 1rem; }
.notify-field { display: flex; flex-direction: column; gap: 0.35rem; }
.notify-field label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}
.notify-field input {
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: inherit;
  font-size: 0.88rem;
  color: #0a0a0a;
  transition: border-color 0.2s;
  border-radius: 0;
  outline: none;
}
.notify-field input:focus { border-color: #0a0a0a; background: #fff; }
.notify-submit {
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  background: #0a0a0a;
  color: #f0ede8;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.notify-submit:hover { background: #1e1e1e; }
.notify-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  gap: 0.75rem;
}
.notify-check {
  font-size: 2rem;
  color: #c4a882;
}
.notify-success h4 { font-size: 1.1rem; font-weight: 300; margin: 0; }
.notify-success p { font-size: 0.82rem; color: #888; margin: 0; }

/* ============================================================
   RESPONSIVE — PRODUCT PAGE
   ============================================================ */

@media (max-width: 1100px) {
  .product-stat-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .product-main { grid-template-columns: 1fr; }
  .product-gallery {
    position: relative;
    top: 0;
    height: 75vw;
    min-height: 320px;
  }
  .product-gallery-img { padding: 1.5rem; }
  .product-info { padding: 2.5rem 1.5rem 4rem; }
  .product-feature { grid-template-columns: 1fr; min-height: auto; }
  .product-feature.is-reversed { direction: ltr; }
  .feature-img { min-height: 55vw; }
  .feature-text-wrap { padding: 3rem 1.5rem; }
  .feature-text-inner { max-width: 100%; }
  .product-stat-bar { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .product-hero-info { padding: 0 1.5rem 2.5rem; }
  .product-nav { padding: 0 1.25rem; }
}

@media (max-width: 600px) {
  .product-stat-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2.5rem 1.25rem; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .feature-fullbleed { height: 60vw; min-height: 280px; }
  .feature-fullbleed-quote { font-size: 1.3rem; }
  #cart-drawer { width: 100vw; }
  .product-related { padding: 3.5rem 1.25rem; }
}
