:root {
  --primary: #0a0a0a;
  --primary-light: #1e293b;
  --primary-dark: #0a0a0a;
  --gold: #B8941E;
  --gold-light: #D4AF37;
  --gold-dark: #8c6d10;
  --gold-cream: rgba(184, 148, 30, .08);
  --sheth-crimson: #8B0000;
  --sheth-gold: #D4AF37;
  --sheth-gold-dark: #B8941E;
  --emerald: #064e3b;
  --emerald-light: #047857;
  --bg: #FFFFFF;
  --bg-card: #FAF9F6;
  --bg-dark: #F4F1EA;
  --text: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: rgba(26, 26, 26, .65);
  --border: rgba(184, 148, 30, .12);
  --border-strong: rgba(184, 148, 30, .25);
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, .06);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, .06), 0 8px 16px -6px rgba(0, 0, 0, .03);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, .08);
  --glass: rgba(255, 255, 255, .95);
  --glass-dark: rgba(244, 240, 234, .98);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Outfit", "Inter", sans-serif;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: all .5s cubic-bezier(.4, 0, .2, 1)
}

* {
  margin: 0;
  padding: 0;
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  font-size: 16px
}

body {
  font-family:var(--font-sans);
  background-color:var(--bg);
  color:var(--text);
  line-height: 1.6;
  overflow-x:hidden
}

h1, h2, h3, h4, h5, h6 {
  font-family:var(--font-serif);
  font-weight: 700;
  color:var(--primary);
  line-height: 1.25
}

p {
  color:var(--text-muted)
}

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

button, input, select, textarea {
  font-family:inherit
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: #0a0a0a
}

::-webkit-scrollbar-thumb {
  background: #d4af374d;
  border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
  background: #d4af37
}

.container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align:center
}

.section-padding {
  padding: 8rem 0
}

.gold-gradient-text {
  background:linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text
}

.gold-gradient-bg {
  background:linear-gradient(135deg, #d4af37, #b8941e);
  color: #0a0a0a
}

.primary-gradient-bg {
  background:linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%)
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .85rem 2rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform:uppercase;
  border-radius: 0;
  cursor:pointer;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
  border: 1px solid transparent
}

.btn-primary {
  background-color:var(--primary);
  color:var(--text-light);
  border: 1px solid var(--primary)
}

.btn-primary:hover {
  background-color:transparent;
  color:var(--primary);
  border-color:var(--primary)
}

.btn-gold {
  background:linear-gradient(135deg, #d4af37, #b8941e);
  color: #0a0a0a;
  box-shadow: 0 4px 15px #d4af374d
}

.btn-gold:before {
  content: "";
  position:absolute;
  top: 0;
  left:-100%;
  width: 100%;
  height: 100%;
  background:linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: .5s
}

.btn-gold:hover:before {
  left: 100%
}

.btn-gold:hover {
  transform:translateY(-2px);
  box-shadow: 0 6px 20px #d9770666
}

.btn-outline {
  background-color:transparent;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, .3)
}

.btn-outline:hover {
  background-color: #d4af371a;
  color: #f5e6a3;
  border-color: #d4af37
}

header {
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background:var(--glass);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom: 1px solid var(--border);
  transition:var(--transition)
}

header.scrolled {
  padding: .5rem 0;
  box-shadow:var(--shadow-md);
  background:var(--glass-dark)
}

.nav-container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  height: 80px;
  transition:var(--transition)
}

header.scrolled .nav-container {
  height: 65px
}

.header-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-divider {
  display: none !important;
}

.logo-symbol-container {
  display: flex;
  align-items: center;
}

.logo-svg-icon {
  width: 28px;
  height: 18px;
}

.logo {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  text-decoration:none;
  gap: 2px
}

.logo-main {
  font-family:var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .12em;
  color:var(--text);
  line-height: 1.1;
  text-transform:uppercase
}

.logo-sub {
  font-family:Alex Brush, cursive;
  font-size: .95rem;
  color:var(--gold-light);
  font-weight: 400;
  margin-top:-3px;
  line-height: 1;
  text-transform:none
}

.nav-links {
  display:flex;
  gap: 1.4rem;
  list-style:none;
  flex-wrap: nowrap;
  align-items: center
}

.nav-links a {
  font-weight: 500;
  font-size: .82rem;
  text-transform:uppercase;
  letter-spacing: .04em;
  color:var(--primary);
  position:relative;
  padding: .5rem 0;
  white-space: nowrap
}

.nav-links a:after {
  content: "";
  position:absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color:var(--gold);
  transition:var(--transition)
}

.nav-links a:hover:after, .nav-links a.active:after {
  width: 100%
}

.nav-actions {
  display:flex;
  align-items:center;
  gap: 1.5rem
}

.icon-btn {
  background:none;
  border:none;
  cursor:pointer;
  color:var(--primary);
  font-size: 1.3rem;
  position:relative;
  transition:var(--transition)
}

.icon-btn:hover {
  color:var(--gold);
  transform:scale(1.05)
}

.cart-count {
  position:absolute;
  top:-8px;
  right:-8px;
  background-color:var(--gold-dark);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center
}

.announcement-bar {
  background: #d4af37;
  color: #080808;
  overflow:hidden;
  white-space:nowrap;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform:uppercase;
  padding: .5rem 0;
  margin-top: 80px
}

.announcement-track {
  display:inline-block;
  animation:marquee 30s linear infinite
}

.announcement-track span {
  display:inline-block;
  padding-right: 4rem
}

@keyframes marquee {
  0% {
    transform:translate(0)
  }

  to {
    transform:translate(-50%)
  }
}

.hero {
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  background: #080808;
  overflow:hidden
}

.hero-bg-image {
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size:cover;
  background-position:center;
  opacity: .15;
  filter:grayscale(30%)
}

.hero-overlay {
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:linear-gradient(135deg, #080808f2, #080808b3, #080808d9);
  z-index: 1
}

.hero-split {
  position:relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 4rem;
  align-items:center;
  padding: 6rem 2rem 5rem
}

.hero-left {
  display:flex;
  flex-direction:column;
  gap: 0
}

.hero-label {
  font-size: .72rem;
  letter-spacing: .35em;
  color: #d4af37;
  font-weight: 700;
  text-transform:uppercase;
  margin-bottom: 1.5rem;
  display:block
}

.hero-headline {
  margin-bottom: 1.8rem;
  line-height: 1
}

.hero-headline-serif {
  display:block;
  font-family:var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  font-style:italic;
  color:var(--primary);
  letter-spacing:-.02em
}

.hero-headline-gold {
  display:block;
  font-family:var(--font-sans);
  font-size: 5.5rem;
  font-weight: 800;
  text-transform:uppercase;
  letter-spacing:-.03em;
  background:linear-gradient(135deg, #d4af37, #f5e6a3, #d4af37 80%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height: 1.05
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #faf9f68c;
  max-width: 500px;
  margin-bottom: 2.5rem
}

.hero-desc strong {
  color:var(--primary)
}

.hero-cta-group {
  display:flex;
  gap: 1rem;
  margin-bottom: 3.5rem
}

.hero-cta-primary {
  padding: 1rem 2.5rem;
  background: #d4af37;
  color: #080808;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform:uppercase;
  transition:all .3s ease;
  position:relative;
  overflow:hidden
}

.hero-cta-primary:before {
  content: "";
  position:absolute;
  top: 0;
  left:-100%;
  width: 100%;
  height: 100%;
  background:linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: .5s
}

.hero-cta-primary:hover:before {
  left: 100%
}

.hero-cta-primary:hover {
  transform:translateY(-2px);
  box-shadow: 0 8px 25px #d4af3766
}

.hero-cta-secondary {
  padding: 1rem 2.5rem;
  background:transparent;
  color:var(--primary);
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform:uppercase;
  transition:all .3s ease
}

.hero-cta-secondary:hover {
  border-color:var(--primary);
  background: #ffffff0d
}

.hero-trust-strip {
  display:flex;
  align-items:center;
  gap: 2rem
}

.trust-item {
  display:flex;
  flex-direction:column
}

.trust-num {
  font-family:var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color:var(--primary);
  letter-spacing:-.02em;
  line-height: 1
}

.trust-label {
  font-size: .65rem;
  text-transform:uppercase;
  letter-spacing: .15em;
  color: #faf9f659;
  font-weight: 600;
  margin-top: .2rem
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: #ffffff1a
}

.hero-right {
  display:flex;
  justify-content:center;
  align-items:center
}

.hero-featured-card {
  position:relative;
  width: 100%;
  max-width: 380px;
  overflow:hidden;
  border: 1px solid rgba(212, 175, 55, .15);
  transition:all .5s ease
}

.hero-featured-card:hover {
  border-color: #d4af3766;
  box-shadow: 0 30px 60px #0009
}

.hero-featured-img {
  width: 100%;
  height: 500px;
  object-fit:cover;
  display:block;
  transition:transform .8s cubic-bezier(.16, 1, .3, 1)
}

.hero-featured-card:hover .hero-featured-img {
  transform:scale(1.06)
}

.hero-featured-info {
  position:absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background:linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 100%);
  display:flex;
  flex-direction:column;
  gap: .3rem
}

.hero-featured-label {
  font-size: .6rem;
  letter-spacing: .2em;
  color: #d4af37;
  font-weight: 700;
  text-transform:uppercase
}

.hero-featured-name {
  font-family:var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: #fff
}

.hero-featured-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff
}

.philosophy {
  background-color:var(--bg-dark);
  color:var(--text);
  position:relative;
  overflow:hidden
}

.philosophy:before {
  content: "";
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:radial-gradient(circle at center, rgba(217, 119, 6, .05) 0%, transparent 70%)
}

.philosophy h2 {
  color:var(--primary);
  margin-bottom: 4rem
}

.philosophy-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 3rem
}

.philosophy-card {
  background-color:var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  transition:var(--transition);
  position:relative
}

.philosophy-card:hover {
  transform:translateY(-5px);
  background-color:var(--bg-dark);
  border-color:var(--gold)
}

.philosophy-icon {
  font-size: 2.5rem;
  color:var(--gold);
  margin-bottom: 1.5rem
}

.philosophy-card h3 {
  color:var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem
}

.philosophy-card p {
  color:var(--text-muted);
  font-size: .95rem
}

.catalog-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  padding-bottom: 2rem
}

.catalog-title h2 {
  font-size: 2.5rem;
  margin-bottom: .5rem
}

.filters-bar {
  display:flex;
  gap: 1.5rem;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom: 3rem
}

.filter-group {
  display:flex;
  align-items:center;
  gap: .5rem
}

.filter-group label {
  font-size: .8rem;
  text-transform:uppercase;
  letter-spacing: .1em;
  color:var(--primary);
  font-weight: 600
}

.filter-select {
  padding: .6rem 1.5rem .6rem 1rem;
  border: 1px solid var(--border);
  background-color:var(--bg);
  color:var(--text);
  font-size: .85rem;
  font-weight: 500;
  cursor:pointer;
  outline:none;
  transition:var(--transition)
}

.filter-select option {
  background-color:var(--bg);
  color:var(--text)
}

.filter-select:focus {
  border-color:var(--gold)
}

.search-input-wrapper {
  position:relative;
  margin-left:auto
}

.search-input {
  padding: .6rem 1rem .6rem 2.5rem;
  border: 1px solid var(--border);
  background-color:var(--bg);
  color:var(--text);
  font-size: .85rem;
  width: 280px;
  transition:var(--transition)
}

.search-input:focus {
  border-color:var(--gold);
  width: 320px;
  outline:none
}

.search-icon {
  position:absolute;
  left: 12px;
  top: 50%;
  transform:translateY(-50%);
  color:var(--text-muted)
}

.product-grid, .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: #090c13;
}

.product-card-image-wrap img,
.card-slideshow-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

.product-card:hover {
  border-color:var(--gold-light);
  box-shadow:var(--shadow-md)
}

.product-img-container {
  position:relative;
  width: 100%;
  height: 420px;
  overflow:hidden;
  background-color: #0d0d0d
}

.carousel-track {
  position:relative;
  width: 100%;
  height: 100%
}

.product-img-container img,
.product-img,
.carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity .5s ease, transform .6s cubic-bezier(.16, 1, .3, 1)
}

.product-img-container img.active,
.product-img.active,
.carousel-img.active {
  opacity: 1;
  z-index: 1
}

.product-card:hover .product-img-container img.active,
.product-card:hover .product-img.active,
.product-card:hover .carousel-img.active {
  transform: scale(1.04)
}

.carousel-dots {
  position:absolute;
  bottom: 14px;
  left: 50%;
  transform:translate(-50%);
  display:flex;
  gap: 6px;
  z-index: 10
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff59;
  cursor:pointer;
  transition:all .25s ease;
  border: 1px solid rgba(255, 255, 255, .15)
}

.carousel-dot.active {
  background: #d4af37;
  border-color: #d4af37;
  transform:scale(1.25)
}

.carousel-dot:hover {
  background: #ffffffb3
}

.media-badge {
  position:absolute;
  top: 12px;
  right: 12px;
  background: #000c;
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, .3);
  font-size: .65rem;
  font-weight: 700;
  padding: .25rem .6rem;
  display:flex;
  align-items:center;
  gap: .3rem;
  z-index: 5;
  letter-spacing: .04em;
  text-transform:uppercase
}

.product-badge {
  position:absolute;
  top: 12px;
  left: 12px;
  background: #d4af37;
  color: #080808;
  font-size: .7rem;
  text-transform:uppercase;
  font-weight: 700;
  padding: .2rem .7rem;
  letter-spacing: .06em;
  z-index: 5
}

.product-video-loop {
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;
  opacity: 0;
  transition:opacity .4s ease;
  pointer-events:none;
  z-index: 2
}

.product-zoom-loop {
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition:opacity .4s ease;
  pointer-events:none;
  z-index: 2
}

.product-hover-actions {
  position:absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background:linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .6) 60%, transparent 100%);
  opacity: 0;
  transform:translateY(8px);
  transition:all .35s cubic-bezier(.4, 0, .2, 1);
  z-index: 8;
  display:flex;
  flex-direction:column;
  gap: .6rem
}

.product-card:hover .product-hover-actions {
  opacity: 1;
  transform:translateY(0)
}

.hover-action-row {
  display:flex;
  gap: .4rem
}

.action-btn {
  flex: 1;
  padding: .5rem .4rem;
  font-size: .7rem;
  font-weight: 600;
  text-transform:uppercase;
  letter-spacing: .04em;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: .3rem;
  transition:all .25s ease;
  border:none;
  font-family:var(--font-sans)
}

.action-btn--fabric {
  background: #d4af3726;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, .35)
}

.action-btn--fabric:hover {
  background: #d4af37;
  color: #080808
}


.quick-sizes {
  display:flex;
  gap: .35rem
}

.size-pill {
  flex: 1;
  padding: .45rem 0;
  font-size: .72rem;
  font-weight: 700;
  text-transform:uppercase;
  background: #ffffff0f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  cursor:pointer;
  transition:all .2s ease;
  text-align:center;
  font-family:var(--font-sans);
  letter-spacing: .05em
}

.size-pill:hover {
  background: #fff;
  color: #080808;
  border-color: #fff
}

.size-pill.selected {
  background: #d4af37;
  color: #080808;
  border-color: #d4af37
}

.product-info {
  padding: 1.2rem 1.2rem 1rem
}

.product-meta {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: .4rem
}

.product-article {
  font-size: .7rem;
  text-transform:uppercase;
  color:var(--gold-dark);
  font-weight: 700;
  letter-spacing: .12em
}

.product-fabric-tag {
  font-size: .65rem;
  color:var(--text-muted);
  font-weight: 500;
  letter-spacing: .04em
}

.product-title {
  font-family:var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color:var(--primary);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  letter-spacing: .01em
}

.product-price-row {
  display:flex;
  justify-content:space-between;
  align-items:center
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color:var(--primary);
  letter-spacing:-.01em
}

.add-cart-btn {
  background:transparent;
  color: #d4af37;
  border: 1px solid #D4AF37;
  padding: .4rem 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .25s ease;
  font-family:var(--font-sans)
}

.add-cart-btn:hover {
  background: #d4af37;
  color: #080808
}

.quality-index {
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display:flex;
  flex-direction:column;
  gap: .35rem
}

.quality-row {
  display:flex;
  align-items:center;
  gap: .5rem
}

.quality-row>span:first-child {
  font-size: .6rem;
  text-transform:uppercase;
  letter-spacing: .08em;
  color: #faf9f666;
  width: 72px;
  flex-shrink: 0;
  font-weight: 600
}

.quality-bar {
  flex: 1;
  height: 3px;
  background: #ffffff14;
  position:relative;
  overflow:hidden
}

.quality-fill {
  height: 100%;
  background: #faf9f6;
  transition:width .8s cubic-bezier(.4, 0, .2, 1)
}

.quality-fill--gold {
  background: #d4af37
}

.quality-fill--starch {
  background: #94a3b8
}

.quality-val {
  font-size: .6rem;
  color: #faf9f659;
  width: 30px;
  text-align:right;
  font-weight: 600
}

.modal {
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f172abf;
  z-index: 2000;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  pointer-events:none;
  transition:var(--transition);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px)
}

.modal.active {
  opacity: 1;
  pointer-events:all
}

.modal-content {
  background-color:var(--bg);
  width: 90%;
  max-width: 1050px;
  height: 85vh;
  box-shadow:var(--shadow-lg);
  border: 1px solid var(--border-strong);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  position:relative;
  overflow:hidden;
  transform:scale(.95);
  transition:var(--transition)
}

.modal.active .modal-content {
  transform:scale(1)
}

.modal-close {
  position:absolute;
  top: 20px;
  right: 20px;
  background:none;
  border:none;
  font-size: 2rem;
  color:var(--text-muted);
  cursor:pointer;
  z-index: 10;
  transition:var(--transition)
}

.modal-close:hover {
  color:var(--gold)
}


.control-section {
  margin-bottom: 2rem
}

.control-title {
  font-size: .8rem;
  text-transform:uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color:var(--primary);
  margin-bottom: 1rem
}

.avatar-select {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap: .75rem
}

.avatar-option {
  border: 2px solid transparent;
  padding: .25rem;
  cursor:pointer;
  background-color:var(--bg-card);
  transition:var(--transition);
  text-align:center
}

.avatar-option img {
  width: 100%;
  height: 90px;
  object-fit:cover
}

.avatar-option span {
  font-size: .7rem;
  font-weight: 600;
  text-transform:uppercase
}

.avatar-option.active {
  border-color:var(--gold)
}

.upload-btn-wrapper {
  position:relative;
  overflow:hidden;
  display:inline-block;
  width: 100%;
  margin-top: .75rem
}

.upload-btn {
  border: 1px dashed var(--border-strong);
  background-color:var(--bg-card);
  padding: .75rem;
  font-size: .85rem;
  font-weight: 600;
  cursor:pointer;
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: .5rem;
  transition:var(--transition)
}

.upload-btn:hover {
  background-color: #d9770608;
  border-color:var(--gold)
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position:absolute;
  left: 0;
  top: 0;
  opacity: 0
}

.fabric-adjustments {
  display:flex;
  flex-direction:column;
  gap: 1rem
}

.slider-group {
  display:flex;
  flex-direction:column;
  gap: .5rem
}

.slider-label {
  display:flex;
  justify-content:space-between;
  font-size: .75rem;
  font-weight: 600;
  color:var(--text-muted)
}


.active-shirt-badge {
  display:flex;
  align-items:center;
  gap: 1rem;
  background-color:var(--bg-card);
  border: 1px solid var(--border);
  padding: 1rem;
  margin-top:auto
}

.active-shirt-thumb {
  width: 60px;
  height: 60px;
  object-fit:cover;
  background-color: #f1f5f9
}

.active-shirt-info {
  display:flex;
  flex-direction:column
}

.active-shirt-title {
  font-family:var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem
}

.active-shirt-price {
  font-size: .9rem;
  font-weight: 700;
  color:var(--gold-dark)
}

.cart-drawer {
  position:fixed;
  top: 0;
  right:-420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color:var(--bg-card);
  box-shadow:var(--shadow-lg);
  z-index: 1500;
  transition:var(--transition);
  border-left: 1px solid var(--border);
  display:flex;
  flex-direction:column
}

.cart-drawer.active {
  right: 0
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  display:flex;
  justify-content:space-between;
  align-items:center
}

.cart-header h3 {
  font-size: 1.4rem
}

.cart-items {
  flex: 1;
  overflow-y:auto;
  padding: 1.5rem
}

.cart-empty {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height: 100%;
  color:var(--text-muted);
  text-align:center;
  gap: 1rem
}

.cart-empty-icon {
  font-size: 3rem;
  color:var(--border-strong)
}

.cart-item {
  display:flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, .03)
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit:cover;
  background-color: #f1f5f9
}

.cart-item-detail {
  flex: 1;
  display:flex;
  flex-direction:column;
  justify-content:space-between
}

.cart-item-name {
  font-family:var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color:var(--primary)
}

.cart-item-meta {
  font-size: .75rem;
  color:var(--text-muted)
}

.cart-item-price {
  font-weight: 700;
  font-size: .95rem
}

.cart-item-controls {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top: .5rem
}

.qty-selector {
  display:flex;
  align-items:center;
  border: 1px solid var(--border)
}

.qty-btn {
  background:none;
  border:none;
  width: 25px;
  height: 25px;
  cursor:pointer;
  font-weight: 700;
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:var(--transition)
}

.qty-btn:hover {
  background-color:var(--gold-cream)
}

.qty-num {
  width: 25px;
  text-align:center;
  font-size: .85rem;
  font-weight: 600
}

.cart-item-remove {
  background:none;
  border:none;
  color: #ef4444;
  cursor:pointer;
  font-size: .8rem;
  font-weight: 600
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, .05);
  background-color:var(--bg)
}

.cart-total-row {
  display:flex;
  justify-content:space-between;
  margin-bottom: .75rem;
  font-size: .95rem
}

.cart-total-row.grand-total {
  font-size: 1.25rem;
  font-weight: 700;
  color:var(--primary);
  border-top: 1px solid var(--border);
  padding-top: .75rem;
  margin-top: .75rem
}

.drawer-overlay {
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f172a66;
  z-index: 1400;
  opacity: 0;
  pointer-events:none;
  transition:var(--transition)
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events:all
}

.wholesale-hero {
  padding: 10rem 0 6rem;
  background-image:url(./sheth_luxury_bg-B7yo6xKT.png);
  background-size:cover;
  background-position:center;
  color: #fff;
  text-align:center;
  position:relative;
  z-index: 1
}

.wholesale-hero:before {
  content: "";
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000d6;
  z-index:-1
}

.wholesale-hero h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1rem
}

.wholesale-hero p {
  color: #94a3b8;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto
}

.info-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items:center
}

.info-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem
}

.quality-list {
  list-style:none;
  margin-top: 2rem
}

.quality-list li {
  position:relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem
}

.quality-list li:before {
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color:var(--gold);
  font-weight: 700;
  font-size: 1.2rem
}

.quality-list li strong {
  color:var(--primary)
}

.features-visual {
  position:relative
}

.features-img {
  width: 100%;
  height: 480px;
  object-fit:cover;
  box-shadow:var(--shadow-lg);
  border: 1px solid var(--border-strong)
}

.calculator-section {
  background-color:var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.calc-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items:start
}

.calc-panel {
  background-color:var(--bg);
  border: 1px solid var(--border);
  padding: 3rem;
  box-shadow:var(--shadow-sm)
}

.calc-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem
}

.form-group {
  margin-bottom: 1.5rem
}

.form-group label {
  display:block;
  font-size: .85rem;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing: .05em;
  color:var(--primary);
  margin-bottom: .5rem
}

.form-input {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  background-color:var(--bg);
  font-size: 1rem;
  color:var(--primary);
  font-weight: 600;
  outline:none;
  transition:var(--transition)
}

.form-input:focus {
  border-color:var(--gold-dark)
}

.tier-badge-container {
  display:flex;
  gap: 1rem;
  margin-top: 1.5rem
}

.tier-badge {
  flex: 1;
  background-color:var(--bg-card);
  border: 1px solid var(--border);
  padding: .75rem .5rem;
  text-align:center;
  font-size: .75rem;
  font-weight: 600;
  color:var(--text-muted)
}

.tier-badge.active {
  border-color:var(--gold);
  background-color:var(--gold-cream);
  color:var(--gold-dark)
}

.calc-results {
  padding: 1.5rem 0
}

.results-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem
}

.result-card {
  background-color:var(--bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display:flex;
  flex-direction:column;
  gap: .25rem
}

.result-val {
  font-size: 1.8rem;
  font-weight: 700;
  color:var(--primary)
}

.result-lbl {
  font-size: .75rem;
  text-transform:uppercase;
  letter-spacing: .05em;
  color:var(--text-muted)
}

.roi-card {
  grid-column:span 2;
  background:linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color:var(--bg);
  border:none;
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
  padding: 2rem
}

.roi-card .result-val {
  color:var(--gold-light);
  font-size: 2.5rem
}

.roi-card .result-lbl {
  opacity: .75;
  color:inherit
}

.margin-bar-container {
  margin-top: 1.5rem
}

.margin-bar-label {
  display:flex;
  justify-content:space-between;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.margin-bar-bg {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow:hidden
}

.margin-bar-fill {
  height: 100%;
  background-color:var(--gold);
  width: 0%;
  transition:var(--transition-slow)
}

.inquiry-section {
  background-color:var(--bg)
}

.inquiry-container {
  max-width: 800px;
  margin: 0 auto;
  background-color:var(--bg-card);
  border: 1px solid var(--border);
  padding: 4rem;
  box-shadow:var(--shadow-md)
}

.inquiry-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem
}

.inquiry-container p {
  margin-bottom: 3rem
}

.form-row {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

footer {
  background-color: #050505;
  color: #faf9f673;
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(212, 175, 55, .1)
}

.footer-grid {
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1rem
}

.footer-links-col h4 {
  color: #fff;
  font-size: 1rem;
  text-transform:uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem
}

.footer-links-col ul {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap: .85rem
}

.footer-links-col a:hover {
  color:var(--gold)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 2rem;
  display:flex;
  justify-content:space-between;
  font-size: .85rem
}

.toast {
  position:fixed;
  bottom: 30px;
  right: 30px;
  background-color:var(--primary);
  color: #fff;
  padding: 1rem 2rem;
  border-left: 4px solid var(--gold);
  box-shadow:var(--shadow-md);
  z-index: 2100;
  display:flex;
  align-items:center;
  gap: 1rem;
  transform:translateY(100px);
  opacity: 0;
  transition:var(--transition)
}

.toast.active {
  transform:translateY(0);
  opacity: 1
}

@media (max-width: 1024px) {
  html {
    font-size: 15px
  }

  .container {
    padding: 0 1.5rem
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align:center;
    padding: 4rem 1.5rem 3rem
  }

  .hero-left {
    align-items:center
  }

  .hero-headline-serif {
    font-size: 3.5rem
  }

  .hero-headline-gold {
    font-size: 4rem
  }

  .hero-desc {
    margin: 0 auto 2rem
  }

  .hero-cta-group {
    justify-content:center;
    margin-bottom: 2.5rem
  }

  .hero-right {
    display:flex;
    justify-content:center
  }

  .hero-featured-card {
    max-width: 380px;
    width: 100%
  }

  .hero-trust-strip {
    justify-content:center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto
  }

  .philosophy-grid, .footer-grid, .info-grid, .calc-grid, .checklist-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .modal-content {
    grid-template-columns: 1fr;
    height: 90vh;
    width: 95%
  }


  .results-grid {
    grid-template-columns: 1fr 1fr
  }

  .roi-card {
    flex-direction:column!important;
    text-align:center;
    gap: 1rem
  }

  .roi-card div {
    text-align:center!important
  }

  .calc-panel {
    padding: 2rem
  }

  .wholesale-hero {
    padding: 8rem 0 4rem
  }

  .wholesale-hero h1 {
    font-size: 2.5rem
  }

  .features-img {
    height: 350px
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px
  }

  .container {
    padding: 0 1rem
  }

  .nav-container {
    height: 70px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
  }

  .header-brand-wrap {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: auto !important;
    z-index: 10 !important;
  }

  .logo-symbol-container {
    display: flex !important;
  }

  .logo-svg-icon {
    width: 24px !important;
    height: 16px !important;
  }

  .brand-divider {
    display: none !important;
  }

  .logo-main {
    font-size: 1.55rem !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
  }

  .logo-sub {
    font-size: 0.5rem !important;
    text-align: center !important;
    align-self: center !important;
  }

  .nav-actions {
    order: 3 !important;
    margin-left: auto !important;
    z-index: 11 !important;
    gap: 0.75rem !important;
  }

  .mobile-menu-btn {
    order: 1 !important;
    display: block !important;
    margin-right: auto !important;
    z-index: 11 !important;
    color: var(--text) !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #050505fa;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 10000;
    list-style: none;
    padding: 2rem;
  }

  .nav-links.mobile-open {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    color: #fff !important;
    font-size: 1.3rem !important;
    display: block;
    padding: 0.5rem 0;
  }

  .nav-links a:after {
    background-color: var(--gold);
  }

  .section-padding {
    padding: 3.5rem 0
  }

  .hero {
    min-height:auto;
    padding-top: 80px;
    padding-bottom: 3.5rem
  }

  .hero-split {
    padding: 3rem 1rem 2rem;
    gap: 2.5rem
  }

  .hero-headline-serif {
    font-size: 2.8rem
  }

  .hero-headline-gold {
    font-size: 3.2rem
  }

  .hero-desc {
    font-size: .95rem;
    margin-bottom: 1.5rem
  }

  .hero-cta-group {
    flex-direction:column;
    gap: .75rem;
    width: 100%;
    max-width: 320px;
    margin-bottom: 2rem
  }

  .hero-cta-primary, .hero-cta-secondary {
    width: 100%;
    text-align:center;
    padding: .85rem 1.5rem
  }

  .hero-trust-strip {
    flex-wrap:wrap;
    gap: .75rem;
    justify-content:center
  }

  .trust-divider {
    display:none
  }

  .trust-item {
    background: #ffffff08;
    padding: .5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, .08)
  }

  .philosophy-card {
    padding: 2rem 1.5rem
  }

  .checklist-grid {
    grid-template-columns: 1fr!important;
    gap: 2rem
  }

  .checklist-info-card {
    padding: 1.25rem;
    overflow:hidden;
    word-break:break-word
  }

  .checklist-info-card div:first-child {
    font-size: 1.3rem!important;
    line-height: 1.3!important
  }

  .checklist-info-card div:first-child span {
    font-size: .95rem!important
  }

  .checklist-item-card {
    padding: 1rem;
    gap: 1rem
  }

  .checklist-item-card span:first-child {
    font-size: 1.4rem!important
  }

  .checklist-item-card h3 {
    font-size: 1.05rem!important
  }

  .checklist-item-card p {
    font-size: .85rem!important
  }

  .sheth-checklist .text-center {
    margin-bottom: 2.5rem!important
  }

  .sheth-checklist .text-center h2 {
    font-size: 2rem!important
  }

  .sheth-checklist .text-center p {
    font-size: .95rem!important
  }

  .filters-bar {
    flex-direction:column;
    align-items:stretch;
    gap: 1rem
  }

  .search-input-wrapper {
    margin-left: 0
  }

  .search-input {
    width: 100%
  }

  .search-input:focus {
    width: 100%
  }

  .product-grid {
    grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem
  }

  .product-img-container {
    height: 300px
  }

  .catalog-header {
    flex-direction:column;
    align-items:flex-start;
    gap: 1rem
  }

  .cart-drawer {
    max-width: 100%
  }

  .wholesale-hero {
    padding: 7rem 0 3rem
  }

  .wholesale-hero h1 {
    font-size: 2rem
  }

  .wholesale-hero p {
    font-size: 1rem
  }

  .calc-panel {
    padding: 1.5rem
  }

  .calc-panel h3 {
    font-size: 1.3rem
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .roi-card {
    grid-column:span 1!important;
    flex-direction:column!important;
    text-align:center;
    gap: 1rem
  }

  .roi-card div {
    text-align:center!important
  }

  .result-val {
    font-size: 1.5rem
  }

  .tier-badge-container {
    flex-direction:column;
    gap: .5rem
  }

  .features-img {
    height: 280px
  }

  .quality-list li {
    font-size: .95rem
  }

  .inquiry-container {
    padding: 1.5rem
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-bottom {
    flex-direction:column;
    gap: .5rem;
    text-align:center
  }

  #checkout-modal .modal-content {
    padding: 1.5rem;
    max-height: 95vh
  }

  .admin-grid {
    grid-template-columns: 1fr
  }

  .admin-sidebar {
    flex-direction:row;
    flex-wrap:wrap;
    gap: .25rem;
    padding: 1rem
  }

  .admin-sidebar-btn {
    padding: .6rem 1rem;
    font-size: .8rem;
    border-left:none;
    border-bottom: 2px solid transparent
  }

  .admin-sidebar-btn.active {
    border-left-color:transparent;
    border-bottom-color:var(--gold)
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .stat-num {
    font-size: 1.5rem
  }

  .admin-card {
    padding: 1.5rem
  }

  .admin-card h2 {
    font-size: 1.4rem
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem
  }

  .admin-stats, .product-grid {
    grid-template-columns: 1fr
  }
}

#checkout-modal .form-group {
  margin-bottom: 1.25rem
}

#checkout-modal .form-input {
  border-radius: 4px
}

#checkout-modal select.form-input {
  padding-right: 2rem
}

.sheth-checklist-overlay {
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:var(--bg-dark);
  opacity: .92;
  z-index: 0;
  transition:var(--transition)
}

.dark-theme .sheth-checklist-overlay {
  opacity: .85
}

.checklist-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items:center
}

.checklist-list {
  display:flex;
  flex-direction:column;
  gap: 1.5rem
}

.checklist-item-card {
  background-color:var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display:flex;
  gap: 1.5rem;
  align-items:start;
  border-radius: 4px;
  transition:var(--transition);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px)
}

.checklist-item-card:hover {
  transform:translate(5px);
  border-color:var(--gold);
  box-shadow:var(--shadow-sm)
}

.checklist-info-card {
  position:relative;
  border: 1px solid var(--border);
  padding: 2.5rem;
  background-color:var(--bg-card);
  border-radius: 4px;
  box-shadow:var(--shadow-md);
  overflow-wrap:break-word;
  word-break:break-word;
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px)
}

.product-card {
  perspective: 800px;
  transform-style:preserve-3d
}

.product-card .product-img-container {
  position:relative;
  overflow:hidden
}

.product-card .card-glow {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events:none;
  z-index: 5;
  opacity: 0;
  transition:opacity .4s ease;
  background:radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(217, 119, 6, .35) 0%, rgba(217, 119, 6, .1) 30%, transparent 65%)
}

.product-card:hover .card-glow {
  opacity: 1
}

.product-card.tilt-active {
  transition:none
}

.product-card:after {
  content: "";
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid transparent;
  pointer-events:none;
  z-index: 6;
  transition:border-color .3s ease
}

.product-card:hover:after {
  border-image:linear-gradient(135deg, var(--gold-dark), var(--gold-light), transparent, var(--gold)) 1
}

@keyframes floatWatermark {
  0%, to {
    transform:translateY(0) rotate(-2deg)
  }

  50% {
    transform:translateY(-8px) rotate(2deg)
  }
}

.mobile-menu-btn {
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  color:var(--primary);
  padding: .5rem;
  z-index: 1001
}

.mobile-close-btn {
  display:none;
  position:absolute;
  top: 1.5rem;
  right: 1.5rem;
  background:none;
  border:none;
  color: #fff;
  font-size: 2rem;
  cursor:pointer;
  z-index: 1002
}

@media (max-width: 768px) {
  .mobile-menu-btn, .nav-links.mobile-open .mobile-close-btn {
    display:block
  }
}

.store-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem
}

.store-card {
  background-color:var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  display:flex;
  flex-direction:column;
  gap: 1.25rem;
  position:relative;
  transition:var(--transition)
}

.store-card:hover {
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
  border-color:var(--gold-dark)
}

.store-card-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-direction:column;
  gap: .5rem
}

.store-badge {
  background-color:var(--gold-cream);
  color:var(--gold-dark);
  font-size: .7rem;
  text-transform:uppercase;
  font-weight: 700;
  padding: .25rem .5rem;
  letter-spacing: .05em;
  border-radius: 2px
}

.store-name {
  font-family:var(--font-serif);
  font-size: 1.35rem;
  color:var(--primary);
  margin: 0;
  line-height: 1.2
}

.store-city {
  font-size: .75rem;
  text-transform:uppercase;
  font-weight: 700;
  color:var(--gold-dark);
  letter-spacing: .05em
}

.store-info-list {
  display:flex;
  flex-direction:column;
  gap: .75rem
}

.store-info-item {
  display:flex;
  gap: .75rem;
  font-size: .9rem;
  line-height: 1.4;
  color:var(--text-muted)
}

.store-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color:var(--primary)
}

.store-card-actions {
  margin-top:auto;
  display:flex;
  gap: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border)
}

.store-btn {
  flex: 1;
  font-size: .8rem;
  text-align:center;
  padding: .65rem .75rem;
  border-radius: 4px;
  text-decoration:none;
  font-weight: 700;
  transition:var(--transition);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: .35rem
}

.store-btn-map {
  background-color:var(--primary);
  color: #fff
}

.store-btn-map:hover {
  background-color:var(--primary-dark)
}

.store-btn-wa {
  background-color: #25d366;
  color: #fff
}

.store-btn-wa:hover {
  background-color: #128c7e
}

.store-empty {
  grid-column: 1 / -1;
  text-align:center;
  padding: 4rem 2rem;
  background-color:var(--bg-card);
  border: 1px dashed var(--border);
  color:var(--text-muted);
  border-radius: 4px
}

@media (max-width: 480px) {
  .store-grid {
    grid-template-columns: 1fr
  }

  .store-card-actions {
    flex-direction:column
  }
}

.sc-overlay {
  position:fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background: #000000d9;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  opacity: 0;
  visibility:hidden;
  transition:opacity .4s ease, visibility .4s ease
}

.sc-overlay.active {
  opacity: 1;
  visibility:visible
}

.sc-modal {
  position:fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  overflow-y:auto;
  opacity: 0;
  visibility:hidden;
  transition:opacity .4s ease, visibility .4s ease
}

.sc-modal.active {
  opacity: 1;
  visibility:visible
}

.sc-modal-inner {
  max-width: 1100px;
  margin: 2rem auto;
  background-color: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, .15);
  box-shadow: 0 25px 100px #000c, 0 0 60px #d4af370d;
  position:relative;
  transform:translateY(30px);
  transition:transform .5s cubic-bezier(.16, 1, .3, 1);
  overflow:hidden
}

.sc-modal.active .sc-modal-inner {
  transform:translateY(0)
}

.sc-close {
  position:absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: #d4af371a;
  border: 1px solid rgba(212, 175, 55, .25);
  color: #d4af37;
  font-size: 1.5rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:var(--transition);
  z-index: 10;
  border-radius: 50%
}

.sc-close:hover {
  background: #d4af37;
  color: #0a0a0a
}

.sc-gold {
  background:linear-gradient(135deg, #d4af37, #f5e6a3, #d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text
}

.sc-hero-overlay {
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:linear-gradient(180deg, #000000d1, #000000bf, #000000e0);
  z-index: 1
}

.sc-hero {
  text-align:center;
  padding: 5rem 3rem 3.5rem;
  color: #faf9f6;
  position:relative;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat
}

.sc-hero-content {
  position:relative;
  z-index: 2
}

.sc-marathi {
  font-size: 1.2rem;
  color: #d4af37;
  font-weight: 600;
  display:block;
  margin-bottom: 1rem;
  font-style:italic;
  letter-spacing: .02em
}

.sc-hero h2 {
  font-family:var(--font-serif);
  font-size: 2.8rem;
  text-transform:none;
  letter-spacing: .02em;
  margin-bottom: .25rem;
  color: #faf9f6;
  line-height: 1.2
}

.sc-hero-rule {
  width: 80px;
  height: 2px;
  background:linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 1rem auto 1.25rem;
  border:none
}

.sc-hero-subtitle {
  font-size: 1.1rem;
  color: #faf9f6bf;
  letter-spacing: .03em;
  margin-bottom: 1.25rem;
  font-style:italic
}

.sc-hero-copy {
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: .95rem;
  line-height: 1.7;
  color: #faf9f68c
}

.sc-hero-copy strong {
  color: #d4af37;
  font-weight: 700
}

.sc-ticker {
  overflow:hidden;
  white-space:nowrap;
  padding: .75rem 0;
  border-top: 1px solid rgba(212, 175, 55, .12);
  border-bottom: 1px solid rgba(212, 175, 55, .12);
  margin-top: 1.5rem
}

.sc-ticker-track {
  display:inline-block;
  animation:scTickerScroll 30s linear infinite
}

.sc-ticker-track span {
  display:inline-block;
  padding: 0 2rem;
  font-size: .75rem;
  color: #d4af3780;
  letter-spacing: .06em;
  text-transform:uppercase;
  font-weight: 600
}

@keyframes scTickerScroll {
  0% {
    transform:translate(0)
  }

  to {
    transform:translate(-50%)
  }
}

.sc-hero-btns {
  display:flex;
  gap: 1rem;
  justify-content:center;
  margin-top: 1.5rem
}

.sc-btn {
  padding: .75rem 2rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing: .08em;
  cursor:pointer;
  transition:all .3s ease;
  text-decoration:none;
  border:none;
  display:inline-flex;
  align-items:center;
  gap: .4rem
}

.sc-btn-gold {
  background:linear-gradient(135deg, #d4af37, #b8941e);
  color: #0a0a0a
}

.sc-btn-gold:hover {
  background:linear-gradient(135deg, #f5e6a3, #d4af37);
  transform:translateY(-2px);
  box-shadow: 0 4px 25px #d4af3780
}

.sc-btn-outline {
  background:transparent;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, .35)
}

.sc-btn-outline:hover {
  background: #d4af371a;
  border-color: #d4af37
}

.sc-product-section {
  position:relative;
  background-size:cover;
  background-position:center
}

.sc-product-content {
  position:relative;
  z-index: 2
}

.sc-usp-grid {
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap: 2.5rem 3rem;
  max-width: 800px;
  margin: 0 auto
}

.sc-usp-item {
  text-align:center
}

.sc-usp-num {
  display:inline-block;
  font-size: 1.8rem;
  font-weight: 200;
  color: #d4af37;
  font-family:var(--font-serif);
  margin-bottom: .75rem;
  line-height: 1;
  border-bottom: 1px solid rgba(212, 175, 55, .3);
  padding-bottom: .5rem
}

.sc-usp-item h4 {
  font-family:var(--font-serif);
  font-size: 1.05rem;
  color: #faf9f6;
  margin-bottom: .4rem;
  font-weight: 500
}

.sc-usp-item p {
  font-size: .85rem;
  line-height: 1.6;
  color: #faf9f68c
}

.sc-section {
  padding: 3.5rem 3rem;
  position:relative;
  overflow:hidden
}

.sc-product-section, .sc-events, .sc-brand-story {
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat
}

.sc-section-header {
  text-align:center;
  margin-bottom: 2.5rem
}

.sc-section-tag {
  font-size: .7rem;
  text-transform:uppercase;
  letter-spacing: .15em;
  color: #d4af37;
  font-weight: 700
}

.sc-section-header h3 {
  font-family:var(--font-serif);
  font-size: 2rem;
  color: #faf9f6;
  margin-top: .5rem;
  font-weight: 400;
  line-height: 1.3
}

.sc-advantage {
  background-color: #0d0d0d;
  border-top: 1px solid rgba(212, 175, 55, .08);
  border-bottom: 1px solid rgba(212, 175, 55, .08)
}

.sc-values-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1.25rem
}

.sc-value-card {
  background: #ffffff08;
  border: 1px solid rgba(212, 175, 55, .1);
  padding: 2rem 1.5rem;
  text-align:center;
  cursor:pointer;
  transition:all .4s ease;
  position:relative;
  overflow:hidden
}

.sc-value-card:hover {
  transform:translateY(-6px);
  box-shadow: 0 12px 40px #d4af371f;
  border-color: #d4af3759
}

.sc-value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display:block
}

.sc-value-card h4 {
  font-family:var(--font-serif);
  font-size: 1.05rem;
  color: #faf9f6;
  margin-bottom: .5rem;
  font-weight: 500
}

.sc-value-card p {
  font-size: .82rem;
  line-height: 1.5;
  color: #faf9f673
}

.sc-value-flip {
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:linear-gradient(135deg, #0a0a0a, #1a1a0a);
  border: 1px solid rgba(212, 175, 55, .3);
  color: #faf9f6;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 2rem;
  opacity: 0;
  transform:rotateY(90deg);
  transition:all .4s ease
}

.sc-value-card:hover .sc-value-flip {
  opacity: 1;
  transform:rotateY(0)
}

.sc-value-flip small {
  font-size: .65rem;
  text-transform:uppercase;
  letter-spacing: .1em;
  color: #d4af37;
  margin-bottom: .75rem
}

.sc-value-flip p {
  font-size: .9rem;
  font-style:italic;
  color: #faf9f6cc;
  line-height: 1.5
}

.sc-events {
  background-color:transparent
}

.sc-events-content {
  position:relative;
  z-index: 2
}

.sc-filter-tabs {
  display:flex;
  gap: .5rem;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom: 2rem
}

.sc-filter-tab {
  padding: .5rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, .25);
  background: #00000080;
  color: #d4af37;
  font-size: .78rem;
  font-weight: 600;
  cursor:pointer;
  transition:var(--transition);
  text-transform:uppercase;
  letter-spacing: .05em;
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px)
}

.sc-filter-tab:hover, .sc-filter-tab.active {
  background: #d4af37;
  color: #0a0a0a;
  border-color: #d4af37
}

.sc-events-grid {
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap: 1.25rem
}

.sc-event-card {
  background: #0a0a0ad9;
  border: 1px solid rgba(212, 175, 55, .12);
  padding: 1.75rem;
  transition:all .3s ease;
  display:flex;
  flex-direction:column;
  gap: .75rem;
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px)
}

.sc-event-card:hover {
  transform:translateY(-4px);
  box-shadow: 0 8px 35px #d4af371f;
  border-color: #d4af3759
}

.sc-event-badge {
  display:inline-block;
  padding: .2rem .6rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing: .06em;
  border-radius: 2px;
  align-self:flex-start
}

.sc-event-badge.business {
  background: #d4af3726;
  color: #d4af37
}

.sc-event-badge.knowledge {
  background: #93c5fd26;
  color: #93c5fd
}

.sc-event-badge.philanthropy {
  background: #6ee7b726;
  color: #6ee7b7
}

.sc-event-badge.social {
  background: #f9a8d426;
  color: #f9a8d4
}

.sc-event-meta {
  font-size: .8rem;
  color: #faf9f673;
  display:flex;
  gap: 1rem;
  align-items:center
}

.sc-event-card h4 {
  font-family:var(--font-serif);
  font-size: 1.1rem;
  color: #faf9f6;
  line-height: 1.3;
  font-weight: 500
}

.sc-event-host {
  font-size: .8rem;
  color: #d4af37;
  font-weight: 600
}

.sc-event-footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:auto;
  padding-top: .75rem;
  border-top: 1px solid rgba(212, 175, 55, .08)
}

.sc-event-spots {
  font-size: .75rem;
  color: #faf9f666;
  font-weight: 600
}

.sc-event-actions {
  display:flex;
  gap: .5rem
}

.sc-event-btn {
  padding: .4rem .75rem;
  font-size: .7rem;
  font-weight: 700;
  cursor:pointer;
  transition:var(--transition);
  text-transform:uppercase;
  letter-spacing: .03em;
  border:none
}

.sc-event-btn-register {
  background: #d4af37;
  color: #0a0a0a
}

.sc-event-btn-register:hover {
  background: #f5e6a3;
  box-shadow: 0 2px 12px #d4af374d
}

.sc-events-empty {
  grid-column: 1 / -1;
  text-align:center;
  padding: 3rem;
  color: #faf9f666;
  border: 1px dashed rgba(212, 175, 55, .15);
  background: #0006
}

.sc-tiers-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1.25rem
}

.sc-tier-card {
  border: 1px solid rgba(212, 175, 55, .1);
  padding: 2.5rem 2rem;
  text-align:center;
  transition:all .3s ease;
  position:relative;
  background: #ffffff05
}

.sc-tier-card.featured {
  border-color: #d4af3766;
  box-shadow: 0 8px 50px #d4af371a;
  transform:scale(1.03);
  background: #d4af3708
}

.sc-tier-card.featured:before {
  content: "MOST POPULAR";
  position:absolute;
  top: 0;
  left: 50%;
  transform:translate(-50%) translateY(-50%);
  background:linear-gradient(135deg, #d4af37, #b8941e);
  color: #0a0a0a;
  font-size: .6rem;
  font-weight: 800;
  padding: .3rem 1rem;
  letter-spacing: .12em
}

.sc-tier-card:hover {
  transform:translateY(-5px);
  box-shadow: 0 12px 40px #d4af371a;
  border-color: #d4af374d
}

.sc-tier-card.featured:hover {
  transform:scale(1.03) translateY(-5px)
}

.sc-tier-name {
  font-size: .65rem;
  text-transform:uppercase;
  letter-spacing: .15em;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: .25rem
}

.sc-tier-title {
  font-family:var(--font-serif);
  font-size: 1.5rem;
  color: #faf9f6;
  margin-bottom: .75rem;
  font-weight: 400
}

.sc-tier-req {
  font-size: .78rem;
  color: #d4af37;
  font-weight: 600;
  padding: .4rem .75rem;
  background: #d4af3714;
  display:inline-block;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, .12)
}

.sc-tier-benefits {
  list-style:none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align:left
}

.sc-tier-benefits li {
  font-size: .82rem;
  color: #faf9f68c;
  border-bottom: 1px solid rgba(212, 175, 55, .05);
  padding: .45rem 0 .45rem 1.25rem;
  position:relative;
  line-height: 1.4
}

.sc-tier-benefits li:before {
  content: "✓";
  position:absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700
}

.sc-brand-story {
  position:relative;
  background-size:cover;
  background-position:center
}

.sc-brand-content {
  position:relative;
  z-index: 2
}

.sc-brand-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem
}

.sc-brand-stat {
  text-align:center
}

.sc-stat-num {
  font-family:var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: #d4af37;
  display:block;
  line-height: 1.1;
  margin-bottom: .4rem
}

.sc-brand-stat p {
  font-size: .8rem;
  color: #faf9f680;
  text-transform:uppercase;
  letter-spacing: .05em
}

.sc-brand-copy {
  max-width: 650px;
  margin: 0 auto;
  text-align:center;
  font-size: .9rem;
  line-height: 1.7;
  color: #faf9f680;
  font-style:italic
}

.sc-sticky-bar {
  padding: 2rem 3rem;
  background:linear-gradient(135deg, #0a0a0a, #141400);
  text-align:center;
  display:flex;
  flex-direction:column;
  gap: .75rem;
  align-items:center;
  border-top: 1px solid rgba(212, 175, 55, .12)
}

.sc-sticky-bar p {
  color: #faf9f699;
  font-size: .95rem;
  font-style:italic
}

.sc-sticky-bar small {
  color: #faf9f64d;
  font-size: .72rem;
  font-style:italic
}

.sc-apply-overlay {
  position:fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10001;
  background: #000000e6;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease
}

.sc-apply-overlay.active {
  opacity: 1;
  visibility:visible
}

.sc-apply-box {
  background: #0a0a0a;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y:auto;
  padding: 3rem;
  position:relative;
  border: 1px solid rgba(212, 175, 55, .2);
  transform:scale(.95);
  transition:transform .3s ease;
  box-shadow: 0 25px 80px #000c
}

.sc-apply-overlay.active .sc-apply-box {
  transform:scale(1)
}

.sc-apply-box h3 {
  font-family:var(--font-serif);
  font-size: 1.6rem;
  color: #faf9f6;
  margin-bottom: .5rem;
  font-weight: 400
}

.sc-apply-box>p {
  font-size: .85rem;
  color: #faf9f673;
  margin-bottom: 2rem
}

.sc-apply-box>p strong {
  color: #d4af37
}

.sc-step-indicators {
  display:flex;
  gap: .5rem;
  margin-bottom: 2rem
}

.sc-step-dot {
  flex: 1;
  height: 3px;
  background: #d4af371f;
  transition:background .3s ease
}

.sc-step-dot.active {
  background:linear-gradient(90deg, #d4af37, #f5e6a3)
}

.sc-form-step {
  display:none
}

.sc-form-step.active {
  display:block
}

.sc-form-step .form-group {
  margin-bottom: 1.25rem
}

.sc-form-step label {
  display:block;
  font-size: .75rem;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing: .08em;
  color: #d4af37;
  margin-bottom: .4rem
}

.sc-form-step input, .sc-form-step select, .sc-form-step textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(212, 175, 55, .15);
  font-size: .9rem;
  font-family:var(--font-sans);
  background: #ffffff08;
  color: #faf9f6;
  transition:border-color .3s ease;
  box-sizing:border-box
}

.sc-form-step input:focus, .sc-form-step select:focus, .sc-form-step textarea:focus {
  border-color: #d4af37;
  outline:none;
  box-shadow: 0 0 0 2px #d4af371a
}

.sc-form-step input::placeholder, .sc-form-step textarea::placeholder {
  color: #faf9f640
}

.sc-form-step select option {
  background: #1a1a1a;
  color: #faf9f6
}

.sc-form-nav {
  display:flex;
  gap: 1rem;
  margin-top: 1.5rem
}

.sc-success-msg {
  text-align:center;
  padding: 2rem 0;
  display:none
}

.sc-success-msg.active {
  display:block
}

.sc-success-msg .sc-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:linear-gradient(135deg, #d4af37, #b8941e);
  color: #0a0a0a;
  font-size: 1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 1rem
}

.sc-success-msg h4 {
  font-family:var(--font-serif);
  font-size: 1.4rem;
  color: #faf9f6;
  margin-bottom: .5rem;
  font-weight: 400
}

.sc-success-msg p {
  font-size: .85rem;
  color: #faf9f673
}

@media (max-width: 768px) {
  .sc-modal-inner {
    margin: 0;
    min-height: 100vh;
    border:none
  }

  .sc-hero {
    padding: 3.5rem 1.5rem 2.5rem
  }

  .sc-hero h2 {
    font-size: 1.8rem
  }

  .sc-marathi {
    font-size: 1rem
  }

  .sc-section {
    padding: 2.5rem 1.5rem
  }

  .sc-values-grid {
    grid-template-columns: 1fr 1fr
  }

  .sc-usp-grid {
    gap: 2rem 1.5rem
  }

  .sc-events-grid, .sc-tiers-grid {
    grid-template-columns: 1fr
  }

  .sc-tier-card.featured {
    transform:none
  }

  .sc-tier-card.featured:hover {
    transform:translateY(-5px)
  }

  .sc-hero-btns {
    flex-direction:column;
    align-items:center
  }

  .sc-sticky-bar {
    padding: 1.5rem
  }

  .sc-apply-box {
    padding: 2rem 1.5rem
  }

  .sc-brand-grid {
    grid-template-columns:repeat(2, 1fr);
    gap: 1.5rem
  }
}

@media (max-width: 480px) {
  .sc-values-grid {
    grid-template-columns: 1fr
  }

  .sc-usp-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .sc-hero h2, .sc-section-header h3 {
    font-size: 1.5rem
  }

  .sc-filter-tabs {
    gap: .35rem
  }

  .sc-filter-tab {
    padding: .4rem .75rem;
    font-size: .7rem
  }

  .sc-event-footer {
    flex-direction:column;
    gap: .75rem;
    align-items:flex-start
  }

  .sc-brand-grid {
    grid-template-columns:repeat(2, 1fr)
  }

  .sc-stat-num {
    font-size: 2rem
  }
}

#video-lightbox-modal .modal-content {
  opacity: 0;
  transform:scale(.9);
  transition:all .4s cubic-bezier(.16, 1, .3, 1)
}

#video-lightbox-modal.active .modal-content {
  opacity: 1;
  transform:scale(1)
}

.lightbox-media-viewer {
  border-right: 1px solid rgba(212, 175, 55, .15)
}

.lightbox-info-panel::-webkit-scrollbar {
  width: 6px
}

.lightbox-info-panel::-webkit-scrollbar-track {
  background: #0003
}

.lightbox-info-panel::-webkit-scrollbar-thumb {
  background: #d4af374d;
  border-radius: 3px
}

.lightbox-info-panel::-webkit-scrollbar-thumb:hover {
  background: #d4af3780
}

@media (max-width: 768px) {
  #video-lightbox-modal .modal-content {
    grid-template-columns: 1fr!important;
    max-height: 90vh;
    width: 95%
  }

  .lightbox-media-viewer {
    min-height: 220px!important;
    height: 220px!important;
    border-right:none;
    border-bottom: 1px solid rgba(212, 175, 55, .15)
  }

  .lightbox-info-panel {
    padding: 1.5rem!important
  }
}

.fabric-badge {
  pointer-events:none;
  z-index: 2;
  box-shadow: 0 4px 12px #00000080
}

.fabric-spec-badge {
  transition:all .3s ease
}

.fabric-spec-badge:hover {
  background: #d4af3740!important;
  color: #fff!important;
  border-color:var(--primary)!important;
  box-shadow: 0 0 8px #d4af3766
}

.icon-btn#theme-toggle-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .5rem;
  color:var(--primary);
  border-radius: 50%;
  background-color: #0000000a;
  border: 1px solid var(--border);
  cursor:pointer;
  transition:var(--transition);
  margin-right: .5rem
}

.icon-btn#theme-toggle-btn:hover {
  background-color:var(--gold-cream);
  color:var(--gold);
  border-color:var(--gold);
  transform:scale(1.08)
}

.dark-theme .icon-btn#theme-toggle-btn {
  background-color: #ffffff0d
}

.dark-theme {
  --primary: #FAF9F6;
  --primary-light: #e2e8f0;
  --primary-dark: #FAF9F6;
  --gold: #D4AF37;
  --gold-light: #F5E6A3;
  --gold-dark: #B8941E;
  --gold-cream: rgba(212, 175, 55, .08);
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-dark: #000000;
  --text: #FAF9F6;
  --text-light: #FAF9F6;
  --text-muted: rgba(250, 249, 246, .55);
  --border: rgba(212, 175, 55, .1);
  --border-strong: rgba(212, 175, 55, .25);
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, .3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, .4), 0 8px 16px -6px rgba(0, 0, 0, .3);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, .5);
  --glass: rgba(10, 10, 10, .85);
  --glass-dark: rgba(0, 0, 0, .95)
}

.dark-theme .hero {
  background:var(--bg)
}

.dark-theme .hero-overlay {
  background:linear-gradient(135deg, #080808f2, #080808b3, #080808d9)
}

.dark-theme .hero-bg-image {
  opacity: .15
}

.dark-theme .hero-featured-card {
  background: #111;
  border-color: #d4af3726
}

.dark-theme .hero-featured-name, .dark-theme .hero-featured-price {
  color: #fff
}

.dark-theme .hero-featured-card:hover {
  border-color:var(--gold)
}

.dark-theme .quick-sizes .size-pill {
  background: #ffffff0f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15)
}

.dark-theme .quick-sizes .size-pill:hover {
  background: #fff;
  color: #080808;
  border-color: #fff
}

.dark-theme .quick-sizes .size-pill.selected {
  background:var(--gold);
  color: #080808;
  border-color:var(--gold)
}

.dark-theme .product-hover-actions {
  background:linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .6) 60%, transparent 100%)
}


.dark-theme .quality-bar {
  background: #ffffff14
}

.dark-theme .quality-fill {
  background: #faf9f6
}

.dark-theme .quality-fill--gold {
  background:var(--gold)
}

.dark-theme .cart-drawer h3, .dark-theme .cart-item-name, .dark-theme .cart-item-price {
  color:var(--primary)
}

.dark-theme .qty-selector {
  border-color:var(--border)
}

.dark-theme .qty-btn {
  color:var(--primary)
}

.dark-theme .qty-btn:hover {
  background-color:var(--gold-cream)
}

.dark-theme .cart-footer {
  background-color:var(--bg)
}

.dark-theme .sheth-checklist {
  background-color: #0c0c0c
}

.dark-theme .sheth-checklist h2 {
  color: #fff!important
}

.dark-theme .store-name {
  color:var(--primary)
}

.dark-theme .store-btn-map {
  background-color:var(--primary);
  color: #fff
}

.dark-theme .store-btn-map:hover {
  background-color:var(--primary-dark)
}

.dark-theme .sc-modal-inner {
  background-color: #0a0a0a;
  border-color: #d4af3726
}

.dark-theme .sc-hero {
  color: #faf9f6
}

.dark-theme .sc-hero-overlay {
  background:linear-gradient(180deg, #000000d1, #000000bf 60%, #000000e0)
}

.dark-theme .sc-hero h2 {
  color: #faf9f6
}

.dark-theme .sc-hero-subtitle {
  color: #faf9f6bf
}

.dark-theme .sc-hero-copy {
  color: #faf9f68c
}

.dark-theme .sc-usp-item h4 {
  color: #faf9f6
}

.dark-theme .sc-usp-item p {
  color: #faf9f68c
}

.dark-theme .sc-advantage {
  background-color: #0d0d0d
}

.dark-theme .sc-value-card {
  background-color: #ffffff08;
  border-color: #d4af371a
}

.dark-theme .sc-value-card h4 {
  color: #faf9f6
}

.dark-theme .sc-value-card p {
  color: #faf9f673
}

.dark-theme .sc-value-card:hover {
  border-color:var(--gold);
  box-shadow: 0 12px 40px #d4af371f
}

.dark-theme .sc-value-flip {
  background:linear-gradient(135deg, #0a0a0a, #1a1a0a);
  border-color:var(--gold);
  color: #faf9f6
}

.dark-theme .sc-value-flip p {
  color: #faf9f6cc
}

.dark-theme .sc-event-card {
  background-color: #0a0a0ad9;
  border-color: #d4af371f
}

.dark-theme .sc-event-card h4 {
  color: #faf9f6
}

.dark-theme .sc-event-card:hover {
  border-color:var(--gold);
  box-shadow: 0 8px 35px #d4af371f
}

.dark-theme .sc-tier-card {
  background-color: #ffffff05;
  border-color: #d4af371a
}

.dark-theme .sc-tier-card.featured {
  background-color: #d4af3708;
  border-color:var(--gold)
}

.dark-theme .sc-tier-title {
  color: #faf9f6
}

.dark-theme .sc-tier-benefits li {
  color: #faf9f68c
}

.dark-theme .sc-brand-story {
  color: #faf9f6
}

.dark-theme .sc-brand-stat p, .dark-theme .sc-brand-copy {
  color: #faf9f680
}

.dark-theme .sc-sticky-bar {
  background:linear-gradient(135deg, #0a0a0a, #141400);
  border-color: #d4af371f
}

.dark-theme .sc-sticky-bar p {
  color: #faf9f699
}

.dark-theme .sc-apply-overlay {
  background-color: #000000e6
}

.dark-theme .sc-apply-box {
  background-color: #0a0a0a;
  border-color: #d4af3733
}

.dark-theme .sc-apply-box h3 {
  color: #faf9f6
}

.dark-theme .sc-form-step input, .dark-theme .sc-form-step select, .dark-theme .sc-form-step textarea {
  background-color: #ffffff08;
  color: #faf9f6;
  border-color: #d4af3726
}

.dark-theme .sc-form-step input:focus, .dark-theme .sc-form-step select:focus, .dark-theme .sc-form-step textarea:focus {
  border-color:var(--gold)
}

.dark-theme .sc-form-step select option {
  background-color: #1a1a1a;
  color: #faf9f6
}

.dark-theme .admin-sidebar {
  background-color:var(--bg-dark);
  border-color:var(--border)
}

.dark-theme .admin-sidebar-btn {
  color:var(--text-muted)
}

.dark-theme .admin-sidebar-btn.active {
  background-color:var(--bg-card);
  color:var(--primary)
}

.dark-theme .admin-card {
  background-color:var(--bg-card);
  border-color:var(--border)
}

.dark-theme .admin-card h2 {
  color:var(--primary)
}

.dark-theme .stat-box {
  background-color:var(--bg-card);
  border-color:var(--border)
}

.dark-theme .stat-box .stat-lbl {
  color:var(--text-muted)
}

.dark-theme .stat-box .stat-num {
  color:var(--primary)
}

.dark-theme .admin-table th {
  background-color:var(--bg-dark);
  color:var(--primary);
  border-bottom: 2px solid var(--border)
}

.dark-theme .admin-table td {
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.dark-theme .terminal-container {
  background-color: #0f172a;
  border-color: #ffffff1a
}

.dark-theme .terminal-header {
  background-color: #1e293b;
  color: #94a3b8
}

.dark-theme .terminal-body {
  background-color: #020617;
  color: #38bdf8
}

.dark-theme .terminal-line {
  color: #cbd5e1
}

.dark-theme .terminal-line[data-type=system] {
  color: #f59e0b
}

.dark-theme .terminal-line[data-type=whatsapp] {
  color: #10b981
}

.dark-theme .terminal-line[data-type=error] {
  color: #ef4444
}

.kow-hero-banner {
  position:relative;
  height: 80vh;
  min-height: 520px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color: #fff
}

.kow-hero-banner:before {
  content: "";
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0000001f;
  z-index: 1
}

.kow-hero-content {
  position:relative;
  z-index: 2;
  padding: 0 1rem
}

.kow-hero-subtitle {
  font-family:var(--font-sans);
  font-size: 1.15rem;
  letter-spacing: .2em;
  text-transform:uppercase;
  font-weight: 500;
  margin-bottom: .75rem;
  color: #ffffffe6
}

.kow-hero-title {
  font-family:var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff!important;
  text-shadow: 0 3px 15px rgba(0, 0, 0, .65)!important;
  letter-spacing:-.01em
}

.kow-hero-cta {
  font-family:var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform:uppercase;
  color: #fff;
  border-bottom: 2px solid #ffffff;
  padding-bottom: .35rem;
  transition:var(--transition);
  cursor:pointer;
  display:inline-block
}

.kow-hero-cta:hover {
  opacity: .8;
  color:var(--gold-light);
  border-bottom-color:var(--gold-light)
}

.kow-welcome-section {
  background-color:var(--bg-dark);
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border)
}

.kow-subtitle {
  font-family:var(--font-sans);
  font-size: .85rem;
  text-transform:uppercase;
  letter-spacing: .25em;
  color:var(--gold);
  font-weight: 700;
  margin-bottom: .75rem;
  display:block
}

.kow-welcome-title {
  font-family:var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color:var(--primary);
  margin-bottom: 1.5rem
}

.kow-welcome-desc {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color:var(--text-muted)
}

.kow-categories-section {
  background-color:var(--bg);
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border)
}

.kow-section-title {
  font-family:var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color:var(--primary);
  margin-bottom: 3.5rem
}

.kow-category-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto
}

.kow-category-card {
  position:relative;
  aspect-ratio: 3/4;
  overflow:hidden;
  border: 1px solid var(--border);
  display:block
}

.kow-category-card img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  transition:transform .8s cubic-bezier(.16, 1, .3, 1)
}

.kow-category-card:hover img {
  transform:scale(1.05)
}

.kow-category-label {
  position:absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align:center;
  font-family:var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: #fff;
  z-index: 2;
  text-transform:uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.kow-category-card:after {
  content: "";
  position:absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background:linear-gradient(to top, rgba(0, 0, 0, .45) 0%, transparent 100%);
  z-index: 1
}

@media (max-width: 1024px) {
  .kow-category-grid {
    grid-template-columns:repeat(2, 1fr)
  }

  .kow-hero-title {
    font-size: 3.8rem
  }
}

@media (max-width: 576px) {
  .kow-category-grid {
    grid-template-columns: 1fr
  }

  .kow-hero-title {
    font-size: 2.8rem
  }

  .kow-welcome-title {
    font-size: 2.2rem
  }
}

/* Product details styles moved to dedicated responsive section */

.sheth-gold-seal {
  position:absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background:linear-gradient(135deg, #b8941e, #d4af37, #b8941e);
  color: #0f172a;
  padding: .35rem .75rem;
  font-size: .65rem;
  font-weight: 800;
  text-transform:uppercase;
  letter-spacing: .1em;
  border-radius: 20px;
  box-shadow: 0 4px 12px #b8941e66;
  display:flex;
  align-items:center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .25);
  animation:goldGlow 3.5s infinite alternate ease-in-out;
  pointer-events:none
}

@keyframes goldGlow {
  0% {
    box-shadow: 0 4px 10px #b8941e59;
    filter:brightness(1)
  }

  to {
    box-shadow: 0 4px 18px #d4af37a6;
    filter:brightness(1.15)
  }
}

.nav-club-btn {
  background:linear-gradient(135deg, #8b0000, #5c0000)!important;
  color: #d4af37!important;
  padding: .45rem 1.25rem!important;
  font-weight: 700!important;
  letter-spacing: .05em!important;
  font-size: .8rem!important;
  border-radius: 4px;
  border: 1px solid #D4AF37!important;
  box-shadow: 0 0 10px #8b000059;
  animation:clubPulse 2.2s infinite ease-in-out;
  transition:var(--transition)!important
}

.nav-club-btn:hover {
  background:linear-gradient(135deg, #a00000, #700000)!important;
  box-shadow: 0 0 15px #d4af37a6!important;
  transform:translateY(-1.5px)
}

@keyframes clubPulse {
  0% {
    box-shadow: 0 0 #d4af3773
  }

  70% {
    box-shadow: 0 0 0 7px #d4af3700
  }

  to {
    box-shadow: 0 0 #d4af3700
  }
}

.kow-hero-banner {
  position:relative
}

.kow-hero-banner:after {
  content: "";
  position:absolute;
  bottom: 8%;
  right: 5%;
  width: 140px;
  height: 140px;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23d4af37" stroke-width="0.65" stroke-opacity="0.12"><circle cx="12" cy="12" r="10"/><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>');
  background-size:contain;
  background-repeat:no-repeat;
  pointer-events:none;
  z-index: 1
}

@media (max-width: 768px) {
  .kow-hero-banner:after {
    width: 90px;
    height: 90px;
    bottom: 5%;
    right: 5%
  }
}

.hero-slider-section {
  position:relative;
  width: 100%;
  height: 80vh;
  min-height: 550px;
  max-height: 900px;
  overflow:hidden;
  background-color: #050505
}

.hero-slider-container {
  width: 100%;
  height: 100%;
  position:relative
}

.hero-slide {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity: 0;
  visibility:hidden;
  transition:opacity 1s cubic-bezier(.4, 0, .2, 1), visibility 1s;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index: 1
}

.hero-slide.active {
  opacity: 1;
  visibility:visible;
  z-index: 2
}

.hero-slide:after {
  content: "";
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(to bottom, #00000026, #00000059);
  z-index: 2;
  pointer-events:none
}

.hero-slide .kow-hero-content {
  transform:translateY(20px);
  opacity: 0;
  transition:transform .8s ease, opacity .8s ease
}

.hero-slide.active .kow-hero-content {
  transform:translateY(0);
  opacity: 1
}

.kow-hero-desc {
  font-family:var(--font-sans);
  font-size: 1.15rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .7);
  max-width: 600px;
  margin: 1rem auto 2.2rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform:uppercase
}

.hero-slider-arrow {
  position:absolute;
  top: 50%;
  transform:translateY(-50%);
  width: 46px;
  height: 46px;
  background: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 10;
  transition:all .3s ease;
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px)
}

.hero-slider-arrow:hover {
  background:var(--gold);
  border-color:var(--gold);
  color:var(--primary)
}

.prev-arrow {
  left: 2rem
}

.next-arrow {
  right: 2rem
}

.hero-slider-dots {
  position:absolute;
  bottom: 2rem;
  left: 50%;
  transform:translate(-50%);
  display:flex;
  gap: 10px;
  z-index: 10
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff6;
  cursor:pointer;
  transition:all .3s ease
}

.hero-dot.active {
  background:var(--gold);
  transform:scale(1.2)
}

.product-card {
  display:flex;
  flex-direction:column;
  background-color:var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow:hidden;
  transition:var(--transition);
  height: 100%;
  position:relative
}

.product-card-body {
  padding: 1.2rem;
  display:flex;
  flex-direction:column;
  flex: 1;
  background-color:var(--bg-card)
}

.product-card-actions {
  display:flex;
  gap: .5rem;
  margin-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem
}

.card-add-bag-btn {
  flex: 1.2;
  background-color:var(--primary);
  color:var(--text-light);
  border: 1px solid var(--border-strong);
  padding: .55rem .5rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing: .05em;
  cursor:pointer;
  border-radius: 2px;
  transition:var(--transition)
}

.card-add-bag-btn:hover {
  background-color:var(--gold-dark);
  border-color:var(--gold-dark)
}


.product-info-wrap {
  display:flex;
  flex-direction:column;
  gap: .4rem;
  flex: 1
}

.product-card-meta {
  display:flex;
  justify-content:space-between;
  font-size: .7rem;
  color:var(--text-muted);
  text-transform:uppercase;
  font-weight: 600;
  letter-spacing: .05em
}

.product-card-tag {
  color:var(--gold-dark)
}

.product-card-title {
  font-family:var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color:var(--text);
  margin: 0;
  line-height: 1.3;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  height: 2.6em
}

.product-card-price-row {
  display:flex;
  align-items:center;
  margin-top: .25rem
}

.product-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color:var(--text)
}

.product-card-sizes {
  display:flex;
  align-items:center;
  gap: .5rem;
  margin-top: .5rem;
  border-top: 1px solid rgba(255, 255, 255, .03);
  padding-top: .5rem
}

.sizes-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform:uppercase;
  color:var(--text-muted)
}

.card-size-pills {
  display:flex;
  gap: 4px;
  flex-wrap:wrap
}

.card-size-pills .size-pill {
  border: 1px solid var(--border-strong);
  background:var(--bg-card);
  color:var(--text);
  padding: .25rem .45rem;
  font-size: .65rem;
  font-weight: 600;
  cursor:pointer;
  border-radius: 2px;
  transition:var(--transition)
}

.card-size-pills .size-pill:hover {
  border-color:var(--gold);
  background-color: #d4af3714
}

.card-size-pills .size-pill.selected {
  border-color:var(--gold);
  background-color:var(--gold);
  color: #0f172a
}

.product-card-footer {
  margin-top:auto;
  padding-top: .6rem;
  font-size: .7rem;
  font-weight: 500;
  color:var(--gold-light);
  border-top: 1px dashed rgba(255, 255, 255, .03)
}

.product-hover-actions {
  display:none!important
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns:repeat(2, 1fr)!important;
    gap: .5rem!important;
    padding: 0 .15rem
  }

  .product-img-container {
    height: 220px!important
  }

  .product-card-body {
    padding: .6rem
  }

  .product-card-actions {
    flex-direction:column;
    gap: .35rem;
    padding-bottom: .5rem;
    margin-bottom: .5rem
  }

  .card-add-bag-btn {
    padding: .45rem .25rem;
    font-size: .65rem;
    width: 100%;
    text-align:center
  }

  .product-card-meta {
    font-size: .6rem
  }

  .product-card-title {
    font-size: .8rem;
    height: 2.6em
  }

  .product-card-price {
    font-size: .95rem
  }

  .product-card-sizes {
    flex-direction:column;
    align-items:flex-start;
    gap: .25rem
  }

  .card-size-pills .size-pill {
    padding: .15rem .3rem;
    font-size: .6rem
  }
}

.scan-laser-line {
  position:absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background:var(--gold);
  box-shadow: 0 0 8px var(--gold), 0 0 15px var(--gold);
  animation:laserScan 2s infinite linear;
  z-index: 10
}

@keyframes laserScan {
  0% {
    top: 0%
  }

  50% {
    top: 100%
  }

  to {
    top: 0%
  }
}

.scan-badge {
  position:absolute;
  bottom: 8px;
  left: 50%;
  transform:translate(-50%);
  background: #8b0000d9;
  color: #fff;
  padding: 2px 6px;
  font-size: .6rem;
  font-weight: 800;
  border-radius: 3px;
  border: 1px solid var(--gold);
  letter-spacing: .05em;
  z-index: 10
}

.inspection-upload-card {
  transition:border-color .3s ease, background-color .3s ease
}

.inspection-upload-card:hover {
  border-color:var(--gold-light);
  background-color: #ffffff05!important
}

.kow-category-card {
  position:relative;
  background-color: #fff!important;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  aspect-ratio:auto!important;
  height: 380px;
  transition:all .3s cubic-bezier(.4, 0, .2, 1)
}

.kow-category-card:hover {
  box-shadow: 0 8px 24px #00000014;
  border-color:var(--gold-light)
}

.kow-category-card .cat-header-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 1.25rem 1.25rem .5rem;
  width: 100%
}

.kow-category-card .kow-category-label {
  position:static!important;
  text-align:left!important;
  font-family:var(--font-sans)!important;
  font-size: .95rem!important;
  font-weight: 700!important;
  letter-spacing: .05em!important;
  color: #0f172a!important;
  text-shadow:none!important;
  margin: 0;
  z-index: 2
}

.kow-category-card:after {
  display:none!important
}

.cat-img-wrapper {
  flex: 1;
  width: 100%;
  height: 280px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #fff;
  overflow:hidden;
  padding: 0!important
}

.cat-img-wrapper img {
  width: 100%!important;
  height: 100%!important;
  object-fit:cover!important;
  transition:transform .5s ease
}

.kow-category-card:hover .cat-img-wrapper img {
  transform:scale(1.06)
}

.kow-category-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr)!important;
  gap: 1.25rem!important;
  margin-top: 2rem
}

@media (max-width: 992px) {
  .kow-category-grid {
    grid-template-columns:repeat(2, 1fr)!important;
    gap: 1rem!important
  }
}

@media (max-width: 576px) {
  .kow-category-grid {
    grid-template-columns:repeat(2, 1fr)!important;
    gap: .5rem!important
  }

  .kow-category-card {
    height: 250px!important
  }

  .cat-img-wrapper {
    padding: .5rem .5rem 1.25rem
  }

  .cat-img-wrapper img {
    max-height: 140px!important
  }

  .kow-category-card .cat-header-row {
    padding: .75rem .75rem .25rem
  }

  .kow-category-card .kow-category-label {
    font-size: .75rem!important
  }
}

.designer-brand-seal {
  position:absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #0f172a73;
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 50%;
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  z-index: 10;
  animation:floatSeal 6s ease-in-out infinite;
  pointer-events:none
}

@keyframes floatSeal {
  0%, to {
    transform:translateY(0) rotate(0)
  }

  50% {
    transform:translateY(-8px) rotate(5deg)
  }
}

.seal-svg {
  position:absolute;
  width: 100%;
  height: 100%;
  animation:spinSeal 25s linear infinite
}

@keyframes spinSeal {
  0% {
    transform:rotate(0)
  }

  to {
    transform:rotate(360deg)
  }
}

.seal-icon {
  width: 34px;
  height: 22px;
  color:var(--gold-light);
  fill:none;
  stroke:currentColor;
  stroke-width: 14;
  stroke-linejoin:miter;
  stroke-linecap:square;
  opacity: .95
}

@media (max-width: 768px) {
  .designer-brand-seal {
    top: 20px;
    right: 20px;
    width: 90px;
    height: 90px
  }

  .seal-icon {
    width: 24px;
    height: 16px
  }
}

.sheth-stories-section {
  background-color: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  overflow-x:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  scrollbar-width:none
}

.sheth-stories-section::-webkit-scrollbar {
  display:none
}

.stories-container {
  display:flex;
  gap: 1.75rem;
  justify-content:center;
  align-items:center;
  flex-wrap:nowrap;
  padding: 0 1rem;
  width:auto
}

.story-bubble {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: .5rem;
  cursor:pointer;
  width: 90px;
  flex-shrink: 0;
  transition:transform .3s ease
}

.story-bubble:hover {
  transform:translateY(-4px)
}

.story-img-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  padding: 3px;
  background: #fff;
  transition:border-color .3s ease, box-shadow .3s ease;
  overflow:hidden;
  box-shadow: 0 2px 8px #0000000d
}

.story-bubble:hover .story-img-wrapper {
  border-color:var(--gold-light);
  box-shadow: 0 0 10px #d4af3766
}

.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-radius: 50%;
  background: #f8fafc
}

.story-label {
  font-family:var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  color: #334155;
  text-align:center;
  text-transform:uppercase;
  letter-spacing: .02em;
  white-space:nowrap
}

@media (max-width: 768px) {
  .sheth-stories-section {
    justify-content:flex-start
  }

  .stories-container {
    justify-content:flex-start;
    gap: 1.25rem
  }

  .story-img-wrapper {
    width: 68px;
    height: 68px
  }

  .story-bubble {
    width: 80px
  }

  .story-label {
    font-size: .68rem
  }
}

.story-viewer-modal {
  position:fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000f2;
  z-index: 10000;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease
}

.story-viewer-modal.active {
  opacity: 1;
  visibility:visible
}

.story-viewer-content {
  position:relative;
  width: 100%;
  max-width: 480px;
  height: 100%;
  max-height: 850px;
  display:flex;
  flex-direction:column;
  background: #000;
  border-radius: 8px;
  overflow:hidden;
  box-shadow: 0 10px 30px #00000080
}

.story-progress-bars-container {
  display:flex;
  gap: 4px;
  padding: 12px 16px 6px;
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100
}

.story-progress-bar-bg {
  flex: 1;
  height: 3px;
  background: #ffffff59;
  border-radius: 2px;
  overflow:hidden
}

.story-progress-bar-fill {
  width: 0%;
  height: 100%;
  background: #fff;
  transition:width .1s linear
}

.story-viewer-header {
  position:absolute;
  top: 18px;
  left: 0;
  width: 100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 16px;
  z-index: 100;
  pointer-events:auto
}

.story-header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  background-size:cover;
  background-position:center
}

.story-header-user {
  font-family:var(--font-sans);
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .8)
}

.story-close-btn {
  background:none;
  border:none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor:pointer;
  opacity: .8;
  transition:opacity .2s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .8)
}

.story-close-btn:hover {
  opacity: 1
}

.story-slide-image-container {
  position:relative;
  flex: 1;
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center
}

.story-slide-image-container img {
  width: 100%;
  height: 100%;
  object-fit:cover
}

.story-tap-region {
  position:absolute;
  top: 0;
  height: 100%;
  width: 25%;
  z-index: 50;
  cursor:pointer
}

.story-tap-left {
  left: 0
}

.story-tap-right {
  right: 0;
  width: 75%
}

.sheth-featured-card {
  position:relative;
  background:linear-gradient(180deg, #191919f2, #0c0c0cfa);
  border: 1px solid rgba(212, 175, 55, .22);
  border-radius: 8px;
  overflow:hidden;
  transition:all .4s cubic-bezier(.16, 1, .3, 1);
  perspective: 1000px;
  box-shadow: 0 10px 30px #00000080, inset 0 1px #ffffff0d
}

.sheth-featured-card:hover {
  transform:translateY(-8px) scale(1.01);
  border-color: #d4af378c;
  box-shadow: 0 20px 40px #000000b3, 0 0 25px #d4af3726
}

.sheth-featured-card .product-img-container {
  position:relative;
  height: 380px;
  overflow:hidden;
  border-bottom: 1px solid rgba(212, 175, 55, .15)
}

.sheth-featured-card .product-img-container:after {
  content: "";
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:linear-gradient(180deg, transparent 75%, rgba(12, 12, 12, .9) 100%);
  pointer-events:none
}

.sheth-featured-card .sheth-tag-pill {
  position:absolute;
  top: 15px;
  left: 15px;
  background:linear-gradient(135deg, #d4af37, #b8941e);
  color: #0a0a0a;
  font-size: .65rem;
  font-weight: 800;
  text-transform:uppercase;
  letter-spacing: .15em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 4px 10px #0000004d
}

.sheth-featured-card .sheth-art-badge {
  position:absolute;
  top: 15px;
  right: 15px;
  background: #000000bf;
  border: 1px solid rgba(212, 175, 55, .3);
  color: #d4af37;
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10
}

.sheth-featured-card .sheth-card-body {
  padding: 1.75rem;
  display:flex;
  flex-direction:column;
  flex: 1;
  gap: 1.25rem
}

.sheth-featured-card .sheth-card-title {
  font-family:var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform:none
}

.sheth-featured-card .sheth-card-meta-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding-bottom: .75rem
}

.sheth-featured-card .sheth-card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #d4af37;
  font-family:var(--font-sans)
}

.sheth-featured-card .sheth-card-spec-pill {
  font-size: .7rem;
  color: #ffffff80;
  background: #ffffff0a;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.sheth-featured-card .sheth-size-pills-row {
  display:flex;
  align-items:center;
  gap: .75rem
}

.sheth-featured-card .sheth-size-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform:uppercase;
  color: #fff6;
  letter-spacing: .05em;
  min-width: 45px
}

.sheth-featured-card .sheth-sizes-list {
  display:flex;
  flex-wrap:wrap;
  gap: .35rem
}

.sheth-featured-card .sheth-size-pill {
  background: #ffffff08;
  border: 1px solid rgba(212, 175, 55, .25);
  color: #faf9f6;
  font-size: .75rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s cubic-bezier(.16, 1, .3, 1)
}

.sheth-featured-card .sheth-size-pill:hover, .sheth-featured-card .sheth-size-pill.selected {
  background: #d4af37;
  color: #0a0a0a;
  border-color: #d4af37;
  box-shadow: 0 0 10px #d4af3766;
  transform:scale(1.1)
}

.sheth-featured-card .sheth-card-actions {
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap: .75rem;
  margin-top: .5rem
}

.sheth-featured-card .sheth-buy-btn {
  background:linear-gradient(135deg, #d4af37, #b8941e);
  color: #0d0d0d;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .85rem;
  border:none;
  border-radius: 4px;
  cursor:pointer;
  transition:all .3s ease;
  text-transform:uppercase
}

.sheth-featured-card .sheth-buy-btn:hover {
  background:linear-gradient(135deg, #faf9f6, #d4af37);
  box-shadow: 0 5px 15px #d4af374d;
  transform:translateY(-1px)
}

.sheth-featured-card .sheth-try-btn {
  background: #d4af3714;
  border: 1px solid rgba(212, 175, 55, .35);
  color: #d4af37;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .85rem;
  border-radius: 4px;
  cursor:pointer;
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: .35rem;
  text-transform:uppercase
}

.sheth-featured-card .sheth-try-btn:hover {
  background: #d4af3733;
  border-color: #d4af37;
  color: #fff
}

.sheth-featured-card .sheth-guarantee-row {
  display:flex;
  align-items:center;
  justify-content:center;
  gap: .35rem;
  font-size: .65rem;
  color: #d4af3799;
  text-transform:uppercase;
  font-weight: 700;
  letter-spacing: .05em;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: .75rem
}

@media (max-width: 768px) {
  .sheth-featured-card .product-img-container {
    height: 290px!important
  }

  .sheth-featured-card .sheth-card-body {
    padding: 1.1rem!important;
    gap: .85rem!important
  }

  .sheth-featured-card .sheth-card-title, .sheth-featured-card .sheth-card-price {
    font-size: 1.15rem!important
  }

  .sheth-featured-card .sheth-buy-btn, .sheth-featured-card .sheth-try-btn {
    padding: .7rem .5rem!important;
    font-size: .7rem!important
  }

  .sheth-featured-card .sheth-size-pill {
    width: 28px!important;
    height: 28px!important;
    font-size: .7rem!important
  }

  .featured-products-section {
    padding: 3rem 0!important
  }

  .featured-products-section h2.kow-section-title {
    font-size: 1.9rem!important
  }

  .featured-products-section p {
    font-size: .9rem!important;
    padding: 0 1rem
  }
}

.horizontal-collections-section::-webkit-scrollbar {
  display:none!important
}

.horizontal-collections-section {
  scrollbar-width:none!important;
  -ms-overflow-style:none!important
}

.collection-bubble-item {
  transition:all .3s cubic-bezier(.16, 1, .3, 1)
}

.collection-bubble-item:hover .bubble-img-wrapper {
  border-color:var(--gold-light)!important;
  transform:scale(1.06)
}

.collection-bubble-item.active .bubble-img-wrapper {
  border-color:var(--gold)!important;
  box-shadow: 0 0 14px #d4af3773!important;
  transform:scale(1.03)
}

@media (max-width: 768px) {
  .hero-slider-section {
    height: 50vw!important;
    min-height: 160px!important;
    max-height: 230px!important
  }

  .kow-hero-content {
    padding: .5rem!important
  }

  .kow-hero-content .kow-hero-subtitle {
    font-size: .65rem!important;
    margin-bottom: .25rem!important
  }

  .kow-hero-content .kow-hero-title {
    font-size: 1.25rem!important;
    margin-bottom: .4rem!important
  }

  .kow-hero-content .kow-hero-desc {
    display:none!important
  }

  .kow-hero-content .kow-hero-cta {
    padding: .4rem .8rem!important;
    font-size: .65rem!important
  }

  .featured-products-section {
    padding: 1.25rem 0!important
  }

  .featured-products-section .text-center {
    margin-bottom: .75rem!important
  }

  .featured-products-section .kow-subtitle {
    display:none!important
  }

  .featured-products-section h2.kow-section-title {
    font-size: 1.25rem!important;
    margin: 0!important;
    letter-spacing: .05em!important
  }

  .featured-products-section p {
    display:none!important
  }

  .product-grid {
    grid-template-columns:repeat(2, 1fr)!important;
    gap: .75rem!important
  }

  .product-img-container {
    height: 195px!important
  }

  .product-card-body {
    padding: .75rem!important;
    gap: .5rem!important
  }

  .product-card-title {
    font-size: .85rem!important;
    margin: .2rem 0!important;
    line-height: 1.3!important;
    height: 2.6em!important;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient:vertical
  }

  .product-card-price {
    font-size: .9rem!important
  }

  .sizes-label {
    display:none!important
  }

  .card-size-pills {
    gap: .15rem!important
  }

  .card-size-pills .size-pill {
    width: 19px!important;
    height: 19px!important;
    font-size: .55rem!important;
    line-height: 19px!important
  }

  .product-card-actions {
    gap: .35rem!important;
    margin-bottom: .25rem!important
  }

  .card-add-bag-btn {
    padding: .4rem .25rem!important;
    font-size: .6rem!important;
    height: 28px!important;
    line-height: 1!important
  }

  .filters-bar {
    grid-template-columns:repeat(3, 1fr)!important;
    gap: .5rem!important;
    padding: .75rem!important
  }

  .filter-group label {
    font-size: .65rem!important;
    margin-bottom: .15rem!important
  }

  .filter-select {
    padding: .4rem .5rem!important;
    font-size: .75rem!important;
    height:auto!important
  }

  .catalog-search-wrapper {
    margin-bottom: 1rem!important
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns:repeat(2, 1fr)!important
  }

  .horizontal-collections-section .container {
    gap: 1rem!important
  }

  .bubble-img-wrapper {
    width: 65px!important;
    height: 65px!important
  }

  .bubble-label {
    font-size: .65rem!important
  }
}

/* --- NAVBAR DROPDOWN MENU --- */
.dropdown {
  position: relative;
}
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  list-style: none !important;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  border-radius: 4px;
  margin: 0;
}
.dropdown-menu li {
  margin: 0 !important;
  width: 100%;
  list-style: none !important;
  padding: 0 !important;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text) !important;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: none !important;
}
.dropdown-menu a:hover {
  background-color: var(--gold-cream);
  color: var(--gold-dark) !important;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0.5rem 0 0 !important;
    text-align: center !important;
    width: 100% !important;
  }
  .dropdown-menu li {
    text-align: center !important;
  }
  .dropdown-menu a {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
}

/* --- HORIZONTAL PREMIUM FILTERS --- */
.premium-filter-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 6px;
}
.filter-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.search-input-wrapper {
  position: relative;
  flex: 1;
}
.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
  border-radius: 4px;
}
.search-input:focus {
  border-color: var(--gold);
}
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}
.filter-toggle-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-options-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.filter-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.filter-group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gold-dark);
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-pill {
  padding: 0.5rem 1rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}
.filter-pill:hover,
.filter-pill.active {
  background-color: var(--gold-cream);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.filter-size-grid .size-pill {
  width: auto !important;
  height: auto !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  background-color: var(--bg) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  border-radius: 4px !important;
  line-height: 1 !important;
  text-align: center !important;
}
.filter-size-grid .size-pill:hover,
.filter-size-grid .size-pill.active {
  background-color: var(--gold-cream) !important;
  border-color: var(--gold) !important;
  color: var(--gold-dark) !important;
}

@media (max-width: 1024px) {
  .filter-options-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- HERO FEATURED BIG CARD & CUSTOM ADJECTIVES --- */
.product-badge.product-badge--adjective {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: #000 !important;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
  letter-spacing: 0.08em;
}

@media (min-width: 769px) {
  .product-card.product-card--featured {
    grid-column: span 2 !important;
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 0 !important;
    min-height: 580px !important;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.04) 100%) !important;
    border: 1px solid var(--gold) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
  }
  .product-card.product-card--featured .product-img-container {
    height: 100% !important;
    aspect-ratio: auto !important;
    border-radius: 4px 0 0 4px !important;
    border-bottom: none !important;
    background-color: #0d0d0d !important;
  }
  .product-card.product-card--featured .product-img {
    height: 100% !important;
    object-fit: cover !important;
    background-color: #0d0d0d !important;
  }
  .product-card.product-card--featured .product-card-body {
    padding: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .product-card.product-card--featured .product-card-title {
    font-size: 1.65rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.25 !important;
  }
  .product-card.product-card--featured .product-card-price {
    font-size: 1.5rem !important;
  }
  .product-card.product-card--featured .product-card-sizes {
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .product-card.product-card--featured {
    grid-column: span 2 !important;
    border-color: var(--gold) !important;
  }
  .product-card.product-card--featured .product-card-body {
    display: none !important;
  }
  .product-card.product-card--featured .product-img-container {
    height: 520px !important;
    aspect-ratio: auto !important;
    border-radius: 4px !important;
    border-bottom: none !important;
    background-color: #0d0d0d !important;
  }
  .product-card.product-card--featured .product-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    background-color: #0d0d0d !important;
  }
}

/* --- MODERN FLOATING FILTERS & SIDEBAR SYSTEM --- */
.shop-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-toggle-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-toggle-filters:hover {
  background-color: var(--border);
  border-color: var(--text);
}

.shop-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.desktop-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.sort-select {
  padding: 0.6rem 1.75rem 0.6rem 0.75rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffffff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.sort-select:hover, .sort-select:focus {
  border-color: var(--gold);
}

.shop-main-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  position: relative;
}

.shop-sidebar-filters {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: block;
}

.shop-grid-area {
  flex: 1;
}

.filter-sidebar-group {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.filter-sidebar-group:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.filter-sidebar-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.filter-sidebar-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-sidebar-pill {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.85rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-sidebar-pill:hover,
.filter-sidebar-pill.active {
  background-color: var(--gold-cream);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-sidebar-sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.sidebar-size-pill {
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.sidebar-size-pill:hover,
.sidebar-size-pill.active {
  background-color: var(--gold-cream);
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* --- MOBILE FLOATING BOTTOM BAR (Clean style from screenshots) --- */
.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 1000;
  width: calc(100% - 2.5rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  height: 52px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0;
}

.mobile-floating-bar.visible {
  display: flex;
  transform: translate(-50%, 0);
  opacity: 1;
}

.mobile-float-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  height: 100%;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.mobile-float-divider {
  width: 1px;
  height: 20px;
  background-color: #dddddd;
}

/* --- MOBILE FILTER DRAWERS (Slide Up Sheet) --- */
.mobile-filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 80vh;
  background-color: #ffffff;
  color: #111111;
  border-radius: 20px 20px 0 0;
  z-index: 10001;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.mobile-filter-drawer.active {
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-drawer-header h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.05em;
  margin: 0;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: #666666;
  cursor: pointer;
  line-height: 1;
}

.mobile-drawer-content {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.drawer-filter-group {
  margin-bottom: 1.5rem;
}

.drawer-group-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.drawer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.drawer-pill {
  padding: 0.55rem 1rem;
  background-color: #f5f5f5;
  border: 1px solid #f0f0f0;
  color: #333333;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.drawer-pill:hover,
.drawer-pill.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.drawer-sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.drawer-size-pill {
  padding: 0.6rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #f5f5f5;
  border: 1px solid #f0f0f0;
  color: #333333;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}

.drawer-size-pill:hover,
.drawer-size-pill.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.mobile-drawer-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #f0f0f0;
  background-color: #ffffff;
}

.mobile-drawer-footer .btn {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
}

.mobile-drawer-footer .btn-outline {
  border: 1px solid #cccccc;
  color: #111111;
  background: transparent;
}

.mobile-drawer-footer .btn-gold {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- MOBILE SORT OPTIONS --- */
.mobile-sort-options {
  padding: 1rem 0;
}

.mobile-sort-option {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.75rem;
  background: transparent;
  border: none;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sort-option:last-child {
  border-bottom: none;
}

.mobile-sort-option.active {
  color: #000000;
  font-weight: 800;
}

.mobile-sort-option.active::after {
  content: "✓";
  font-size: 0.95rem;
  font-weight: 900;
}

/* --- THEME OVERRIDES --- */
body.light-theme .mobile-floating-bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: #e0e0e0;
}
body.light-theme .mobile-float-btn {
  color: #111111;
}
body.light-theme .mobile-filter-drawer {
  background-color: #ffffff;
  color: #111111;
}

body.dark-theme .mobile-floating-bar {
  background: rgba(15, 15, 15, 0.96);
  border-color: #333333;
}
body.dark-theme .mobile-float-btn {
  color: #ffffff;
}
body.dark-theme .mobile-float-divider {
  background-color: #333333;
}
body.dark-theme .mobile-filter-drawer {
  background-color: #111111;
  color: #ffffff;
}
body.dark-theme .mobile-drawer-header {
  border-bottom-color: #222222;
}
body.dark-theme .mobile-drawer-header h3 {
  color: #ffffff;
}
body.dark-theme .mobile-drawer-close {
  color: #999999;
}
body.dark-theme .drawer-pill {
  background-color: #222222;
  border-color: #333333;
  color: #cccccc;
}
body.dark-theme .drawer-pill:hover,
body.dark-theme .drawer-pill.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #111111;
}
body.dark-theme .drawer-size-pill {
  background-color: #222222;
  border-color: #333333;
  color: #cccccc;
}
body.dark-theme .drawer-size-pill:hover,
body.dark-theme .drawer-size-pill.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #111111;
}
body.dark-theme .mobile-drawer-footer {
  background-color: #111111;
  border-top-color: #222222;
}
body.dark-theme .mobile-drawer-footer .btn-outline {
  border-color: #444444;
  color: #ffffff;
}
body.dark-theme .mobile-drawer-footer .btn-gold {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #111111;
}
body.dark-theme .mobile-sort-options button {
  color: #cccccc;
  border-bottom-color: #222222;
}
body.dark-theme .mobile-sort-option.active {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .shop-main-layout {
    gap: 1.5rem;
  }
  .shop-sidebar-filters {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .btn-toggle-filters {
    display: none;
  }
  .desktop-sort-wrapper {
    display: none;
  }
  .shop-sidebar-filters {
    display: none !important;
  }
  .shop-action-bar {
    padding: 0.75rem;
    border: none;
    box-shadow: none;
    background: transparent;
    margin-bottom: 1rem;
  }
  .shop-search-wrapper {
    max-width: 100%;
  }
}

/* --- B2B VISITING CARD GATEWAY STYLES --- */
.calc-gate-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
}

.calc-gate-card {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.calc-gate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.lock-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.calc-gate-card:hover .lock-icon-wrap {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.lock-svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.calc-gate-card h3 {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.calc-gate-card p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.upload-action-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 400px;
  margin: 0 auto 2.5rem;
  align-items: center;
  width: 100%;
}

.upload-btn {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 1.2rem 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 100%;
  padding: 1.1rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.verification-note {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* Status Indicator */
.verification-status {
  margin-top: 2rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  animation: fadeIn 0.4s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.spinner-ring {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  flex-shrink: 0;
}

.status-content {
  flex-grow: 1;
}

.status-content h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.status-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.progress-bar-glow {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-fill-glow {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- ADDED DYNAMIC UX STYLES --- */
.shake-element {
  animation: shake 0.4s ease-in-out;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.card-size-pills .size-pill.active {
  border-color: var(--gold) !important;
  background-color: var(--gold) !important;
  color: #0f172a !important;
}

.details-size-pill.active {
  border-color: var(--gold) !important;
  background-color: var(--gold) !important;
  color: #0f172a !important;
}

/* Draggable Sortable List for Admin CMS */
.featured-sortable-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
.featured-sortable-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: grab;
  transition: transform 0.2s ease, border-color 0.2s ease;
  user-select: none;
}
.featured-sortable-item:active {
  cursor: grabbing;
}
.featured-sortable-item.dragging {
  opacity: 0.5;
  border: 1.5px dashed var(--gold) !important;
}
.featured-sortable-item:hover {
  border-color: var(--gold);
}
.featured-sortable-item .drag-handle {
  color: var(--text-muted);
  cursor: grab;
  font-size: 1.2rem;
  padding-right: 0.5rem;
}
.featured-sortable-item img {
  width: 40px;
  height: 50px;
  object-fit: cover;
  border-radius: 2px;
}
.featured-sortable-item .item-details {
  flex: 1;
}
.featured-sortable-item .item-details h4 {
  margin: 0 0 0.2rem 0;
  font-size: 0.9rem;
}
.featured-sortable-item .item-details span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive button visibility helper overrides */
@media (min-width: 1025px) {
  .mobile-only-btn {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .desktop-only-btn {
    display: none !important;
  }
}

/* Premium Floating Spots Bubble */
.hero-spots-bubble {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(212, 175, 55, 0.1);
  animation: bubbleFloat 6s ease-in-out infinite, bubblePulse 3s ease-in-out infinite alternate;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-spots-bubble:hover {
  transform: scale(1.08) translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25), inset 0 0 16px rgba(212, 175, 55, 0.2);
}

.bubble-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

.bubble-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
}

.bubble-code {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.bubble-count {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2px;
}

.bubble-count span {
  color: var(--gold-light);
  font-size: 1.4rem;
  display: inline-block;
  animation: textBlink 1.5s ease-in-out infinite alternate;
}

.bubble-subtext {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Animations */
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bubblePulse {
  0% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(212, 175, 55, 0.1); }
  100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.25), 0 0 10px rgba(212, 175, 55, 0.15); }
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes textBlink {
  0% { text-shadow: 0 0 2px rgba(212,175,55,0.2); }
  100% { text-shadow: 0 0 8px rgba(212,175,55,0.8), 0 0 12px rgba(212,175,55,0.4); }
}

/* Responsiveness for mobile screen */
@media (max-width: 768px) {
  .hero-spots-bubble {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 20px;
    padding: 6px;
  }
  .bubble-badge {
    font-size: 0.5rem;
    margin-bottom: 2px;
  }
  .bubble-code {
    font-size: 0.6rem;
    padding: 1px 4px;
    margin-bottom: 2px;
  }
  .bubble-count {
    font-size: 0.85rem;
  }
  .bubble-count span {
    font-size: 1.05rem;
  }
  .bubble-subtext {
    font-size: 0.45rem;
  }
}

/* ==========================================================================
   EXACT OWNER CHATGPT-STYLE "BE A SHETH." LUXURY HERO & TRUST STRIPS
   ========================================================================== */
.sheth-top-announcement {
  background: #090d16;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  margin-top: 80px;
}
.sheth-announcement-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}
.sheth-announcement-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sheth-announcement-item span {
  color: #d4af37;
}

/* HERO SECTION */
.sheth-owner-hero {
  position: relative;
  min-height: 540px;
  margin-top: 118px;
  background-color: #0b0e14;
  background-image: url('images/sheth_hero_model.jpg');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

/* CMS LAUNCH OFFER BANNER CONTAINER */
.cms-launch-banner-container {
  width: 100%;
  max-width: 1300px;
  margin: 2.2rem auto 1.5rem auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  overflow: hidden;
}

.cms-launch-banner-container a {
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  background-color: #0b0e14;
}

.cms-launch-banner-container a:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.22);
}

.cms-launch-banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.sheth-owner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #07090e 0%, rgba(7, 9, 14, 0.92) 40%, rgba(7, 9, 14, 0.4) 70%, rgba(7, 9, 14, 0.1) 100%);
  z-index: 1;
}

.sheth-owner-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.sheth-hero-text-wrapper {
  max-width: 540px;
}

.sheth-hero-main-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 4.8rem;
  line-height: 0.92;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 0 1.2rem 0;
  text-transform: uppercase;
}

.sheth-gold-gradient-text {
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 40%, #aa7c11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 0.06em;
}

.sheth-hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.2rem 0 1.5rem 0;
}
.sheth-hero-divider .divider-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, rgba(212,175,55,0.8), rgba(212,175,55,0.1));
}
.sheth-hero-divider .divider-crown {
  color: #d4af37;
  font-size: 1.1rem;
}

.sheth-hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #e2e8f0;
  margin: 0 0 0.6rem 0;
  letter-spacing: 0.02em;
}

.sheth-hero-desc {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: #a0aec0;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  letter-spacing: 0.02em;
}

.sheth-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #090d16;
  color: #f7fafc;
  border: 1.5px solid #d4af37;
  padding: 1rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.sheth-hero-cta-btn:hover {
  background: #d4af37;
  color: #080808;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.sheth-hero-cta-btn .cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.sheth-hero-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

/* TRUST STRIP (4 COLUMNS WITH CIRCULAR ICONS) */
.sheth-trust-grid-container {
  background: #090c13;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.2rem 1.5rem;
}

.sheth-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.sheth-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 1rem;
  background: rgba(18, 24, 38, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sheth-trust-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sheth-trust-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid #d4af37;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(9,12,19,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #d4af37;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.sheth-trust-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.sheth-trust-sub {
  font-size: 0.78rem;
  color: #a0aec0;
}

/* FEATURE SPECS STRIP (4 PILLARS) */
.sheth-specs-strip {
  background: #06080d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 1.5rem;
}

.sheth-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.sheth-spec-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem;
}

.sheth-spec-icon {
  font-size: 1.25rem;
  color: #d4af37;
}

.sheth-spec-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sheth-spec-sub {
  font-size: 0.74rem;
  color: #718096;
}

/* MEDIA QUERIES FOR MOBILE */
@media (max-width: 992px) {
  .sheth-hero-main-title {
    font-size: 3.6rem;
  }
  .sheth-trust-grid, .sheth-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sheth-announcement-items {
    gap: 1rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {
  .sheth-owner-hero {
    min-height: 520px;
    background-position: 85% center;
  }
  .sheth-owner-hero-overlay {
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.85) 0%, rgba(7, 9, 14, 0.55) 45%, rgba(7, 9, 14, 0.88) 100%);
  }
  .sheth-owner-hero-content {
    padding: 2rem 1rem;
  }
  .sheth-hero-main-title {
    font-size: 2.4rem;
  }
  .sheth-hero-tagline {
    font-size: 1rem;
  }
  .sheth-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .sheth-specs-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .sheth-announcement-items {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }
  .sheth-launch-badge {
    max-width: 88%;
    font-size: 0.65rem;
    padding: 0.35rem 0.65rem;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    line-height: 1.25;
  }
  .sheth-launch-badge .launch-code {
    padding: 0.06rem 0.35rem;
    font-size: 0.68rem;
  }
}

/* SUBTLE LAUNCH COUPON BADGE */
.sheth-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #f3e5ab;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.sheth-launch-badge .launch-code {
  color: #ffffff;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid #d4af37;
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sheth-launch-badge .launch-limit {
  color: #a0aec0;
  font-size: 0.68rem;
  font-weight: 600;
}

/* CATALOG HEADER STYLES */
.catalog-header-wrap {
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.catalog-main-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin: 0 0 0.35rem 0;
}

.catalog-sub-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .sheth-specs-strip {
    display: none !important;
  }
  .catalog-header-wrap {
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 0.25rem 0.5rem;
  }
  .catalog-main-title {
    font-size: 1.45rem;
    letter-spacing: 0.02em;
  }
  .catalog-sub-title {
    font-size: 0.78rem;
  }
}

/* DARK MODE CONTRAST OVERRIDES */
.dark-theme .card-add-bag-btn,
.dark-theme .add-cart-btn {
  background-color: #1a1a1a !important;
  color: var(--gold-light) !important;
  border: 1px solid var(--gold) !important;
  font-weight: 700 !important;
}

.dark-theme .card-add-bag-btn:hover,
.dark-theme .add-cart-btn:hover {
  background-color: var(--gold) !important;
  color: #000000 !important;
  border-color: var(--gold) !important;
}

.dark-theme .product-card {
  background-color: #111111 !important;
  border-color: rgba(212, 175, 55, 0.15) !important;
}

.dark-theme .product-card-title {
  color: #ffffff !important;
}

.dark-theme .product-card-tag {
  color: var(--gold-light) !important;
}

.dark-theme .search-input {
  background-color: #161616 !important;
  color: #ffffff !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
}

.dark-theme .search-input::placeholder {
  color: #a0aec0 !important;
}

.dark-theme .filter-sidebar-pill {
  background-color: #181818 !important;
  color: #e2e8f0 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.dark-theme .filter-sidebar-pill.active,
.dark-theme .filter-sidebar-pill:hover {
  background-color: var(--gold) !important;
  color: #000000 !important;
  border-color: var(--gold) !important;
}

.dark-theme .sidebar-size-pill {
  background-color: #181818 !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.dark-theme .sidebar-size-pill.active,
.dark-theme .sidebar-size-pill:hover {
  background-color: var(--gold) !important;
  color: #000000 !important;
}

.dark-theme .catalog-main-title {
  color: #ffffff !important;
}

.dark-theme .catalog-sub-title {
  color: #cbd5e1 !important;
}

.dark-theme .desktop-sort-wrapper select {
  background-color: #181818 !important;
  color: #ffffff !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
}

/* --- HERO BOTTOM TRUST & SPEC BAR CONTAINER (EXACT MATCH TO OWNER IMAGE) --- */
.sheth-hero-bottom-bar-container {
  background: #07090e;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 2.2rem 1.5rem 1.8rem;
  box-sizing: border-box;
}

.sheth-trust-grid-hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto 1.6rem;
}

.sheth-trust-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  border-right: 1px solid rgba(212, 175, 55, 0.25);
}

.sheth-trust-col:last-child {
  border-right: none;
}

.sheth-trust-circle-svg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  background: rgba(18, 24, 38, 0.6);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sheth-trust-col:hover .sheth-trust-circle-svg {
  transform: translateY(-3px);
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.sheth-trust-t {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.sheth-trust-s {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* SLEEK GOLD BORDERED BOX AT BOTTOM */
.sheth-hero-gold-box {
  max-width: 960px;
  margin: 0 auto;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  background: rgba(12, 16, 25, 0.85);
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f3e5ab;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.08);
}

@media (max-width: 768px) {
  .sheth-hero-bottom-bar-container {
    padding: 1.5rem 1rem 1.2rem;
  }
  
  .sheth-trust-grid-hero {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 0.5rem;
  }
  
  .sheth-trust-col {
    border-right: none;
  }

  .sheth-trust-col:nth-child(odd) {
    border-right: 1px solid rgba(212, 175, 55, 0.25);
  }
  
  .sheth-trust-circle-svg {
    width: 44px;
    height: 44px;
  }
  
  .sheth-trust-t {
    font-size: 0.72rem;
  }
  
  .sheth-trust-s {
    font-size: 0.64rem;
  }

  .sheth-hero-gold-box {
    font-size: 0.64rem;
    padding: 0.65rem 0.75rem;
    line-height: 1.45;
    gap: 8px;
  }
}

/* --- DYNAMIC CMS PROMO BANNER SECTION --- */
.sheth-promo-banner-wrapper {
  background: #07090e;
  padding: 1rem 1.5rem 0;
}

.sheth-promo-banner-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(9,12,19,0.9) 60%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.sheth-promo-tag {
  font-size: 0.68rem;
  font-weight: 900;
  color: #ffd700;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.sheth-promo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.35rem 0;
  letter-spacing: 0.04em;
}

.sheth-promo-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.sheth-promo-desc .gold-code {
  color: #f3e5ab;
  font-weight: 800;
}

.sheth-coupon-badge-box {
  background: rgba(0,0,0,0.6);
  border: 1px dashed rgba(212, 175, 55, 0.6);
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sheth-coupon-badge-box .lbl {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sheth-coupon-badge-box .code {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffd700;
  letter-spacing: 0.12em;
}

.sheth-coupon-badge-box .copy-coupon-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 900;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 4px;
}

/* MOBILE CATALOG FILTER BAR & PILLS */
.mobile-catalog-filter-bar {
  display: none;
  background: rgba(18, 24, 38, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 0.6rem 0.5rem;
  margin-bottom: 0.75rem;
  align-items: center;
  justify-content: space-around;
}

.mobile-filter-trigger-btn {
  background: none;
  border: none;
  color: #f3e5ab;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.mobile-filter-bar-vsep {
  width: 1px;
  height: 20px;
  background: rgba(212, 175, 55, 0.3);
}

.mobile-collection-pills-bar {
  display: none;
  overflow-x: auto;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-coll-pill {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.mobile-coll-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
}

.mobile-coll-pill.active {
  background: var(--gold);
  color: #000000;
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
  font-weight: 800;
}

/* FLOATING WHATSAPP BOT FAQ WIDGET */
.sheth-wa-bot-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10005;
}

.sheth-wa-toggle-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheth-wa-toggle-btn:hover {
  transform: scale(1.08);
}

.sheth-wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #d4af37;
  color: #000;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid #fff;
}

.sheth-wa-bot-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  max-width: 90vw;
  height: 440px;
  background: #0d111a;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheth-wa-bot-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sheth-wa-bot-header {
  background: linear-gradient(135deg, #090d16 0%, #128C7E 100%);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sheth-wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.sheth-wa-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.sheth-wa-chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #090c13;
}

.wa-msg {
  display: flex;
  flex-direction: column;
}

.wa-bot-msg { align-items: flex-start; }
.wa-user-msg { align-items: flex-end; }

.wa-bubble {
  max-width: 85%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.wa-bot-msg .wa-bubble {
  background: #182232;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 2px;
}

.wa-user-msg .wa-bubble {
  background: #128C7E;
  color: #ffffff;
  border-top-right-radius: 2px;
}

.wa-faq-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.5rem;
}

.wa-faq-btn {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #f3e5ab;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-faq-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #ffffff;
}

.sheth-wa-bot-footer {
  padding: 0.75rem;
  background: #0b0e17;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-direct-chat-btn {
  width: 100%;
  padding: 0.6rem;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.wa-direct-chat-btn:hover {
  background: #20ba59;
}

/* --- SHETH CARD CLUB BADGE & ACTION BUTTON ACCESSIBILITY (LIGHT & DARK MODE) --- */
.sheth-card-club-badge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.25)) !important;
  border: 1px solid #b8860b !important;
  border-radius: 4px !important;
  padding: 5px 9px !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  color: #634300 !important; /* Deep rich bronze gold for 100% legibility on light cards */
  margin: 0.45rem 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

[data-theme="dark"] .sheth-card-club-badge,
.dark-theme .sheth-card-club-badge,
body.dark-mode .sheth-card-club-badge {
  background: rgba(212, 175, 55, 0.2) !important;
  border-color: rgba(212, 175, 55, 0.5) !important;
  color: #ffd700 !important; /* Vibrant lustrous gold on dark cards */
}

/* Details button contrast fix */
.view-fabric-btn {
  background: rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #906600 !important;
  color: #634300 !important;
  font-weight: 800 !important;
  border-radius: 4px !important;
  padding: 0.4rem 0.85rem !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.view-fabric-btn:hover {
  background: #d4af37 !important;
  color: #000000 !important;
  border-color: #d4af37 !important;
}

[data-theme="dark"] .view-fabric-btn,
.dark-theme .view-fabric-btn,
body.dark-mode .view-fabric-btn {
  background: transparent !important;
  border-color: var(--border, rgba(255,255,255,0.2)) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .view-fabric-btn:hover,
.dark-theme .view-fabric-btn:hover,
body.dark-mode .view-fabric-btn:hover {
  background: #d4af37 !important;
  color: #000000 !important;
}

@media (max-width: 768px) {
  .mobile-catalog-filter-bar,
  .mobile-collection-pills-bar {
    display: flex;
  }
  
  .sheth-promo-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .sheth-wa-bot-widget {
    bottom: 20px;
    right: 15px;
  }
}

/* ==========================================================================
   PRODUCT DETAILS MODAL - CLEAN E-COMMERCE RESPONSIVE LAYOUT
   ========================================================================== */

/* ==========================================================================
   FULL-PAGE PRODUCT SCREEN (DESKTOP & MOBILE FULL VIEW - NO POPUP)
   ========================================================================== */

.product-page-screen#product-details-modal,
#product-details-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  overflow-y: auto !important;
  background: #ffffff !important;
  color: #111827 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  filter: none !important;
  perspective: none !important;
  contain: none !important;
  display: none;
  box-sizing: border-box !important;
}

.product-page-screen#product-details-modal.active,
#product-details-modal.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

/* 1. Top Navigation Bar (Sleek, Minimal & Non-Crowded) */
.pdp-top-bar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
  width: 100% !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
}

.pdp-top-bar-inner {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  height: 100% !important;
}

.pdp-back-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #f3f4f6 !important;
  color: #374151 !important;
  border: 1px solid #e5e7eb !important;
  padding: 5px 12px !important;
  border-radius: 16px !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.pdp-back-btn svg {
  width: 14px !important;
  height: 14px !important;
}

.pdp-back-btn:hover {
  background: #e5e7eb !important;
  color: #111827 !important;
}

.pdp-breadcrumbs-wrap {
  font-size: 0.78rem !important;
  color: #6b7280 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 50% !important;
}

.crumb-sep {
  color: #9ca3af !important;
}

#details-breadcrumb-title {
  color: #111827 !important;
  font-weight: 600 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.pdp-top-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.pdp-cart-btn {
  position: relative !important;
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #111827 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}

.pdp-cart-btn svg {
  width: 16px !important;
  height: 16px !important;
}

.pdp-cart-btn:hover {
  background: #e5e7eb !important;
}

.pdp-cart-badge {
  position: absolute !important;
  top: -3px !important;
  right: -3px !important;
  background: #e11d48 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 0.6rem !important;
  font-weight: 800 !important;
  min-width: 16px !important;
  height: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 2px !important;
}

.pdp-close-btn {
  background: none !important;
  border: none !important;
  color: #6b7280 !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 0 4px !important;
  transition: color 0.15s ease !important;
}

.pdp-close-btn:hover {
  color: #111827 !important;
}

/* 2. Main Full Page Content */
.pdp-main-content {
  width: 100% !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-sizing: border-box !important;
}

.pdp-grid-wrapper {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 3. Component Details Info Elements */
.pdp-brand-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 0.35rem !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}

.pdp-brand-row .hero-tagline,
#details-brand-tagline {
  color: #6b7280 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin: 0 !important;
}

.factory-direct-badge {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0 !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.pdp-title {
  color: #111827 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  margin: 0.25rem 0 0.5rem 0 !important;
  line-height: 1.25 !important;
}

.pdp-pricing-row {
  margin-bottom: 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

.details-article-id {
  font-size: 0.85rem !important;
  color: #9ca3af !important;
  font-weight: 500 !important;
}

.pdp-price {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
}

.pdp-tax-note {
  font-size: 0.75rem !important;
  color: #6b7280 !important;
}

.pdp-description {
  color: #4b5563 !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
}

.pdp-subheading {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #111827 !important;
  letter-spacing: 0.04em !important;
  display: block !important;
}

.pdp-swatches-grid {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin-top: 0.5rem !important;
}

.pdp-notice-box {
  margin-bottom: 1.25rem !important;
  padding: 0.75rem 1rem !important;
  background: #fffbeb !important;
  border: 1px solid #f59e0b !important;
  border-radius: 6px !important;
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  color: #92400e !important;
}

.pdp-notice-header {
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 4px !important;
  color: #b45309 !important;
}

.details-size-section {
  margin-bottom: 1.25rem !important;
}

.pdp-size-header-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.5rem !important;
}

.pdp-size-chart-btn {
  background: none !important;
  border: none !important;
  color: #2563eb !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.details-size-pills {
  display: flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

.details-size-pill {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1.5px solid #d1d5db !important;
  border-radius: 6px !important;
  padding: 0.65rem 1.15rem !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  min-width: 52px !important;
  text-align: center !important;
}

.details-size-pill:hover {
  border-color: #111827 !important;
  background: #f9fafb !important;
}

.details-size-pill.active {
  border-color: #111827 !important;
  background: #111827 !important;
  color: #ffffff !important;
}

.pdp-desktop-actions {
  margin-bottom: 1.5rem !important;
}

.pdp-desktop-actions-row {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
}

.btn-details-add-cart,
#details-inline-add-cart-btn {
  flex: 1 !important;
  height: 48px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #111827 !important;
  border: 2px solid #111827 !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-details-add-cart:hover,
#details-inline-add-cart-btn:hover {
  background: #111827 !important;
  color: #ffffff !important;
}

.btn-details-buy-now,
#details-inline-buy-now-btn {
  flex: 1.15 !important;
  height: 48px !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #c8102e, #a3091f) !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35) !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-details-buy-now:hover,
#details-inline-buy-now-btn:hover {
  background: #a3091f !important;
}

.details-specs-section {
  margin-bottom: 1.5rem !important;
}

.details-specs-list {
  list-style: none !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.5rem !important;
  font-size: 0.85rem !important;
  margin-top: 0.5rem !important;
}

.details-specs-list li {
  color: #4b5563 !important;
  border-bottom: 1px dashed #e5e7eb !important;
  padding-bottom: 0.35rem !important;
}

.details-specs-list li strong {
  color: #111827 !important;
  font-weight: 600 !important;
}

.details-trust-badges {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.5rem !important;
  margin-bottom: 1rem !important;
  background: #f9fafb !important;
  padding: 0.75rem !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  text-align: center !important;
}

.trust-badge-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
}

.trust-badge-item svg {
  stroke: #374151 !important;
}

.pdp-return-box {
  margin-bottom: 1.25rem !important;
  padding: 0.5rem 0.75rem !important;
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  font-size: 0.76rem !important;
  color: #4b5563 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.return-box-left {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.return-box-left svg {
  stroke: #374151 !important;
}

.return-box-link {
  font-size: 0.72rem !important;
  color: #2563eb !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.details-size-chart-accordion {
  margin-bottom: 1.5rem !important;
  border-top: 1px solid #e5e7eb !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 0.75rem 0 !important;
}

.pdp-accordion-btn {
  background: none !important;
  border: none !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  width: 100% !important;
  align-items: center !important;
  padding: 0 !important;
}

.pdp-accordion-panel {
  padding-top: 0.75rem !important;
}

.size-chart-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 0.8rem !important;
  text-align: center !important;
}

.size-chart-table th {
  padding: 0.4rem 0 !important;
  font-weight: 700 !important;
  color: #111827 !important;
  border-bottom: 2px solid #111827 !important;
}

.size-chart-table td {
  padding: 0.4rem 0 !important;
  color: #4b5563 !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.pdp-upsells-wrap {
  margin-bottom: 1.5rem !important;
  border-top: 1px solid #e5e7eb !important;
  padding-top: 1rem !important;
}

.pdp-upsells-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.75rem !important;
  margin-top: 0.75rem !important;
}

.pdp-reviews-wrap {
  margin-top: 2rem !important;
  border-top: 1px solid #e5e7eb !important;
  padding-top: 1.5rem !important;
}

.pdp-reviews-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1rem !important;
}

.pdp-reviews-rating {
  font-size: 0.8rem !important;
  color: #d97706 !important;
  font-weight: 700 !important;
}

.pdp-review-form {
  margin-bottom: 1.5rem !important;
  background: #f9fafb !important;
  padding: 1rem !important;
  border-radius: 6px !important;
  border: 1px solid #e5e7eb !important;
}

.form-row-compact {
  display: flex !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.form-row-compact input {
  flex: 1 !important;
  padding: 0.45rem !important;
  font-size: 0.8rem !important;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  color: #111827 !important;
  border-radius: 4px !important;
}

.form-row-compact select {
  width: 140px !important;
  padding: 0.45rem !important;
  font-size: 0.8rem !important;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  color: #111827 !important;
  border-radius: 4px !important;
}

.form-row-full textarea {
  width: 100% !important;
  padding: 0.45rem !important;
  font-size: 0.8rem !important;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  color: #111827 !important;
  border-radius: 4px !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  margin-bottom: 0.5rem !important;
}

.btn-submit-review {
  font-size: 0.75rem !important;
  padding: 6px 14px !important;
  font-weight: 700 !important;
  background: #111827 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
}

.pdp-reviews-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

/* 4. DESKTOP FULL-PAGE LAYOUT (min-width: 992px) */
@media (min-width: 992px) {
  .pdp-grid-wrapper {
    display: grid !important;
    grid-template-columns: 520px 1fr !important;
    gap: 48px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 36px 24px 80px 24px !important;
    align-items: start !important;
  }

  .details-media-viewer {
    width: 100% !important;
    max-width: 520px !important;
    position: sticky !important;
    top: 76px !important;
  }

  .product-carousel-viewport {
    height: 560px !important;
    max-height: 600px !important;
    min-height: 480px !important;
    position: relative !important;
    overflow: hidden !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
  }

  .carousel-track {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    height: 100% !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    scroll-snap-align: start !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
  }

  .carousel-slide img,
  .carousel-slide video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }

  .carousel-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 30 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #e5e7eb !important;
    color: #111827 !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .carousel-arrow:hover {
    background: #ffffff !important;
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  }

  .carousel-arrow-left { left: 14px !important; }
  .carousel-arrow-right { right: 14px !important; }

  .carousel-dots-indicator {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 12px auto 0 auto !important;
    padding: 6px 14px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    width: fit-content !important;
  }

  .carousel-dots-indicator .dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .carousel-dots-indicator .dot.active {
    background: #111827 !important;
    width: 24px !important;
    border-radius: 12px !important;
  }

  .details-thumbnails {
    display: flex !important;
    gap: 10px !important;
    margin-top: 12px !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
  }

  .pdp-thumb-item {
    width: 64px !important;
    height: 80px !important;
    border-radius: 6px !important;
    border: 2px solid #e5e7eb !important;
    overflow: hidden !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
  }

  .pdp-thumb-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .pdp-thumb-item:hover {
    border-color: #9ca3af !important;
  }

  .pdp-thumb-item.active {
    border-color: #111827 !important;
    box-shadow: 0 0 0 1px #111827 !important;
  }

  .details-info-panel {
    position: sticky !important;
    top: 76px !important;
    background: #ffffff !important;
    color: #111827 !important;
  }

  .pdp-desktop-actions {
    display: block !important;
  }
}

/* 5. MOBILE FULL-PAGE LAYOUT (< 992px) */
@media (max-width: 991px) {
  .pdp-breadcrumbs-wrap {
    display: none !important;
  }

  .pdp-grid-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 auto !important;
    padding: 0 0 130px 0 !important;
  }

  .pdp-desktop-actions {
    display: none !important;
  }

  .details-media-viewer {
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 auto !important;
    position: static !important;
    background: #f8fafc !important;
  }

  .product-carousel-viewport {
    height: 52vh !important;
    max-height: 420px !important;
    min-height: 280px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    background: #f8fafc !important;
  }

  .carousel-track {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    scroll-snap-align: start !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .carousel-slide img,
  .carousel-slide video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }

  .carousel-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 30 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #e5e7eb !important;
    color: #111827 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
  }

  .carousel-arrow-left { left: 10px !important; }
  .carousel-arrow-right { right: 10px !important; }

  .carousel-dots-indicator {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 10px auto 6px auto !important;
    padding: 5px 12px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    width: fit-content !important;
  }

  .carousel-dots-indicator .dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
  }

  .carousel-dots-indicator .dot.active {
    background: #111827 !important;
    width: 20px !important;
    border-radius: 10px !important;
  }

  .details-thumbnails {
    display: none !important;
  }

  .details-info-panel {
    padding: 1.25rem 1rem !important;
    background: #ffffff !important;
  }
}

/* 6. Default: Floating bar is hidden on Desktop, Homepage and Catalog */
.floating-add-to-cart-bar,
#floating-add-to-cart-bar {
  display: none !important;
}

/* 7. Mobile-Only Floating Bar: ONLY visible when product page is active on screens < 992px */
@media (max-width: 991px) {
  #product-details-modal.active .floating-add-to-cart-bar,
  .product-page-screen.active .floating-add-to-cart-bar,
  #product-details-modal.active #floating-add-to-cart-bar,
  .product-page-screen.active #floating-add-to-cart-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999999 !important;
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.35) !important;
    padding: 0.65rem 1rem 0.75rem 1rem !important;
    flex-direction: column !important;
    gap: 0.45rem !important;
    box-sizing: border-box !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6) !important;
  }

  .floating-bar-info-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .floating-price-group {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
  }

  .floating-bar-price {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--gold, #d4af37) !important;
  }

  .floating-bar-tax-note {
    font-size: 0.7rem !important;
    color: var(--text-muted, #94a3b8) !important;
  }

  .floating-bar-badge {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    color: var(--gold-light, #facc15) !important;
    background: rgba(212, 175, 55, 0.12) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    padding: 2px 8px !important;
    border-radius: 12px !important;
  }

  .floating-bar-actions-row {
    width: 100% !important;
    display: flex !important;
  }

  .btn-add-to-cart-floating {
    width: 100% !important;
    height: 44px !important;
    background: linear-gradient(135deg, #c8102e, #a3091f) !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    box-shadow: 0 3px 12px rgba(200, 16, 46, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* 7. Size Selector Drawer Modal Overlay */
.size-selector-modal {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9999999 !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

.size-selector-modal.active {
  display: flex !important;
}

.size-selector-content {
  background: #0f172a !important;
  border: 1px solid #d4af37 !important;
  border-bottom: none !important;
  border-radius: 16px 16px 0 0 !important;
  padding: 1.5rem !important;
  width: 100% !important;
  max-width: 500px !important;
  animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.size-selector-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 0.75rem !important;
}

.size-selector-header h4 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  color: #ffffff !important;
}

.size-selector-header span {
  font-size: 0.75rem !important;
  color: #facc15 !important;
}

.size-selector-close {
  background: none !important;
  border: none !important;
  color: #94a3b8 !important;
  font-size: 1.5rem !important;
  cursor: pointer !important;
}

.size-selector-options {
  display: flex !important;
  gap: 0.6rem !important;
  flex-wrap: wrap !important;
  margin: 1.25rem 0 !important;
}

.size-drawer-pill,
#size-drawer-options .details-size-pill {
  flex: 1 1 calc(33% - 8px) !important;
  min-width: 70px !important;
  padding: 0.75rem 0.5rem !important;
  text-align: center !important;
  border: 1.5px solid rgba(212, 175, 55, 0.4) !important;
  background: #1e293b !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.size-drawer-pill:hover,
.size-drawer-pill.selected,
.size-drawer-pill.active,
#size-drawer-options .details-size-pill:hover,
#size-drawer-options .details-size-pill.active {
  border-color: #ffd700 !important;
  background: #d4af37 !important;
  color: #090d16 !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5) !important;
}

.btn-size-drawer-confirm {
  width: 100% !important;
  padding: 0.8rem !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  border-radius: 4px !important;
  background: #e11d48 !important;
  color: #ffffff !important;
  border: none !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

/* ==========================================================================
   TOP-LEVEL OVERLAYS & DRAWERS (ALWAYS ABOVE PRODUCT SCREEN & FLOATING BARS)
   ========================================================================== */

.drawer-overlay,
#cart-drawer-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.75) !important;
  z-index: 10000000 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}

.drawer-overlay.active,
#cart-drawer-overlay.active {
  opacity: 1 !important;
  pointer-events: all !important;
  display: block !important;
}

.cart-drawer,
#cart-drawer {
  position: fixed !important;
  top: 0 !important;
  right: -450px !important;
  width: 100% !important;
  max-width: 420px !important;
  height: 100vh !important;
  background-color: var(--bg-card, #0f172a) !important;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.6) !important;
  z-index: 10000001 !important;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-left: 1px solid var(--border, rgba(212, 175, 55, 0.3)) !important;
  display: flex !important;
  flex-direction: column !important;
}

.cart-drawer.active,
#cart-drawer.active {
  right: 0 !important;
}

#checkout-modal {
  z-index: 10000005 !important;
}

#checkout-modal.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

.size-selector-modal {
  z-index: 10000002 !important;
}

/* Suppress all native video player controls and click overlays */
video.product-video-loop,
.carousel-slide video,
#lightbox-video {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================================
   ADMIN PORTAL STYLES (EMBEDDED)
   ========================================================================== */
.admin-wrapper {
  padding: 100px 0 6rem;
  min-height: 100vh;
  background-color: var(--bg);
}
.admin-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.admin-sidebar {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: fit-content;
}
.admin-sidebar-btn {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-sidebar-btn:hover,
.admin-sidebar-btn.active {
  color: var(--gold);
  background-color: var(--bg-dark);
  border-left-color: var(--gold);
}
.admin-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.admin-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  color: var(--primary);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.stat-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.table-container {
  overflow-x: auto;
  margin-top: 1.5rem;
}
.admin-card table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.admin-card th, .admin-card td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.admin-card th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  background-color: var(--bg-dark);
}
.admin-card td {
  color: var(--text);
}
.badge-status {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-status.new {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.badge-status.replied {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.terminal-logs {
  background-color: #050505;
  color: #38bdf8;
  font-family: monospace;
  padding: 1.5rem;
  height: 220px;
  overflow-y: auto;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
  border-left: 4px solid var(--gold);
  border: 1px solid var(--border);
}
.terminal-logs div {
  margin-bottom: 0.35rem;
}
.admin-tab-content {
  display: none !important;
}
.admin-tab-content.active {
  display: block !important;
}
.color-swatch-preview {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
  vertical-align: middle;
}
select.form-input option {
  background-color: var(--bg);
  color: var(--primary);
}

/* =========================================================================
   TOP SELLING / MOST POPULAR PRODUCTS SHOWCASE (STOREFRONT)
   ========================================================================= */
.top-selling-section {
  padding: 3.5rem 0 2rem 0;
  background: var(--bg);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.top-selling-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.top-selling-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.top-selling-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.top-selling-main-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.35rem 0;
  line-height: 1.15;
}
.top-selling-sub-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}
.top-selling-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .top-selling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 640px) {
  .top-selling-section {
    padding: 2.5rem 0 1.5rem 0;
  }
  .top-selling-container {
    padding: 0 1rem;
  }
  .top-selling-main-title {
    font-size: 1.65rem;
  }
  .top-selling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.top-selling-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.top-selling-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}
.top-selling-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f1f5f9;
  overflow: hidden;
  cursor: pointer;
}
.top-selling-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.top-selling-card:hover .top-selling-card-img-wrap img {
  transform: scale(1.04);
}
.top-selling-rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #d4af37, #9a7816);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.top-selling-card-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.top-selling-card-art {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.top-selling-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
  cursor: pointer;
}
.top-selling-card-title:hover {
  color: var(--gold-light);
}
.top-selling-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.top-selling-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px dashed var(--border);
}
.top-selling-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}
.top-selling-view-btn {
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.top-selling-view-btn:hover {
  background: var(--gold);
  color: #000000;
}

/* =========================================================================
   FULLSCREEN PRODUCT IMAGE GALLERY LIGHTBOX MODAL
   ========================================================================= */
.pdp-fullscreen-gallery-modal,
#pdp-fullscreen-gallery-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999999 !important; /* Critical: must be higher than product-details-modal (999999) */
  background: rgba(4, 4, 4, 0.97) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  opacity: 0;
  visibility: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.pdp-fullscreen-gallery-modal.active,
#pdp-fullscreen-gallery-modal.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}
.pdp-fs-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.pdp-fs-gallery-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
}
.pdp-fs-gallery-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pdp-fs-gallery-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #e2e8f0;
  flex-wrap: wrap;
}
.pdp-fs-gallery-brand {
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}
.pdp-fs-gallery-sep {
  color: rgba(255, 255, 255, 0.3);
}
.pdp-fs-gallery-title {
  font-weight: 600;
  color: #ffffff;
}
.pdp-fs-gallery-counter {
  background: rgba(212, 175, 55, 0.2);
  color: #ffd700;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-left: 0.35rem;
}
.pdp-fs-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.pdp-fs-close-btn:hover {
  background: rgba(239, 68, 68, 0.8);
  border-color: #ef4444;
  transform: rotate(90deg);
}

.pdp-fs-gallery-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}
.pdp-fs-nav-btn {
  background: rgba(20, 20, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}
.pdp-fs-nav-btn:hover {
  background: var(--gold);
  color: #000000;
  border-color: var(--gold);
  transform: scale(1.1);
}
.pdp-fs-image-container {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  overflow: hidden;
  position: relative;
}
.pdp-fs-image-container img {
  max-width: 88vw;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, opacity 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}
.pdp-fs-image-container img.pdp-fs-zoom-active {
  transform: scale(1.6);
  cursor: zoom-out;
}

.pdp-fs-thumbnails-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pdp-fs-thumb {
  width: 54px;
  height: 68px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #111;
}
.pdp-fs-thumb:hover {
  opacity: 0.9;
  border-color: #ffffff;
}
.pdp-fs-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.pdp-fs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dedicated Trigger Button on PDP media viewer */
.pdp-trigger-fullscreen-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(17, 24, 39, 0.9);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}
.pdp-trigger-fullscreen-btn:hover {
  background: var(--gold, #d4af37);
  color: #000000;
  border-color: var(--gold, #d4af37);
  transform: scale(1.06);
}

.carousel-slide {
  cursor: zoom-in;
  position: relative;
}

@media (max-width: 768px) {
  .pdp-fs-gallery-wrapper {
    padding: 0.75rem 0.5rem;
  }
  .pdp-fs-nav-btn {
    width: 40px;
    height: 40px;
  }
  .pdp-fs-nav-btn svg {
    width: 20px;
    height: 20px;
  }
  .pdp-fs-image-container img {
    max-width: 95vw;
    max-height: 68vh;
  }
  .pdp-fs-thumb {
    width: 44px;
    height: 56px;
  }
  .pdp-trigger-fullscreen-btn {
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.72rem;
  }
}