/* ============================================================
   Nat's Creations — style.css
   ============================================================ */

/* ── DESIGN TOKENS: LIGHT THEME ────────────────────────────── */
:root {
  --cream:        #faf6f0;
  --blush:        #f5d6d0;
  --rose:         #e8a598;
  --mauve:        #c9a0a8;
  --deep:         #1a1014;
  --charcoal:     #2d2328;
  --gold:         #d4a847;
  --pearl:        #f0ede8;
  --ink:          #3d2f34;
  --accent-blue:  #3a5f8a;
  --bg:           #faf6f0;
  --bg2:          #f0ede8;
  --bg3:          #f5d6d0;
  --surface:      #ffffff;
  --text:         #3d2f34;
  --text2:        #7a6068;
  --border:       rgba(201,160,168,0.3);
  --nav-bg:       rgba(250,246,240,0.95);
  --shadow:       rgba(26,16,20,0.08);
  --card-bg:      #f0ede8;
  --footer-bg:    #1a1014;
}

/* ── DARK THEME ─────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:       #0f0c0d;
  --bg2:      #1a1518;
  --bg3:      #231e20;
  --surface:  #1e191b;
  --text:     #f0ede8;
  --text2:    #b09098;
  --border:   rgba(201,160,168,0.15);
  --nav-bg:   rgba(15,12,13,0.95);
  --shadow:   rgba(0,0,0,0.3);
  --card-bg:  #1e191b;
  --cream:    #0f0c0d;
  --pearl:    #1e191b;
  --blush:    #231e20;
  --charcoal: #f0ede8;
  --ink:      #f0ede8;
  --deep:     #0f0c0d;
  --footer-bg:#070506;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
  transition: background 0.4s, color 0.4s;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, background .3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid var(--mauve); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, transform .15s ease-out;
}
.cursor.hover      { width: 18px; height: 18px; background: var(--rose); }
.cursor-ring.hover { width: 50px; height: 50px; border-color: var(--gold); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .4s, background .4s;
}
nav.scrolled { padding: 11px 5%; box-shadow: 0 4px 30px var(--shadow); }

.nav-logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 2rem; color: var(--text); text-decoration: none;
  cursor: none; letter-spacing: 1px;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: .76rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text); text-decoration: none; position: relative;
  transition: color .3s; cursor: none;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform .35s ease; transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.nav-icon-btn {
  background: none; border: none; cursor: none; color: var(--text);
  font-size: 1rem; position: relative; padding: 4px; transition: color .3s;
}
.nav-icon-btn:hover { color: var(--mauve); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--deep);
  font-size: .6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.sidebar-toggle {
  display: flex; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: none; padding: 4px;
}
.sidebar-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); transition: background .3s;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--charcoal); color: var(--bg2);
  padding: 13px 32px; font-size: .76rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: none; display: inline-block;
  transition: background .3s, transform .2s;
}
[data-theme="dark"] .btn-primary { background: var(--gold); color: var(--deep); }
.btn-primary:hover { background: var(--gold); color: var(--deep); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--mauve); color: var(--text);
  padding: 13px 32px; font-size: .76rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  background: transparent; cursor: none; display: inline-block;
  transition: border-color .3s, color .3s, transform .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25d366; color: #fff;
  padding: 14px 28px; font-size: .76rem; letter-spacing: 2px;
  text-transform: uppercase; border: none; cursor: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .3s, transform .2s; width: 100%;
  justify-content: center; font-family: 'DM Sans', sans-serif;
}
.btn-whatsapp:hover { background: #128c4e; transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 5% 60px;
  position: relative; overflow: hidden; gap: 40px;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,214,208,.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,71,.08) 0%, transparent 60%);
}
[data-theme="dark"] .hero::before {
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,160,168,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,71,.06) 0%, transparent 60%);
}

.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: .7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--mauve); margin-bottom: 18px;
  opacity: 0; animation: fadeUp .8s forwards .3s;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem,5.5vw,5.2rem); line-height: 1.08;
  color: var(--text); margin-bottom: 22px;
  opacity: 0; animation: fadeUp .9s forwards .5s;
}
.hero-title em { font-style: italic; color: var(--mauve); }
.hero-sub {
  font-size: .95rem; line-height: 1.75; color: var(--text2);
  max-width: 400px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp .9s forwards .7s;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s forwards .9s;
}

.hero-visual {
  position: relative; height: 560px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeIn 1.2s forwards .6s;
}
.bead-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid transparent; animation: spinRing linear infinite;
}
.bead-ring::before {
  content: ''; position: absolute;
  width: 13px; height: 13px; border-radius: 50%;
  top: -6px; left: 50%; transform: translateX(-50%);
}
.ring-1 { width: 310px; height: 310px; border-color: rgba(201,160,168,.25); animation-duration: 20s; }
.ring-1::before { background: var(--rose); box-shadow: 0 0 8px var(--rose); }
.ring-2 { width: 230px; height: 230px; border-color: rgba(212,168,71,.25); animation-duration: 13s; animation-direction: reverse; }
.ring-2::before { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.ring-3 { width: 150px; height: 150px; border-color: rgba(58,95,138,.25); animation-duration: 8s; }
.ring-3::before { background: var(--accent-blue); box-shadow: 0 0 6px var(--accent-blue); }
.hero-center-text { position: relative; z-index: 3; text-align: center; }
.hero-center-text .big-script {
  font-family: 'Pinyon Script', cursive; font-size: 4.5rem;
  color: var(--text); display: block; line-height: 1;
}
.hero-center-text .tagline {
  font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mauve); margin-top: 8px;
}
.float-bead {
  position: absolute; border-radius: 50%;
  animation: floatBead ease-in-out infinite; opacity: .6;
}
.float-bead:nth-child(1){width:20px;height:20px;background:var(--rose);top:12%;left:5%;animation-duration:5.5s}
.float-bead:nth-child(2){width:13px;height:13px;background:var(--gold);top:70%;left:12%;animation-duration:4.2s;animation-delay:1s}
.float-bead:nth-child(3){width:17px;height:17px;background:var(--accent-blue);top:25%;right:8%;animation-duration:6s;animation-delay:.5s}
.float-bead:nth-child(4){width:9px;height:9px;background:var(--mauve);top:80%;right:15%;animation-duration:3.8s;animation-delay:1.5s}
.float-bead:nth-child(5){width:26px;height:26px;background:var(--pearl);border:2px solid var(--mauve);top:45%;right:3%;animation-duration:7s;animation-delay:.2s}

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee-band { background: var(--charcoal); padding: 12px 0; overflow: hidden; white-space: nowrap; }
[data-theme="dark"] .marquee-band { background: #0a0708; }
.marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
.marquee-item { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--bg2); padding: 0 36px; }
[data-theme="dark"] .marquee-item { color: rgba(240,237,232,.7); }
.marquee-dot { color: var(--gold); font-size: 1.1rem; vertical-align: middle; }

/* ── SECTIONS ───────────────────────────────────────────────── */
section { padding: 90px 5%; background: var(--bg); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { font-size: .68rem; letter-spacing: 4px; text-transform: uppercase; color: var(--mauve); margin-bottom: 12px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.2vw,2.8rem); color: var(--text); line-height: 1.2; }
.section-title em { font-style: italic; color: var(--mauve); }
.section-rule { width: 50px; height: 1px; background: var(--gold); margin: 18px auto 0; }

/* ── CATEGORIES ─────────────────────────────────────────────── */
.categories { background: var(--bg2); }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.cat-card {
  position: relative; overflow: hidden; background: var(--surface);
  cursor: none; transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  border: 1px solid var(--border);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  border: 1.5px solid transparent; transition: border-color .3s;
  pointer-events: none; z-index: 5;
}
.cat-card:hover::after { border-color: var(--gold); }
.cat-card-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 22px; text-align: center;
}
.cat-visual { width: 170px; height: 170px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.cat-label { font-size: .65rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--mauve); margin-bottom: 7px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); margin-bottom: 9px; }
.cat-desc { font-size: .8rem; color: var(--text2); line-height: 1.6; margin-bottom: 20px; }
.cat-price { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.cat-btn {
  margin-top: 18px; background: var(--charcoal); color: var(--bg2);
  border: none; padding: 10px 26px; font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: none; transition: background .3s;
  font-family: 'DM Sans', sans-serif;
}
[data-theme="dark"] .cat-btn { background: var(--gold); color: var(--deep); }
.cat-btn:hover { background: var(--gold); color: var(--deep); }

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-strip {
  background: var(--bg3); padding: 70px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 70px; flex-wrap: wrap;
}
.about-stat { text-align: center; }
.about-stat .num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--text); line-height: 1; }
.about-stat .label { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--mauve); margin-top: 7px; }
.about-divider { width: 1px; height: 55px; background: var(--border); }

/* ── SHOP FILTER TABS ───────────────────────────────────────── */
.filter-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 22px; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  border: 1.5px solid var(--border); background: transparent; color: var(--text);
  cursor: none; transition: all .3s; font-family: 'DM Sans', sans-serif;
}
.filter-tab.active, .filter-tab:hover { background: var(--charcoal); color: var(--bg2); border-color: var(--charcoal); }
[data-theme="dark"] .filter-tab.active,
[data-theme="dark"] .filter-tab:hover { background: var(--gold); color: var(--deep); border-color: var(--gold); }

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.product-card {
  background: var(--card-bg); cursor: none;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
  position: relative; border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px var(--shadow); }
.product-img {
  aspect-ratio: 1; overflow: hidden; position: relative;
  background: var(--bg3); display: flex; align-items: center; justify-content: center;
}
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--charcoal); color: var(--bg2);
  font-size: .58rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 9px; z-index: 2;
}
.product-badge.gold { background: var(--gold); color: var(--deep); }
.product-badge.sale { background: #e04040; color: #fff; }
.product-info { padding: 16px 18px 20px; }
.product-theme { font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mauve); margin-bottom: 4px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.product-price { font-size: .95rem; font-weight: 500; color: var(--text); }
.product-price .original { text-decoration: line-through; color: var(--text2); font-size: .8rem; margin-right: 6px; }
.product-price .sale-price { color: #e04040; }
.add-btn {
  width: 32px; height: 32px; background: var(--charcoal); color: var(--bg2);
  border: none; font-size: 1.2rem; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .2s; font-family: 'DM Sans', sans-serif;
}
[data-theme="dark"] .add-btn { background: var(--gold); color: var(--deep); }
.add-btn:hover { background: var(--gold); color: var(--deep); transform: rotate(90deg); }
.product-overlay {
  position: absolute; inset: 0; background: rgba(26,16,20,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-view {
  background: var(--bg2); color: var(--charcoal);
  padding: 9px 20px; font-size: .66rem; letter-spacing: 2.5px;
  text-transform: uppercase; border: none; cursor: none;
  transition: background .3s; font-family: 'DM Sans', sans-serif;
}
.quick-view:hover { background: var(--gold); }

/* ── SALE BADGE WITH RIBBON ─────────────────────────────────── */
.sale-ribbon {
  position: absolute; top: 12px; right: -6px;
  background: #e04040; color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 4px 12px 4px 10px; z-index: 3;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 5% 50%);
}

/* ── CATEGORY PAGE HEADER ───────────────────────────────────── */
.page-header {
  background: var(--bg2); padding: 80px 5% 50px;
  border-bottom: 1px solid var(--border);
}
.page-header .back-btn {
  background: none; border: none; color: var(--mauve); cursor: none;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s; font-family: 'DM Sans', sans-serif; padding: 0;
}
.page-header .back-btn:hover { color: var(--gold); }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,3.5rem); color: var(--text); margin-bottom: 12px;
}
.page-header p { font-size: .9rem; color: var(--text2); }

/* ── CUSTOM SECTION ─────────────────────────────────────────── */
.custom-section { background: var(--charcoal); color: var(--bg2); }
[data-theme="dark"] .custom-section { background: #0a0708; }
.custom-section .section-title { color: var(--bg2); }
.custom-section .section-label { color: var(--rose); }
.custom-section .section-rule  { background: var(--gold); }
.custom-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; max-width: 1100px; margin: 0 auto; }
.custom-left .section-header { text-align: left; }
.custom-left .section-rule   { margin-left: 0; }
.custom-desc { color: rgba(240,237,232,.72); line-height: 1.8; font-size: .93rem; margin-bottom: 32px; }
.themes-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.theme-chip {
  padding: 5px 14px; border: 1px solid rgba(201,160,168,.35);
  font-size: .7rem; letter-spacing: 1.5px; color: rgba(240,237,232,.75);
  transition: border-color .3s, color .3s;
}
.theme-chip:hover { border-color: var(--gold); color: var(--gold); }
.custom-right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-card {
  padding: 24px 20px; border: 1px solid rgba(201,160,168,.2);
  transition: border-color .3s;
}
.feature-card:hover { border-color: var(--gold); }
.feature-icon  { font-size: 1.6rem; margin-bottom: 10px; }
.feature-title { font-family: 'Playfair Display', serif; font-size: .92rem; color: var(--bg2); margin-bottom: 7px; }
.feature-text  { font-size: .78rem; color: rgba(240,237,232,.55); line-height: 1.6; }

/* ── CUSTOM BUILDER PAGE ────────────────────────────────────── */
.builder-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.builder-preview {
  position: sticky; top: 100px;
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 40px; text-align: center; border-radius: 2px;
}
.builder-preview h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--text); margin-bottom: 24px;
}
#builderSvg { width: 100%; max-width: 260px; height: 260px; }
.builder-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border);
}
.builder-price-label { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text2); }
.builder-price-value { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); }

.builder-controls h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--text); margin-bottom: 28px;
}
.builder-group { margin-bottom: 28px; }
.builder-group label {
  display: block; font-size: .68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mauve); margin-bottom: 12px;
}
.type-btns { display: flex; gap: 10px; }
.type-btn {
  flex: 1; padding: 10px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text); font-size: .72rem;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: none;
  transition: all .3s; font-family: 'DM Sans', sans-serif;
}
.type-btn.active { background: var(--charcoal); color: var(--bg2); border-color: var(--charcoal); }
[data-theme="dark"] .type-btn.active { background: var(--gold); color: var(--deep); border-color: var(--gold); }
.text-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  background: var(--card-bg); color: var(--text); font-size: .9rem;
  font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .3s;
  letter-spacing: 2px; text-transform: uppercase;
}
.text-input:focus { border-color: var(--gold); }
.text-input::placeholder { color: var(--text2); text-transform: none; letter-spacing: 0; }
.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch {
  width: 32px; height: 32px; border-radius: 50%; cursor: none;
  border: 2px solid transparent; transition: transform .2s, border-color .2s;
}
.color-swatch:hover, .color-swatch.active { transform: scale(1.2); border-color: var(--gold); }
.charm-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.charm-btn {
  aspect-ratio: 1; background: var(--bg2); border: 1.5px solid var(--border);
  font-size: 1.2rem; cursor: none; transition: all .25s; display: flex;
  align-items: center; justify-content: center;
}
.charm-btn:hover, .charm-btn.active { border-color: var(--gold); background: var(--bg3); transform: scale(1.1); }
.builder-add-btn {
  width: 100%; padding: 14px; background: var(--gold); color: var(--deep);
  border: none; font-size: .76rem; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: none; font-family: 'DM Sans', sans-serif; transition: background .3s, transform .2s;
  margin-top: 8px;
}
.builder-add-btn:hover { background: var(--charcoal); color: var(--bg2); transform: translateY(-2px); }

/* ── INSTAGRAM STRIP ────────────────────────────────────────── */
.instagram-strip { background: var(--bg); }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 5px; max-width: 1200px; margin: 0 auto 36px; }
.insta-cell { aspect-ratio: 1; position: relative; overflow: hidden; cursor: none; }
.insta-cell svg { width: 100%; height: 100%; }
.insta-overlay {
  position: absolute; inset: 0; background: rgba(26,16,20,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: #fff; font-size: 1.3rem;
}
.insta-cell:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; }
.insta-handle {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: var(--text); display: inline-flex; align-items: center;
  gap: 9px; text-decoration: none; transition: color .3s;
}
.insta-handle:hover { color: var(--mauve); }

/* ── CART PANEL ─────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 290; opacity: 0; pointer-events: none; transition: opacity .35s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 400px; background: var(--surface); z-index: 300;
  display: flex; flex-direction: column;
  transition: right .4s cubic-bezier(.25,.46,.45,.94);
  box-shadow: -10px 0 40px var(--shadow);
  border-left: 1px solid var(--border);
}
.cart-panel.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--border);
}
.cart-header h2 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text);
}
.cart-close {
  background: none; border: none; cursor: none; font-size: 1.2rem; color: var(--text2);
  transition: color .3s;
}
.cart-close:hover { color: var(--text); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--text2); font-size: .9rem; margin-top: 60px; }

.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  gap: 12px;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; color: var(--text); display: block; margin-bottom: 3px; }
.cart-item-price { font-size: .75rem; color: var(--text2); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-item-controls button {
  width: 26px; height: 26px; background: var(--bg2);
  border: 1px solid var(--border); color: var(--text); cursor: none;
  font-size: .9rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cart-item-controls button:hover { background: var(--gold); color: var(--deep); }
.cart-item-controls .remove-btn { background: none; border: none; color: var(--mauve); font-size: .85rem; cursor: none; }
.cart-item-controls .remove-btn:hover { color: #e04040; }
.cart-item-controls span { font-size: .9rem; color: var(--text); min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px 24px; border-top: 1px solid var(--border);
  background: var(--bg2);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.cart-total-label { font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text2); }
.cart-total-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text); }
.cart-discount-note { font-size: .72rem; color: #25d366; margin-bottom: 16px; min-height: 18px; }

/* ── AUDIENCE SIDEBAR ───────────────────────────────────────── */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 290; opacity: 0; pointer-events: none; transition: opacity .35s;
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }

.audience-sidebar {
  position: fixed; top: 0; right: -280px; bottom: 0;
  width: 260px; background: var(--surface); z-index: 300;
  transition: right .4s cubic-bezier(.25,.46,.45,.94);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 30px var(--shadow);
  display: flex; flex-direction: column;
}
.audience-sidebar.open { right: 0; }
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 20px; border-bottom: 1px solid var(--border);
}
.sidebar-header h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text); }
.sidebar-close {
  background: none; border: none; cursor: none; font-size: 1.1rem;
  color: var(--text2); transition: color .3s;
}
.sidebar-close:hover { color: var(--text); }
.sidebar-links { padding: 20px 0; flex: 1; }
.sidebar-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; cursor: none; border: none; background: none;
  width: 100%; text-align: left; color: var(--text);
  transition: background .25s, color .25s; font-family: 'DM Sans', sans-serif;
  border-bottom: 1px solid var(--border);
}
.sidebar-link:hover { background: var(--bg2); color: var(--gold); }
.sidebar-link .link-icon { font-size: 1.4rem; }
.sidebar-link .link-label { font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.sidebar-link .link-desc { font-size: .72rem; color: var(--text2); margin-top: 2px; }
.sidebar-link-content { flex: 1; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--footer-bg); color: var(--bg2); padding: 65px 5% 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 55px;
  padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px;
}
.footer-brand .logo {
  font-family: 'Pinyon Script', cursive; font-size: 2.4rem;
  color: var(--bg2); display: block; margin-bottom: 14px;
}
.footer-brand p { font-size: .83rem; color: rgba(240,237,232,.45); line-height: 1.7; max-width: 270px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.18);
  color: var(--bg2); text-decoration: none; font-size: .7rem;
  letter-spacing: 1.5px; transition: border-color .3s, color .3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,237,232,.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(240,237,232,.55); text-decoration: none; font-size: .83rem; transition: color .3s; cursor: none; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .7rem; color: rgba(240,237,232,.25); letter-spacing: 1px; }

/* ── TOAST ──────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--charcoal); color: var(--bg2);
  padding: 12px 24px; font-size: .76rem; letter-spacing: 1.5px;
  z-index: 9000; opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.toast-success { background: #1a5c35; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeUp  { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes spinRing{ from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes floatBead { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1024px) { .products-grid{grid-template-columns:repeat(3,1fr)} }
@media(max-width:900px) {
  .hero{grid-template-columns:1fr;padding:110px 5% 50px}
  .hero-visual{height:280px}
  .cat-grid{grid-template-columns:1fr 1fr}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .custom-layout{grid-template-columns:1fr;gap:36px}
  .builder-layout{grid-template-columns:1fr}
  .builder-preview{position:static}
  .footer-top{grid-template-columns:1fr;gap:32px}
  .insta-grid{grid-template-columns:repeat(3,1fr)}
  nav .nav-links{display:none}
  .about-strip{gap:36px}
  .about-divider{display:none}
}
@media(max-width:520px) {
  .products-grid{grid-template-columns:1fr 1fr;gap:12px}
  .cat-grid{grid-template-columns:1fr}
  .custom-right{grid-template-columns:1fr}
  .cart-panel{width:100%;right:-100%}
  .audience-sidebar{width:240px}
}
