@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Urbanist:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   SIRI GOLD & DIAMONDS - LUXURY THEME STYLESHEET (V7 - ULTRA STYLISH TYPOGRAPHY)
   Palette: Royal Maroon (#8B0021) & Warm Luxury Gold (#C59114 / #D49B00)
   ========================================================================== */

:root {
  --sg-gold: #C59114;
  --sg-gold-light: #E5C368;
  --sg-gold-dark: #9A6F07;
  --sg-gold-pale: #FAF5E8;
  --sg-maroon: #8B0021;
  --sg-maroon-dark: #630017;
  --sg-maroon-light: #AA1537;
  --sg-dark: #141210;
  --sg-charcoal: #2A2825;
  --sg-gray: #6E685F;
  --sg-gray-light: #EBE7DF;
  --sg-cream: #FAF8F5;
  --sg-white: #FFFFFF;
  --sg-font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sg-font-display: 'Cinzel', 'Playfair Display', serif;
  --sg-font-sans: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --sg-font-accent: 'Cormorant Garamond', Georgia, serif;
  --sg-font-body: 'Urbanist', 'Outfit', sans-serif;
  --sg-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --sg-shadow-md: 0 10px 28px rgba(0, 0, 0, 0.08);
  --sg-shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.12);
  --sg-radius-sm: 6px;
  --sg-radius-md: 12px;
  --sg-radius-lg: 20px;
  --sg-transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--sg-font-sans);
  color: var(--sg-charcoal);
  background-color: var(--sg-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sg-serif {
  font-family: var(--sg-font-serif);
  font-weight: 700;
  color: var(--sg-dark);
  letter-spacing: -0.015em;
}

.sg-section-subtitle,
.sg-category-badge,
.sg-stories-tag,
.sg-runway-tag,
.sg-video-tag,
.sg-bestseller-cat,
.sg-product-cat {
  font-family: var(--sg-font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sg-section-title,
.sg-bestsellers-title,
.sg-lookbook-title,
.sg-stories-title,
.sg-video-title,
.sg-runway-title {
  font-family: var(--sg-font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--sg-transition);
}

a:hover {
  color: var(--sg-gold);
  text-decoration: none;
}

.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   ROYAL LOGO PRELOADER (ELEGANT LUXURY FADE)
   ========================================================================== */
.sg-royal-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #240209 0%, #140006 55%, #080003 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.75s ease;
  pointer-events: all;
}

.sg-royal-preloader.curtain-open,
.sg-royal-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sg-royal-preloader.curtain-open .sg-preloader-center,
.sg-royal-preloader.loaded .sg-preloader-center {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

/* Center Emblem & Logo Container (Centered on Curtain Seam) */
.sg-preloader-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Emblem Wrapper holding rings & badge */
.sg-preloader-emblem {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Outer Orbit with Diamond Accents */
.sg-preloader-ring-outer {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 160, 23, 0.45);
  animation: sgPreloaderSpin 12s linear infinite;
  pointer-events: none;
}

.sg-preloader-ring-outer::before {
  content: '✦';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sg-gold-light);
  font-size: 16px;
  text-shadow: 0 0 14px rgba(243, 197, 85, 0.95);
}

.sg-preloader-ring-outer::after {
  content: '✦';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sg-gold-light);
  font-size: 16px;
  text-shadow: 0 0 14px rgba(243, 197, 85, 0.95);
}

/* Inner Spinning Golden Aura Ring */
.sg-preloader-ring-inner {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(243, 197, 85, 0.95);
  border-bottom-color: rgba(212, 160, 23, 0.75);
  box-shadow: 0 0 22px rgba(212, 160, 23, 0.4);
  animation: sgPreloaderSpinReverse 3s linear infinite;
  pointer-events: none;
}

/* SG Monogram Logo Box */
.sg-preloader-logo-wrap {
  position: relative;
  width: 125px;
  height: 125px;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #FAF6EE 70%, #F5EFE3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.75),
    0 0 32px rgba(212, 160, 23, 0.55),
    inset 0 0 18px rgba(212, 160, 23, 0.25);
  border: 2.5px solid #D4A017;
  overflow: hidden;
  animation: sgPreloaderPulse 2.4s ease-in-out infinite alternate;
  z-index: 2;
}

.sg-preloader-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(107, 0, 22, 0.2));
}

/* Shimmer Light Sweep across Emblem */
.sg-preloader-shimmer {
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(115deg,
      transparent 30%,
      rgba(255, 255, 255, 0.85) 48%,
      rgba(243, 197, 85, 0.65) 52%,
      transparent 70%);
  transform: rotate(25deg);
  animation: sgPreloaderShimmer 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

/* Brand Name & Tagline */
.sg-preloader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  text-align: center;
}

.sg-preloader-brand-name {
  font-family: var(--sg-font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 16px rgba(212, 160, 23, 0.4);
  margin: 0;
}

.sg-preloader-brand-name span {
  color: #F3C555;
}

.sg-preloader-tagline {
  font-family: var(--sg-font-serif);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #E5C368;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  animation: sgPreloaderFadeText 2.2s ease-in-out infinite alternate;
}

.sg-preloader-bar {
  width: 140px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-top: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sg-preloader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, #D4A017, #FFF5D0, #D4A017);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(243, 197, 85, 0.95);
  animation: sgPreloaderProgress 1.6s ease-in-out infinite;
}

/* Animations Keyframes */
@keyframes sgPreloaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes sgPreloaderSpinReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes sgPreloaderPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75), 0 0 24px rgba(212, 160, 23, 0.4);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 42px rgba(212, 160, 23, 0.7);
  }
}

@keyframes sgPreloaderShimmer {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes sgPreloaderFadeText {
  0% {
    opacity: 0.75;
    letter-spacing: 0.25em;
  }

  100% {
    opacity: 1;
    letter-spacing: 0.32em;
  }
}

@keyframes sgPreloaderProgress {
  0% {
    left: -45%;
    width: 35%;
  }

  50% {
    width: 65%;
  }

  100% {
    left: 100%;
    width: 35%;
  }
}

@media (max-width: 576px) {
  .sg-preloader-emblem {
    width: 170px;
    height: 170px;
    margin-bottom: 14px;
  }

  .sg-preloader-ring-outer {
    width: 165px;
    height: 165px;
  }

  .sg-preloader-ring-inner {
    width: 140px;
    height: 140px;
  }

  .sg-preloader-logo-wrap {
    width: 105px;
    height: 105px;
  }

  .sg-preloader-logo {
    width: 66px;
    height: 66px;
  }

  .sg-preloader-brand-name {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .sg-preloader-tagline {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .sg-preloader-bar {
    width: 110px;
  }
}

/* 1. TOP ANNOUNCEMENT MARQUEE TICKER */
.sg-top-ticker {
  background: var(--sg-maroon);
  color: #FFF8E7;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(229, 195, 104, 0.3);
  z-index: 1001;
}

.sg-ticker-track {
  display: flex;
  width: max-content;
  animation: sgTickerScroll 30s linear infinite;
}

.sg-ticker-track:hover {
  animation-play-state: paused;
}

.sg-ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  white-space: nowrap;
}

.sg-ticker-item i {
  color: var(--sg-gold-light);
  margin-right: 8px;
  font-size: 11px;
}

.sg-ticker-item span.sep {
  margin: 0 16px;
  color: var(--sg-gold-light);
  font-size: 8px;
}

@keyframes sgTickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 2. MAIN HEADER (3-Column Layout: Nav Left, Logo Center, Actions Right) */
.sg-header {
  background: var(--sg-white);
  border-bottom: 1px solid var(--sg-gray-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--sg-transition);
}

.sg-header.scrolled {
  box-shadow: var(--sg-shadow-md);
}

.sg-header-main {
  padding: 10px 0;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  width: 100%;
}

.sg-header-left {
  flex: 0 0 auto !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sg-header-center {
  flex: 1 1 auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  min-width: 0;
}

.sg-header-right {
  flex: 0 0 auto !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.sg-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sg-logo-img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--sg-transition);
}

.sg-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sg-nav-item {
  position: relative;
}

.sg-nav-link {
  font-family: var(--sg-font-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sg-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.sg-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sg-gold);
  transition: var(--sg-transition);
}

.sg-nav-item:hover>.sg-nav-link::after,
.sg-nav-item.active>.sg-nav-link::after {
  width: 100%;
}

.sg-nav-item:hover>.sg-nav-link,
.sg-nav-item.active>.sg-nav-link {
  color: var(--sg-maroon);
  font-weight: 700;
}

/* Dropdown */
.sg-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--sg-white);
  border: 1px solid var(--sg-gray-light);
  border-radius: var(--sg-radius-sm);
  box-shadow: var(--sg-shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--sg-transition);
  z-index: 100;
}

.sg-nav-item:hover .sg-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sg-dropdown-link {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sg-charcoal);
  transition: var(--sg-transition);
}

.sg-dropdown-link:hover,
.sg-dropdown-link.active {
  background: var(--sg-gold-pale);
  color: var(--sg-maroon);
  padding-left: 24px;
  font-weight: 600;
}

/* Mobile Nav Active Styling */
#sgMobileNav a.active {
  color: var(--sg-maroon) !important;
  font-weight: 700 !important;
}

/* Header Actions & App Store Buttons */
.sg-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Continuous Rotating Animated Loader Border for Google Play & Apple App Store Buttons */
.sg-app-store-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--sg-dark);
  background: #FFFFFF;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Spinning conic gradient outer ring */
.sg-app-store-btn::before {
  content: '';
  position: absolute;
  inset: -2.5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      var(--sg-gold) 100deg,
      var(--sg-maroon) 200deg,
      var(--sg-gold-light) 300deg,
      transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2.2px;
  animation: sgSpinBorder 2.8s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* Inner white mask layer for crisp round icon look */
.sg-app-store-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #FFFFFF;
  z-index: -1;
  transition: background 0.3s ease;
}

/* Hover state: Faster spin, soft luxury gold glow & color transition */
.sg-app-store-btn:hover {
  transform: scale(1.08);
  color: var(--sg-maroon);
  box-shadow: 0 4px 14px rgba(197, 145, 20, 0.35);
}

.sg-app-store-btn:hover::after {
  background: var(--sg-gold-pale);
}

.sg-app-store-btn:hover::before {
  animation-duration: 1.2s;
}

@keyframes sgSpinBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sg-toll-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sg-maroon);
  background: var(--sg-gold-pale);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(197, 145, 20, 0.3);
}

.sg-toll-free i {
  color: var(--sg-gold);
}

.sg-icon-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--sg-dark);
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: var(--sg-transition);
}

.sg-icon-btn:hover {
  background: var(--sg-gold-pale);
  color: var(--sg-maroon);
  border-color: rgba(197, 145, 20, 0.2);
}

.sg-badge-count {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--sg-maroon);
  color: var(--sg-white);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-auth-btn {
  padding: 7px 14px;
  border-radius: var(--sg-radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--sg-transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sg-auth-btn.sg-login {
  background: transparent;
  color: var(--sg-maroon);
  border: 1.5px solid var(--sg-maroon);
}

.sg-auth-btn.sg-login:hover {
  background: var(--sg-maroon);
  color: var(--sg-white);
}

.sg-auth-btn.sg-register {
  background: linear-gradient(135deg, var(--sg-gold), var(--sg-gold-dark));
  color: var(--sg-white);
  border: none;
  box-shadow: 0 4px 10px rgba(197, 145, 20, 0.3);
}

.sg-auth-btn.sg-register:hover {
  background: linear-gradient(135deg, var(--sg-maroon-light), var(--sg-maroon));
  transform: translateY(-1px);
}

/* 3. HERO FULLSCREEN SWIPER SLIDER (WITH CINEMATIC KEN BURNS SCALE ZOOM & BOLD LEFT ALIGNED HEADINGS) */
.sg-hero-swiper-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 85px);
  min-height: 580px;
  background: #000;
  overflow: hidden;
}

.sg-hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide.sg-hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

/* High-Definition Zooming Background Layer */
.sg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  transition: transform 7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
  will-change: transform;
}

/* Cinematic Zoom-in when active */
.swiper-slide-active .sg-hero-bg {
  transform: scale(1.15);
}

/* Scale Down variation for alternating visual variety */
.swiper-slide:nth-child(2) .sg-hero-bg {
  transform: scale(1.16);
}

.swiper-slide-active:nth-child(2) .sg-hero-bg {
  transform: scale(1.02);
}

.sg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 8, 6, 0.90) 0%, rgba(10, 8, 6, 0.45) 45%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}

.sg-hero-content {
  position: relative;
  z-index: 5;
  color: #fff;
  max-width: 720px;
  padding: 40px 0;
  margin-left: 0;
}

.sg-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sg-gold-light);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 18px;
}

.sg-hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--sg-gold-light);
}

.sg-hero-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.06;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.02em;
}

.sg-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  color: #ECE7DE;
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 560px;
  font-weight: 400;
}

.sg-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--sg-gold);
  color: #111;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: var(--sg-radius-sm);
  border: 1px solid var(--sg-gold-light);
  box-shadow: 0 6px 24px rgba(197, 145, 20, 0.45);
  transition: var(--sg-transition);
}

.sg-hero-btn:hover {
  background: var(--sg-maroon);
  color: var(--sg-white);
  border-color: var(--sg-maroon);
  transform: translateY(-2px);
}

/* Minimal Luxury Pagination Bullets */
.swiper-pagination {
  bottom: 28px !important;
  z-index: 10 !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.45;
  margin: 0 6px !important;
  transition: var(--sg-transition);
}

.swiper-pagination-bullet-active {
  background: var(--sg-gold) !important;
  opacity: 1 !important;
  width: 34px !important;
  border-radius: 6px !important;
}

/* 4. DUAL PROMO BANNERS (SEAMLESS FULL-WIDTH EDGE-TO-EDGE MATCH) */
.sg-promo-section {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  overflow: hidden;
}

.sg-promo-card-exact {
  position: relative;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(35px, 5vw, 65px) clamp(30px, 4.5vw, 60px);
  border: none;
  box-shadow: none;
  height: 100%;
  cursor: pointer;
}

.sg-promo-bg-exact {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  will-change: transform;
  z-index: 1;
}

.sg-promo-card-exact:hover .sg-promo-bg-exact {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.sg-promo-overlay-exact {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 12, 0.40) 0%, rgba(20, 16, 12, 0.15) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.sg-promo-card-exact:hover .sg-promo-overlay-exact {
  opacity: 0.9;
}

.sg-promo-card-exact.left-banner {
  background-color: #F8F4EE;
  border-right: 1px solid rgba(235, 231, 223, 0.6);
}

.sg-promo-card-exact.right-banner {
  background-color: #F9F6F0;
}

.sg-promo-body-exact {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: transform 0.4s ease;
}

.sg-promo-card-exact:hover .sg-promo-body-exact {
  transform: translateX(4px);
}

.sg-promo-subtag-exact {
  font-family: var(--sg-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
  display: block;
}

.sg-promo-title-exact {
  font-family: var(--sg-font-sans);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sg-promo-desc-exact {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 290px;
}

.sg-promo-btn-exact {
  display: inline-block;
  background: #FFFFFF;
  color: #1A1714;
  font-family: var(--sg-font-sans);
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.sg-promo-btn-exact:hover {
  background: var(--sg-maroon);
  color: #FFFFFF;
  border-color: var(--sg-maroon);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 0, 33, 0.3);
}

/* 5. LUXURY RIBBON STRIP */
.sg-luxury-ribbon {
  background: var(--sg-gold-pale);
  border-top: 1px solid rgba(212, 160, 23, 0.25);
  border-bottom: 1px solid rgba(212, 160, 23, 0.25);
  padding: 14px 0;
  overflow: hidden;
}

.sg-ribbon-track {
  display: flex;
  width: max-content;
  animation: sgTickerScroll 36s linear infinite;
}

.sg-ribbon-item {
  font-family: var(--sg-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--sg-maroon);
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.sg-ribbon-item i {
  color: var(--sg-gold);
  margin-right: 12px;
}

/* 6. CENTERPIECE BANNER */
.sg-centerpiece-card {
  position: relative;
  border-radius: var(--sg-radius-lg);
  overflow: hidden;
  box-shadow: var(--sg-shadow-md);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.sg-centerpiece-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  will-change: transform;
}

.sg-centerpiece-card:hover .sg-centerpiece-bg {
  transform: scale(1.07);
  filter: brightness(1.06);
}

.sg-centerpiece-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(18, 14, 10, 0.65) 0%, rgb(58 0 14 / 0%) 100%);
  transition: background 0.5s ease;
}

/* .sg-centerpiece-card:hover .sg-centerpiece-overlay {
  background: radial-gradient(circle, rgba(18, 14, 10, 0.55) 0%, rgb(139 0 33 / 46%) 100%);
} */

.sg-centerpiece-body {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 40px 20px;
  color: #fff;
}

.sg-centerpiece-icon {
  font-size: 28px;
  color: var(--sg-gold-light);
  margin-bottom: 12px;
}

.sg-centerpiece-title {
  font-family: var(--sg-font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sg-centerpiece-desc {
  font-size: 15px;
  color: #E2DDD5;
  margin-bottom: 24px;
}

.sg-centerpiece-btn {
  display: inline-block;
  background: var(--sg-gold);
  color: var(--sg-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--sg-radius-sm);
  transition: var(--sg-transition);
}

.sg-centerpiece-btn:hover {
  background: var(--sg-maroon);
  color: #fff;
}

/* 7. OUR BEST SELLERS (EXACT MATCH TO REFERENCE CAROUSEL) */
.sg-bestsellers-section {
  padding: 50px 0;
  background: #FFFFFF;
}

.sg-bestsellers-header {
  text-align: center;
  margin-bottom: 35px;
}

.sg-bestsellers-title {
  font-family: var(--sg-font-sans);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #1A1714;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.sg-bestsellers-subtitle {
  font-size: 13.5px;
  color: #6E685F;
  margin: 0 auto;
  max-width: 580px;
  line-height: 1.5;
}

.sg-bestsellers-swiper {
  width: 100%;
  padding: 10px 4px 30px 4px;
  overflow: hidden;
}

.sg-bestsellers-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.sg-bestsellers-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.sg-bestseller-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.sg-bestseller-thumb {
  background: #F6F6F6;
  border-radius: 14px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  transition: var(--sg-transition);
}

.sg-bestseller-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: fill;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.sg-bestseller-thumb::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -130%;
  width: 70%;
  height: 200%;
  background: linear-gradient(105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 30%,
      rgba(255, 245, 190, 0.6) 48%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(243, 197, 85, 0.65) 54%,
      rgba(255, 255, 255, 0.08) 68%,
      transparent 100%);
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: none;
}

.sg-bestseller-card:hover .sg-bestseller-thumb {
  background: #F0ECE4;
}

.sg-bestseller-card:hover .sg-bestseller-thumb img {
  transform: scale(1.08);
  filter: brightness(1.08) contrast(1.05) saturate(1.15);
}

.sg-bestseller-card:hover .sg-bestseller-thumb::after {
  left: 160%;
  opacity: 1;
  transition: left 0.85s cubic-bezier(0.2, 0.8, 0.25, 1), opacity 0.2s ease;
}

/* Right-side Floating Action Buttons on Hover */
.sg-bestseller-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 5;
}

.sg-bestseller-card:hover .sg-bestseller-actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sg-action-icon-btn {
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  color: #333333;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  text-decoration: none;
}

.sg-action-icon-btn:hover {
  background: var(--sg-maroon);
  color: #FFFFFF;
  transform: scale(1.1);
}

.sg-bestseller-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C867D;
  margin-bottom: 4px;
  display: block;
}

.sg-bestseller-name {
  font-family: var(--sg-font-sans);
  font-size: 14px;
  font-weight: 700;
  color: #1A1714;
  margin-bottom: 5px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sg-bestseller-name a {
  color: #1A1714;
  transition: color 0.2s ease;
}

.sg-bestseller-name a:hover {
  color: var(--sg-maroon);
}

.sg-bestseller-rating {
  font-size: 10.5px;
  color: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
}

.sg-bestseller-rating span.reviews {
  color: #8C867D;
  font-size: 11px;
  margin-left: 3px;
}

/* Price & Add to Cart on Hover */
.sg-bestseller-price-wrap {
  position: relative;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.sg-bestseller-price {
  font-size: 14.5px;
  font-weight: 800;
  color: #1A1714;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sg-bestseller-addtocart {
  position: absolute;
  inset: 0;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sg-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-maroon);
  border-bottom: 1.5px solid var(--sg-maroon);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  width: fit-content;
  text-decoration: none;
}

.sg-bestseller-card:hover .sg-bestseller-price {
  opacity: 0;
  transform: translateY(-6px);
}

.sg-bestseller-card:hover .sg-bestseller-addtocart {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sg-bestseller-addtocart:hover {
  color: var(--sg-gold-dark);
  border-color: var(--sg-gold-dark);
}

/* Owl Carousel Custom Styles for Best Sellers */
.sg-bestsellers-carousel {
  width: 100%;
  position: relative;
}

.sg-bestsellers-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.sg-bestsellers-carousel .owl-item,
.sg-trend-carousel .owl-item {
  display: flex;
  flex-direction: column;
}

.sg-bestsellers-carousel .owl-dots,
.sg-trend-carousel .owl-dots {
  text-align: center;
  margin-top: 24px;
}

.sg-bestsellers-carousel .owl-dot span,
.sg-trend-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 6px;
  background: #C4BEB5;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.sg-bestsellers-carousel .owl-dot.active span,
.sg-trend-carousel .owl-dot.active span {
  background: var(--sg-maroon);
  width: 26px;
}

.sg-category-badge {
  background: linear-gradient(135deg, var(--sg-maroon), var(--sg-maroon-dark));
  color: var(--sg-gold-light);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid rgba(212, 160, 23, 0.4);
  box-shadow: 0 2px 8px rgba(139, 0, 33, 0.25);
  transition: var(--sg-transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sg-category-card:hover .sg-category-badge {
  background: var(--sg-gold);
  color: var(--sg-dark);
  border-color: var(--sg-gold-dark);
}

/* 8. LOOKBOOK 4-COLUMN FULL-WIDTH GRID (EXACT MATCH TO REFERENCE) */
.sg-lookbook-section {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  overflow: hidden;
}

.sg-lookbook-card {
  position: relative;
  height: clamp(450px, 42vw, 620px);
  overflow: hidden;
  display: block;
  text-decoration: none;
  background-color: #1a1614;
}

.sg-lookbook-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  will-change: transform, filter;
  filter: brightness(1) contrast(1) saturate(1);
}

.sg-lookbook-card:hover .sg-lookbook-card-bg {
  transform: scale(1.1);
  filter: brightness(1.15) contrast(1.08) saturate(1.22);
}

/* Dynamic Golden Prism Light-Sweep Beam */
.sg-lookbook-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -140%;
  width: 90%;
  height: 220%;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 240, 180, 0.45) 45%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(243, 197, 85, 0.75) 55%,
      rgba(255, 255, 255, 0.08) 70%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(28deg);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: none;
}

.sg-lookbook-card:hover::after {
  left: 170%;
  opacity: 1;
  transition: left 0.95s cubic-bezier(0.2, 0.8, 0.25, 1), opacity 0.2s ease;
}

/* Semi-transparent ambient gold aura in the center */
.sg-lookbook-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(243, 197, 85, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sg-lookbook-card:hover::before {
  opacity: 1;
}

/* Interactive Jewelry Sparkle Glint Layer */
.sg-jewel-sparkle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.sg-sparkle-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  pointer-events: none;
}

.sg-sparkle-dot::before,
.sg-sparkle-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  box-shadow: 0 0 8px #ffffff, 0 0 16px #f3c555, 0 0 24px rgba(255, 215, 0, 0.85);
}

.sg-sparkle-dot::before {
  width: 2.5px;
  height: 24px;
}

.sg-sparkle-dot::after {
  width: 24px;
  height: 2.5px;
}

/* Sparkle Positions tailored to the ornaments */
/* Column 1: Rings */
.sg-sp-ring-1 {
  top: 42%;
  left: 32%;
}

.sg-sp-ring-2 {
  top: 52%;
  left: 55%;
}

.sg-sp-ring-3 {
  top: 46%;
  left: 78%;
}

/* Column 2: Harams & Kasu Mala */
.sg-sp-haram-1 {
  top: 30%;
  left: 49%;
}

.sg-sp-haram-2 {
  top: 48%;
  left: 38%;
}

.sg-sp-haram-3 {
  top: 62%;
  left: 50%;
}

/* Column 3: Jimikki Jhumkas */
.sg-sp-jhumka-1 {
  top: 42%;
  left: 33%;
}

.sg-sp-jhumka-2 {
  top: 58%;
  left: 36%;
}

.sg-sp-jhumka-3 {
  top: 45%;
  left: 69%;
}

.sg-sp-jhumka-4 {
  top: 60%;
  left: 72%;
}

/* Column 4: Kadas */
.sg-sp-kada-1 {
  top: 40%;
  left: 30%;
}

.sg-sp-kada-2 {
  top: 48%;
  left: 54%;
}

.sg-sp-kada-3 {
  top: 44%;
  left: 76%;
}

/* Sparkle Trigger Animations on Hover */
.sg-lookbook-card:hover .sg-sp-ring-1,
.sg-lookbook-card:hover .sg-sp-haram-1,
.sg-lookbook-card:hover .sg-sp-jhumka-1,
.sg-lookbook-card:hover .sg-sp-kada-1 {
  animation: sgJewelSparkle 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.15s;
}

.sg-lookbook-card:hover .sg-sp-ring-2,
.sg-lookbook-card:hover .sg-sp-haram-2,
.sg-lookbook-card:hover .sg-sp-jhumka-2,
.sg-lookbook-card:hover .sg-sp-kada-2 {
  animation: sgJewelSparkle 1.3s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.45s;
}

.sg-lookbook-card:hover .sg-sp-ring-3,
.sg-lookbook-card:hover .sg-sp-haram-3,
.sg-lookbook-card:hover .sg-sp-jhumka-3,
.sg-lookbook-card:hover .sg-sp-kada-3 {
  animation: sgJewelSparkle 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.75s;
}

.sg-lookbook-card:hover .sg-sp-jhumka-4 {
  animation: sgJewelSparkle 1.25s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.3s;
}

@keyframes sgJewelSparkle {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }

  35% {
    transform: scale(1.3) rotate(45deg);
    opacity: 1;
    filter: drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 18px #f3c555);
  }

  70% {
    transform: scale(0.4) rotate(90deg);
    opacity: 0.5;
  }

  100% {
    transform: scale(0) rotate(135deg);
    opacity: 0;
  }
}

.sg-lookbook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 16, 12, 0.88) 0%, rgba(24, 16, 12, 0.45) 32%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 24px 18px clamp(30px, 3.5vw, 45px);
  z-index: 2;
  transition: background 0.4s ease;
}

.sg-lookbook-card:hover .sg-lookbook-overlay {
  background: linear-gradient(to top, rgba(139, 0, 33, 0.9) 0%, rgba(24, 16, 12, 0.55) 40%, transparent 75%);
}

.sg-lookbook-content {
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  max-width: 280px;
}

.sg-lookbook-card:hover .sg-lookbook-content {
  transform: translateY(-8px);
}

.sg-lookbook-title {
  font-family: var(--sg-font-sans);
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sg-lookbook-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  display: block;
}

.sg-lookbook-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0 auto 10px;
  max-width: 250px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.sg-lookbook-btn {
  display: inline-block;
  font-family: var(--sg-font-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.sg-lookbook-card:hover .sg-lookbook-btn {
  color: var(--sg-gold-light);
  letter-spacing: 0.03em;
}

/* 9. TRUST VALUE PROPOSITIONS (EXACT MATCH TO REFERENCE) */
.sg-trust-section {
  padding: 42px 0;
  background: #FFFFFF;
  border-top: 1px solid #EFEBE4;
  border-bottom: 1px solid #EFEBE4;
}

.sg-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 12px;
  transition: transform 0.3s ease;
}

.sg-trust-item:hover {
  transform: translateY(-2px);
}

.sg-trust-icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1714;
  transition: transform 0.3s ease;
}

.sg-trust-item:hover .sg-trust-icon-wrap {
  transform: scale(1.08);
}

.sg-trust-svg {
  width: 38px;
  height: 38px;
  stroke: #1A1714;
  transition: stroke 0.3s ease;
}

.sg-trust-item:hover .sg-trust-svg {
  stroke: var(--sg-maroon);
}

.sg-trust-content {
  flex: 1;
}

.sg-trust-title {
  font-family: var(--sg-font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: #1A1714;
  margin-bottom: 5px;
  line-height: 1.3;
}

.sg-trust-desc {
  font-size: 12.5px;
  color: #6E685F;
  line-height: 1.5;
  margin: 0;
}

/* 10. PRODUCT CARDS */
.sg-product-card {
  background: var(--sg-white);
  border: 1px solid var(--sg-gray-light);
  border-radius: var(--sg-radius-md);
  overflow: hidden;
  padding: 12px;
  box-shadow: var(--sg-shadow-sm);
  transition: var(--sg-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sg-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sg-shadow-lg);
  border-color: var(--sg-gold-light);
}

.sg-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
}

.sg-product-badge.sale {
  background: var(--sg-maroon);
  color: #fff;
}

.sg-product-badge.hot {
  background: var(--sg-gold);
  color: var(--sg-dark);
}

.sg-product-thumb-wrap {
  height: 200px;
  overflow: hidden;
  border-radius: var(--sg-radius-sm);
  position: relative;
  background: #fbf9f6;
}

.sg-product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sg-product-card:hover .sg-product-thumb-wrap img {
  transform: scale(1.08);
}

.sg-product-actions {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transition: var(--sg-transition);
  z-index: 4;
}

.sg-product-card:hover .sg-product-actions {
  bottom: 10px;
}

.sg-action-btn {
  width: 34px;
  height: 34px;
  background: var(--sg-white);
  color: var(--sg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: var(--sg-shadow-md);
  border: 1px solid var(--sg-gray-light);
  transition: var(--sg-transition);
}

.sg-action-btn:hover {
  background: var(--sg-maroon);
  color: #fff;
  border-color: var(--sg-maroon);
}

.sg-product-info {
  padding: 12px 2px 2px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sg-product-cat {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sg-gold-dark);
  margin-bottom: 2px;
}

.sg-product-name {
  font-family: var(--sg-font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--sg-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.sg-product-rating {
  color: #F5A623;
  font-size: 10px;
  margin-bottom: 6px;
}

.sg-product-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.sg-price-mrp {
  font-size: 12px;
  color: var(--sg-gray);
  text-decoration: line-through;
}

.sg-price-dp {
  font-size: 15px;
  font-weight: 700;
  color: var(--sg-maroon);
}

.sg-product-btn {
  background: var(--sg-maroon);
  color: var(--sg-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--sg-radius-sm);
  text-align: center;
  display: block;
  transition: var(--sg-transition);
  border: 1px solid var(--sg-maroon);
}

.sg-product-btn:hover {
  background: var(--sg-gold);
  color: var(--sg-dark);
  border-color: var(--sg-gold-dark);
}

/* 11. CELEBRITY RUNWAY BANNER */
.sg-runway-banner {
  border-radius: var(--sg-radius-lg);
  overflow: hidden;
  background: #111;
  color: #fff;
  position: relative;
  box-shadow: var(--sg-shadow-lg);
  cursor: pointer;
}

.sg-runway-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  will-change: transform;
}

.sg-runway-banner:hover .sg-runway-img {
  transform: scale(1.07);
  filter: brightness(1.06);
}

.sg-runway-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.85) 0%, rgba(14, 14, 14, 0.45) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  padding: 40px;
  transition: background 0.5s ease;
}

.sg-runway-banner:hover .sg-runway-overlay {
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.78) 0%, rgba(14, 14, 14, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}

.sg-runway-content {
  max-width: 520px;
}

.sg-runway-tag {
  color: var(--sg-gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sg-runway-title {
  font-family: var(--sg-font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}

.sg-runway-desc {
  font-size: 14px;
  color: #DDD8D0;
  margin-bottom: 22px;
}

/* 11. REAL STORIES & REAL SMILES (CANDERE EXACT PHONE MOCKUP + OWL CAROUSEL) */
.sg-stories-section {
  background: #181512;
  background: radial-gradient(circle at 10% 50%, #8b0021 0%, #151210 100%);
  padding: clamp(45px, 5vw, 70px) 0;
  margin-top: clamp(40px, 5vw, 65px);
  position: relative;
  overflow: visible !important;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.sg-stories-intro {
  padding-right: clamp(10px, 1.5vw, 25px);
}

.sg-stories-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sg-gold-light);
  margin-bottom: 14px;
}

.sg-stories-title {
  font-family: var(--sg-font-sans);
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.sg-stories-desc {
  font-size: 13.5px;
  color: #AFA89F;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sg-stories-rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 12px;
  width: fit-content;
}

.sg-stories-rating-summary .stars {
  color: #DFB756;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.sg-stories-rating-summary .rating-text {
  color: #EDE8E1;
  font-size: 12.5px;
}

.sg-stories-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #C59114 0%, #D49B00 100%);
  color: #141210 !important;
  font-family: var(--sg-font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(197, 145, 20, 0.35);
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.sg-stories-more-btn:hover {
  background: #FFFFFF;
  color: #8B0021 !important;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Candere Smartphone Carousel Stage */
.sg-stories-stage-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Candere-style Realistic Phone Mockup (Projects above section top on desktop) */
.sg-candere-phone {
  position: absolute;
  left: -20px;
  bottom: 100px;
  width: 230px;
  height: 485px;
  border-radius: 38px;
  border: 7px solid #1E282A;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.8), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  background: transparent;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sg-phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 16px;
  background: #000000;
  border-radius: 12px;
  z-index: 20;
}

.sg-phone-top-bar {
  background: #FFFFFF;
  padding: 26px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F0ECE4;
  z-index: 12;
}

.sg-phone-menu-btn {
  font-size: 14px;
  color: #1A1714;
  cursor: pointer;
}

.sg-phone-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-phone-logo {
  max-height: 24px;
  max-width: 110px;
  object-fit: contain;
}

.sg-phone-right-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-phone-wish-btn {
  position: relative;
  font-size: 15px;
  color: #1A1714;
  display: inline-flex;
}

.sg-phone-wish-btn .badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #DFB756;
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sg-phone-bag-btn {
  font-size: 14.5px;
  color: #1A1714;
}

/* Rating & Review Count Header */
.sg-phone-ratings-box {
  background: #FFFFFF;
  padding: 10px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ECE7DE;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  z-index: 12;
}

.sg-phone-stars-col .stars {
  color: #F5A623;
  font-size: 11px;
  margin-bottom: 3px;
  display: flex;
  gap: 2px;
}

.sg-phone-stars-col .rate-num {
  font-size: 14px;
  color: #1A1714;
  line-height: 1.2;
}

.sg-phone-stars-col .rate-lbl {
  font-size: 11px;
  color: #7A746B;
}

.sg-phone-divider {
  width: 1px;
  height: 38px;
  background: #E5E0D8;
  margin: 0 10px;
}

.sg-phone-count-col {
  text-align: left;
}

.sg-phone-count-col .count-num {
  font-size: 17px;
  font-weight: 800;
  color: #1A1714;
  line-height: 1.2;
}

.sg-phone-count-col .count-lbl {
  font-size: 10.5px;
  color: #7A746B;
}

/* Transparent Window Area */
.sg-phone-view-window {
  flex: 1;
  position: relative;
  background: transparent;
  pointer-events: none;
}

.sg-phone-home-pill {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 4px;
  background: #1A1714;
  border-radius: 2px;
  z-index: 20;
}

/* Write A Review Luxury Button */
.sg-stories-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFFFFF !important;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(229, 195, 104, 0.6);
  transition: all 0.35s ease;
  text-decoration: none !important;
  cursor: pointer;
}

/* Hover Effect */
.sg-stories-write-btn:hover {
  background: #E5C368;
  color: #630017 !important;
  border-color: #E5C368;
  box-shadow: 0 4px 18px rgba(229, 195, 104, 0.35);
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* Icon size & alignment */
.sg-stories-write-btn i {
  font-size: 13px;
}

/* Owl Carousel for Candere Review Cards */
.sg-stories-carousel {
  position: relative;
  z-index: 2;
}

.sg-stories-carousel .owl-stage-outer {
  padding-top: 35px;
  padding-bottom: 30px;
}

.sg-candere-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 34px 20px 24px;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sg-candere-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

/* Top-Center Floating Product Thumbnail Badge */
.sg-card-product-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FAF8F5;
  border: 3px solid #FFFFFF;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-card-product-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-card-stars {
  color: #DFB756;
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.sg-card-text {
  font-size: 13px;
  line-height: 1.55;
  color: #2E2A25;
  text-align: center;
  margin-bottom: 16px;
}

.sg-card-author {
  font-family: var(--sg-font-sans);
  font-size: 15px;
  font-weight: 800;
  color: var(--sg-maroon);
  text-align: center;
  margin-bottom: 2px;
  margin-top: auto;
}

.sg-card-location {
  font-size: 11.5px;
  color: #8C867D;
  text-align: center;
  display: block;
}

.sg-stories-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.sg-stories-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 6px;
  background: #504840;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.sg-stories-carousel .owl-dot.active span {
  background: var(--sg-gold);
  width: 24px;
}

/* Responsive Normalization */
@media (max-width: 991px) {
  .sg-stories-section {
    margin-top: 0;
    padding: 40px 0;
  }

  .sg-candere-phone {
    display: none !important;
  }

  .sg-stories-carousel .owl-stage-outer {
    padding-top: 25px;
    padding-bottom: 20px;
  }

  .sg-candere-card {
    min-height: auto;
    padding: 30px 16px 20px;
  }
}

/* 12. CINEMATIC VIDEO BANNER SECTION (CLEAN VIDEO ONLY) */
.sg-video-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(212, 160, 23, 0.25);
  background: #14110E;
}

.sg-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg-video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.sg-video-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 16, 13, 0.75);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(212, 160, 23, 0.5);
  color: #FFFFFF;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sg-video-ctrl-btn:hover {
  background: var(--sg-maroon);
  border-color: var(--sg-gold);
  color: #FFFFFF;
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .sg-video-banner-card {
    aspect-ratio: 16 / 9;
    min-height: 220px;
    border-radius: 12px;
  }

  .sg-video-controls {
    bottom: 12px;
    right: 12px;
  }

  .sg-video-ctrl-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* 13. TESTIMONIALS */
.sg-testimonial-card {
  background: var(--sg-white);
  border: 1px solid var(--sg-gray-light);
  border-radius: var(--sg-radius-md);
  padding: 28px 22px;
  box-shadow: var(--sg-shadow-sm);
  transition: var(--sg-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sg-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--sg-gold);
  box-shadow: var(--sg-shadow-md);
}

.sg-test-stars {
  color: #F5A623;
  font-size: 13px;
  margin-bottom: 12px;
}

.sg-test-text {
  font-family: var(--sg-font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--sg-charcoal);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.sg-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sg-gold-light);
}

.sg-test-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sg-dark);
  margin: 0;
}

.sg-test-role {
  font-size: 11.5px;
  color: var(--sg-gray);
  margin: 0;
}

/* 14. BLOG JOURNAL / EDITORIAL CAROUSEL */
.sg-blog-carousel {
  position: relative;
}

.sg-blog-carousel .owl-stage-outer {
  padding-top: 10px;
  padding-bottom: 25px;
}

.sg-blog-carousel .owl-item {
  height: 100%;
  display: flex;
}

.sg-blog-card {
  background: var(--sg-white);
  border: 1px solid #EFEBE4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sg-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--sg-gold-light);
}

.sg-blog-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.sg-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sg-blog-card:hover .sg-blog-thumb img {
  transform: scale(1.08);
}

.sg-blog-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sg-blog-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--sg-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.sg-blog-title {
  font-family: var(--sg-font-serif);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--sg-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.sg-blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sg-blog-title a:hover {
  color: var(--sg-maroon);
}

.sg-blog-desc {
  font-size: 13px;
  color: var(--sg-gray);
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.sg-blog-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--sg-maroon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
}

.sg-blog-link:hover {
  color: var(--sg-gold-dark);
  gap: 10px;
  text-decoration: none;
}

.sg-blog-carousel .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.sg-blog-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 6px;
  background: #D8D2C7;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.sg-blog-carousel .owl-dot.active span {
  background: var(--sg-maroon);
  width: 24px;
}

/* 14. NEWSLETTER */
.sg-newsletter-section {
  background: var(--sg-white);
  border-top: 1px solid var(--sg-gray-light);
  border-bottom: 1px solid var(--sg-gray-light);
  padding: 50px 0;
  text-align: center;
}

.sg-newsletter-box {
  max-width: 680px;
  margin: 0 auto;
}

/* Newsletter Social Media Icons Bar */
.sg-newsletter-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.sg-newsletter-social-title {
  width: 100%;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--sg-gray);
  margin-bottom: 4px;
}

.sg-nl-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FAF8F5;
  border: 1.5px solid #E8E2D9;
  color: var(--sg-maroon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sg-nl-social-icon:hover {
  background: var(--sg-maroon);
  border-color: var(--sg-maroon);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(139, 0, 33, 0.18);
}

.sg-nl-social-icon.sg-nl-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.sg-nl-social-icon.sg-nl-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: #d6249f;
  color: #fff;
}

.sg-nl-social-icon.sg-nl-youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
}

.sg-nl-social-icon.sg-nl-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.sg-nl-social-icon.sg-nl-x:hover {
  background: #000000;
  border-color: #000000;
  color: #fff;
}

.sg-nl-social-icon.sg-nl-pinterest:hover {
  background: #E60023;
  border-color: #E60023;
  color: #fff;
}

.sg-nl-social-icon.sg-nl-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}

/* 15. INSTAGRAM GALLERY CAROUSEL */
.sg-gallery-carousel {
  position: relative;
}

.sg-gallery-carousel .owl-stage-outer {
  padding: 6px 0 12px;
}

.sg-insta-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  aspect-ratio: 1 / 1;
  display: block;
  background: #FAF8F5;
  border: 1px solid #EFEBE4;
  transition: all 0.35s ease;
}

.sg-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sg-insta-overlay {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(139, 0, 33, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: var(--sg-transition);
}

.sg-insta-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--sg-gold-light);
}

.sg-insta-item:hover img {
  transform: scale(1.08);
}

.sg-insta-item:hover .sg-insta-overlay {
  opacity: 1;
}

/* ==========================================================================
   SIRI GOLD - LUXURY LIGHTBOX GALLERY MODAL (EXACT REFERENCE DESIGN)
   ========================================================================== */
.sg-lightbox-modal {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999999 !important;
  background: rgb(10 10 10 / 51%);
  backdrop-filter: blur(10px);
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 16px;
  user-select: none;
  box-sizing: border-box;
}

.sg-lightbox-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Top Bar */
.sg-lightbox-topbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10;
}

.sg-lightbox-counter {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sg-font-sans, 'Outfit', sans-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sg-lightbox-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sg-lightbox-tool-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.sg-lightbox-tool-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.sg-lightbox-close-btn {
  font-size: 20px;
}

/* Center Stage */
.sg-lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.sg-lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}

.sg-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  animation: sgLightboxFadeIn 0.25s ease-out;
}

.sg-lightbox-img-wrap.zoomed {
  transform: scale(1.45);
  cursor: grab;
}

@keyframes sgLightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Nav Arrows */
.sg-lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: #ffffff;
  color: #111111;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  z-index: 10;
}

.sg-lightbox-nav-btn:hover {
  background: var(--sg-gold, #C59114);
  color: #ffffff;
  transform: translateY(-50%) scale(1.12);
}

.sg-lightbox-nav-prev {
  left: 20px;
}

.sg-lightbox-nav-next {
  right: 20px;
}

@media (max-width: 576px) {
  .sg-lightbox-nav-prev {
    left: 8px;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .sg-lightbox-nav-next {
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/* Bottom Caption */
.sg-lightbox-bottom {
  padding: 10px 20px 6px;
  text-align: center;
  z-index: 10;
}

.sg-lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sg-font-sans, 'Outfit', sans-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   OFFICIAL-STYLE MOBILE APP DOWNLOAD BADGES & FOOTER APP STRIP
   ========================================================================== */

.sg-footer-app-strip {
  background: linear-gradient(135deg, rgba(25, 20, 17, 0.96) 0%, rgba(35, 27, 21, 0.96) 100%);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 14px;
  padding: 30px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Continuous SVG Golden Glow Beam Running Along All 4 Sides & Rounded Corners */
.sg-app-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: none;
  pointer-events: none;
  z-index: 3;
  border-radius: 14px;
  overflow: visible;
}

.sg-app-border-rect {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  stroke: url(#sgGoldBorderGlow);
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-dasharray: 22 78;
  stroke-dashoffset: 0;
  animation: sgPerimeterRun 4s linear infinite;
  filter: drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 12px #ffd700) drop-shadow(0 0 18px rgba(197, 145, 20, 0.85));
}

@keyframes sgPerimeterRun {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -100;
  }
}

.sg-footer-app-strip>.row {
  position: relative;
  z-index: 4;
}

.sg-app-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(197, 145, 20, 0.15);
  border: 1px solid rgba(197, 145, 20, 0.4);
  color: var(--sg-gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.sg-app-strip-title {
  font-family: var(--sg-font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.sg-app-strip-desc {
  font-size: 13.5px;
  color: #AFA89D;
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.5;
}

/* Official Style App Store Download Buttons */
.sg-app-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.sg-app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #FFFFFF !important;
  border: 1px solid #444444;
  border-radius: 8px;
  padding: 8px 18px;
  text-decoration: none !important;
  transition: all 0.28s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  min-width: 175px;
  box-sizing: border-box;
}

.sg-app-badge-btn:hover {
  background: #181818;
  border-color: var(--sg-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(197, 145, 20, 0.35);
  color: #FFFFFF !important;
}

.sg-app-badge-icon {
  width: 26px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sg-app-badge-icon svg {
  width: 100%;
  height: 100%;
}

.sg-app-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.sg-app-badge-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B5B0A6;
  font-family: var(--sg-font-sans);
}

.sg-app-badge-main {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  font-family: var(--sg-font-sans);
}

/* 16. LUXURY FOOTER */
.sg-footer {
  background-color: #120F0D;
  background-image:
    linear-gradient(to bottom, rgb(139 0 33) 0%, rgba(12, 9, 7, 0.96) 100%), url(../images/banner-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #C2BCB3;
  padding-top: 60px;
  font-size: 13.5px;
  position: relative;
}

.sg-footer-logo-img {
  max-height: 44px;
  max-width: 210px;
  width: auto;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  object-fit: contain;
  display: inline-block;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .sg-footer-logo-img {
    max-height: 32px !important;
    max-width: 150px !important;
    padding: 3px 8px !important;
  }
}

.sg-footer-title {
  font-family: var(--sg-font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  position: relative;
}

.sg-footer-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--sg-gold);
  margin-top: 6px;
}

.sg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sg-footer-links li {
  margin-bottom: 8px;
}

.sg-footer-links a {
  color: #AFA89D;
  transition: var(--sg-transition);
}

.sg-footer-links a:hover {
  color: var(--sg-gold-light);
  padding-left: 5px;
}

.sg-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.sg-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--sg-transition);
}

.sg-social-icon:hover {
  background: var(--sg-gold);
  color: var(--sg-dark);
  transform: translateY(-3px);
}

.sg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 45px;
  font-size: 12px;
  color: #8C867D;
}

/* 17. FLOATING QUICK WIDGETS */
.sg-floating-call-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  background: var(--sg-maroon);
  color: #fff !important;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(139, 0, 33, 0.35);
  border: 1px solid rgba(212, 160, 23, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  animation: sgCallPulse 2.5s infinite;
}

.sg-floating-call-btn i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: #FFFFFF;
  transition: color 0.3s ease, transform 0.3s ease;
}

.sg-floating-call-btn span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.35s ease;
  padding-right: 0;
}

.sg-floating-call-btn:hover,
.sg-floating-call-btn:focus {
  background: var(--sg-gold);
  color: var(--sg-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 145, 20, 0.4);
  border-color: rgba(197, 145, 20, 0.8);
  animation: none;
}

.sg-floating-call-btn:hover i,
.sg-floating-call-btn:focus i {
  color: var(--sg-dark);
  transform: rotate(-10deg) scale(1.05);
}

.sg-floating-call-btn:hover span,
.sg-floating-call-btn:focus span {
  max-width: 220px;
  opacity: 1;
  padding-right: 18px;
  color: var(--sg-dark);
}

/* ==========================================================================
   ADVANCED RESPONSIVE MEDIA QUERIES (TABLET & MOBILE OPTIMIZATIONS)
   ========================================================================== */

/* 1. Large Tablets & Medium Laptops (992px to 1280px) */
@media (min-width: 992px) and (max-width: 1280px) {
  .sg-header-main {
    padding: 8px 0;
  }

  .sg-nav-menu {
    gap: 12px !important;
  }

  .sg-nav-link {
    font-size: 11.5px !important;
    letter-spacing: 0.04em !important;
    padding: 6px 0 !important;
  }

  .sg-logo-img {
    max-height: 38px !important;
    max-width: 170px !important;
  }

  .sg-header-actions {
    gap: 8px !important;
  }

  .sg-auth-btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
    letter-spacing: 0.04em !important;
  }
}

@media (max-width: 1199px) {
  .sg-hero-swiper-container {
    height: calc(100vh - 80px);
    min-height: 540px;
  }

  .sg-lookbook-card {
    height: 320px;
  }
}

/* 2. Mobile & Tablets (< 992px) */
@media (max-width: 991px) {
  .sg-header-main {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sg-header-left {
    flex: 0 0 auto;
  }

  .sg-header-center {
    display: none !important;
  }

  .sg-header-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
  }

  .sg-logo-img {
    max-height: 36px !important;
    max-width: 160px !important;
  }

  .sg-header-actions {
    gap: 8px !important;
  }

  .sg-auth-btn {
    padding: 6px 12px !important;
    font-size: 11.5px !important;
    border-radius: 4px !important;
    gap: 5px !important;
    white-space: nowrap !important;
  }

  .sg-icon-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .sg-badge-count-mobile {
    background: var(--sg-maroon);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    line-height: 1.4;
  }

  #sgMobileNav {
    background: #FFFFFF;
    border-top: 1px solid #ECE7DC;
    margin-top: 8px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
    padding: 14px 16px;
  }

  #sgMobileNav ul li a {
    font-size: 13.5px;
    color: #1A1714;
    padding: 8px 10px;
    display: block;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  #sgMobileNav ul li a:hover {
    background: #FAF6EF;
    color: var(--sg-maroon);
    padding-left: 15px;
  }

  .sg-hero-swiper-container {
    height: calc(100vh - 70px);
    min-height: 480px;
  }

  .sg-hero-content {
    max-width: 100%;
    text-align: left;
    padding: 30px 0;
  }

  .sg-hero-subtitle {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .sg-promo-banner-card {
    min-height: auto;
  }

  .sg-runway-img {
    height: 380px;
  }

  .sg-runway-overlay {
    padding: 30px;
  }

  .sg-lookbook-card {
    height: 290px;
  }

  .sg-category-thumb {
    height: 160px;
  }

  .sg-product-thumb-wrap {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sg-top-ticker {
    font-size: 10px;
    padding: 6px 0;
  }

  .sg-header-main {
    padding: 8px 0;
  }

  .sg-logo-img {
    max-height: 32px;
    max-width: 140px;
  }

  .sg-header-actions {
    gap: 6px !important;
  }

  .sg-auth-btn {
    padding: 5px 9px !important;
    font-size: 11px !important;
    letter-spacing: 0.02em !important;
    gap: 4px !important;
  }

  .sg-auth-btn i {
    font-size: 10px;
  }

  .sg-app-store-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .sg-icon-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .sg-hero-swiper-container {
    height: calc(100svh - 60px);
    min-height: 440px;
  }

  .sg-hero-title {
    font-size: 32px;
    line-height: 1.12;
  }

  .sg-hero-btn {
    padding: 11px 24px;
    font-size: 12px;
  }

  /* Promo Banners Stack */
  .sg-promo-banner-card {
    flex-direction: column;
  }

  .sg-promo-content {
    max-width: 100%;
    padding: 22px 18px;
  }

  .sg-promo-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
  }

  /* Centerpiece */
  .sg-centerpiece-card {
    min-height: 280px;
  }

  .sg-centerpiece-body {
    padding: 28px 14px;
  }

  .sg-centerpiece-desc {
    font-size: 13.5px;
    margin-bottom: 18px;
  }

  .sg-centerpiece-btn {
    padding: 10px 22px;
    font-size: 11.5px;
  }

  /* Grid Items */
  .sg-category-card {
    padding: 10px;
  }

  .sg-category-thumb {
    height: 130px;
  }

  .sg-category-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .sg-lookbook-card {
    height: 230px;
  }

  .sg-lookbook-overlay {
    padding: 14px;
  }

  .sg-lookbook-title {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .sg-product-card {
    padding: 8px;
  }

  .sg-product-thumb-wrap {
    height: 140px;
  }

  .sg-product-name {
    font-size: 14px;
  }

  .sg-price-dp {
    font-size: 13.5px;
  }

  .sg-price-mrp {
    font-size: 11px;
  }

  .sg-product-btn {
    font-size: 10px;
    padding: 6px 10px;
  }

  /* Runway Banner */
  .sg-runway-img {
    height: 320px;
  }

  .sg-runway-overlay {
    padding: 20px;
    background: rgba(14, 14, 14, 0.7);
  }

  .sg-runway-desc {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  /* Newsletter */
  .sg-newsletter-form {
    flex-direction: column;
  }

  .sg-newsletter-btn {
    width: 100%;
  }

  /* Floating Call Support */
  .sg-floating-call-btn {
    left: 12px;
    bottom: 14px;
    font-size: 11.5px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .sg-logo-img {
    max-height: 28px !important;
    max-width: 120px !important;
  }

  .sg-header-actions {
    gap: 5px !important;
  }

  .sg-auth-btn {
    padding: 4.5px 7.5px !important;
    font-size: 10px !important;
    letter-spacing: 0.01em !important;
    gap: 3px !important;
  }

  .sg-auth-btn i {
    font-size: 9px;
  }

  .sg-icon-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 13px !important;
  }

  .sg-hero-swiper-container {
    min-height: 400px;
  }

  .sg-hero-title {
    font-size: 28px;
  }

  .sg-section-title {
    font-size: 24px;
  }

  .sg-lookbook-card {
    height: 200px;
  }

  .sg-category-thumb {
    height: 110px;
  }

  .sg-product-thumb-wrap {
    height: 130px;
  }
}

@media (max-width: 360px) {
  .sg-logo-img {
    max-height: 24px !important;
    max-width: 95px !important;
  }

  .sg-header-actions {
    gap: 3px !important;
  }

  .sg-auth-btn {
    padding: 4px 5px !important;
    font-size: 8.5px !important;
    letter-spacing: 0 !important;
    gap: 2px !important;
  }

  .sg-auth-btn i {
    display: none;
  }

  .sg-icon-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
    margin-left: 0 !important;
  }
}

/* ==========================================================================
   APP MIGRATION NOTICE MODAL (10 SEPTEMBER DEADLINE - KOTAK STYLE REFERENCE)
   ========================================================================== */
.sg-app-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(6, 1, 3, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
  pointer-events: none;
}

.sg-app-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sg-app-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% -10%, #2B020B 0%, #150107 50%, #090004 100%);
  border: 1.5px solid rgba(212, 160, 23, 0.4);
  border-radius: 28px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.95),
    0 0 45px rgba(212, 160, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(120%) scale(0.92);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  will-change: transform, opacity;
}

.sg-app-modal-overlay.active .sg-app-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close Button (Top Right) */
.sg-app-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 15;
  outline: none;
}

.sg-app-modal-close:hover {
  background: rgba(212, 160, 23, 0.35);
  border-color: #D4A017;
  color: #FAF5E8;
  transform: rotate(90deg) scale(1.1);
}

/* Brand Emblem Header */
.sg-app-modal-brand {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #F5EFE3 100%);
  border: 2px solid #D4A017;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 22px rgba(212, 160, 23, 0.6), 0 4px 14px rgba(0, 0, 0, 0.7);
  animation: sgAppBadgePulse 2.8s ease-in-out infinite alternate;
}

.sg-app-modal-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Headline */
.sg-app-modal-title {
  font-family: var(--sg-font-serif, 'Playfair Display', serif);
  font-size: 23px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Subtitle Message */
.sg-app-modal-subtitle {
  font-family: var(--sg-font-sans, 'Outfit', sans-serif);
  font-size: 13.5px;
  color: #D7CCC0;
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 320px;
}

.sg-app-modal-subtitle strong {
  color: #F3C555;
  font-weight: 700;
}

.sg-app-modal-deadline-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 0, 44, 0.18);
  border: 1px solid rgba(243, 85, 110, 0.4);
  color: #FFA4B2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.sg-app-modal-deadline-tag i {
  color: #FF5A79;
  animation: sgPulseIcon 1.4s ease-in-out infinite;
}

/* 3D Smartphone Mockup Visual Frame */
.sg-app-modal-mockup-frame {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 60%, rgba(212, 160, 23, 0.2) 0%, rgba(139, 0, 33, 0.12) 50%, transparent 75%);
  overflow: hidden;
}

.sg-app-modal-mockup-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, #090004 100%);
  pointer-events: none;
}

.sg-app-modal-mockup-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.9));
  animation: sgMockupFloat 3.8s ease-in-out infinite alternate;
  will-change: transform;
}

/* Actions Dual Grid (Android & iOS) */
.sg-app-modal-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.sg-app-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #220810 0%, #110106 100%);
  border: 1.5px solid rgba(212, 160, 23, 0.45);
  color: #FFFFFF;
  font-family: var(--sg-font-sans, 'Outfit', sans-serif);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.sg-app-modal-btn i {
  font-size: 20px;
  color: #F3C555;
  transition: transform 0.3s ease;
}

.sg-btn-android:hover i {
  color: #4ade80;
  transform: scale(1.15);
}

.sg-btn-ios:hover i {
  color: #FFFFFF;
  transform: scale(1.15);
}

.sg-app-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
}

.sg-btn-label {
  font-size: 9px;
  color: #A99E94;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.sg-btn-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.sg-app-modal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 197, 85, 0.25), transparent);
  transform: skewX(-25deg);
  animation: sgBtnGleam 3.5s ease-in-out infinite;
}

.sg-app-modal-btn:hover {
  border-color: #F3C555;
  background: linear-gradient(135deg, #320C17 0%, #1D020B 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 160, 23, 0.35);
  color: #FFFFFF;
}

.sg-app-modal-btn:active {
  transform: translateY(0);
}

/* App Active Live Status */
.sg-app-live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 0;
  font-size: 11.5px;
  color: #C8BFB5;
  font-weight: 500;
}

.sg-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: sgLiveDotPulse 1.8s infinite;
}

.sg-app-modal-dismiss-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #8A7E75;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 0;
}

.sg-app-modal-dismiss-link:hover {
  color: #FAF5E8;
}

/* Keyframes */
@keyframes sgLiveDotPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 4px #22c55e;
  }

  50% {
    transform: scale(1.3);
    box-shadow: 0 0 12px #22c55e;
  }
}

@keyframes sgAppBadgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(212, 160, 23, 0.4);
  }

  100% {
    transform: scale(1.06);
    box-shadow: 0 0 28px rgba(212, 160, 23, 0.75);
  }
}

@keyframes sgMockupFloat {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes sgBtnGleam {

  0%,
  60% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes sgPulseIcon {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .sg-app-modal-dialog {
    max-width: 94vw;
    padding: 20px 16px 18px;
    border-radius: 24px;
  }

  .sg-app-modal-title {
    font-size: 20px;
  }

  .sg-app-modal-subtitle {
    font-size: 12.5px;
    margin-bottom: 12px;
  }

  .sg-app-modal-mockup-frame {
    height: 180px;
    margin-bottom: 14px;
  }

  .sg-app-modal-actions-grid {
    gap: 8px;
  }

  .sg-app-modal-btn {
    padding: 10px 8px;
  }

  .sg-btn-name {
    font-size: 12px;
  }

  .sg-btn-label {
    font-size: 8px;
  }

  .sg-app-modal-btn i {
    font-size: 17px;
  }
}

/* ==========================================================================
   GOLDEN MOMENTS - AUTHENTIC GOLD & SILVER COIN VAULT SECTION
   ========================================================================== */
.sg-bullion-section {
  background-color: #440010;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(197, 145, 20, 0.16) 0%, transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(139, 0, 33, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(229, 195, 104, 0.06) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C59114' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0zm0 9L9 30L30 51L51 30L30 9zm0 9L21 30L30 39L39 30L30 18z'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  border-top: 1px solid rgba(197, 145, 20, 0.25);
  border-bottom: 1px solid rgba(197, 145, 20, 0.25);
  position: relative;
  overflow: hidden;
  padding: 65px 0 75px;
}

.sg-bullion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 145, 20, 0.14);
  border: 1px solid rgba(197, 145, 20, 0.4);
  color: #FFE082;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.sg-bullion-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.sg-bullion-subtitle {
  color: #A3ACA8;
  font-size: 14.5px;
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* 3 Trust Features Strip */
.sg-bullion-features-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 145, 20, 0.22);
  border-radius: 30px;
  padding: 8px 24px;
  margin-bottom: 38px;
}

.sg-bullion-feat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E2DDD5;
  font-size: 12.5px;
  font-weight: 500;
}

.sg-bullion-feat-item i {
  color: #E5C368;
  font-size: 13px;
}

.sg-bullion-feat-sep {
  color: rgba(197, 145, 20, 0.5);
  font-size: 14px;
}

/* Bespoke Coin Card */
.sg-coin-card {
  background: #6000001c;
  border: 1px solid rgb(197 145 20 / 53%);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sg-coin-card:hover {
  transform: translateY(-6px);
  border-color: #E5C368;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 145, 20, 0.25);
}

/* Card Header Badges */
.sg-coin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.sg-coin-purity {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sg-coin-purity.gold {
  background: linear-gradient(135deg, #FFE082, #C59114);
  color: #1a1202;
  box-shadow: 0 2px 8px rgba(197, 145, 20, 0.35);
}

.sg-coin-purity.silver {
  background: linear-gradient(135deg, #FFFFFF, #B0BEC5);
  color: #1c2327;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.sg-coin-weight {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #E2DDD5;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 12px;
}

/* Coin Stage Frame */
.sg-coin-stage {
  position: relative;
  background: radial-gradient(circle, #6e0000 0%, #240000 100%);
  border: 1px solid rgb(197 145 20 / 52%);
  border-radius: 12px;
  margin: 12px 12px 14px;
  padding: 26px 16px 20px;
  text-align: center;
  overflow: hidden;
  transition: all 0.35s ease;
}

.sg-coin-stage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 145, 20, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sg-coin-stage:hover {
  border-color: rgba(229, 195, 104, 0.5);
  box-shadow: inset 0 0 20px rgba(197, 145, 20, 0.2);
}

.sg-coin-stage a {
  display: block;
}

.sg-coin-img {
  max-height: 165px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: scale(1.5);
  margin: 0 auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sg-coin-card:hover .sg-coin-img {
  transform: scale(1.09) rotate(2deg);
}

/* Floating Actions on Hover */
.sg-coin-actions {
  position: absolute;
  top: 40px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 6;
}

.sg-coin-card:hover .sg-coin-actions {
  opacity: 1;
  transform: translateX(0);
}

.sg-coin-act-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(18, 24, 22, 0.85);
  border: 1px solid rgba(197, 145, 20, 0.35);
  color: #E2DDD5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
}

.sg-coin-act-btn:hover {
  background: #C59114;
  color: #141210;
  border-color: #C59114;
}

/* Coin Card Info */
.sg-coin-info {
  padding: 0 16px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.sg-coin-cat {
  color: #C59114;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sg-coin-title {
  font-family: 'Playfair Display', serif;
  font-size: 15.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 8px;
  line-height: 1.35;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sg-coin-title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s;
}

.sg-coin-title a:hover {
  color: #FFE082;
}

.sg-coin-rating {
  color: #FFC107;
  font-size: 11.5px;
  margin-bottom: 10px;
}

.sg-coin-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sg-coin-dp {
  color: #FFE082;
  font-size: 16px;
  font-weight: 700;
}

.sg-coin-mrp {
  color: #7E8884;
  font-size: 12px;
  text-decoration: line-through;
}

.sg-coin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(197, 145, 20, 0.18), rgba(139, 0, 33, 0.15));
  border: 1px solid rgba(197, 145, 20, 0.45);
  border-radius: 8px;
  color: #FFE082;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sg-coin-btn:hover {
  background: linear-gradient(135deg, #FFE082 0%, #C59114 100%);
  color: #141210;
  border-color: #FFE082;
  box-shadow: 0 6px 18px rgba(197, 145, 20, 0.35);
  text-decoration: none;
}

/* Explore All Coins Bottom CTA */
.sg-bullion-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  background: linear-gradient(135deg, #FFE082 0%, #C59114 60%, #9A6F07 100%);
  border: none;
  border-radius: 30px;
  color: #121413;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(197, 145, 20, 0.35);
  transition: all 0.3s ease;
}

.sg-bullion-explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(229, 195, 104, 0.5);
  color: #000000;
  text-decoration: none;
}

/* Owl dots styling for dark bullion section */
.sg-golden-moments-carousel .owl-dot span {
  background: rgba(255, 255, 255, 0.25) !important;
  border: 1px solid rgba(197, 145, 20, 0.4) !important;
}

.sg-golden-moments-carousel .owl-dot.active span {
  background: #FFE082 !important;
  border-color: #FFE082 !important;
  box-shadow: 0 0 10px rgba(255, 224, 130, 0.8) !important;
}

@media (max-width: 576px) {
  .sg-golden-moments-carousel .sg-coin-card {
    max-width: 310px;
    margin: 0 auto;
  }

  .sg-golden-moments-carousel .sg-coin-img {
    max-height: 150px;
  }
}

/* ==========================================================================
   SIRI GOLD - GLOBAL LUXURY CHECKOUT & BILLING STYLES
   ========================================================================== */
.sg-chk-card {
  background: #ffffff;
  border: 1px solid #E8E4DC;
  border-radius: 12px;
  padding: 32px 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}

.sg-form-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0ebe1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sg-form-section-title i {
  color: #8B0021;
  font-size: 18px;
}

.sg-input-group {
  margin-bottom: 18px;
}

.sg-input-label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.sg-input-label .req {
  color: #d93838;
}

.sg-custom-input,
.sg-custom-select,
.sg-custom-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #DCD7CE;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #222;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sg-custom-input:focus,
.sg-custom-select:focus,
.sg-custom-textarea:focus {
  border-color: #C59114;
  box-shadow: 0 0 0 3px rgba(197, 145, 20, 0.12);
}

.sg-custom-select {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23444444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.sg-custom-textarea {
  min-height: 85px;
  resize: vertical;
}

.sg-shipping-toggle-wrap {
  margin: 25px 0 15px;
  padding: 16px 18px;
  background: #FBF8EE;
  border: 1px dashed rgba(197, 145, 20, 0.4);
  border-radius: 8px;
}

.sg-checkbox-custom-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  margin: 0;
}

.sg-checkbox-custom-label input {
  accent-color: #8B0021;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.sg-order-summary-box {
  background: #ffffff;
  border: 1px solid #E8E4DC;
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 90px;
}

.sg-order-box-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0ebe1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sg-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.sg-order-table thead th {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555;
  padding: 8px 0 12px;
  border-bottom: 1px solid #f0ebe1;
}

.sg-order-table tbody td {
  padding: 12px 0;
  border-bottom: 1px solid #f7f4ed;
  font-size: 14px;
  vertical-align: middle;
}

.sg-order-prod-name {
  color: #333;
  line-height: 1.4;
  font-weight: 500;
}

.sg-order-prod-price {
  font-weight: 600;
  color: #111;
  text-align: right;
  white-space: nowrap;
}

.sg-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f7f4ed;
}

.sg-summary-row.total-row {
  padding: 16px 0;
  border-bottom: 2px solid #eae5db;
  border-top: 1px solid #eae5db;
  margin: 8px 0;
}

.sg-summary-row.total-row .sg-total-label {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.sg-summary-row.total-row .sg-total-val {
  font-size: 20px;
  font-weight: 800;
  color: #8B0021;
}

.sg-badge-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #f0ebe1;
  color: #444;
}

.sg-badge-pill.pv {
  background: rgba(197, 145, 20, 0.15);
  color: #8f680c;
}

.sg-wallet-card {
  background: #fdfbf7;
  border: 1px solid #ede7dc;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 14px 0;
}

.sg-wallet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}

.sg-wallet-bal {
  font-weight: 700;
  color: #2e7d32;
}

.sg-payment-method-box {
  margin: 18px 0;
  padding: 6px 0;
}

.sg-payment-title {
  font-size: 14.5px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.sg-pay-card-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
}

.sg-pay-card-option:hover {
  border-color: #C59114;
  background: #fcfbfa;
}

.sg-pay-card-option input[type="radio"] {
  accent-color: #8B0021;
  width: 16px;
  height: 16px;
  margin: 0;
}

.sg-pay-card-content {
  flex: 1;
}

.sg-pay-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.2;
}

.sg-pay-card-sub {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.sg-order-privacy-text {
  font-size: 12.5px;
  color: #666;
  line-height: 1.55;
  margin: 14px 0;
}

.sg-order-privacy-text a {
  color: #8B0021;
  text-decoration: underline;
}

.sg-btn-place-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  background: linear-gradient(135deg, #1f1d1b 0%, #141210 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.sg-btn-place-order:hover {
  background: linear-gradient(135deg, #8B0021 0%, #6E001A 100%);
  box-shadow: 0 6px 22px rgba(139, 0, 33, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

.sg-btn-place-order:active {
  transform: translateY(1px);
}




/* ==========================================================================
   MOBILE STICKY APP ICONS (RIGHT SIDE)
   ========================================================================== */

/* App Icon गोल बटन और एनिमेटेड बॉर्डर स्टाइल */
.sg-app-store-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1A1714;
  background: #FFFFFF;
  text-decoration: none !important;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* घूमने वाला एनिमेटेड बॉर्डर */
.sg-app-store-btn::before {
  content: '';
  position: absolute;
  inset: -2.5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, #C59114 100deg, #8B0021 200deg, #E6B43A 300deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2.2px;
  animation: sgSpinBorder 2.8s linear infinite;
  z-index: -1;
  pointer-events: none;
}

.sg-app-store-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #FFFFFF;
  z-index: -1;
}

.sg-app-store-btn:hover {
  transform: scale(1.1);
  color: #8B0021;
}

@keyframes sgSpinBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* -------------------------------------------------------------
   मोबाइल और टैबलेट पर दाईं तरफ (Right Side) फिक्स्ड/स्टिकी रखना
   ------------------------------------------------------------- */
.sg-floating-apps-sticky {
  display: none;
  /* बड़ी स्क्रीन / Desktop (>=1200px) पर छुपा रहेगा */
}

/* 1199px से नीचे (Mobile/Tablet) पर Right Side में Sticky */
@media (max-width: 1199px) {
  .sg-floating-apps-sticky {
    position: fixed;
    right: 14px;
    top: 35%;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: auto;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }


  .sg-floating-apps-sticky.sg-apps-hidden {
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
  }

  .sg-floating-apps-sticky .sg-app-store-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
  .sg-floating-apps-sticky {
    right: 12px;
    top: 32%;
    gap: 10px;
  }

  .sg-floating-apps-sticky .sg-app-store-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .sg-floating-apps-sticky {
    right: 10px;
    top: 30%;
    gap: 8px;
  }

  .sg-floating-apps-sticky .sg-app-store-btn {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* Extra Small Mobile (<= 360px) */
@media (max-width: 360px) {
  .sg-floating-apps-sticky {
    right: 8px;
    top: 28%;
    gap: 6px;
  }

  .sg-floating-apps-sticky .sg-app-store-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/* ==========================================================================
   18. WEBSITE VISITORS & DIGITAL FOOTPRINT COUNTER SECTION
   ========================================================================== */
.sg-counter-section {
  background-color: #520013;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(197, 145, 20, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(139, 0, 33, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(115, 0, 28, 0.85) 0%, #40000e 100%),
    url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFE082' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M28 0L56 28L28 56L0 28L28 0zm0 7L7 28L28 49L49 28L28 7zm0 9L16 28L28 40L40 28L28 16z'/%3E%3Ccircle cx='28' cy='28' r='3.5'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  padding: clamp(60px, 6.5vw, 90px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 145, 20, 0.32);
  border-bottom: 1px solid rgba(197, 145, 20, 0.32);
}

.sg-counter-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.sg-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(229, 195, 104, 0.5);
  color: #FFE082;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.sg-pulse-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  animation: sgPulse 1.8s infinite;
  display: inline-block;
}

@keyframes sgPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.sg-counter-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.sg-counter-subtitle {
  color: #F0E6D8;
  font-size: 15px;
  line-height: 1.65;
}

.sg-counter-card {
  background: rgba(48, 0, 11, 0.45);
  border: 1px solid rgba(229, 195, 104, 0.35);
  border-radius: 18px;
  padding: 34px 22px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), inset 0 0 16px rgba(197, 145, 20, 0.08);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sg-counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFE082, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sg-counter-card:hover {
  transform: translateY(-6px);
  border-color: #FFE082;
  background: rgba(72, 0, 17, 0.7);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 28px rgba(197, 145, 20, 0.3);
}

.sg-counter-card:hover::before {
  opacity: 1;
}

.sg-counter-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 145, 20, 0.28) 0%, rgba(139, 0, 33, 0.45) 100%);
  border: 1px solid rgba(229, 195, 104, 0.5);
  color: #FFE082;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease, background 0.35s ease;
}

.sg-counter-card:hover .sg-counter-icon-wrap {
  transform: scale(1.1);
  background: linear-gradient(135deg, #FFE082 0%, #C59114 100%);
  color: #1a0006;
  border-color: #FFFFFF;
}

.sg-counter-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.sg-counter-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE082 50%, #C59114 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.sg-counter-plus {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #FFE082;
}

.sg-counter-label {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.sg-counter-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #E2D7C8;
  line-height: 1.5;
  margin: 0;
}