/*-----------------------------------*\
  Nisha Boutique — Royal Purple + Gold
  Luxury Editorial Design System
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,500;1,700&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Palette */
  --p1: #4B0082;       /* Deep Indigo */
  --p2: #6A0DAD;       /* Royal Purple */
  --p3: #9B59B6;       /* Medium Purple */
  --p-dark: #2D0050;
  --p-xdark: #1A002E;
  --p-light: #EDE0F5;
  --p-xlight: #F8F3FC;

  /* Gold Accents */
  --gold: #C9A84C;
  --gold2: #E8C96B;
  --gold-dark: #A07830;
  --gold-light: #FBF3DC;
  --gold-xlight: #FFFBF0;

  /* Neutrals */
  --white: #FFFFFF;
  --off: #FDFAFF;
  --text: #1C0A2E;
  --text2: #3D1A5C;
  --muted: #7A5E96;
  --muted2: #B39CC8;
  --border: #DDD0EE;
  --border2: #EAE0F5;
  --card: #FFFFFF;

  /* Effects */
  --shadow: 0 4px 24px rgba(75, 0, 130, .10);
  --shadow-md: 0 8px 36px rgba(75, 0, 130, .16);
  --shadow-lg: 0 20px 60px rgba(75, 0, 130, .22);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, .30);

  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--off);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--p-xlight); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--p2), var(--gold)); border-radius: 99px; }

/* ── HEADER ── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(253, 250, 255, .96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(75,0,130,.07);
}
.hdr-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.logo-emblem {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(75,0,130,.35);
  position: relative;
  overflow: hidden;
}
.logo-emblem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,.3));
}
.logo-emblem span {
  color: var(--gold2);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--p-dark);
  letter-spacing: .02em;
  line-height: 1.1;
}
.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: all .2s;
  letter-spacing: .02em;
}
.nav-links a:hover {
  background: var(--p-light);
  color: var(--p2);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--p-xdark) !important;
  font-weight: 700 !important;
  padding: 8px 22px !important;
  border-radius: 50px !important;
  box-shadow: var(--shadow-gold) !important;
  letter-spacing: .04em;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,.45) !important;
}
.dark-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 17px;
  transition: all .2s;
  color: var(--text);
  margin-left: 8px;
}
.dark-toggle:hover {
  border-color: var(--gold);
  background: var(--gold-xlight);
}
.hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}
.mob-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mob-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border2);
}
.mob-menu a:last-child { border: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--p-xdark) 0%, var(--p-dark) 35%, var(--p1) 65%, var(--p2) 90%, #7B2FBE 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 28px 60px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(201,168,76,.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.06) 0%, transparent 40%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 70px 70px, 70px 70px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.18), transparent 65%);
  top: -250px;
  right: -150px;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.12) rotate(6deg); } }
.hero-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold2);
  border-radius: 50%;
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 68px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold2);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 520px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold2));
  color: var(--p-xdark);
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  box-shadow: var(--shadow-gold);
  letter-spacing: .03em;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,168,76,.5); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.hero-stats-card {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 18px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat-box {
  padding: 18px;
  text-align: center;
}
.stat-box + .stat-box { border-left: 1px solid rgba(255,255,255,.15); }
.stat-row-2 { border-top: 1px solid rgba(255,255,255,.15); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.stat-num span { font-size: 20px; color: var(--gold2); }
.stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-notice {
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.notice-dot {
  width: 9px;
  height: 9px;
  background: var(--gold2);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,168,76,.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 4px rgba(201,168,76,.25);} 50%{box-shadow:0 0 0 8px rgba(201,168,76,.1);} }
.hero-notice p { font-size: 13px; color: rgba(255,255,255,.85); }
.hero-notice strong { color: var(--gold2); }

/* ── MARQUEE / NOTICE BAR ── */
.notice-bar {
  background: linear-gradient(90deg, var(--p-xdark), var(--p-dark));
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-dark);
}
.notice-track {
  display: flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.notice-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.notice-item {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.notice-item::before { content: '✦'; color: var(--gold); font-size: 9px; }

/* ── TABS ── */
.tabs-wrap {
  max-width: 1380px;
  margin: 40px auto 0;
  padding: 0 28px;
}
.tab-bar {
  display: flex;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 6px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.tab-btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 16px;
  border: none;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  letter-spacing: .02em;
}
.tab-btn.active, .tab-btn:is(a).active {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(75,0,130,.3);
}
.tab-btn:hover:not(.active) {
  background: var(--p-xlight);
  color: var(--p2);
}

/* ── CONTENT ── */
.content {
  max-width: 1380px;
  margin: 0 auto;
  padding: 36px 28px 90px;
}
.tab-panel { display: none; animation: fadeUp .35s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── SECTION HEADERS ── */
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.divider {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--p-light), transparent);
  margin-bottom: 32px;
  border-radius: 2px;
}

/* ── PRODUCT GRID ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.prod-card {
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all .28s;
  box-shadow: var(--shadow);
}
.prod-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,168,76,.2);
}
.prod-img {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, var(--p-light), #ddd6fe);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-img .img-placeholder {
  font-size: 52px;
  opacity: .5;
}
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--p-xdark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.prod-body { padding: 18px 20px; }
.prod-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}
.prod-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }
.prod-footer {
  border-top: 1.5px solid var(--border2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--p2);
}
.prod-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25d366;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
}
.prod-wa:hover { background: #128c7e; transform: scale(1.05); }

/* ── FEATURED LIST ── */
.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-card {
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
  transition: all .22s;
  box-shadow: var(--shadow);
}
.feat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.feat-icon {
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--p-light), #e0d0f5);
}
.feat-info { flex: 1; }
.feat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.feat-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.feat-info p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.feat-price {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--p2);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── ABOUT CARD ── */
.about-card {
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--p1), var(--gold), var(--p2));
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.value-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--p-xlight);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  transition: all .2s;
}
.value-item:hover { background: var(--p-light); transform: translateX(4px); }
.value-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  font-size: 17px;
  flex-shrink: 0;
}
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.value-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CONTACT CARD ── */
.contact-card {
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--p2));
}
.contact-hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--border2);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-hdr h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}
.info-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }

/* ── FORM ── */
.form-wrap { display: flex; flex-direction: column; gap: 14px; }
.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--p-xlight);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border .2s, background .2s;
}
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  border-color: var(--p2);
  background: #fff;
}
.form-wrap textarea { resize: vertical; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(75,0,130,.3);
  letter-spacing: .03em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(75,0,130,.4); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.45); }

/* ── MODAL ── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 5, 40, .75);
  z-index: 600;
  overflow-y: auto;
  padding: 32px 20px;
  backdrop-filter: blur(6px);
}
.overlay.open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.modal {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  width: 100%;
  max-width: 860px;
  animation: modalUp .3s ease;
  margin: auto;
  overflow: hidden;
}
@keyframes modalUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.modal-top {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title-row { display: flex; align-items: center; gap: 14px; }
.modal-icon-box {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.15);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.modal-cat { font-size: 12px; color: var(--gold2); margin-top: 2px; letter-spacing: .05em; }
.modal-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: rgba(255,255,255,.3); }
.modal-body {
  padding: 28px;
  max-height: 75vh;
  overflow-y: auto;
}

/* ── GALLERY FILTER BTNS ── */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gal-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--card);
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
}
.gal-btn.active {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(75,0,130,.3);
}
.gal-btn:hover:not(.active) { border-color: var(--p2); color: var(--p2); }

/* ── DARK MODE ── */
body.dark {
  --off: #0F0619;
  --card: #1C0A2E;
  --white: #1C0A2E;
  --border: #3D1A5C;
  --border2: #2D1245;
  --p-xlight: #1A0830;
  --p-light: #2D1245;
  --text: #F0E8FC;
  --text2: #D4B8EC;
  --muted: #A07EC0;
  --muted2: #7A5E96;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-md: 0 8px 36px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.6);
}
body.dark .hdr { background: rgba(15, 6, 25, .96); }
body.dark .modal { background: #1C0A2E; }
body.dark .form-wrap input,
body.dark .form-wrap select,
body.dark .form-wrap textarea { background: #0F0619; border-color: #3D1A5C; color: #F0E8FC; }
body.dark .gal-btn:not(.active) { background: #1C0A2E; }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  transition: all .25s;
  animation: wa-glow 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes wa-glow { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.5);} 50%{box-shadow:0 6px 40px rgba(37,211,102,.8);} }
.wa-tip {
  position: absolute;
  right: 66px;
  background: white;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  font-family: 'Jost', sans-serif;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .content > .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 540px) {
  .hero { padding: 72px 18px 50px; }
  .content { padding: 24px 16px 70px; }
  .tabs-wrap { padding: 0 16px; }
  .tab-btn { font-size: 12px; padding: 8px 10px; min-width: 80px; }
  .prod-grid { grid-template-columns: 1fr; }
}
