/* =============================================================
   apparel.css — SinGram Apparel storefront styles.
   Dark luxury streetwear: black base, hot pink accents, glitter.
   Fonts: Cormorant Garamond (script sayings) + Bebas Neue (bold) + Satoshi (body)
   ============================================================= */

:root {
  --ap-bg:        #080808;
  --ap-bg-card:   #0d0d0d;
  --ap-bg-lift:   #141414;
  --ap-fg:        #f5f0eb;
  --ap-fg-muted:  #8a8078;
  --ap-pink:      #ff1493;
  --ap-pink-dim:  rgba(255,20,147,0.18);
  --ap-pink-glow: rgba(255,20,147,0.35);
  --ap-gold:      #d4af37;
  --ap-gold-dim:  rgba(212,175,55,0.12);
  --ap-white:     #ffffff;
  --ap-radius:    14px;
  --ap-radius-sm: 8px;
  --ap-font-script: 'Cormorant Garamond', serif;
  --ap-font-bold:   'Bebas Neue', sans-serif;
  --ap-font-body:   'Satoshi', 'Helvetica Neue', sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.apparel-body {
  background: var(--ap-bg);
  color: var(--ap-fg);
  font-family: var(--ap-font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── GLITTER TEXTURE OVERLAY ─── */
.apparel-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,20,147,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV ─── */
.ap-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ap-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ap-font-script);
  font-size: 22px;
  font-weight: 600;
  color: var(--ap-fg);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.ap-nav-brand:hover { color: var(--ap-pink); }

.ap-lips-icon { font-size: 18px; }

/* Brand logo image — shown in nav + footer when generated */
.ap-brand-logo-img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,20,147,0.3);
  box-shadow: 0 0 10px rgba(255,20,147,0.25);
  transition: box-shadow 0.2s;
}
.ap-nav-brand:hover .ap-brand-logo-img {
  box-shadow: 0 0 18px rgba(255,20,147,0.55);
}
.ap-footer-logo-img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,20,147,0.25);
  box-shadow: 0 0 14px rgba(255,20,147,0.2);
  margin-bottom: 4px;
}

.ap-nav-links {
  display: flex;
  gap: 28px;
}
.ap-nav-links a {
  color: var(--ap-fg-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.ap-nav-links a:hover { color: var(--ap-pink); }

.ap-nav-back {
  color: var(--ap-fg-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.ap-nav-back:hover { color: var(--ap-fg); }

.ap-nav-sale { color: var(--ap-pink) !important; font-weight: 700 !important; }

.ap-nav-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ap-nav-icon {
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.ap-nav-icon:hover { opacity: 1; }

/* ─── BOUTIQUE HERO ─── */
.ap-hero-boutique {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ap-hero-editorial {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 88vh;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  gap: 64px;
}

/* Left: brand text */
.ap-hero-text {
  position: relative;
  z-index: 1;
}

.ap-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ap-pink);
  margin-bottom: 28px;
  font-weight: 500;
}

.ap-hero-headline {
  font-family: var(--ap-font-script);
  font-size: clamp(4.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ap-fg);
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.ap-hero-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--ap-pink);
  display: block;
}

.ap-hero-desc {
  font-size: 15px;
  color: var(--ap-fg-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 340px;
  font-weight: 300;
}

.ap-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ap-fg);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  transition: all 0.25s ease;
}
.ap-cta-link:hover {
  color: var(--ap-pink);
  border-color: var(--ap-pink);
  gap: 16px;
}
.ap-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.ap-cta-link:hover .ap-cta-arrow { transform: translateY(3px); }

/* Right: model collage */
.ap-hero-collage {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 720px;
}

/* Single boutique hero image (full-width landscape shot) */
.ap-hero-single {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.ap-hero-single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ap-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 100%;
}

.ap-collage-cell {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.ap-collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.ap-collage-cell:hover img { transform: scale(1.04); }

/* First cell spans full height on left */
.ap-collage-cell--1 {
  grid-row: 1 / 3;
}

.ap-collage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-family: var(--ap-font-script);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ap-collage-cell:hover .ap-collage-caption { opacity: 1; }

/* Info strip below hero */
.ap-hero-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 40px;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  color: var(--ap-fg-muted);
  letter-spacing: 0.5px;
}
.ap-strip-dot { color: rgba(255,255,255,0.15); }

/* Placeholder for when no model images exist */
.ap-hero-placeholder {
  height: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255,20,147,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-hero-placeholder-text {
  font-family: var(--ap-font-script);
  font-size: 42px;
  font-style: italic;
  color: var(--ap-fg);
  text-align: center;
  padding: 32px;
  text-shadow: 0 0 40px rgba(255,20,147,0.3);
}

/* Sparkle overlay (kept for product detail page) */
.ap-sparkle-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.12) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgba(255,20,147,0.2) 1px, transparent 1px),
    radial-gradient(circle at 20% 70%, rgba(212,175,55,0.12) 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(255,20,147,0.15) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px, 90px 90px, 70px 70px, 50px 50px, 110px 110px;
  animation: sparkleShimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sparkleShimmer {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ─── BUTTONS ─── */
.ap-btn-primary {
  display: inline-block;
  background: var(--ap-pink);
  color: #000;
  font-family: var(--ap-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--ap-radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(255,20,147,0.3);
}
.ap-btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,20,147,0.4);
}
.ap-btn-full { width: 100%; text-align: center; display: block; }

.ap-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ap-fg);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--ap-radius-sm);
  text-decoration: none;
  transition: all 0.25s ease;
}
.ap-btn-secondary:hover {
  border-color: var(--ap-pink);
  color: var(--ap-pink);
}

/* ─── FILTER BAR — minimal elegant pills ─── */
.ap-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 36px 40px 20px;
  position: relative;
  z-index: 1;
}

.ap-tier-pill {
  padding: 7px 22px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.ap-tier-pill:hover {
  border-color: rgba(255,20,147,0.3);
  color: var(--ap-fg);
}
.ap-tier-pill.active {
  border-color: var(--ap-pink);
  color: var(--ap-pink);
  background: rgba(255,20,147,0.06);
}

/* ─── BOUTIQUE PRODUCT GRID ─── */
.ap-grid-section {
  padding: 16px 32px 80px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ap-boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Card wrapper: holds image card + Add to Cart button */
.ap-boutique-card-wrap {
  display: flex;
  flex-direction: column;
}

/* Add to Cart button */
.ap-add-to-cart-btn {
  display: block;
  width: 100%;
  background: var(--ap-bg-lift);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ap-fg);
  font-family: var(--ap-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  border-radius: 0 0 var(--ap-radius-sm) var(--ap-radius-sm);
  transition: all 0.25s ease;
  margin-top: -1px; /* slight overlap with card bottom */
}
.ap-add-to-cart-btn:hover {
  background: var(--ap-pink);
  border-color: var(--ap-pink);
  color: #000;
}

/* Each card: image is the star */
.ap-boutique-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.ap-boutique-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;  /* portrait — full-body model shot */
  background: #0a0a0a;
}

.ap-boutique-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ap-boutique-card:hover .ap-boutique-img {
  transform: scale(1.05);
}

/* Hover overlay */
.ap-boutique-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  transition: background 0.3s ease;
  pointer-events: none;
}
.ap-boutique-card:hover .ap-boutique-overlay {
  background: rgba(0,0,0,0.28);
}

.ap-overlay-action {
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  display: inline-block;
}
.ap-boutique-card:hover .ap-overlay-action {
  opacity: 1;
  transform: translateY(0);
}

/* Tier badge floating on image — top left */
.ap-floating-tier {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.ap-tier-innuendo  { background: rgba(0,0,0,0.55); color: var(--ap-pink); border: 1px solid rgba(255,20,147,0.3); }
.ap-tier-attitude  { background: rgba(0,0,0,0.55); color: var(--ap-gold); border: 1px solid rgba(212,175,55,0.3); }
.ap-tier-one-liner { background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.12); }
.ap-tier-statement { background: rgba(0,0,0,0.7); color: var(--ap-pink); border: 1px solid rgba(255,20,147,0.5); }
.ap-tier-whisper   { background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }

/* Placeholder when no model image */
.ap-boutique-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0d0d0d;
}

.ap-placeholder-lips {
  font-size: 42px;
  opacity: 0.4;
  animation: sparkleShimmer 3s ease-in-out infinite;
}

/* Caption below image */
.ap-boutique-caption {
  padding: 14px 4px 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.ap-caption-saying {
  font-size: 13px;
  color: var(--ap-fg-muted);
  line-height: 1.4;
  flex: 1;
  margin: 0;
}
.caption-script {
  font-family: var(--ap-font-script);
  font-style: italic;
  font-size: 15px;
  color: var(--ap-fg);
}
.caption-bold {
  font-family: var(--ap-font-bold);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ap-fg);
}

.ap-caption-price {
  font-size: 13px;
  color: var(--ap-fg-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── SAYING TYPOGRAPHY (product detail page) ─── */
.saying-script {
  font-family: var(--ap-font-script);
  font-style: italic;
  font-size: 26px;
  color: var(--ap-white);
  line-height: 1.2;
  text-shadow:
    0 0 15px rgba(255,20,147,0.4),
    0 0 30px rgba(255,20,147,0.2);
}

.saying-bold {
  font-family: var(--ap-font-bold);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--ap-white);
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow:
    0 0 15px rgba(255,255,255,0.15),
    0 0 30px rgba(255,20,147,0.2);
}

/* ─── TIER BADGE (product detail page) ─── */
.ap-tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ─── POD STRIP (minimal) ─── */
.ap-pod-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 0;
  font-size: 12px;
  color: var(--ap-fg-muted);
  position: relative;
  z-index: 1;
}
.ap-pod-link {
  color: var(--ap-pink);
  text-decoration: none;
  transition: opacity 0.2s;
}
.ap-pod-link:hover { opacity: 0.7; }

/* Legacy product info classes kept for product detail page */
.ap-product-info { padding: 20px 22px; }
.ap-product-tagline { font-size: 13px; color: var(--ap-fg-muted); line-height: 1.5; margin-bottom: 16px; }
.ap-product-footer { display: flex; justify-content: space-between; align-items: center; }
.ap-product-price { font-size: 18px; font-weight: 700; color: var(--ap-fg); }
.ap-product-styles { font-size: 11px; color: var(--ap-fg-muted); text-transform: uppercase; letter-spacing: 1px; }
.ap-tee-graphic { position: relative; z-index: 1; text-align: center; padding: 20px; }
.ap-glitter-dots { display: none; }
.ap-product-tee {
  background: #0a0a0a;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ap-product-card {
  background: var(--ap-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--ap-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: block;
}

/* ─── PRODUCT DETAIL PAGE ─── */
.ap-product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 60px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
  gap: 64px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.ap-preview-panel {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ap-preview-tee {
  width: 100%;
  max-width: 360px;
  height: 400px;
  background: #0a0a0a;
  border: 1px solid rgba(255,20,147,0.12);
  border-radius: var(--ap-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(255,20,147,0.05);
}
.ap-preview-tee .ap-sparkle-overlay { z-index: 0; }

.ap-preview-saying {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
  max-width: 320px;
}
.ap-preview-saying.saying-script { font-size: 34px; }
.ap-preview-saying.saying-bold   { font-size: 28px; }

.ap-preview-garment-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ap-fg-muted);
}

.ap-detail-panel {
  padding-top: 8px;
}

.ap-product-title {
  font-family: var(--ap-font-script);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--ap-fg);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.ap-product-desc {
  font-size: 16px;
  color: var(--ap-fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ap-price-display {
  font-size: 36px;
  font-weight: 700;
  color: var(--ap-fg);
  margin-bottom: 28px;
}

/* ─── SELECTORS ─── */
.ap-selector-group { margin-bottom: 28px; }

.ap-selector-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ap-fg-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.ap-garment-options, .ap-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ap-garment-btn, .ap-size-btn {
  background: var(--ap-bg-lift);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ap-fg-muted);
  padding: 10px 18px;
  border-radius: var(--ap-radius-sm);
  cursor: pointer;
  font-family: var(--ap-font-body);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.ap-garment-btn:hover, .ap-size-btn:hover {
  border-color: rgba(255,20,147,0.4);
  color: var(--ap-fg);
}
.ap-garment-btn.active, .ap-size-btn.active {
  border-color: var(--ap-pink);
  color: var(--ap-pink);
  background: var(--ap-pink-dim);
}
.ap-garment-price {
  font-size: 11px;
  color: inherit;
  opacity: 0.7;
}

.ap-size-btn { padding: 10px 16px; min-width: 52px; text-align: center; align-items: center; }

.ap-size-note {
  font-size: 12px;
  color: var(--ap-fg-muted);
  margin-top: 8px;
}

.ap-order-note {
  font-size: 12px;
  color: var(--ap-fg-muted);
  text-align: center;
  margin-top: 12px;
}

/* ─── ACCORDION ─── */
.ap-product-details { margin-top: 32px; }

.ap-detail-accordion {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ap-detail-accordion:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }

.ap-detail-accordion summary {
  padding: 16px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ap-fg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ap-detail-accordion summary::after {
  content: '+';
  font-size: 20px;
  color: var(--ap-fg-muted);
  transition: transform 0.2s;
}
.ap-detail-accordion[open] summary::after {
  transform: rotate(45deg);
  color: var(--ap-pink);
}

.ap-detail-content {
  padding: 0 0 20px;
  font-size: 13px;
  color: var(--ap-fg-muted);
  line-height: 1.7;
}
.ap-detail-content ul { padding-left: 20px; }
.ap-detail-content li { margin-bottom: 4px; }

/* ─── ORDER FORM PAGE ─── */
.ap-order-page {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: calc(100vh - 60px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 40px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.ap-order-summary {
  position: sticky;
  top: 100px;
  background: var(--ap-bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--ap-radius);
  padding: 28px;
}

.ap-order-preview-tee {
  background: #0a0a0a;
  border-radius: var(--ap-radius-sm);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.ap-order-preview-tee::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,20,147,0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px, 30px 30px;
  animation: sparkleShimmer 3s ease-in-out infinite;
}
.ap-order-saying {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 16px;
}
.ap-order-saying.saying-script { font-size: 20px; }
.ap-order-saying.saying-bold   { font-size: 16px; }

.ap-order-detail-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ap-fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ap-order-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--ap-fg);
  padding: 14px 0 0;
  margin-top: 4px;
}
.ap-order-summary-note {
  font-size: 11px;
  color: var(--ap-fg-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.ap-order-form-panel { padding-top: 4px; }

.ap-order-title {
  font-family: var(--ap-font-script);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ap-fg);
  margin-bottom: 8px;
}
.ap-order-subtitle {
  font-size: 14px;
  color: var(--ap-fg-muted);
  margin-bottom: 32px;
}

.ap-order-form { display: flex; flex-direction: column; gap: 16px; }

.ap-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ap-form-row--3 {
  grid-template-columns: 2fr 1fr 1fr;
}
.ap-form-group--sm {}

.ap-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ap-form-group label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ap-fg-muted);
  font-weight: 600;
}
.ap-form-group input {
  background: var(--ap-bg-lift);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ap-radius-sm);
  padding: 12px 16px;
  color: var(--ap-fg);
  font-family: var(--ap-font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.ap-form-group input::placeholder { color: var(--ap-fg-muted); opacity: 0.6; }
.ap-form-group input:focus { border-color: var(--ap-pink); }

.ap-btn-checkout { margin-top: 8px; padding: 16px 32px; font-size: 15px; }

.ap-checkout-note {
  font-size: 12px;
  color: var(--ap-fg-muted);
  text-align: center;
  margin-top: 10px;
}

/* ─── SUCCESS PAGE ─── */
.ap-success-page {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.ap-success-icon {
  font-size: 56px;
  margin-bottom: 24px;
  animation: successBounce 0.6s ease;
}
@keyframes successBounce {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.ap-success-title {
  font-family: var(--ap-font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--ap-fg);
  margin-bottom: 20px;
}
.ap-success-error { color: var(--ap-fg-muted); }

.ap-success-sub {
  font-size: 18px;
  color: var(--ap-fg);
  margin-bottom: 12px;
}
.ap-success-detail {
  font-size: 15px;
  color: var(--ap-fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.ap-success-detail a { color: var(--ap-pink); }

.ap-success-glitter {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ap-pink), transparent);
  border-radius: 2px;
  margin: 28px auto;
  animation: sparkleShimmer 2s ease-in-out infinite;
}

/* ─── POD NOTE (legacy — kept for backward compat) ─── */
.ap-pod-note { display: none; }

/* ─── FOOTER ─── */
.ap-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.ap-footer-brand {
  font-family: var(--ap-font-script);
  font-size: 26px;
  color: var(--ap-fg);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ap-footer-sub {
  font-size: 13px;
  color: var(--ap-fg-muted);
  margin-bottom: 8px;
  font-style: italic;
}
.ap-footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .ap-hero-editorial {
    grid-template-columns: 360px 1fr;
    gap: 40px;
    padding: 64px 40px 48px;
  }
  .ap-boutique-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 900px) {
  /* Hero becomes stacked: collage on top, text below */
  .ap-hero-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0;
    gap: 0;
    min-height: auto;
  }
  .ap-hero-collage {
    order: -1;
    height: 55vw;
    min-height: 260px;
    max-height: 420px;
  }
  .ap-hero-text {
    padding: 40px 28px 32px;
    text-align: center;
  }
  .ap-hero-desc { margin-left: auto; margin-right: auto; }
  .ap-cta-link { margin: 0 auto; }

  .ap-hero-headline { font-size: clamp(3.2rem, 10vw, 5.5rem); }

  /* Product grid: 2 columns on tablet */
  .ap-boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ap-grid-section { padding: 12px 20px 60px; }
  .ap-filter-bar { padding: 28px 20px 16px; }
  .ap-nav-icons { display: none; }

  .ap-product-page {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .ap-preview-panel { position: static; }
  .ap-preview-tee { max-width: 100%; height: 280px; }

  .ap-order-page {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .ap-order-summary { position: static; }

  .ap-nav { padding: 14px 20px; }
  .ap-nav-links { display: none; }

  .ap-hero-strip { padding: 16px 20px; gap: 12px; font-size: 11px; }
  .ap-strip-dot { display: none; }
}

@media (max-width: 500px) {
  /* Single column on mobile */
  .ap-boutique-grid { grid-template-columns: 1fr; gap: 0; }
  .ap-boutique-caption { padding: 12px 4px 20px; }

  .ap-form-row { grid-template-columns: 1fr; }
  .ap-form-row--3 { grid-template-columns: 1fr 1fr; }
  .ap-hero-headline { font-size: clamp(3rem, 14vw, 4.5rem); }
  .ap-hero-collage { height: 70vw; }

  .ap-pod-strip { flex-direction: column; gap: 8px; text-align: center; padding: 24px 20px; }
}

/* ─── NAV ACTIVE LINK ─── */
.ap-nav-active {
  color: var(--ap-pink) !important;
}

/* ─── HERO CTA ROW ─── */
.ap-hero-ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ap-cta-secondary {
  color: var(--ap-fg-muted);
  border-color: rgba(255,255,255,0.1);
}
.ap-cta-secondary:hover {
  color: var(--ap-pink);
  border-color: var(--ap-pink);
}

/* ─── HERO PLACEHOLDER (text-only fallback) ─── */
.ap-hero-placeholder-brand {
  font-size: 1em;
}
.ap-hero-placeholder-sub {
  font-size: 14px;
  color: var(--ap-fg-muted);
  font-family: var(--ap-font-body);
  margin-top: 12px;
  letter-spacing: 1px;
}

/* ─── SECTION HEADERS ─── */
.ap-section-header {
  text-align: center;
  padding: 72px 40px 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.ap-section-title {
  font-family: var(--ap-font-script);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ap-fg);
  margin-bottom: 12px;
}

.ap-section-sub {
  font-size: 15px;
  color: var(--ap-fg-muted);
  line-height: 1.7;
}

/* ─── SHIRT COLLECTIONS SECTION ─── */
.ap-collections-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative;
  z-index: 1;
}

.ap-collection-block {
  margin-bottom: 72px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 48px;
}

/* Collection header row */
.ap-collection-header {
  margin-bottom: 28px;
}

.ap-collection-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ap-collection-lip-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.ap-collection-name {
  font-family: var(--ap-font-script);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ap-fg);
  margin: 0;
}

.ap-collection-tagline {
  font-size: 13px;
  color: var(--ap-fg-muted);
  margin: 0;
  font-style: italic;
  white-space: nowrap;
}

.ap-collection-header-line {
  height: 1px;
  border-radius: 1px;
  margin-bottom: 0;
  width: 100%;
  max-width: 480px;
}

/* Collection product grid — 3 columns */
.ap-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.ap-collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.ap-collection-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0a0a0a;
}

.ap-collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ap-collection-card:hover .ap-collection-img { transform: scale(1.05); }

.ap-collection-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: #0d0d0d;
}

.ap-placeholder-lips {
  font-size: 32px;
}

.ap-placeholder-saying {
  text-align: center;
  font-size: 16px;
}

.ap-collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  transition: background 0.3s ease;
  pointer-events: none;
}
.ap-collection-card:hover .ap-collection-overlay { background: rgba(0,0,0,0.28); }

.ap-collection-caption {
  padding: 14px 4px 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

/* Style badge (block/script/gothic/mixed) */
.ap-style-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.55);
}
.ap-style-block,  .ap-style-badge--bold   { color: var(--ap-pink); border: 1px solid rgba(255,20,147,0.3); }
.ap-style-script, .ap-style-badge--script { color: #f9c5d1; border: 1px solid rgba(249,197,209,0.3); }
.ap-style-gothic, .ap-style-badge--gothic { color: #b39ddb; border: 1px solid rgba(179,157,219,0.3); }
.ap-style-mixed,  .ap-style-badge--mixed  { color: var(--ap-gold); border: 1px solid rgba(212,175,55,0.3); }

/* Collection CTA */
.ap-collection-cta {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* Collection "Shop" button row */
.ap-collection-cta-row {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.ap-collection-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ap-fg);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  transition: all 0.25s ease;
}
.ap-collection-shop-btn:hover {
  color: var(--ap-pink);
  border-color: var(--ap-pink);
}

/* Card overlay (hover "View →") */
.ap-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.ap-card-overlay span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ap-collection-card:hover .ap-card-overlay { background: rgba(0,0,0,0.3); }
.ap-collection-card:hover .ap-card-overlay span { opacity: 1; }
.ap-shorts-card:hover .ap-card-overlay { background: rgba(0,0,0,0.3); }
.ap-shorts-card:hover .ap-card-overlay span { opacity: 1; }

/* Saying style: gothic variant */
.saying-gothic {
  font-family: var(--ap-font-bold);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b39ddb;
}
.caption-gothic {
  font-family: var(--ap-font-bold);
  color: #b39ddb;
  letter-spacing: 1px;
}

/* ─── COLLECTION BADGES (product detail page) ─── */
.ap-collection-badge--dramatic-lips   { background: rgba(0,0,0,0.55); color: var(--ap-pink); border: 1px solid rgba(255,20,147,0.3); }
.ap-collection-badge--cursive-cravings { background: rgba(0,0,0,0.55); color: #ff69b4; border: 1px solid rgba(255,105,180,0.3); }
.ap-collection-badge--gothic-glam     { background: rgba(0,0,0,0.55); color: #b39ddb; border: 1px solid rgba(179,157,219,0.3); }
.ap-collection-badge--rhinestone-rules { background: rgba(0,0,0,0.55); color: var(--ap-gold); border: 1px solid rgba(212,175,55,0.3); }

/* Shorts denim label in placeholder */
.ap-shorts-denim-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ap-fg-muted);
  margin-top: 8px;
}
.ap-shorts-saying-text {
  font-size: 14px;
}

/* ─── PREVIEW COLLECTION BADGE (product detail page) ─── */
.ap-preview-collection-badge {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--ap-fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─── SHORTS BADGE (product detail page) ─── */
.ap-shorts-collection-badge {
  background: rgba(0,0,0,0.55);
  color: var(--ap-gold);
  border: 1px solid rgba(212,175,55,0.3);
}

/* ─── SINFUL SHORTS DROP — tier badges + garment callouts ─── */

/* Tier badge on product cards */
.ap-shorts-tier-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 600;
  pointer-events: none;
  z-index: 2;
}
.ap-shorts-tier-badge--statement { background: rgba(255,20,147,0.18); color: var(--ap-pink); border: 1px solid rgba(255,20,147,0.3); }
.ap-shorts-tier-badge--attitude  { background: rgba(212,175,55,0.15);  color: var(--ap-gold);  border: 1px solid rgba(212,175,55,0.3); }
.ap-shorts-tier-badge--whisper   { background: rgba(255,255,255,0.06); color: var(--ap-fg-muted); border: 1px solid rgba(255,255,255,0.12); }

/* Tier badge on detail page */
.ap-tier-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 12px;
}
.ap-tier-badge--statement { background: rgba(255,20,147,0.12); color: var(--ap-pink); border: 1px solid rgba(255,20,147,0.25); }
.ap-tier-badge--attitude  { background: rgba(212,175,55,0.1);  color: var(--ap-gold);  border: 1px solid rgba(212,175,55,0.25); }
.ap-tier-badge--whisper   { background: rgba(255,255,255,0.04); color: var(--ap-fg-muted); border: 1px solid rgba(255,255,255,0.1); }
.ap-tier-badge-hot { color: var(--ap-pink); }

/* Garment callout row on shop page */
.ap-shorts-garment-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto 24px;
  padding: 0 0 8px;
}
.ap-shorts-garment-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  border-radius: var(--ap-radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--ap-bg-card);
  font-size: 13px;
  color: var(--ap-fg-muted);
  text-align: center;
  min-width: 180px;
}
.ap-shorts-garment-chip--hero {
  border-color: rgba(255,20,147,0.3);
  background: rgba(255,20,147,0.04);
}
.ap-shorts-garment-name {
  font-family: var(--ap-font-bold);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--ap-fg);
  text-transform: uppercase;
}
.ap-shorts-garment-desc { font-size: 11px; letter-spacing: 0.5px; }
.ap-hero-badge {
  font-size: 10px;
  background: var(--ap-pink-dim);
  color: var(--ap-pink);
  border: 1px solid rgba(255,20,147,0.3);
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Tier legend row on shop page */
.ap-shorts-tier-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto 32px;
}
.ap-shorts-tier-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: var(--ap-fg-muted);
}
.ap-shorts-tier-name { font-weight: 600; color: var(--ap-fg); }
.ap-shorts-tier-price { color: var(--ap-pink); font-weight: 700; }
.ap-tier-hot-badge {
  background: var(--ap-pink-dim);
  color: var(--ap-pink);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Hero dot on garment selector button in detail page */
.ap-garment-hero-dot {
  color: var(--ap-pink);
  font-size: 12px;
  margin-right: 2px;
}

/* ─── SHORTS SECTION ─── */
.ap-shorts-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 32px 80px;
  position: relative;
  z-index: 1;
}

.ap-shorts-header {
  text-align: center;
  padding-top: 72px;
  padding-bottom: 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.ap-shorts-header-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ap-shorts-styles-note {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ap-shorts-style-chip {
  font-size: 12px;
  color: var(--ap-fg-muted);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Shorts product grid — 4 or 5 columns */
.ap-shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.ap-shorts-card {
  position: relative;
}

.ap-shorts-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0d0d0d;
}

.ap-shorts-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ap-shorts-card:hover .ap-shorts-img { transform: scale(1.04); }

.ap-shorts-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: #0d0d0d;
  text-align: center;
}

.ap-shorts-placeholder-icon {
  font-size: 24px;
  opacity: 0.6;
}

.ap-shorts-placeholder-text {
  font-size: 12px;
  line-height: 1.3;
  color: var(--ap-fg);
}

.ap-shorts-placeholder-styles {
  display: flex;
  gap: 6px;
  font-size: 10px;
  color: var(--ap-fg-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.ap-shorts-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  transition: background 0.3s ease;
  pointer-events: none;
}
.ap-shorts-card:hover .ap-shorts-overlay { background: rgba(0,0,0,0.3); }

.ap-shorts-caption {
  padding: 12px 0 20px;
}

.ap-shorts-saying {
  font-size: 12px;
  color: var(--ap-fg-muted);
  line-height: 1.3;
  margin: 0 0 8px;
  font-style: italic;
}

.ap-shorts-style-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ap-shorts-chip {
  display: inline-block;
  font-size: 10px;
  color: var(--ap-fg-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.ap-shorts-chip:hover {
  border-color: var(--ap-pink);
  color: var(--ap-pink);
}

/* ─── SHORTS DETAIL PAGE ─── */
.ap-shorts-detail-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.ap-shorts-detail-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--ap-radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}

.ap-shorts-detail-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.ap-shorts-detail-img-label {
  font-size: 11px;
  text-align: center;
  color: var(--ap-fg-muted);
  padding: 6px 0;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── RESPONSIVE — COLLECTIONS/SHORTS ─── */
@media (max-width: 1100px) {
  .ap-shorts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .ap-collection-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ap-collection-header-inner { flex-wrap: wrap; }
  .ap-collection-tagline { display: none; }
  .ap-shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ap-collections-section { padding: 0 20px 60px; }
  .ap-shorts-section { padding: 0 20px 60px; }
  .ap-section-header { padding: 56px 24px 24px; }
  .ap-shorts-header { padding-top: 56px; }
}

@media (max-width: 500px) {
  .ap-collection-grid { grid-template-columns: 1fr; gap: 0; }
  .ap-collection-caption { padding: 10px 4px 16px; }
  .ap-shorts-grid { grid-template-columns: 1fr; gap: 0; }
  .ap-shorts-caption { padding: 10px 0 16px; }
  .ap-shorts-chip { font-size: 11px; padding: 5px 12px; }
}

/* ─── MODEL IMAGES (when generated shots are available) ─── */

/* Grid card: model photo fills the product-tee slot */
.ap-product-tee .ap-model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Disable the sparkle ::after overlay when showing a real photo */
}
/* Hide sparkle shimmer when a real model image is present */
.ap-product-tee:has(.ap-model-img)::after {
  display: none;
}

/* Product detail page: full-height model shot in the preview panel */
.ap-preview-model {
  width: 100%;
  border-radius: var(--ap-radius);
  overflow: hidden;
  border: 1px solid rgba(255,20,147,0.15);
  box-shadow: 0 0 40px rgba(255,20,147,0.08);
}
.ap-model-img-full {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 560px;
  object-position: center top;
}

/* Taller card image area when showing model photo */
.ap-product-tee:has(.ap-model-img) {
  height: 320px;
}

/* ═══════════════════════════════════════════════════════════
   ACCESSORIES STOREFRONT
   ═══════════════════════════════════════════════════════════ */

/* ─── ACCESSORIES HERO ─── */
.acc-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.acc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 48px;
  gap: 60px;
}

.acc-hero-text { position: relative; z-index: 1; }

.acc-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ap-pink);
  margin-bottom: 24px;
  font-weight: 500;
}

.acc-hero-headline {
  font-family: var(--ap-font-bold);
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.9;
  color: var(--ap-fg);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.acc-hero-headline em {
  font-style: normal;
  color: var(--ap-pink);
  /* Rhinestone text effect */
  text-shadow:
    0 0 12px rgba(255,20,147,0.6),
    0 0 24px rgba(255,20,147,0.3);
}

.acc-hero-sub {
  font-family: var(--ap-font-script);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ap-fg-muted);
  line-height: 1.5;
  margin-bottom: 36px;
}

/* Right: gem decorations */
.acc-hero-gems {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.acc-gem {
  position: absolute;
  font-size: 2rem;
  animation: acc-gem-float 6s ease-in-out infinite;
  opacity: 0.7;
}
.acc-gem--1 { top: 5%;  left: 10%; animation-delay: 0s;    font-size: 2.4rem; }
.acc-gem--2 { top: 15%; right: 8%; animation-delay: 1s;    font-size: 1.8rem; }
.acc-gem--3 { top: 50%; left: 5%;  animation-delay: 2s;    font-size: 1.6rem; }
.acc-gem--4 { bottom: 20%; right: 15%; animation-delay: 0.5s; font-size: 2rem; }
.acc-gem--5 { bottom: 8%; left: 30%;  animation-delay: 1.5s; font-size: 2.8rem; }

@keyframes acc-gem-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(8deg); }
}

.acc-hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.acc-hero-badge {
  background: rgba(255,20,147,0.08);
  border: 1px solid rgba(255,20,147,0.25);
  color: var(--ap-fg-muted);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 0.2s;
}
.acc-hero-badge:hover {
  background: rgba(255,20,147,0.15);
  color: var(--ap-fg);
}

/* ─── CATEGORIES SECTION ─── */
.acc-categories-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 32px;
}

.acc-categories-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.acc-category-block {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 64px;
}
.acc-category-block:last-child { border-bottom: none; }

/* Category header row — clickable */
.acc-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.acc-category-header:hover { opacity: 0.8; }
.acc-category-header:hover .acc-cat-arrow { transform: translateX(4px); }

.acc-cat-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,20,147,0.12), rgba(212,175,55,0.08));
  border: 1px solid rgba(255,20,147,0.2);
  border-radius: var(--ap-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-cat-icon { font-size: 1.8rem; }

.acc-cat-info { flex: 1; }
.acc-cat-label {
  font-family: var(--ap-font-bold);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--ap-fg);
  margin-bottom: 4px;
}
.acc-cat-tagline {
  font-family: var(--ap-font-script);
  font-style: italic;
  color: var(--ap-pink);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.acc-cat-range {
  font-size: 12px;
  color: var(--ap-fg-muted);
  letter-spacing: 0.5px;
}

.acc-cat-arrow {
  color: var(--ap-pink);
  font-size: 1.4rem;
  transition: transform 0.2s;
  margin-left: auto;
}

/* 3-product mini grid */
.acc-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.acc-mini-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.acc-mini-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--ap-radius-sm);
  overflow: hidden;
  background: var(--ap-bg-lift);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s, border-color 0.25s;
}
.acc-mini-card:hover .acc-mini-img-wrap {
  transform: scale(1.02);
  border-color: rgba(255,20,147,0.3);
}

.acc-mini-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder when no image */
.acc-mini-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(255,20,147,0.06) 0%, transparent 70%);
}
.acc-mini-placeholder-icon { font-size: 2.5rem; opacity: 0.6; }
.acc-mini-sparkle-1, .acc-mini-sparkle-2 {
  position: absolute;
  color: var(--ap-gold);
  font-size: 0.7rem;
  opacity: 0.5;
}
.acc-mini-sparkle-1 { top: 18%; right: 20%; }
.acc-mini-sparkle-2 { bottom: 22%; left: 18%; }

.acc-mini-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--ap-fg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.acc-mini-card:hover .acc-mini-overlay { opacity: 1; }

.acc-mini-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 4px 4px;
  gap: 8px;
}
.acc-mini-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ap-fg);
  line-height: 1.3;
  flex: 1;
}
.acc-mini-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--ap-pink);
  white-space: nowrap;
}

.acc-view-all-link {
  color: var(--ap-fg-muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.acc-view-all-link:hover { color: var(--ap-pink); }

/* ─── CATEGORY PAGE ─── */
.acc-cat-page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.acc-back-link {
  display: inline-block;
  color: var(--ap-fg-muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.acc-back-link:hover { color: var(--ap-fg); }

.acc-cat-page-title {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.acc-cat-page-icon {
  font-size: 3rem;
  line-height: 1;
  margin-top: 4px;
}
.acc-cat-page-heading {
  font-family: var(--ap-font-bold);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 3px;
  margin-bottom: 8px;
  color: var(--ap-fg);
}
.acc-cat-page-desc {
  color: var(--ap-fg-muted);
  font-size: 14px;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.acc-cat-price-range {
  font-size: 13px;
  color: var(--ap-pink);
  font-weight: 500;
}

/* Product placeholder in category + grid */
.acc-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: radial-gradient(circle at 50% 40%, rgba(255,20,147,0.05) 0%, transparent 70%);
}
.acc-product-placeholder-icon { font-size: 3rem; opacity: 0.5; }
.acc-placeholder-sparkles { display: flex; gap: 8px; color: var(--ap-gold); font-size: 0.8rem; opacity: 0.5; }

.acc-product-name { font-size: 13px; font-weight: 500; }
.acc-product-variant { font-size: 11px; color: var(--ap-fg-muted); margin: 2px 0 0; }

/* ─── PRODUCT DETAIL PAGE (accessories) ─── */
.acc-product-variant-label {
  font-size: 13px;
  color: var(--ap-fg-muted);
  margin-bottom: 12px;
}

.acc-product-detail-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--ap-bg-lift);
  border-radius: var(--ap-radius);
  border: 1px solid rgba(255,20,147,0.12);
}
.acc-detail-placeholder-icon {
  font-size: 5rem;
  animation: acc-gem-float 4s ease-in-out infinite;
}
.acc-detail-placeholder-name {
  font-family: var(--ap-font-script);
  font-size: 1.2rem;
  color: var(--ap-fg-muted);
  text-align: center;
  padding: 0 24px;
}
.acc-detail-sparkle-ring {
  display: flex;
  gap: 12px;
  font-size: 1.4rem;
}

/* ─── NAV active state ─── */
.ap-nav-links a.active { color: var(--ap-fg) !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .acc-hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    min-height: unset;
    gap: 32px;
  }
  .acc-hero-gems { min-height: 200px; }
  .acc-mini-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .acc-cat-page-title { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
  .acc-hero-headline { font-size: clamp(3rem, 14vw, 4.5rem); }
  .acc-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-category-header { flex-wrap: wrap; }
  .acc-categories-section { padding: 40px 16px; }
}

/* ─── MONTHLY DROPS — May 2026 ─── */

/* Section divider label */
.acc-section-label {
  text-align: center;
  padding: 48px 24px 24px;
}
.acc-section-label-text {
  font-family: var(--ap-font-bold);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 4px;
  color: var(--ap-fg-muted);
  text-transform: uppercase;
}
.acc-section-label--drop .acc-section-label-text {
  color: var(--ap-pink);
  text-shadow: 0 0 20px var(--ap-pink-glow);
}
.acc-section-label-sub {
  margin-top: 8px;
  font-family: var(--ap-font-script);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ap-fg-muted);
}

/* Drop category block — pink left border accent */
.acc-category-block--drop {
  border-left: 2px solid var(--ap-pink-dim);
  position: relative;
}
.acc-category-block--drop::before {
  content: 'NEW DROP';
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--ap-font-bold);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--ap-pink);
  opacity: 0.7;
}

/* Drop placeholder — pink tint instead of default */
.acc-mini-placeholder--drop {
  background: radial-gradient(circle at 50% 40%, rgba(255,20,147,0.08) 0%, transparent 70%);
}

/* Hero badge drop variant */
.acc-hero-badge--drop {
  border-color: var(--ap-pink-dim);
  color: var(--ap-pink);
  background: rgba(255,20,147,0.05);
}
