/* ============================================================
   SERAPHINE BY AR — MAIN THEME CSS
   Bootstrap 5 + Custom Luxury Styling
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --sar-black:       #0A0A0A;
  --sar-black2:      #111008;
  --sar-black3:      #1A1A12;
  --sar-gold:        #C9A84C;
  --sar-gold2:       #E8C96A;
  --sar-gold3:       #F5DFA0;
  --sar-gold-dim:    rgba(201,168,76,0.15);
  --sar-gold-glow:   rgba(201,168,76,0.25);
  --sar-white:       #FFFFFF;
  --sar-off-white:   #FAFAF8;
  --sar-cream:       #F9F4EC;
  --sar-text:        #1A1A12;
  --sar-muted:       #6B6B5A;
  --sar-border:      rgba(201,168,76,0.2);
  --sar-border-dark: rgba(201,168,76,0.35);

  --font-display: 'Prata', Georgia, serif;
  --font-body:    'Prata', sans-serif;

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.18);
  --shadow-dark: 0 8px 40px rgba(10,10,10,0.15);
  
  --gold:      #C9A84C;
  --gold2:     #E8C96A;
  --gold3:     #F5DFA0;
  --black:     #080808;
  --black2:    #0D0C09;
  --black3:    #111008;
  --cream:     #F9F4EC;
  --cream2:    #F5E6C8;
  --text:      #1A1A12;
  --muted:     #6B6B5A;
  --border:    rgba(201,168,76,0.2);
  --ff-prata:  'Prata', Georgia, serif;
  --ff-cinzel: 'Cinzel', serif;
  --ff-cg:     'Cormorant Garamond', serif;
  --ff-sans:   'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--sar-text);
  background: var(--sar-white);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  color: var(--sar-gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--sar-black); }

img { max-width: 100%; height: auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sar-black);
}

.display-serif {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sar-gold);
}

.text-gold { color: var(--sar-gold) !important; }
.text-gold2 { color: var(--sar-gold2) !important; }

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--sar-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sar-black);
}
.section-title em { font-style: italic; color: var(--sar-gold); }
.section-title.light { color: var(--sar-cream); }
.section-title.light em { color: var(--sar-gold2); }

.section-sub {
  font-size: 0.95rem;
  color: var(--sar-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
}
.gold-divider.centered { justify-content: center; }
.gd-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sar-gold), transparent);
  flex: 1;
  max-width: 140px;
}
.gd-diamond {
  width: 7px; height: 7px;
  background: var(--sar-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.gd-diamond-sm {
  width: 4px; height: 4px;
  background: rgba(201,168,76,0.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   PARTICLE CANVAS
   ============================================================ */
.particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-sar-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--sar-gold) 0%, #A87E28 100%);
  color: var(--sar-black) !important;
  padding: 14px 38px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sar-gold:hover {
  background: transparent;
  color: var(--sar-gold) !important;
  border-color: var(--sar-gold);
  box-shadow: none;
}

.btn-sar-black {
  display: inline-block;
  background: var(--sar-black);
  color: var(--sar-gold) !important;
  padding: 14px 38px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  border: 2px solid var(--sar-black);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sar-black:hover {
  background: var(--sar-gold);
  color: var(--sar-black) !important;
  border-color: var(--sar-gold);
}

.btn-sar-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--sar-gold) !important;
  padding: 13px 36px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  border: 1.5px solid var(--sar-gold);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-sar-outline-gold:hover {
  background: var(--sar-gold);
  color: var(--sar-black) !important;
}

.btn-sar-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--sar-black) !important;
  padding: 13px 36px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  border: 1.5px solid var(--sar-black);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-sar-outline-dark:hover {
  background: var(--sar-black);
  color: var(--sar-gold) !important;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.sar-topbar {
  background: var(--sar-black);
  color: var(--sar-gold2);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.sar-topbar .topbar-sep { opacity: 0.3; margin: 0 16px; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.sar-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #000000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sar-border);
  transition: var(--transition);
}
.sar-header.scrolled {
  box-shadow: 0 4px 30px rgba(10,10,10,0.08);
}

.sar-navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 90px;
  max-width: 1440px;
  margin: 0 auto;
}

.sar-nav-left,
.sar-nav-right {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
}
.sar-nav-right { justify-content: flex-end; gap: 10px; }

.sar-nav-left .nav-item,
.sar-nav-right .nav-item { position: relative; }

.sar-nav-left .nav-link,
.sar-nav-right .nav-link {
  font-size: 14px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 18px !important;
  position: relative;
  transition: color 0.25s;
}
.sar-nav-left .nav-link::after,
.sar-nav-right .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px;
  width: 0; height: 1.5px;
  background: var(--sar-gold);
  transition: width 0.3s ease;
}
.sar-nav-left .nav-link:hover,
.sar-nav-right .nav-link:hover { color: var(--sar-gold) !important; }
.sar-nav-left .nav-link:hover::after,
.sar-nav-right .nav-link:hover::after {
  width: calc(100% - 36px);
}

/* Dropdown */
.sar-nav-left .dropdown-menu,
.sar-nav-right .dropdown-menu {
  border: 1px solid var(--sar-border);
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(10,10,10,0.12);
  padding: 8px 0;
  min-width: 200px;
  background: white;
}
.sar-nav-left .dropdown-item,
.sar-nav-right .dropdown-item {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sar-text);
  padding: 10px 22px;
  font-weight: 500;
  transition: var(--transition);
}
.sar-nav-left .dropdown-item:hover,
.sar-nav-right .dropdown-item:hover {
  background: var(--sar-black);
  color: var(--sar-gold);
}

/* Logo center */
.sar-logo-center { display: flex; justify-content: center; }
.sar-logo-center img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.2));
  transition: filter 0.3s;
}
.sar-logo-center img:hover {
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.4));
}
.sar-logo-center .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.sar-logo-center .logo-text-main {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--sar-black);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
}
.sar-logo-center .logo-text-sub {
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--sar-gold);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

/* Cart/icons */
.sar-nav-icons { display: flex; align-items: center; gap: 6px; }
.sar-nav-icon-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; font-family: var(--font-body);
  padding: 8px 14px;
  transition: color 0.25s;
  position: relative;
}
.sar-nav-icon-btn:hover { color: var(--sar-gold); }
.sar-cart-count {
  position: absolute; top: 2px; right: 6px;
  background: var(--sar-gold);
  color: var(--sar-black);
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 0.55rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; line-height: 1;
}

/* Mobile hamburger */
.sar-mobile-menu-btn {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.sar-mobile-menu-btn span {
  display: block; width: 24px; height: 1.5px;
  background: var(--sar-gold); transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.sar-hero {
  position: relative;
  min-height: 96vh;
  background: var(--sar-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sar-hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.sar-hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sar-hero-glow2 {
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.sar-hero-content {
  position: relative;
  z-index: 5;
}

.sar-hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.sar-hero-eyebrow-line { width: 40px; height: 1px; background: var(--sar-gold); }
.sar-hero-eyebrow-text {
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sar-gold); font-weight: 700;
}

.sar-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--sar-black);
  margin-bottom: 24px;
}
.sar-hero h1 em { font-style: italic; color: var(--sar-gold); }

.sar-hero-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--sar-muted);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 40px;
}

.sar-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right visual cards */
.sar-hero-cards {
  position: relative; z-index: 5;
}
.sar-hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sar-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  cursor: pointer;
  transition: border-color 0.4s;
}
.sar-hero-card:hover { border-color: rgba(201,168,76,0.5); }
.sar-hero-card:first-child { grid-column: 1 / 3; }

.sar-hero-card-inner {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.sar-hero-card:first-child .sar-hero-card-inner { min-height: 300px; padding: 30px; }

.sar-hc-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sar-hero-card:hover .sar-hc-bg { transform: scale(1.06); }

.sar-hc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}

.sar-hc-body { position: relative; z-index: 2; }
.sar-hc-cat {
  font-size: 0.6rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--sar-gold); margin-bottom: 6px; font-weight: 700;
}
.sar-hc-title {
  font-family: var(--font-display);
  font-size: 1.4rem; color: white; font-weight: 400;
}
.sar-hero-card:first-child .sar-hc-title { font-size: 1.8rem; }

/* Card BGs */
.sar-hc-bg-1 { background: linear-gradient(145deg, #3D1530 0%, #200C1A 50%, #0E0608 100%); }
.sar-hc-bg-2 { background: linear-gradient(145deg, #1A1800 0%, #110E00 50%, #080600 100%); }
.sar-hc-bg-3 { background: linear-gradient(145deg, #041826 0%, #020E1A 50%, #01080D 100%); }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.sar-marquee {
  background: var(--sar-black);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  padding: 15px 0;
}
.sar-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: sarMarquee 28s linear infinite;
}
.sar-marquee-item {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sar-gold);
  font-weight: 600;
  padding: 0 42px;
  flex-shrink: 0;
}
.sar-marquee-dot { color: rgba(201,168,76,0.3); }
@keyframes sarMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORIES SECTION  (WHITE BG + PARTICLES)
   ============================================================ */
.sar-categories {
  position: relative;
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF6E0 50%, #FFFBF0 100%);
  padding: 100px 0;
  overflow: hidden;
}

.sar-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sar-cat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.08);
  text-decoration: none;
  display: block;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.sar-cat-card:hover {
  border-color: var(--sar-gold);
  box-shadow: var(--shadow-gold);
}

.sar-cat-visual {
  height: 420px;
  position: relative;
  overflow: hidden;
}
.sar-cat-bg {
  position: absolute; inset: 0;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sar-cat-card:hover .sar-cat-bg { transform: scale(1.07); }

.sar-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.15) 60%, transparent 100%);
  transition: opacity 0.3s;
}

.sar-cat-symbol {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  font-size: 5rem; opacity: 0.12; pointer-events: none;
  transition: opacity 0.3s, transform 0.4s;
  z-index: 1;
}
.sar-cat-card:hover .sar-cat-symbol { opacity: 0.05; transform: translate(-50%,-65%); }

.sar-cat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 24px; z-index: 3;
}

.sar-cat-label {
  font-size: 0.6rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--sar-gold); font-weight: 700; display: block; margin-bottom: 6px;
}
.sar-cat-name {
  font-family: var(--font-display);
  font-size: 1.6rem; color: white; font-weight: 400; line-height: 1.1;
  margin-bottom: 10px;
}
.sar-cat-cta {
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sar-gold2); font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  display: block;
}
.sar-cat-card:hover .sar-cat-cta { opacity: 1; transform: translateY(0); }

.sar-cat-badge {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  background: var(--sar-gold); color: var(--sar-black);
  font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; font-weight: 700;
}
.sar-cat-badge.outline {
  background: transparent;
  border: 1px solid var(--sar-gold);
  color: var(--sar-gold);
}
.sar-cat-grid img {
  height: 420px;
  width: 100%;
}

/* Category BG colors */
.sar-bg-kurti   { background: linear-gradient(155deg, #3D1530 0%, #240C1C 50%, #0F060D 100%); }
.sar-bg-sarees  { background: linear-gradient(155deg, #2A1A04 0%, #1A0E02 50%, #0A0601 100%); }
.sar-bg-indo    { background: linear-gradient(155deg, #041A26 0%, #02101A 50%, #01070D 100%); }
.sar-bg-haldi   { background: linear-gradient(155deg, #261A04 0%, #1A1002 50%, #0D0801 100%); }
.sar-bg-bridal  { background: linear-gradient(155deg, #1A0A26 0%, #100618 50%, #08030D 100%); }

/* gold radial glow per card */
.sar-bg-kurti::after  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 35%, rgba(180,60,120,0.18) 0%, transparent 65%); }
.sar-bg-sarees::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 35%, rgba(201,168,76,0.20) 0%, transparent 65%); }
.sar-bg-indo::after   { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 35%, rgba(60,130,200,0.18) 0%, transparent 65%); }
.sar-bg-haldi::after  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 35%, rgba(220,150,20,0.22) 0%, transparent 65%); }
.sar-bg-bridal::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 35%, rgba(150,80,200,0.18) 0%, transparent 65%); }

/* ============================================================
   BLACK BLOCK SECTION — FEATURED / ABOUT
   ============================================================ */
.sar-block-black {
  background: var(--sar-black);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.sar-block-black-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.sar-black-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Gold stat cards in black section */
.sar-stat-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
  height: 100%;
}
.sar-stat-card:hover {
  border-color: var(--sar-gold);
  background: rgba(201,168,76,0.04);
}
.sar-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sar-gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.sar-stat-label {
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(249,244,236,0.45);
  font-weight: 600;
}

/* ============================================================
   PRODUCTS SECTION  (BLACK BG)
   ============================================================ */
.sar-products {
  background: var(--sar-black2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sar-product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sar-product-card:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,10,8,0.4);
}

.sar-product-img {
  position: relative;
  overflow: hidden;
  height: 290px;
}
.sar-product-img-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sar-product-card:hover .sar-product-img-bg { transform: scale(1.08); }
.sar-product-img-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.55) 0%, transparent 60%);
}

.sar-product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 11px; font-weight: 700;
}
.badge-new   { background: var(--sar-gold); color: var(--sar-black); }
.badge-sale  { background: #C84848; color: white; }
.badge-haldi { background: #D09020; color: var(--sar-black); }
.badge-fav   { background: rgba(201,168,76,0.12); color: var(--sar-gold); border: 1px solid var(--sar-gold); }

.sar-product-wishlist {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  color: white; opacity: 0;
  transition: opacity 0.3s;
}
.sar-product-card:hover .sar-product-wishlist { opacity: 1; }
.sar-product-wishlist:hover { background: var(--sar-gold); color: var(--sar-black); }

.sar-product-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sar-product-cat {
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sar-gold); font-weight: 700; margin-bottom: 7px;
}
.sar-product-name {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--sar-cream); font-weight: 400;
  line-height: 1.25; margin-bottom: 12px; flex: 1;
}
.sar-product-price {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px;
}
.sar-price-now { font-size: 1rem; color: var(--sar-gold2); font-weight: 600; }
.sar-price-was {
  font-size: 0.82rem; color: rgba(249,244,236,0.25);
  text-decoration: line-through;
}

.sar-add-to-cart {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--sar-gold);
  padding: 12px;
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.sar-add-to-cart:hover {
  background: var(--sar-gold);
  color: var(--sar-black);
  border-color: var(--sar-gold);
}

/* Product img BGs */
.pi-1 { background: linear-gradient(155deg, #4A1A38 0%, #2E0E22 50%, #160810 100%); }
.pi-2 { background: linear-gradient(155deg, #3D2A04 0%, #261A02 50%, #120D01 100%); }
.pi-3 { background: linear-gradient(155deg, #062030 0%, #03141F 50%, #010A0F 100%); }
.pi-4 { background: linear-gradient(155deg, #302004 0%, #1F1402 50%, #0F0A01 100%); }
.pi-5 { background: linear-gradient(155deg, #380A28 0%, #220616 50%, #100308 100%); }
.pi-6 { background: linear-gradient(155deg, #2A1800 0%, #1A0F00 50%, #0D0700 100%); }
.pi-7 { background: linear-gradient(155deg, #1A2A0A 0%, #101A06 50%, #080D03 100%); }
.pi-8 { background: linear-gradient(155deg, #2A1A04 0%, #1A1002 50%, #0A0801 100%); }

.sar-product-img-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 2L28 15L15 28L2 15Z' stroke='%23C9A84C' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}

/* ============================================================
   HALDI FEATURE SECTION  (GOLD / CREAM BG)
   ============================================================ */
.sar-haldi-section {
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF6E0 50%, #FFFBF0 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.sar-haldi-deco {
  position: absolute; top: 50%; right: -40px;
  transform: translateY(-50%) rotate(-15deg);
  font-size: 22rem; font-family: var(--font-display); font-style: italic;
  color: rgba(201,168,76,0.06); pointer-events: none; line-height: 1;
  white-space: nowrap;
}
.sar-haldi-pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.35);
  font-size: 0.66rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sar-gold); font-weight: 700;
  background: rgba(201,168,76,0.05);
  margin: 0 6px 8px 0;
}

/* Visual cards */
.sar-haldi-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sar-haldi-vi {
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  transition: border-color 0.3s;
}
.sar-haldi-vi:hover { border-color: rgba(201,168,76,0.5); }
.sar-haldi-vi:first-child { grid-column: 1 / 3; }
.sar-haldi-vi-bg {
  transition: transform 0.6s ease;
}
.sar-haldi-vi:hover .sar-haldi-vi-bg { transform: scale(1.05); }
.sar-haldi-vi-bg::after {
  content: '✿';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 3.5rem; opacity: 0.1; color: var(--sar-gold);
}
.sar-haldi-vi:first-child .sar-haldi-vi-bg::after { font-size: 5rem; }
.hva { background: linear-gradient(145deg, #2A1C02, #1A1201, #0A0800); height: 270px; }
.hvb { background: linear-gradient(145deg, #221600, #161000, #0A0800); height: 165px; }
.hvc { background: linear-gradient(145deg, #1A1400, #100E00, #080600); height: 165px; }
.sar-haldi-vi-label {
  position: absolute; bottom: 14px; left: 16px; z-index: 2;
  font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
}

/* ============================================================
   GOLD BLOCK SECTION
   ============================================================ */
.sar-block-gold {
  background: linear-gradient(135deg, var(--sar-gold) 0%, #A87828 50%, #C9A84C 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.sar-block-gold::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 3L57 30L30 57L3 30Z' stroke='rgba(10,10,10,0.08)' stroke-width='0.8' fill='none'/%3E%3C/svg%3E");
  background-size: 50px 50px;
}
.sar-block-gold-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sar-black); font-weight: 400;
}
.sar-block-gold-sub {
  font-size: 0.9rem; color: rgba(10,10,10,0.65); font-weight: 400; line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.sar-testimonials {
  /*background: var(--sar-white);*/
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF6E0 50%, #FFFBF0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sar-testi-card {
  padding: 36px 32px;
  border: 1px solid rgba(201,168,76,0.18);
  background: white;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.sar-testi-card:hover {
  border-color: var(--sar-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.sar-testi-mark {
  font-family: var(--font-display);
  font-size: 4rem; color: var(--sar-gold); line-height: 0.6;
  display: block; margin-bottom: 20px; font-weight: 700;
}
.sar-stars { color: var(--sar-gold); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 12px; }
.sar-testi-text {
  font-size: 0.9rem; line-height: 1.88; color: var(--sar-muted);
  font-style: italic; font-weight: 300; margin-bottom: 28px;
}
.sar-testi-divider { width: 28px; height: 1px; background: var(--sar-gold); margin-bottom: 18px; opacity: 0.5; }
.sar-testi-name { font-size: 0.88rem; color: var(--sar-black); font-weight: 600; letter-spacing: 0.5px; }
.sar-testi-loc {
  font-size: 0.65rem; color: var(--sar-gold); letter-spacing: 2.5px;
  text-transform: uppercase; margin-top: 3px; font-weight: 600;
}

/* ============================================================
   NEWSLETTER  (BLACK BG)
   ============================================================ */
.sar-newsletter {
  background: var(--sar-black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.sar-newsletter-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.sar-nl-form { display: flex; max-width: 500px; }
.sar-nl-input {
  flex: 1; padding: 15px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25); border-right: none;
  color: var(--sar-cream); font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: border-color 0.3s;
}
.sar-nl-input::placeholder { color: rgba(249,244,236,0.25); }
.sar-nl-input:focus { border-color: var(--sar-gold); background: rgba(201,168,76,0.05); }
.sar-nl-btn {
  background: var(--sar-gold); color: var(--sar-black);
  border: none; padding: 15px 28px;
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  transition: background 0.3s; white-space: nowrap;
}
.sar-nl-btn:hover { background: var(--sar-gold2); }

/* ============================================================
   FOOTER
   ============================================================ */
.sar-footer {
  background: #060504;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 70px;
}
.sar-footer-logo {width: auto; margin-bottom: 18px; display: block; }
.sar-footer-about {
  font-size: 0.85rem; color: #ffffff; line-height: 1.85; font-weight: 300;
}
.sar-footer-col-title {
  font-size: 0.65rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--sar-gold); margin-bottom: 22px; font-weight: 700;
  display: block;
}
.sar-footer-links { list-style: none; padding: 0; margin: 0; }
.sar-footer-links li { margin-bottom: 12px; }
.sar-footer-links a {
  color: #ffffff; font-size: 0.85rem; font-weight: 300;
  transition: color 0.2s; text-decoration: none;
}
.sar-footer-links a:hover { color: var(--sar-gold2); }
.sar-footer-contact p {
  font-size: 0.83rem; color: #ffffff; line-height: 1.85; margin-bottom: 6px; font-weight: 300;
}
.sar-footer-contact strong { color: #ffffff; font-weight: 500; }
.sar-footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 22px 0; margin-top: 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.sar-footer-copy { font-size: 0.72rem; color: var(--sar-gold); }
.sar-footer-social { display: flex; gap: 22px; }
.sar-footer-social a {
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
  transition: color 0.2s;
}
.sar-footer-social a:hover { color: var(--sar-gold); }

/* ============================================================
   BLOG / POSTS  (WHITE BG)
   ============================================================ */
.sar-blog { padding: 100px 0; background: var(--sar-off-white); }
.sar-post-card {
  background: white;
  border: 1px solid rgba(10,10,10,0.07);
  transition: var(--transition);
  height: 100%;
}
.sar-post-card:hover {
  border-color: var(--sar-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.sar-post-img {
  height: 220px; overflow: hidden; position: relative;
}
.sar-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.sar-post-card:hover .sar-post-img img { transform: scale(1.06); }
.sar-post-body { padding: 24px; }
.sar-post-meta {
  font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sar-gold); font-weight: 700; margin-bottom: 10px;
}
.sar-post-title {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--sar-black); font-weight: 400; line-height: 1.3;
  margin-bottom: 12px;
}
.sar-post-excerpt { font-size: 0.88rem; color: var(--sar-muted); line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
.sar-read-more {
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sar-gold); font-weight: 700; text-decoration: none;
  position: relative; transition: color 0.2s;
}
.sar-read-more::after {
  content: '→'; margin-left: 8px; transition: transform 0.2s; display: inline-block;
}
.sar-read-more:hover::after { transform: translateX(4px); }

/* ============================================================
   WP SIDEBAR
   ============================================================ */
.sar-sidebar .widget {
  padding: 30px 28px;
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 28px;
  background: white;
}
.sar-sidebar .widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--sar-black); margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.sar-sidebar .widget ul { list-style: none; padding: 0; margin: 0; }
.sar-sidebar .widget ul li { padding: 8px 0; border-bottom: 1px solid rgba(10,10,10,0.04); font-size: 0.88rem; }
.sar-sidebar .widget ul li a { color: var(--sar-text); text-decoration: none; transition: color 0.2s; }
.sar-sidebar .widget ul li a:hover { color: var(--sar-gold); }

/* ============================================================
   SINGLE POST / PAGE
   ============================================================ */
.sar-single-hero {
  background: var(--sar-black);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.sar-breadcrumb {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(249,244,236,0.3); margin-bottom: 20px;
}
.sar-breadcrumb a { color: var(--sar-gold); text-decoration: none; }
.sar-breadcrumb span { margin: 0 10px; opacity: 0.3; }

.sar-entry-content {
  font-size: 1rem; line-height: 1.9; color: var(--sar-text); font-weight: 300;
  padding: 60px 0;
}
.sar-entry-content h2, .sar-entry-content h3 { margin-top: 2em; margin-bottom: 0.75em; }
.sar-entry-content p { margin-bottom: 1.5em; }
.sar-entry-content blockquote {
  border-left: 3px solid var(--sar-gold);
  padding: 16px 24px; margin: 2em 0;
  background: rgba(201,168,76,0.04);
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
  color: var(--sar-text);
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .woocommerce-result-count { color: var(--sar-muted); font-size: 0.85rem; }
.woocommerce .orderby { border: 1px solid var(--sar-border); padding: 8px 14px; font-family: var(--font-body); font-size: 0.8rem; }
.woocommerce .price { color: var(--sar-gold); font-family: var(--font-display); }
.woocommerce del .woocommerce-Price-amount { color: rgba(10,10,10,0.3); }
.woocommerce a.button, .woocommerce button.button {
  background: var(--sar-black) !important;
  color: var(--sar-gold) !important;
  font-family: var(--font-body) !important;
  font-size: 0.68rem !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
  padding: 12px 24px !important;
  transition: var(--transition) !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--sar-gold) !important;
  color: var(--sar-black) !important;
}
.woocommerce a.button.alt, .woocommerce button.button.alt {
  background: var(--sar-gold) !important;
  color: var(--sar-black) !important;
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover {
  background: var(--sar-black) !important;
  color: var(--sar-gold) !important;
}
.woocommerce-page .woocommerce-product-details__short-description { color: var(--sar-muted); font-size: 0.95rem; line-height: 1.8; }

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-sar-black  { background-color: var(--sar-black) !important; }
.bg-sar-gold   { background-color: var(--sar-gold) !important; }
.bg-sar-white  { background-color: var(--sar-white) !important; }
.bg-sar-cream  { background-color: var(--sar-cream) !important; }

.border-gold   { border-color: var(--sar-gold) !important; }

.sar-section-pad { padding: 100px 0; }
.sar-section-pad-sm { padding: 60px 0; }

.sar-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sar-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: white; }
::-webkit-scrollbar-thumb { background: var(--sar-gold); }
::-webkit-scrollbar-thumb:hover { background: var(--sar-black); }


/* ============================================================
   HERO — BLACK SPARKLE BG
   ============================================================ */
.sar-hero-dark {
  position: relative;
  min-height: 100vh;
  background: #080808;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

/* Ornate corner borders — like Seraphine brand image */
.shd-corner {
  position: absolute;
  width: 90px; height: 90px;
  border-color: rgba(201,168,76,0.55);
  border-style: solid;
  z-index: 3; pointer-events: none;
}
.shd-tl { top: 28px;    left: 28px;  border-width: 1.5px 0 0 1.5px; }
.shd-tr { top: 28px;    right: 28px; border-width: 1.5px 1.5px 0 0; }
.shd-bl { bottom: 28px; left: 28px;  border-width: 0 0 1.5px 1.5px; }
.shd-br { bottom: 28px; right: 28px; border-width: 0 1.5px 1.5px 0; }

/* Sparkle canvas */
.sar-sparkle-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1; display: block;
}

/* Radial glows */
.shd-glow { position: absolute; pointer-events: none; z-index: 2; }
.shd-glow-center {
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, rgba(201,168,76,0.03) 40%, transparent 70%);
}
.shd-glow-bottom {
  bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 100%; height: 280px;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.10) 0%, rgba(201,168,76,0.03) 50%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 5;
  width: 100%; max-width: 1300px;
  margin: 0 auto; padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

/* Hero Copy */
.hero-copy { position: relative; }

.shd-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
  animation: fadeUp 0.8s 0.1s both;
}
.shd-eyebrow-line { width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.shd-eyebrow-text {
  font-size: 0.62rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; font-family: var(--ff-sans);
}

.shd-title {
  font-family: var(--ff-prata);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: #F5E6C8;
  margin-bottom: 12px;
  animation: fadeUp 0.8s 0.25s both;
}
.shd-title em {
  font-style: italic; color: var(--gold);
  font-family: var(--ff-cg);
  font-size: 1.1em;
}

/* Gold ornament divider */
.shd-divider {
  display: flex; align-items: center; gap: 8px;
  margin: 20px 0 22px;
  animation: fadeUp 0.8s 0.38s both;
}
.shd-divider.center { justify-content: center; }
.shd-div-line {
  height: 0.5px; flex: 1; max-width: 80px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.7), transparent);
}
.shd-div-diamond {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0; display: inline-block;
}
.shd-div-dot {
  width: 4px; height: 4px; background: rgba(201,168,76,0.45);
  transform: rotate(45deg); flex-shrink: 0; display: inline-block;
}

.shd-tagline {
  font-family: var(--ff-cg);
  font-style: italic; font-size: 1.2rem; font-weight: 300;
  color: rgba(245,230,200,0.75);
  letter-spacing: 0.04em; margin-bottom: 12px; line-height: 1.5;
  animation: fadeUp 0.8s 0.45s both;
}

.shd-desc {
  font-size: 0.78rem; letter-spacing: 0.05em; line-height: 2.1;
  color: rgba(245,230,200,0.4); max-width: 420px; margin-bottom: 42px;
  animation: fadeUp 0.8s 0.55s both;
}

.shd-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.68s both;
}

.btn-shd-gold {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C 0%, #8A6E28 100%);
  color: #080808 !important; font-size: 0.66rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 700; padding: 14px 34px;
  border: none; cursor: pointer;
  text-decoration: none !important;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.btn-shd-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #E8C96A, #C9A84C);
  opacity: 0; transition: opacity 0.3s;
}
.btn-shd-gold:hover::before { opacity: 1; }
.btn-shd-gold span { position: relative; z-index: 1; }

.btn-shd-outline {
  display: inline-block; background: transparent;
  color: rgba(245,230,200,0.8) !important; font-size: 0.66rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 600; padding: 13px 34px;
  border: 1px solid rgba(245,230,200,0.25);
  cursor: pointer; text-decoration: none !important; transition: all 0.3s;
}
.btn-shd-outline:hover { border-color: var(--gold); color: var(--gold) !important; }

/* Hero Visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1.2s 0.3s both;
}
.shd-badge-wrap {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.shd-ring {
  position: absolute; border-radius: 50%; border: 1px solid; pointer-events: none;
}
.shd-ring-1 { width: 380px; height: 380px; border-color: rgba(201,168,76,0.10); }
.shd-ring-2 {
  width: 295px; height: 295px; border-color: rgba(201,168,76,0.20);
  animation: sarSpin 50s linear infinite;
}
.shd-ring-2::before {
  content: ''; position: absolute;
  top: -3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.shd-ring-3 {
  width: 210px; height: 210px; border-color: rgba(201,168,76,0.32);
  animation: sarSpin 35s linear infinite reverse;
}
.shd-ring-3::after {
  content: ''; position: absolute;
  bottom: -3px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; background: rgba(201,168,76,0.6); border-radius: 50%;
}

.shd-badge-inner {
  width: 170px; height: 170px;
  background: radial-gradient(circle at 40% 38%, #1e1808, #080808);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.45);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; z-index: 4; padding: 16px; text-align: center;
  box-shadow: 0 0 40px rgba(201,168,76,0.08), inset 0 0 20px rgba(201,168,76,0.04);
}
.shd-angel-icon {
  width: 58px; height: 58px; margin-bottom: 10px;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.6));
}
.shd-badge-name {
  font-family: var(--ff-cinzel); font-size: 0.68rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); line-height: 1.3;
}
.shd-badge-sub {
  font-family: var(--ff-cg); font-style: italic;
  font-size: 0.72rem; color: rgba(245,230,200,0.4);
  letter-spacing: 0.12em; margin-top: 3px;
}

.shd-float {
  position: absolute; background: rgba(10,10,8,0.88);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(8px);
  padding: 12px 18px; text-align: center; z-index: 5; min-width: 95px;
}
.shd-float-tl { top: 28px;    left: 0; }
.shd-float-br { bottom: 28px; right: 0; }
.shd-float-num {
  display: block; font-family: var(--ff-cg);
  font-size: 1.5rem; font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 3px;
}
.shd-float-label {
  display: block; font-size: 0.56rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,230,200,0.4); font-weight: 500;
}
.single-product #sidebar {
    display:none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .sar-navbar { padding: 0 24px; }
  .sar-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .sar-nav-left, .sar-nav-right { display: none; }
  .sar-navbar { grid-template-columns: auto 1fr auto; }
  .sar-logo-center { justify-content: center; }
  .sar-mobile-menu-btn { display: flex; }
  .sar-hero { min-height: auto; padding: 80px 0; }
  .sar-section-pad { padding: 70px 0; }
}
@media (max-width: 767px) {
  .sar-cat-grid { grid-template-columns: 1fr 1fr; }
  .sar-haldi-visual { grid-template-columns: 1fr 1fr; }
  .sar-haldi-vi:first-child { display:none; }
  .sar-footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .sar-nl-form { flex-direction: column; }
  .sar-nl-input { border-right: 1px solid rgba(201,168,76,0.25); border-bottom: none; }
  .btn-sar-gold, .btn-sar-black, .btn-sar-outline-gold, .btn-sar-outline-dark { padding: 12px 26px; }
  .sar-cat-grid img { height: 340px;}
  .hero-inner{ grid-template-columns: 1fr;} .shd-desc {max-width:334px;}.shd-badge-wrap { width:325px;}
}
@media (max-width: 561px) {
    .sar-cat-grid { grid-template-columns: 1fr ; }
    .sar-cat-grid img {
        height:420px;
    }
}


