/** Shopify CDN: Minification failed

Line 12:0 Unexpected "}"

**/
/* ================================================
   Arts of Paloma — Shopify Theme
   Pixel-accurate recreation from video reference
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Caveat+Brush&family=Inter:wght@400;500;600;700;800&display=swap');
}
@media (max-width: 767px) {
  .hero-left { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}
/* ---- Variables ---- */
:root {
  --pink: #ED1E79;
  --pink-deep: #C81666;
  --teal: #1ABC9C;
  --teal-deep: #14997E;
  --ink: #0F0F10;
  --cream: #FDFDFB;
  --font-display: 'Archivo Black', Impact, sans-serif;
  --font-hand: 'Caveat Brush', cursive;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
::selection { background: var(--pink); color: #fff; }

/* ---- Layout ---- */
.container-x { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .container-x { padding: 0 18px; } }
.py-20 { padding: 80px 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-2 { margin-bottom: 8px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.text-center { text-align: center; }
.desk-only { display: none; }
@media (min-width: 768px) { .desk-only { display: flex; } .mob-only { display: none; } }

/* ---- Typography ---- */
.font-display { font-family: var(--font-display); }
.font-hand { font-family: var(--font-hand); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.eyebrow-row { display: flex; align-items: center; gap: 12px; }
.eyebrow-line { width: 40px; height: 1px; flex-shrink: 0; }
.eyebrow-text { font-size: 12px; letter-spacing: 0.25em; font-weight: 700; text-transform: uppercase; }

/* ---- Animations ---- */
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes float-y { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-14px) rotate(8deg)} }
@keyframes float-y2 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(10px) rotate(-10deg)} }
@keyframes spin-slow { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes rise { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.float-a { animation: float-y 5s ease-in-out infinite; }
.float-b { animation: float-y2 7s ease-in-out infinite; }
.spin-slow { animation: spin-slow 22s linear infinite; }
.rise { animation: rise 0.9s cubic-bezier(.2,.7,.2,1) both; }
.rise-d1 { animation-delay: .1s; }
.rise-d2 { animation-delay: .25s; }
.rise-d3 { animation-delay: .4s; }
.rise-d4 { animation-delay: .55s; }

/* ---- Patterns ---- */
.halftone { background-image: radial-gradient(circle at 1px 1px, rgba(237,30,121,.55) 1.5px, transparent 1.6px); background-size: 12px 12px; }
.halftone-teal { background-image: radial-gradient(circle at 1px 1px, rgba(26,188,156,.55) 1.5px, transparent 1.6px); background-size: 12px 12px; }

/* ---- Marquee ---- */
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.mq-row { display: flex; }

/* ---- Reusable UI ---- */

/* Brush button */
.brush-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  border: 2px solid var(--ink); background: var(--ink); color: #fff;
  border-radius: 4px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer; text-decoration: none;
}
.brush-btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 0 var(--pink); }
.brush-btn.pink { background: var(--pink); border-color: var(--pink); }
.brush-btn.pink:hover { box-shadow: 4px 4px 0 0 var(--ink); }
.brush-btn.outline { background: transparent; color: var(--ink); }
.brush-btn.outline:hover { background: var(--ink); color: #fff; }
.brush-btn.sm { padding: 10px 20px; }
.brush-btn.full-width { width: 100%; justify-content: center; }
.brush-btn:disabled, .brush-btn.disabled { opacity: .5; }
button.brush-btn:disabled, button.brush-btn.disabled { pointer-events: none; }

/* Tilt tag */
.tilt-tag {
  display: inline-block; transform: rotate(-3deg);
  background: var(--pink); color: #fff;
  padding: 6px 14px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: .15em;
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 0 var(--ink);
}

/* Price tag */
.price-tag { background: var(--ink); color: #fff; font-weight: 800; padding: 6px 12px; font-size: 13px; letter-spacing: .05em; border-radius: 4px; display: inline-block; }
.price-tag.text-lg { font-size: 16px; }

/* Category pill */
.cat-pill {
  border: 2px solid var(--ink); padding: 8px 16px;
  font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; background: #fff; color: var(--ink);
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.cat-pill.active, .cat-pill:hover { background: var(--ink); color: #fff; }

/* Nav link */
.nav-link { position: relative; font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 0; color: var(--ink); transition: color .2s; }
.nav-link::after { content:''; position: absolute; left:0; bottom:-4px; height:3px; width:0; background: var(--pink); transition: width .35s cubic-bezier(.2,.7,.2,1); border-radius: 2px; }
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Brush underline */
.brush-under { background-image: linear-gradient(180deg, transparent 60%, rgba(26,188,156,.55) 60%); padding: 0 4px; }

/* Icon button */
.icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; transition: background .2s; }
.icon-btn:hover { background: rgba(15,15,16,.06); }

/* Logo */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-lockup { display: flex; flex-direction: column; }
.logo-letters { font-family: var(--font-display); font-size: 22px; line-height: 1; display: flex; align-items: flex-end; gap: 2px; }
.logo-sub { font-family: var(--font-display); font-size: 9px; letter-spacing: .3em; line-height: 1.4; }
.logo-img { height: 44px; width: auto; }
.l-ink { color: var(--ink); }
.l-pink { color: var(--pink); }
.logo-letters .l-pink { transform: translateY(-2px); }

/* Brush card backgrounds */
.brush-card-teal, .brush-card-pink { position: relative; border-radius: 6px; overflow: hidden; }
.brush-card-teal { background: var(--teal); }
.brush-card-pink { background: var(--pink); }
.brush-card-teal::before, .brush-card-pink::before {
  content:''; position: absolute; inset:-4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; pointer-events: none;
}

/* Qty control */
.qty-ctrl { display: inline-flex; align-items: center; border: 1.5px solid rgba(15,15,16,.2); border-radius: 999px; background: #fff; }
.qty-ctrl button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: color .2s; background: none; border: none; cursor: pointer; }
.qty-ctrl button:hover { color: var(--pink); }
.qty-ctrl input { width: 40px; text-align: center; border: none; outline: none; font-size: 14px; background: transparent; -moz-appearance: textfield; }
.qty-ctrl input::-webkit-outer-spin-button, .qty-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-ctrl span { padding: 0 10px; font-size: 14px; font-weight: 600; min-width: 32px; text-align: center; }
.qty-ctrl.sm button { width: 28px; height: 28px; font-size: 15px; }

/* Cat pills row */
.cat-pills-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1100px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* RTE */
.rte h1,.rte h2,.rte h3 { font-family: var(--font-display); margin: 24px 0 12px; }
.rte p { margin-bottom: 16px; line-height: 1.7; }
.rte a { color: var(--pink); text-decoration: underline; }
.rte ul,.rte ol { margin-left: 24px; margin-bottom: 16px; }
.rte li { margin-bottom: 8px; }

/* Empty state */
.empty-state { text-align: center; padding: 80px 0; display: flex; flex-direction: column; align-items: center; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination .current { display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:8px; border:2px solid var(--ink); font-weight:700; transition:background .2s; }
.pagination .current { background:var(--ink); color:#fff; }
.pagination a:hover { background:var(--ink); color:#fff; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar { background: var(--ink); color: #fff; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; position: relative; z-index: 51; }
.ann-inner { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.ann-side { display: none; align-items: center; gap: 16px; font-size: 11px; }
@media (min-width: 768px) { .ann-side { display: flex; } }
.ann-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); display: inline-block; }
.ann-link { color: #fff; transition: color .2s; }
.ann-link:hover { color: var(--pink); }
.ann-center { flex: 1; text-align: center; overflow: hidden; height: 36px; display: flex; align-items: center; justify-content: center; }
.ann-msg { transition: opacity .3s, transform .3s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 50; }
.header-bar { background: var(--cream); border-bottom: 2px solid var(--ink); transition: all .3s; padding: 12px 0; }
.header-bar.scrolled { background: rgba(253,253,251,.92); backdrop-filter: blur(12px); padding: 8px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.main-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .main-nav { display: flex; } }
.header-icons { display: flex; align-items: center; gap: 4px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (min-width: 768px) { .hamburger { display: none; } }
.cart-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .1em; margin-left: 4px; transition: background .2s; }
.cart-btn:hover { background: var(--pink); }
.cart-label { display: none; }
@media (min-width: 480px) { .cart-label { display: inline; } }
.cart-badge { background: var(--pink); color: #fff; font-size: 10px; font-weight: 700; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }

/* Search bar */
.search-bar { background: #fff; border-bottom: 2px solid var(--ink); padding: 12px 0; display: none; }
.search-bar.open { display: block; }
.search-form { display: flex; align-items: center; gap: 12px; }
.search-input { flex: 1; border: 2px solid rgba(15,15,16,.15); border-radius: 8px; padding: 10px 16px; font-size: 15px; outline: none; transition: border-color .2s; }
.search-input:focus { border-color: var(--pink); }

/* Mobile nav */
.mob-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 59; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-drawer { position: fixed; left: 0; top: 0; height: 100%; width: min(82%, 360px); background: #fff; z-index: 60; padding: 24px; display: flex; flex-direction: column; transform: translateX(-100%); transition: transform .3s ease; }
.mob-drawer.open { transform: translateX(0); }
.mob-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mob-nav { display: flex; flex-direction: column; }
.mob-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(15,15,16,.1); font-family: var(--font-display); font-size: 14px; letter-spacing: .05em; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero-ht-right { position: absolute; right: 0; top: 0; width: 55%; height: 100%; opacity: .6; pointer-events: none; }
.hero-ht-teal { position: absolute; left: -60px; bottom: -60px; width: 260px; height: 260px; opacity: .5; border-radius: 50%; pointer-events: none; }
.hero-float { position: absolute; pointer-events: none; }
.hero-wrap { position: relative; padding: 48px 0 40px; }
@media (min-width: 768px) { .hero-wrap { padding: 80px 0 40px; } }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }

/* Hero left */
.hero-left { position: relative; z-index: 10; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-date { font-size: 12px; font-weight: 700; letter-spacing: .2em; color: rgba(15,15,16,.7); }
.hero-title { font-family: var(--font-display); font-size: clamp(58px, 9vw, 142px); line-height: .86; letter-spacing: -.03em; color: var(--ink); display: flex; flex-direction: column; }
.hero-title .pink { color: var(--pink); }
.hero-sub { margin-top: 24px; max-width: 28rem; font-size: 15px; line-height: 1.6; color: rgba(15,15,16,.75); }
.hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-stats { margin-top: 48px; display: flex; align-items: center; gap: 32px; }
.stat-div { width: 1px; height: 48px; background: rgba(15,15,16,.15); flex-shrink: 0; }
.hero-stat {}
.stat-num { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--pink); }
.stat-num.teal { color: var(--teal); }
.stat-num.dark { color: var(--ink); }
.stat-lbl { font-size: 11px; letter-spacing: .18em; font-weight: 700; color: rgba(15,15,16,.7); margin-top: 4px; text-transform: uppercase; }

/* Hero right */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }
@media (min-width: 768px) { .hero-right { min-height: 560px; } }
.hero-glow { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hero-glow::after { content:''; width: 78%; height: 78%; border-radius: 50%; background: rgba(237,30,121,.12); filter: blur(32px); }
.hero-badge { position: absolute; left: -8px; top: 24px; z-index: 20; width: 110px; height: 110px; display: flex; align-items: center; justify-content: center; }
.badge-star { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-frame-wrap { position: relative; width: 88%; aspect-ratio: 4/5; max-width: 480px; }
.hero-frame-dashed { position: absolute; inset: -16px; border: 3px dashed var(--pink); border-radius: 24px; transform: rotate(-2deg); pointer-events: none; }
.hero-frame { position: absolute; inset: 0; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 14px 14px 0 0 var(--ink); transform: rotate(1.5deg); }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-tag { position: absolute; left: 12px; top: 12px; background: var(--ink); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 10px; letter-spacing: .18em; font-weight: 700; }
.hero-corner { position: absolute; bottom: -24px; right: -16px; background: var(--teal); color: #fff; padding: 12px; border-radius: 12px; box-shadow: 6px 6px 0 0 var(--ink); transform: rotate(3deg); font-family: var(--font-display); font-size: 14px; line-height: 1.1; }
.hero-corner-big { font-size: 24px; line-height: 1; }

/* Marquee strip */
.marquee-strip { background: var(--pink); color: #fff; padding: 14px 0; overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); margin-top: 32px; }
.mq-item { font-family: var(--font-display); font-size: 38px; letter-spacing: .04em; padding: 0 28px; white-space: nowrap; text-transform: uppercase; display: inline-flex; align-items: center; gap: 28px; }

/* ============================================================
   FEATURED COLLECTION
   ============================================================ */
.featured-sec { padding: 80px 0; background: var(--cream); }
.featured-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 40px; }
.featured-cta { margin-top: 48px; display: flex; justify-content: center; }

/* Product card */
.product-card { position: relative; background: #fff; border-radius: 12px; overflow: hidden; border: 2px solid var(--ink); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 0 var(--pink); }
.pc-badges { position: absolute; top: 12px; left: 12px; z-index: 10; }
.pc-tag { font-size: 10px; padding: 4px 8px; }
.pc-img-link { display: block; }
.pc-img-wrap { aspect-ratio: 4/5; overflow: hidden; background: var(--cream); position: relative; }
.pc-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.pc-img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity .3s; }
.product-card:hover .pc-img:not(.pc-img-hover) { transform: scale(1.05); }
.product-card:hover .pc-img-hover { opacity: 1; }
.pc-placeholder { width: 100%; height: 100%; background: #f0f0f0; }
.pc-quick-add { position: absolute; right: 12px; bottom: 90px; width: 44px; height: 44px; background: var(--ink); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: all .3s; z-index: 10; }
.product-card:hover .pc-quick-add { opacity: 1; transform: translateY(0); }
.pc-quick-add:hover { background: var(--pink); }
.pc-info { padding: 16px; border-top: 2px solid var(--ink); }
.pc-meta { display: flex; align-items: center; gap: 4px; font-size: 10px; letter-spacing: .15em; color: rgba(15,15,16,.6); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.pc-stars { display: flex; align-items: center; gap: 2px; }
.pc-title { font-family: var(--font-display); font-size: 14px; line-height: 1.2; text-transform: uppercase; }
.pc-title a { color: inherit; }
.pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; flex-wrap: wrap; gap: 8px; }
.pc-compare { font-size: 12px; color: rgba(15,15,16,.5); text-decoration: line-through; }
.pc-add-text { font-size: 11px; font-weight: 700; letter-spacing: .15em; color: var(--ink); transition: color .2s; }
.pc-add-text:hover { color: var(--pink); }

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.promo-sec { padding: 48px 0 64px; background: var(--cream); }
.promo-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .promo-grid { grid-template-columns: 1fr 1fr; } }
.promo-card { position: relative; min-height: 280px; display: flex; align-items: center; padding: 32px 40px; overflow: hidden; }
.promo-content { position: relative; z-index: 10; max-width: 60%; pointer-events: auto; }
.promo-top { font-family: var(--font-display); color: var(--ink); font-size: clamp(22px, 4vw, 36px); line-height: .95; margin-bottom: 4px; }
.promo-offer { font-family: var(--font-hand); color: #fff; font-size: clamp(32px, 6vw, 56px); line-height: .9; margin-bottom: 24px; }
.promo-tagline { font-family: var(--font-hand); color: #fff; font-size: clamp(22px, 4vw, 36px); line-height: .95; margin-bottom: 24px; }
.promo-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 4px; font-family: var(--font-display); letter-spacing: .15em; font-size: 13px; transition: background .2s, color .2s; cursor: pointer; text-decoration: none; position: relative; z-index: 10; }
.promo-btn:hover { background: #fff; color: var(--ink); }
.promo-img { position: absolute; right: -30px; bottom: -10px; width: 55%; max-width: 300px; object-fit: contain; transform: rotate(8deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
.promo-star { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; }
.promo-cat { position: absolute; right: 16px; bottom: 16px; width: 140px; height: 140px; display: none; }
@media (min-width: 768px) { .promo-cat { display: block; } }

/* ============================================================
   COLLECTIONS STRIP
   ============================================================ */
.coll-strip { position: relative; padding: 80px 0; background: var(--ink); color: #fff; overflow: hidden; }
.coll-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.coll-desc { max-width: 24rem; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6; }
.coll-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .coll-grid { grid-template-columns: repeat(3, 1fr); } }
.coll-card { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; border: 2px solid rgba(255,255,255,.1); display: block; transition: border-color .3s; }
.coll-card:hover { border-color: var(--pink); }
.coll-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.coll-card:hover .coll-card-img { transform: scale(1.1); }
.coll-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 0%, rgba(15,15,16,.3) 50%, transparent 100%); }
.coll-card-num { position: absolute; top: 16px; left: 16px; padding: 4px 12px; border-radius: 999px; font-size: 10px; letter-spacing: .2em; font-weight: 700; border: 2px solid #fff; z-index: 10; }
.coll-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 10; }
.coll-card-count { font-size: 11px; letter-spacing: .2em; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.coll-card-title { font-family: var(--font-display); font-size: clamp(22px, 4vw, 34px); line-height: 1.1; color: #fff; }
.coll-card-cta { margin-top: 12px; font-size: 12px; font-weight: 700; letter-spacing: .15em; color: var(--teal); transition: color .2s; }
.coll-card:hover .coll-card-cta { color: var(--pink); }

/* ============================================================
   ARTIST STORY
   ============================================================ */
.artist-sec { padding: 80px 0; background: var(--cream); overflow: hidden; }
.artist-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .artist-grid { grid-template-columns: 1fr 1fr; } }
.artist-img-col { position: relative; }
.artist-teal-bg { position: absolute; inset: -12px; background: var(--teal); border-radius: 24px; transform: rotate(-3deg); }
.artist-frame { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; border: 2px solid var(--ink); box-shadow: 12px 12px 0 0 var(--pink); }
.artist-namecard { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(255,255,255,.95); backdrop-filter: blur(4px); padding: 16px; border-radius: 12px; border: 2px solid var(--ink); }
.artist-text .section-heading { margin: 8px 0 24px; }
.artist-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 400px; margin-top: 32px; }
.artist-stat { border: 2px solid var(--ink); padding: 16px; border-radius: 12px; }
.artist-stat.dark { background: var(--ink); color: #fff; }
.artist-stat-num { font-family: var(--font-display); font-size: 26px; color: var(--pink); line-height: 1; }
.artist-stat.dark .artist-stat-num { color: var(--teal); }
.artist-stat-lbl { font-size: 10px; letter-spacing: .15em; font-weight: 700; color: rgba(15,15,16,.7); margin-top: 8px; text-transform: uppercase; }
.artist-stat.dark .artist-stat-lbl { color: rgba(255,255,255,.7); }

/* ============================================================
   FEATURE ROW
   ============================================================ */
.feat-row { padding: 80px 0; background: var(--cream); border-top: 1px solid rgba(15,15,16,.1); }
.feat-row-head { text-align: center; margin-bottom: 48px; }
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .feat-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.feat-card { position: relative; background: #fff; border: 2px solid var(--ink); border-radius: 16px; padding: 24px; transition: box-shadow .3s, transform .3s; }
.feat-card:hover { box-shadow: 8px 8px 0 0 var(--ink); transform: translateY(-4px); }
.feat-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: transform .3s; }
.feat-card:hover .feat-icon { transform: rotate(-6deg); }
.feat-title { font-family: var(--font-display); font-size: 18px; line-height: 1.2; text-transform: uppercase; }
.feat-text { font-size: 13px; color: rgba(15,15,16,.7); margin-top: 8px; line-height: 1.5; }
.feat-num { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; border-radius: 50%; color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink); }

/* ============================================================
   ICON STRIP (Icons with Text section)
   ============================================================ */
.feat-row { padding: 40px 0 48px; background: #fff; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.icon-strip { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: nowrap; }
.icon-strip-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 28px; flex: 1; min-width: 0; }
.icon-strip-icon { width: 72px; height: 72px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 2.5px solid var(--ink); flex-shrink: 0; }
.icon-strip-title { font-family: var(--font-display); font-size: clamp(13px, 2vw, 17px); line-height: 1.15; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.icon-strip-text { font-size: 12px; color: rgba(15,15,16,.65); line-height: 1.5; max-width: 160px; }
.icon-strip-divider { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 4px; flex-shrink: 0; }
.icon-strip-divider-line { width: 1px; height: 40px; background: rgba(15,15,16,.2); }
.icon-strip-divider-icon { display: block; }
.icon-strip-edge { flex-shrink: 0; display: flex; align-items: center; padding: 0 8px; opacity: .55; }
.icon-strip-edge-right { opacity: .35; }
@media (max-width: 640px) {
  .icon-strip { flex-wrap: wrap; gap: 8px; }
  .icon-strip-edge { display: none; }
  .icon-strip-divider { flex-direction: row; width: 100%; padding: 4px 0; }
  .icon-strip-divider-line { width: 40px; height: 1px; }
  .icon-strip-item { flex: 0 0 calc(50% - 8px); padding: 16px 12px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-sec { position: relative; padding: 80px 0; background: var(--cream); overflow: hidden; }
.testi-dot-l { position: absolute; top: 40px; left: 10%; width: 128px; height: 128px; opacity: .4; border-radius: 50%; pointer-events: none; }
.testi-dot-r { position: absolute; bottom: 40px; right: 10%; width: 160px; height: 160px; opacity: .4; border-radius: 50%; pointer-events: none; }
.testi-head { text-align: center; margin-bottom: 48px; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(4,1fr); } }
.testi-card { padding: 24px; border-radius: 16px; border: 2px solid var(--ink); background: #fff; transition: transform .3s; }
.testi-card:hover { transform: translateY(-4px) rotate(0deg) !important; }
.testi-card.dark { background: var(--ink); color: #fff; }
.testi-quote { margin-bottom: 12px; }
.testi-text { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.testi-foot { display: flex; align-items: center; justify-content: space-between; }
.testi-name { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; }
.testi-handle { font-size: 11px; color: rgba(15,15,16,.6); }
.testi-card.dark .testi-handle { color: rgba(255,255,255,.6); }
.testi-stars { display: flex; gap: 2px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.nl-sec { padding: 64px 0; background: var(--cream); }
.nl-card { background: var(--ink); color: #fff; border-radius: 24px; overflow: hidden; position: relative; padding: 40px; }
@media (min-width: 768px) { .nl-card { padding: 56px; } }
.nl-dots { position: absolute; top: 0; right: 0; width: 300px; height: 100%; opacity: .3; pointer-events: none; }
.nl-star { position: absolute; bottom: 16px; right: 24px; }
.nl-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; position: relative; }
@media (min-width: 768px) { .nl-inner { grid-template-columns: 1fr 1fr; } }
.nl-heading { color: #fff; margin-top: 12px; }
.nl-desc { color: rgba(255,255,255,.7); margin-top: 16px; font-size: 15px; line-height: 1.6; }
.nl-row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .nl-row { flex-direction: row; } }
.nl-input-wrap { flex: 1; display: flex; align-items: center; background: #fff; border-radius: 12px; border: 2px solid #fff; padding: 0 16px; }
.nl-input { flex: 1; background: transparent; color: var(--ink); outline: none; padding: 16px 12px; font-size: 15px; border: none; }
.nl-input::placeholder { color: rgba(15,15,16,.4); }
.nl-submit { flex-shrink: 0; }
.nl-note { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,.5); margin-top: 12px; }
.nl-success { color: var(--teal); font-size: 14px; margin-top: 8px; }
.nl-error { color: #ff6b6b; font-size: 14px; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--pink); color: #fff; }
.footer-mq { background: var(--ink); padding: 16px 0; overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.footer-mq-item { font-family: var(--font-display); font-size: 22px; color: var(--pink); padding: 0 24px; white-space: nowrap; display: inline-flex; align-items: center; gap: 16px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); align-items: start; } }
.footer-logo-box { display: inline-block; padding: 16px; background: #fff; border-radius: 12px; border: 2px solid var(--ink); }
.footer-logo-box .l-ink { color: var(--ink); }
.footer-brand-desc { margin-top: 20px; color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col-head { font-family: var(--font-display); letter-spacing: .15em; font-size: 13px; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,.9); transition: opacity .2s; }
.footer-link:hover { opacity: .7; text-decoration: underline; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s, color .2s; }
.footer-social-icon:hover { background: #fff; color: var(--pink); }
.footer-cat { margin-top: 24px; }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; gap: 12px; font-size: 12px; color: rgba(255,255,255,.8); align-items: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   CART OVERLAY + DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 69; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 420px; background: #fff; box-shadow: -4px 0 40px rgba(0,0,0,.15); z-index: 70; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s ease; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 2px solid var(--ink); }
.cart-drawer-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); letter-spacing: .1em; font-size: 15px; }
.cart-drawer-badge { background: var(--pink); color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 2px 8px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; align-content: flex-start; align-items: stretch; }
.cart-drawer-empty { text-align: center; padding: 80px 0; color: rgba(15,15,16,.6); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cart-drawer-item { display: flex; gap: 12px; border: 2px solid rgba(15,15,16,.1); border-radius: 12px; padding: 12px; }
.cart-drawer-img { width: 80px; height: 100px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-drawer-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-drawer-title-sm { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; line-height: 1.2; }
.cart-drawer-variant { font-size: 11px; color: rgba(15,15,16,.6); }
.cart-drawer-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-remove { display: flex; align-items: center; }
.cart-upd { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: color .2s; }
.cart-upd:hover { color: var(--pink); }
.cart-drawer-foot { border-top: 2px solid var(--ink); padding: 20px; }
.cart-drawer-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cart-drawer-note { font-size: 11px; color: rgba(15,15,16,.6); text-align: center; margin-top: 12px; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .product-page-grid { grid-template-columns: 1fr 1fr; } }
.product-gallery__main { position: relative; aspect-ratio: 4/5; border: 3px solid var(--pink); border-radius: 6px; overflow: hidden; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.badge-abs { position: absolute; top: 12px; left: 12px; }
.product-thumbs { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; }
.product-thumb { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; flex-shrink: 0; transition: border-color .2s; }
.product-thumb.active, .product-thumb:hover { border-color: var(--pink); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-title { font-family: var(--font-display); font-size: clamp(28px, 5vw, 44px); line-height: .95; margin: 8px 0 16px; text-transform: uppercase; }
.product-price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.compare-price { font-size: 14px; color: rgba(15,15,16,.5); text-decoration: line-through; }
.product-desc { font-size: 15px; line-height: 1.7; color: rgba(15,15,16,.75); margin-bottom: 24px; }
.opt-group { margin-bottom: 20px; }
.opt-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.opt-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.qty-row { margin-bottom: 8px; }
.trust-row { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid rgba(15,15,16,.1); margin-top: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(15,15,16,.7); }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .cart-page-grid { grid-template-columns: 1fr 380px; } }
.cart-items-col { display: flex; flex-direction: column; gap: 24px; }
.cart-page-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 16px; align-items: start; padding: 20px 0; border-bottom: 1px solid rgba(15,15,16,.1); }
.cart-page-img { width: 100px; height: 125px; object-fit: cover; border-radius: 8px; }
.cart-item-title { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; }
.cart-item-variant { font-size: 12px; color: rgba(15,15,16,.6); margin-top: 4px; }
.cart-item-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.remove-link { font-size: 12px; color: var(--pink); }
.remove-link:hover { text-decoration: underline; }
.cart-qty { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.cart-line-price { font-family: var(--font-display); font-size: 18px; text-align: right; }
.cart-summary-col {}
.cart-summary-box { background: var(--cream); border: 2px solid var(--ink); border-radius: 16px; padding: 24px; position: sticky; top: 80px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.summary-row.muted { color: rgba(15,15,16,.6); }
.summary-divider { height: 1px; background: rgba(15,15,16,.1); margin: 16px 0; }
.cart-note { font-size: 12px; color: rgba(15,15,16,.6); text-align: center; margin-top: 12px; }
.collection-desc { font-size: 16px; line-height: 1.6; color: rgba(15,15,16,.7); margin-top: 16px; max-width: 560px; }

/* ══════════════════════════════════════════
   PARALLAX + SCROLL FADE  (added by edit)
   ══════════════════════════════════════════ */

/* Seamless section fade-in on scroll */
.scroll-fade {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child items inside fading sections */
.scroll-fade .product-card,
.scroll-fade .coll-card,
.scroll-fade .feat-card {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* Outline CTA button — ensure clickable & hover */
.brush-btn.outline,
.hero-outline-btn {
  cursor: pointer;
  pointer-events: auto;
}
.brush-btn.outline:hover,
.hero-outline-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Promo-banners restored */

/* ============================================================
   PRODUCT PAGE v3 — pixel-accurate from video reference
   ============================================================ */

/* Breadcrumb */
.pd-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(15,15,16,.5); flex-wrap: wrap; }
.pd-bc-sep { opacity: .4; }
.pd-bc-cur { color: var(--ink); }
.pd-breadcrumb a:hover { color: var(--pink); }
.pd-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-top: 10px; opacity: .6; transition: opacity .2s; }
.pd-back-link:hover { opacity: 1; }
.pt-6 { padding-top: 24px; }
.pb-2 { padding-bottom: 8px; }
.py-8 { padding-top: 32px; padding-bottom: 80px; }
.ml-auto { margin-left: auto; }

/* Grid */
.pd-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .pd-grid { grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; } }

/* ── GALLERY ── */
.pd-gallery { display: flex; flex-direction: column; gap: 12px;  top: 80px; }
.pd-trait-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-trait-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--ink); border-radius: 999px;
  padding: 5px 12px; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  background: #fff;
}
.pd-trait-badge--outline { background: transparent; }
.pd-trait-icon { font-size: 13px; }

/* Main image frame */
.pd-gallery-frame {
  position: relative;
  aspect-ratio: 4/5;
  border: 3px solid var(--teal);
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.pd-gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-gallery-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: rgba(15,15,16,.3); font-size: 14px; }

/* NEW badge */
.pd-new-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--pink); color: #fff;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 4px; transform: rotate(-2deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,.15);
}

/* Wishlist */
.pd-wish-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(15,15,16,.6); transition: color .2s, background .2s;
  cursor: pointer; border: none;
}
.pd-wish-btn:hover, .pd-wish-btn.active { color: var(--pink); background: #fff; }
.pd-wish-btn.active svg { fill: var(--pink); }

/* Image counter */
.pd-img-counter {
  position: absolute; bottom: 12px; left: 14px;
  background: rgba(15,15,16,.55); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Share */
.pd-share-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer; border: none; transition: background .2s;
}
.pd-share-btn:hover { background: #fff; }

/* Thumbnails */
.pd-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.pd-thumbs::-webkit-scrollbar { height: 4px; }
.pd-thumbs::-webkit-scrollbar-track { background: rgba(15,15,16,.06); border-radius: 2px; }
.pd-thumbs::-webkit-scrollbar-thumb { background: rgba(15,15,16,.2); border-radius: 2px; }
.pd-thumb {
  width: 80px; height: 80px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
  transition: border-color .2s; background: #f0f0f0; padding: 0;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--pink); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video thumb */
.pd-thumb--video { position: relative; background: #111; }
.pd-thumb-video-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45); z-index: 1;
}
.pd-thumb-video-label {
  position: absolute; bottom: 4px; left: 0; right: 0;
  text-align: center; font-size: 8px; font-weight: 800; letter-spacing: .1em;
  color: #fff; z-index: 2;
}

/* Video panel */
.pd-video-panel { aspect-ratio: 4/5; border: 3px solid var(--ink); border-radius: 8px; overflow: hidden; background: #111; position: relative; }
.pd-video-wrap { width: 100%; height: 100%; display: flex; flex-direction: column; }
.pd-video-el { width: 100%; flex: 1; object-fit: cover; }
.pd-video-label { position: absolute; bottom: 12px; left: 14px; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.pd-video-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,.4); text-align: center; font-size: 12px; line-height: 1.5; padding: 20px; }

/* ── INFO COLUMN ── */
.pd-sku-row { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.pd-sku-dot { color: rgba(15,15,16,.3); }
.pd-sku { color: rgba(15,15,16,.5); }

.pd-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); line-height: .96; margin-bottom: 16px; text-transform: uppercase; letter-spacing: -.01em; }

/* Stars */
.pd-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.pd-stars { display: flex; align-items: center; gap: 3px; }
.pd-star { color: var(--pink); font-size: 16px; line-height: 1; }
.pd-star.half { opacity: .5; }
.pd-rating-num { font-family: var(--font-display); font-size: 14px; margin-left: 4px; }
.pd-rating-count { font-size: 12px; color: rgba(15,15,16,.5); margin-left: 2px; }
.pd-stock { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--teal); }

/* Price */
.pd-price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.pd-price { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); line-height: 1; letter-spacing: -.02em; }
.pd-currency { font-size: 14px; color: rgba(15,15,16,.5); align-self: flex-end; margin-bottom: 4px; }
.pd-compare { font-size: 14px; color: rgba(15,15,16,.4); text-decoration: line-through; align-self: flex-end; margin-bottom: 4px; }

/* Description */
.pd-desc { font-size: 15px; line-height: 1.7; color: rgba(15,15,16,.75); margin-bottom: 24px; }

/* Option groups */
.pd-opt-group { margin-bottom: 20px; }
.pd-opt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pd-opt-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); }
.pd-size-guide { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.pd-opt-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-size-pill {
  padding: 8px 18px; border-radius: 8px;
  border: 1.5px solid rgba(15,15,16,.2);
  font-size: 13px; font-weight: 500;
  background: #fff; color: var(--ink);
  cursor: pointer; transition: border-color .2s, background .2s, color .2s;
}
.pd-size-pill:hover { border-color: var(--ink); }
.pd-size-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* CTA row */
.pd-cta-row { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.pd-qty-ctrl { display: flex; align-items: center; border: 1.5px solid rgba(15,15,16,.2); border-radius: 8px; height: 52px; flex-shrink: 0; }
.pd-qty-btn { width: 44px; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ink); cursor: pointer; border: none; background: none; transition: color .2s; }
.pd-qty-btn:hover { color: var(--pink); }
.pd-qty-input { width: 44px; height: 100%; text-align: center; border: none; outline: none; font-size: 15px; font-family: var(--font-display); background: transparent; -moz-appearance: textfield; }
.pd-qty-input::-webkit-inner-spin-button, .pd-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.pd-atc-btn {
  flex: 1; height: 52px; border-radius: 8px;
  background: var(--ink); color: #fff; border: none;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .15s;
}
.pd-atc-btn:hover { background: #222; transform: translateY(-1px); }
.pd-atc-btn--sold { background: rgba(15,15,16,.3); cursor: not-allowed; }

.pd-buy-btn {
  width: 100%; height: 52px; border-radius: 8px;
  background: var(--pink); color: #fff; border: none;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .15s; margin-bottom: 20px;
}
.pd-buy-btn:hover { background: var(--pink-deep); transform: translateY(-1px); }
.pd-buy-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Trust strip */
.pd-trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  border-top: 1px solid rgba(15,15,16,.1); padding-top: 20px;
}
@media (max-width: 640px) { .pd-trust-strip { grid-template-columns: repeat(2, 1fr); } }
.pd-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; color: var(--ink); }
.pd-trust-item svg { flex-shrink: 0; }
.pd-trust-text { display: flex; flex-direction: column; font-size: 11px; line-height: 1.3; }
.pd-trust-text strong { font-weight: 700; font-size: 12px; }
.pd-trust-sub { font-size: 10px; color: rgba(15,15,16,.45); }

/* ── TABS ── */
.pd-tabs-section { margin-top: 64px; border-top: 3px solid var(--ink); }
.pd-tabs-nav { display: flex; overflow-x: auto; gap: 0; border-bottom: 1px solid rgba(15,15,16,.12); }
.pd-tab-btn {
  flex-shrink: 0; padding: 16px 28px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: none; background: none; cursor: pointer; color: rgba(15,15,16,.5);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s;
}
.pd-tab-btn:hover { color: var(--ink); }
.pd-tab-btn.active { color: var(--pink); border-bottom-color: var(--pink); }
.pd-tab-panel { padding: 36px 0; }

/* Description tab */
.pd-desc-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .pd-desc-grid { grid-template-columns: 1fr 1fr; } }
.pd-desc-rte { font-size: 15px; line-height: 1.75; color: rgba(15,15,16,.8); margin-bottom: 28px; }
.pd-check-head { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.pd-check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pd-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
.pd-check-icon { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Spec table */
.pd-spec-table { width: 100%; border-collapse: collapse; }
.pd-spec-table tr { border-bottom: 1px solid rgba(15,15,16,.07); }
.pd-spec-table tr:last-child { border-bottom: none; }
.pd-spec-key { padding: 13px 16px 13px 0; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(15,15,16,.5); width: 180px; vertical-align: top; }
.pd-spec-val { padding: 13px 0; font-size: 14px; line-height: 1.5; color: var(--ink); }

/* Shipping tab */
.pd-ship-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .pd-ship-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pd-ship-grid { grid-template-columns: repeat(4, 1fr); } }
.pd-ship-card { border: 2px solid rgba(15,15,16,.1); border-radius: 12px; padding: 24px; }
.pd-ship-icon { font-size: 28px; margin-bottom: 12px; }
.pd-ship-title { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.pd-ship-card p { font-size: 13px; line-height: 1.6; color: rgba(15,15,16,.7); }

/* Reviews */
.pd-reviews-head { margin-bottom: 28px; }
.pd-reviews-score { display: flex; align-items: center; gap: 16px; }
.pd-reviews-big { font-family: var(--font-display); font-size: 48px; line-height: 1; }
.pd-reviews-stars { color: var(--pink); font-size: 20px; letter-spacing: 2px; }
.pd-reviews-total { font-size: 13px; color: rgba(15,15,16,.5); }
.pd-reviews-list { display: flex; flex-direction: column; gap: 20px; }
.pd-review-card { border: 1.5px solid rgba(15,15,16,.1); border-radius: 14px; padding: 24px; }
.pd-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pd-review-avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; flex-shrink: 0; }
.pd-review-name { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; }
.pd-review-date { font-size: 11px; color: rgba(15,15,16,.45); margin-top: 2px; }
.pd-review-stars { color: var(--pink); font-size: 16px; letter-spacing: 1px; }
.pd-review-title { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.pd-review-body { font-size: 14px; line-height: 1.6; color: rgba(15,15,16,.75); }

/* ── MAKING-OF SECTION ── */
.pd-makingof-section {
  margin-top: 80px;
  background: var(--ink); border-radius: 20px; overflow: hidden;
}
.pd-makingof-inner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pd-makingof-inner { grid-template-columns: 1fr 1fr; } }
.pd-makingof-copy { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.pd-makingof-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); }
.pd-makingof-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); line-height: .95; color: #fff; text-transform: uppercase; }
.pd-makingof-accent { color: var(--pink); font-style: italic; }
.pd-makingof-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); max-width: 400px; }
.pd-makingof-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-process-pill { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); }
.pd-makingof-video { aspect-ratio: 4/3; background: #000; display: flex; }
.pd-makingof-video video { width: 100%; height: 100%; object-fit: cover; }
.pd-makingof-video-placeholder { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,.35); text-align: center; font-size: 12px; line-height: 1.5; padding: 40px; }
.pd-makingof-play { font-size: 36px; opacity: .5; }

/* ── RELATED PRODUCTS ── */
.pd-related-section { margin-top: 80px; }
.pd-related-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.pd-view-all { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); white-space: nowrap; }
.pd-view-all:hover { text-decoration: underline; }
.pd-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .pd-related-grid { grid-template-columns: repeat(4, 1fr); } }
.pd-related-card { display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ink); }
.pd-related-img-wrap { aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; background: #f0f0f0; position: relative; border: 1.5px solid rgba(15,15,16,.08); }
.pd-related-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.pd-related-card:hover .pd-related-img-wrap img { transform: scale(1.04); }
.pd-related-no-img { width: 100%; height: 100%; background: linear-gradient(135deg, #f5e6ff, #ffe6f0); }
.pd-related-wish {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.85); display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; border: none; color: rgba(15,15,16,.5); transition: color .2s;
}
.pd-related-wish:hover, .pd-related-wish.active { color: var(--pink); }
.pd-related-title { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; line-height: 1.2; }
.pd-related-price { font-size: 14px; color: rgba(15,15,16,.6); }

/* ── PRODUCT SAVE BTN ── */
.pd-buy-btn {
  width: 100%;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  transition: all .2s;
  margin-top: 10px;
}
.pd-buy-btn:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
}
.pd-buy-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── CONTACT / PAGE GRIDS MOBILE ── */
@media (max-width: 640px) {
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ── FULL-WIDTH / JUSTIFY-CENTER ── */
.full-width { width: 100%; }
.justify-center { justify-content: center; }

/* ── SEARCH BAR HIDE WHEN OVERLAY USED ── */
.search-bar { display: none !important; }

/* ============================================================
   CUSTOMER ACCOUNT PAGES
   ============================================================ */

/* Shared page wrapper */
.acc-page {
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px 80px;
  background: var(--cream, #FAF8F4);
}
.acc-page-dashboard {
  align-items: flex-start;
  padding-top: 48px;
}

/* Auth card (login / register / recover) */
.acc-card {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 40px 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 4px 4px 0 var(--ink);
}
@media (max-width: 480px) {
  .acc-card { padding: 28px 20px 24px; border-radius: 12px; }
}

/* Brand mark inside card */
.acc-brand { margin-bottom: 20px; display:flex; justify-content:center; }

/* Headings */
.acc-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 30px);
  text-align: center;
  margin-bottom: 4px;
  color: var(--ink);
}
.acc-sub {
  text-align: center;
  color: rgba(15,15,16,.55);
  font-size: 13px;
  margin-bottom: 24px;
}

/* Form fields */
.acc-field { margin-bottom: 16px; }
.acc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 400px) { .acc-field-row { grid-template-columns: 1fr; } }

.acc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.acc-forgot {
  font-size: 11px;
  font-weight: 400;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
}
.acc-forgot:hover { text-decoration: underline; }

.acc-input {
  width: 100%;
  border: 2px solid rgba(15,15,16,.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
  box-sizing: border-box;
}
.acc-input:focus { outline: none; border-color: var(--pink); }
.acc-input::placeholder { color: rgba(15,15,16,.35); }

/* Submit button */
.acc-submit { margin-top: 8px; width: 100%; justify-content: center; }
.brush-btn.full-width { width: 100%; justify-content: center; }

/* Divider */
.acc-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 16px;
  color: rgba(15,15,16,.3);
  font-size: 12px;
}
.acc-divider::before, .acc-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(15,15,16,.12);
}

/* Switch row */
.acc-switch {
  text-align: center;
  font-size: 13px;
  color: rgba(15,15,16,.6);
  margin: 0;
}
.acc-link {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
}
.acc-link:hover { text-decoration: underline; }

/* Alerts */
.acc-alert {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.acc-alert-error { background: #fff0f3; border: 1.5px solid var(--pink); color: #b0003a; }
.acc-alert-success { background: #e8fdf5; border: 1.5px solid var(--teal); color: #006644; }

/* ── Dashboard ── */
.acc-dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(15,15,16,.08);
}
.acc-logout-btn { flex-shrink: 0; }

/* Stats row */
.acc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 480px) { .acc-stats { grid-template-columns: 1fr 1fr; } }

.acc-stat-card {
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}
.acc-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 4px;
}
.acc-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(15,15,16,.5);
}

/* Sections */
.acc-section { margin-bottom: 48px; }
.acc-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  color: var(--ink);
}
.acc-section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.acc-section-title-row .acc-section-title { margin-bottom: 0; }

/* Orders table */
.acc-orders-table { border: 2px solid rgba(15,15,16,.1); border-radius: 10px; overflow: hidden; }
.acc-orders-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 60px;
  gap: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.acc-order-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 60px;
  gap: 0;
  padding: 14px 16px;
  font-size: 13px;
  border-top: 1px solid rgba(15,15,16,.06);
  align-items: center;
  background: #fff;
  transition: background .15s;
}
.acc-order-row:hover { background: rgba(237,30,121,.04); }
.acc-order-num { font-weight: 700; color: var(--ink); }
.acc-order-date { color: rgba(15,15,16,.55); }
.acc-order-total { font-weight: 600; }
@media (max-width: 640px) {
  .acc-orders-head { grid-template-columns: 1fr 1fr 80px; }
  .acc-orders-head span:nth-child(2), .acc-orders-head span:nth-child(4) { display: none; }
  .acc-order-row { grid-template-columns: 1fr 1fr 80px; }
  .acc-order-row span:nth-child(2), .acc-order-row span:nth-child(4) { display: none; }
}

/* Status badges */
.acc-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(15,15,16,.08);
  color: var(--ink);
}
.acc-badge-paid { background: #e8fdf5; color: #006644; }
.acc-badge-pending { background: #fff8e0; color: #7a5c00; }
.acc-badge-refunded { background: #fff0f3; color: #b0003a; }
.acc-badge-authorized { background: #e8f0ff; color: #1a3a8a; }

/* Empty state */
.acc-empty {
  text-align: center;
  padding: 48px 24px;
  color: rgba(15,15,16,.5);
  border: 2px dashed rgba(15,15,16,.12);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.acc-empty-icon { font-size: 40px; }

/* Address card */
.acc-address-card {
  background: #fff;
  border: 2px solid rgba(15,15,16,.1);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(15,15,16,.75);
  max-width: 320px;
}

/* Logged-in dot indicator on header icon */
.acc-icon-loggedin { position: relative; }
.acc-icon-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  border: 1.5px solid #fff;
}

/* Mobile nav divider */
.mob-nav-divider {
  height: 1px;
  background: rgba(15,15,16,.1);
  margin: 8px 0;
}
img { -webkit-user-select: none; user-select: none; pointer-events: none; }
/* Re-enable pointer events on buttons/links that use images */
a img, button img { pointer-events: auto; }
/* ── DROPDOWN MENU ── */
.nav-item {
position: relative;
}
.nav-dropdown {
position: absolute;
top: 100%;
left: 0;
background: #fff;
border: 2.5px solid var(--ink);
border-radius: 10px;
min-width: 180px;
padding: 8px 0;
box-shadow: 4px 4px 0 0 var(--pink);
opacity: 0;
pointer-events: none;
transform: translateY(8px);
transition: all .2s ease;
z-index: 50;
}
.nav-item:hover .nav-dropdown {
opacity: 1;
pointer-events: all;
transform: translateY(0);
}
.nav-dropdown a {
display: block;
padding: 10px 20px;
font-family: var(--font-display);
font-size: 12px;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--ink);
text-decoration: none;
transition: color .15s;
}
.nav-dropdown a:hover {
color: var(--pink);
}