:root {
  --primary: #071B11;
  --primary-light: #0D3020;
  --primary-lighter: #173522;
  --cream: #F7F2E8;
  --gold: #E5C57F;
  --terracotta: #C97F5A;
  --white: #FFFFFF;
  --dark: #0a110a;
  --nav-bg: rgba(7, 27, 17, 0.4);
}

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

html,
body {
  background: #FFFFFF;
  color: var(--dark, #071B11);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
  overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.serif {
  font-family: 'Playfair Display', Georgia, serif;
}



/* Three.js Canvas */
#webgl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
}

/* Navigation */
app-header {
  display: block;
  position: relative;
  z-index: 9999;
}

nav {
  position: fixed;
  z-index: 99999;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 90%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  border: 1px solid rgba(7, 27, 17, 0.1);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

nav.light-mode {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(7, 27, 17, 0.12);
  box-shadow: 0 10px 30px rgba(7, 27, 17, 0.08);
}

nav.light-mode .logo,
nav.light-mode .nav-links a {
  color: var(--primary) !important;
}

nav.light-mode .nav-links a svg {
  stroke: var(--primary);
}

nav.light-mode .mobile-menu-btn {
  color: var(--primary);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.4s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a.cart-link {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff4747;
  color: white;
  font-size: 10px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--primary);
}

.nav-button {
  background: var(--gold);
  color: var(--primary) !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-button:hover {
  transform: scale(1.05);
  background: #f0d598;
}

.mobile-nav-login {
  display: none;
}

/* Promo Strip */
.promo-strip {
  background: var(--gold);
  color: var(--primary);
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
  position: relative;
  z-index: 100;
}

/* Premium Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  overflow: hidden;
  padding-top: 136px;
  padding-bottom: 28px;
  transition: padding-top 0.3s ease;
}

.hero.no-announcement {
  padding-top: 96px;
}

.hero-ecommerce-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  max-width: 1420px;
  margin: 11px auto;
  padding: 0 54px;
  align-items: center;
  justify-content: center;
}

.hero-ecommerce-right {
  width: 100%;
  aspect-ratio: 2.38 / 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f3ed;
  box-shadow: 0 10px 30px rgba(7, 27, 17, 0.08);
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
}

.hero-image-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  margin: 0;
  border-radius: inherit;
  image-rendering: -webkit-optimize-contrast;
}

.hero-image-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Specific anchoring for slides with left-aligned headline text so text is never cut off */
#hero-img-4,
#hero-img-5,
#hero-img-1 {
  object-position: left center;
}

#hero-img-2,
#hero-img-3 {
  object-position: center center;
}

/* Hero Carousel Arrow Controls (positioned outside the banner image so text is never covered) */
.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(7, 27, 17, 0.12);
  color: var(--primary, #071B11);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  opacity: 0.9;
  visibility: visible;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hero-arrow-btn.prev {
  left: 4px;
}

.hero-arrow-btn.next {
  right: 4px;
}

.hero-arrow-btn:hover {
  opacity: 1 !important;
  background: #FFFFFF;
  color: #C97F5A;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero-arrow-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 25;
  background: rgba(7, 27, 17, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.dot::before {
  content: '';
  position: absolute;
  inset: -8px;
}

.dot.active {
  background: #FFFFFF;
  border-color: #FFFFFF;
  width: 24px;
  border-radius: 8px;
}

/* Category Discovery Row */
.category-row-container {
  width: 100%;
  background: #fdfaf4;
  border-top: 1px solid rgba(7, 27, 17, 0.1);
  border-bottom: 1px solid rgba(7, 27, 17, 0.1);
  padding: 20px 0;
  z-index: 20;
  position: relative;
}

.category-row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 5%;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  white-space: nowrap;
  padding: 10px 25px;
  border: 1px solid rgba(7, 27, 17, 0.2);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}

/* Sections Container */
.smooth-scroll-wrapper {
  position: relative;
  z-index: 10;
}

section {
  position: relative;
  width: 100%;
}

/* Replaced original hero content CSS */
.btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--primary);
}

.btn-gold:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 15;
  opacity: 0.7;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-down 2s infinite ease-in-out;
}

@keyframes scroll-down {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* Cinematic Spacer for scroll transitions - Removed for pinned hero */

/* Why Choose Section */
.why-choose {
  background: var(--cream);
  color: var(--primary);
  padding: 150px 5%;
  position: relative;
  overflow: hidden;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-header h2 {
  font-size: clamp(35px, 4vw, 60px);
  margin-top: 15px;
}

.why-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 100px;
}

.timeline-line-container {
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  z-index: 1;
  pointer-events: none;
}

.timeline-line-container svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.timeline-path {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.5;
  opacity: 0.6;
}

.why-point {
  display: flex;
  align-items: center;
  width: 50%;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

.why-point:last-child {
  margin-bottom: 0;
}

.why-point.right {
  margin-left: 50%;
  padding-left: 60px;
  justify-content: flex-end;
}

.why-point.left {
  margin-right: 50%;
  padding-right: 60px;
  justify-content: flex-start;
}

.why-image {
  position: absolute;
  width: 320px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(7, 27, 17, 0.15);
  z-index: 0;
  transform-style: preserve-3d;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-point.right .why-image {
  right: 100%;
  margin-right: 80px;
}

.why-point.left .why-image {
  left: 100%;
  margin-left: 80px;
}

.why-content {
  max-width: 380px;
}

.why-point.right .why-content {
  text-align: right;
  margin-right: 30px;
}

.why-point.left .why-content {
  text-align: left;
  margin-left: 30px;
}

.why-number {
  font-size: clamp(100px, 12vw, 200px);
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 27, 17, 0.25);
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.why-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.why-content h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--primary);
}

.why-content p {
  font-size: 14px;
  color: rgba(7, 27, 17, 0.6);
  line-height: 1.6;
}

/* Parallax Divider */
.parallax-divider {
  height: 80vh;
  background-image: url('https://images.unsplash.com/photo-1486870591958-9b9d0d1dda99?q=80&w=2070');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 17, 0.6);
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.parallax-content h2 {
  font-size: clamp(30px, 4vw, 70px);
  color: var(--white);
  margin-bottom: 20px;
}

/* Products Collection */
.products {
  background: var(--white);
  color: var(--primary);
  padding: 150px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(35px, 4vw, 55px);
  margin: 15px 0;
}

.section-header p {
  color: rgba(7, 27, 17, 0.6);
  line-height: 1.6;
}

/* ════ PRODUCT CARDS & GRID (HOME & CATALOG) ════ */
.dynamic-products-grid,
.trsc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
}

.product-card.trsc-card,
.trsc-card {
  background: var(--white, #FFFFFF);
  border: 1px solid rgba(7, 27, 17, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(7, 27, 17, 0.03);
  width: 100%;
  max-width: 360px;
}

.product-card.trsc-card:hover,
.trsc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(7, 27, 17, 0.09);
  border-color: rgba(229, 197, 127, 0.4);
}

.trsc-card-img-wrap {
  position: relative;
  padding: 30px 20px 15px;
  text-align: center;
  background: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.trsc-heart-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FFFFFF;
  border: 1px solid rgba(7, 27, 17, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(7, 27, 17, 0.5);
  transition: all 0.25s ease;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trsc-heart-btn:hover {
  color: #E53E3E;
  border-color: #E53E3E;
  transform: scale(1.1);
}

.trsc-heart-btn.active {
  color: #E53E3E;
  border-color: #E53E3E;
}

.trsc-heart-btn.active svg {
  fill: #E53E3E;
}

.trsc-card-img {
  max-width: 100%;
  max-height: 200px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  margin: 0 auto;
}

.trsc-card:hover .trsc-card-img {
  transform: scale(1.06);
}

.trsc-card-info {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #FFFFFF;
}

.trsc-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: #C97F5A;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.trsc-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
  color: #071B11;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.7em;
}

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

.trsc-card-title a:hover {
  color: #B8942A;
}

.trsc-card-stars {
  font-size: 13px;
  color: #E5C57F;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trsc-card-stars .review-count {
  color: rgba(7, 27, 17, 0.45);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

.trsc-card-price {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.trsc-card-price .price {
  font-weight: 800;
  color: #071B11;
  font-family: 'Inter', sans-serif;
}

.trsc-card-price .mrp {
  color: rgba(7, 27, 17, 0.4);
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 400;
}

.trsc-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.trsc-btn-outline {
  flex: 1;
  border: 1.5px solid #071B11;
  background: transparent;
  color: #071B11;
  padding: 11px 8px;
  text-align: center;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.trsc-btn-outline:hover {
  background: rgba(7, 27, 17, 0.06);
  border-color: #071B11;
}

.trsc-btn-solid {
  flex: 1.2;
  border: 1.5px solid #071B11;
  background: #071B11;
  color: #E5C57F;
  padding: 11px 12px;
  text-align: center;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.trsc-btn-solid:hover {
  background: #B8942A;
  border-color: #B8942A;
  color: #071B11;
  transform: translateY(-1px);
}

.trsc-btn-buynow {
  flex: 1.2;
  border: 1.5px solid #C97F5A;
  background: #C97F5A;
  color: #fff;
  padding: 11px 12px;
  text-align: center;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.trsc-btn-buynow:hover {
  background: #b56c47;
  border-color: #b56c47;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 127, 90, 0.35);
}

.showcase-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  padding: 40px 0;
}

.showcase-left {
  flex: 1;
  height: 500px;
  position: relative;
  perspective: 1500px;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(-200px) rotateY(45deg);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 30px 60px rgba(7, 27, 17, 0.15);
  background: #E8DFCE;
}

.slide-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateZ(0) rotateY(0deg);
  z-index: 10;
}

.slide-item.prev {
  transform: translateZ(-200px) rotateY(-45deg);
  opacity: 0;
  z-index: 5;
}

.slide-item.next {
  transform: translateZ(-200px) rotateY(45deg);
  opacity: 0;
  z-index: 5;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.product-top-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(7, 27, 17, 0.6);
}

.product-top-meta .stars {
  color: var(--gold);
  font-size: 14px;
}

.product-title {
  font-size: clamp(30px, 3.5vw, 45px);
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--primary);
}

.product-subtitle {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.product-desc {
  font-size: 16px;
  color: rgba(7, 27, 17, 0.7);
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.price-big {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}

.price-small {
  font-size: 12px;
  color: rgba(7, 27, 17, 0.5);
}

.product-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}

.qty-selector {
  display: inline-flex;
  border: 1px solid rgba(7, 27, 17, 0.2);
  border-radius: 4px;
  background: var(--cream);
}

.qty-btn {
  background: transparent;
  border: none;
  width: 45px;
  height: 100%;
  font-size: 18px;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input {
  width: 50px;
  border: none;
  border-left: 1px solid rgba(7, 27, 17, 0.1);
  border-right: 1px solid rgba(7, 27, 17, 0.1);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
}

.btn-black {
  background: var(--primary);
  color: var(--white);
  flex: 1;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-black:hover {
  background: rgba(7, 27, 17, 0.8);
}

.product-actions .btn-gold {
  flex: 1;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 13px;
  color: rgba(7, 27, 17, 0.7);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item .check {
  color: var(--gold);
  font-weight: bold;
}

.slider-progress-container {
  position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 20;
  border-radius: 2px;
  overflow: hidden;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* slider-controls */
.slider-controls {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 20;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: var(--white);
  transform: scale(1.05);
}

.slide-counter {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(7, 27, 17, 0.5);
}

.slide-counter span {
  color: var(--primary);
  font-size: 18px;
}

/* 3D Page Scrollbar */
.scroll-progress-3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.scroll-bar-3d {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d4af37, #f3e5ab, #d4af37);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.8), inset 0 -2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 4px 4px 0;
  transition: width 0.1s ease;
}

/* Product Specs Section */
.product-specs {
  position: relative;
}

.spec-block {
  padding: 100px 5%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.spec-block:nth-child(1) {
  z-index: 10;
  top: 0;
  border-radius: 0;
  box-shadow: none;
}

.spec-block:nth-child(2) {
  z-index: 20;
  top: 25px;
}

.spec-block:nth-child(3) {
  z-index: 30;
  top: 50px;
}

.spec-header-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.spec-num {
  font-size: clamp(70px, 8vw, 110px);
  font-weight: 900;
  color: rgba(7, 27, 17, 0.08);
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.spec-titles .spec-title {
  margin-bottom: 0;
}

.light-bg {
  background: var(--cream);
  color: var(--primary);
}

.dark-bg {
  background: #040905;
  color: var(--white);
}

.spec-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.spec-container.reverse {
  flex-direction: row-reverse;
}

.spec-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.spec-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

.gold-frame {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 10%;
  right: 10%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.spec-img3d {
  /* Replaced by .spec-simple-img */
}

.spec-simple-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.spec-title {
  font-size: clamp(35px, 4vw, 55px);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* Tables */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.spec-table th,
.spec-table td {
  padding: 25px 0;
  border-bottom: 1px solid rgba(7, 27, 17, 0.1);
  text-align: left;
}

.dark-table th,
.dark-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  width: 40%;
}

.spec-table td {
  font-size: 15px;
  font-weight: 500;
}

/* Grid */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.grid-cell {
  padding: 10px 0;
}

.grid-cell h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.grid-cell p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.grid-cell.full-width {
  grid-column: 1 / -1;
  padding: 20px;
  border-radius: 8px;
}

/* Disclaimers */
.spec-disclaimer {
  font-size: 12px;
  color: rgba(7, 27, 17, 0.5);
  margin-top: 30px;
}

.text-white {
  color: var(--white) !important;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Reviews */
.reviews {
  background: var(--cream);
  color: var(--primary);
  padding: 150px 5%;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(7, 27, 17, 0.05);
  transition: transform 0.4s, box-shadow 0.4s;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(7, 27, 17, 0.1);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reviewer {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(7, 27, 17, 0.5);
}

/* CTA & Footer */
.cta {
  background: var(--primary-light);
  padding: 120px 5%;
  text-align: center;
}

.cta h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin: 15px 0 30px;
}

.site-footer {
  background: var(--white);
  color: var(--dark);
  padding: 60px 5% 40px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.brand-col {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  background: var(--dark);
  color: var(--white);
  display: inline-block;
  padding: 10px 20px;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.brand-col p {
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 25px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.contact-item .icon {
  font-size: 20px;
}

.links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links-col a,
.social-col h3 {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.links-col a:hover {
  color: var(--terracotta);
}

.social-col h3 {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn,
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(7, 27, 17, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark, #071B11);
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(7, 27, 17, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-social-btn svg,
.social-icons a svg {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-social-btn:hover,
.social-icons a:hover {
  background: var(--primary, #071B11);
  color: var(--gold, #E5C57F);
  border-color: var(--primary, #071B11);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(7, 27, 17, 0.15);
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.platforms,
.payments {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-middle .label {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-right: 10px;
}

.platform-logo,
.payment-logo {
  font-size: 14px;
  padding: 0 5px;
}

/* ══ TOP OF FOOTER: NEWSLETTER BANNER ══ */
.footer-newsletter-banner {
  padding-bottom: 45px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(7, 27, 17, 0.1);
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-newsletter-info {
  max-width: 480px;
}

.footer-newsletter-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8942A;
  margin-bottom: 8px;
}

.footer-newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.2vw, 32px);
  color: var(--dark, #071B11);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.footer-newsletter-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(7, 27, 17, 0.72);
  margin: 0;
}

.footer-newsletter-action {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-input-wrap {
  display: flex;
  align-items: center;
  background: #F7F2E8;
  border: 1.5px solid rgba(7, 27, 17, 0.14);
  border-radius: 50px;
  padding: 5px 6px 5px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter-input-wrap:focus-within {
  border-color: #B8942A;
  box-shadow: 0 0 0 3px rgba(184, 148, 42, 0.15);
  background: #FFFFFF;
}

.footer-newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #071B11;
  padding: 8px 0;
}

.footer-newsletter-input-wrap input::placeholder {
  color: rgba(7, 27, 17, 0.45);
}

.footer-newsletter-submit {
  background: #071B11;
  color: #E5C57F;
  border: none;
  border-radius: 40px;
  padding: 12px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.footer-newsletter-submit:hover {
  background: #B8942A;
  color: #071B11;
  transform: translateY(-1px);
}

.footer-newsletter-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(7, 27, 17, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-newsletter-action {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .footer-newsletter-input-wrap {
    flex-direction: column;
    padding: 8px;
    border-radius: 20px;
    gap: 8px;
  }

  .footer-newsletter-input-wrap input {
    width: 100%;
    padding: 8px 12px;
  }

  .footer-newsletter-submit {
    width: 100%;
  }
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  padding-top: 25px;
  border-top: 1px solid rgba(7, 27, 17, 0.08);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(7, 27, 17, 0.7);
  font-weight: 500;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #4caf50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding-top: 132px;
    padding-bottom: 24px;
    min-height: auto;
    height: auto;
  }

  .hero.no-announcement {
    padding-top: 90px;
  }

  .hero-ecommerce-wrapper {
    padding: 0 18px;
  }

  .hero-ecommerce-right {
    aspect-ratio: 2.22 / 1;
    border-radius: 16px;
  }

  .hero-arrow-btn {
    width: 38px;
    height: 38px;
  }

  .hero-arrow-btn.prev {
    left: 12px;
  }

  .hero-arrow-btn.next {
    right: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-col.brand-col,
  .footer-col.newsletter-col {
    flex: auto;
    max-width: 100%;
    text-align: center;
  }

  .footer-col.brand-col p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-col.links-col {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
  }

  nav {
    padding: 10px 15px;
  }

  .logo-img {
    height: 35px;
  }

  .nav-button {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px;
    gap: 30px;
    opacity: 1;
    pointer-events: auto;
    transition: left 0.3s ease;
    z-index: 1000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-close-btn {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: var(--dark);
  }

  .nav-links.mobile-active {
    left: 0;
  }

  nav.light-mode .nav-links {
    background: var(--cream);
  }

  .nav-links a {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
  }

  .nav-links .mobile-nav-login {
    display: block;
    color: var(--primary);
    font-weight: 700;
  }

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

  /* Hero Carousel Mobile Optimization */
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding-top: 124px !important;
    padding-bottom: 16px !important;
    display: block !important;
  }

  .hero.no-announcement {
    padding-top: 78px !important;
  }

  .hero-ecommerce-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 14px !important;
    height: auto !important;
  }

  .hero-ecommerce-right {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 2.38 / 1 !important;
    min-height: unset !important;
    max-height: unset !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(7, 27, 17, 0.08) !important;
  }

  .hero-arrow-btn {
    display: none !important;
  }

  .hero-slider-dots {
    bottom: 12px !important;
    padding: 5px 12px !important;
    gap: 6px !important;
    background: rgba(7, 27, 17, 0.45) !important;
  }

  .hero-slider-dots .dot {
    width: 6px !important;
    height: 6px !important;
  }

  .hero-slider-dots .dot.active {
    width: 20px !important;
  }

  .timeline-line-container {
    left: 30px;
    width: 50px;
  }

  .why-point.right,
  .why-point.left {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 70px;
    padding-right: 20px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 80px;
  }

  .why-image {
    position: relative;
    width: 100%;
    height: 280px;
    right: auto !important;
    left: auto !important;
    margin: 30px 0 0 0 !important;
    order: 3;
  }

  .why-point.right .why-content,
  .why-point.left .why-content {
    text-align: left;
    margin: 0;
    order: 2;
    max-width: 100%;
  }

  .why-point.right .why-number,
  .why-point.left .why-number {
    order: 1;
    margin-bottom: 20px;
    font-size: 100px;
  }

  .showcase-container {
    flex-direction: column;
    gap: 30px;
  }

  .showcase-left {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f0e8;
  }

  .slide-item img {
    object-fit: contain !important;
    padding: 20px;
  }

  .showcase-right {
    width: 100%;
    height: auto;
    text-align: left;
  }

  /* Products section mobile */
  .products {
    padding: 60px 5% 40px;
  }

  .dynamic-products-grid,
  .trsc-product-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 24px;
    padding: 10px 0;
  }

  .trsc-card-img-wrap {
    min-height: 200px;
    padding: 24px 16px 12px;
  }

  .trsc-card-img {
    max-height: 180px;
  }

  .trsc-card-info {
    padding: 18px 16px 20px;
  }

  .trsc-card-actions {
    display: flex;
    gap: 8px;
  }

  .trsc-btn-solid,
  .trsc-btn-buynow {
    flex: 1;
    padding: 11px 8px;
    font-size: 11px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .showcase-container {
    gap: 0;
    padding: 0;
  }

  .showcase-left {
    width: 100%;
    height: 420px;
    border-radius: 0;
    background: #f5f0e8;
    overflow: hidden;
    margin-bottom: 0;
  }

  .slide-item {
    transform: none !important;
    border-radius: 0;
  }

  .slide-item.active {
    opacity: 1;
    transform: none !important;
  }

  .slide-item img {
    object-fit: contain !important;
    padding: 20px;
  }

  .showcase-right {
    width: 100%;
    height: auto;
    padding: 30px 20px;
    text-align: left;
  }

  .product-title {
    font-size: 26px;
  }

  .product-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .product-price-row {
    margin-bottom: 20px;
  }

  .price-big {
    font-size: 28px;
  }

  .product-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
  }

  .qty-selector {
    flex: 0 0 auto;
  }

  .product-actions .btn-black,
  .product-actions .btn-gold {
    flex: 1;
    min-width: 100px;
    padding: 14px 10px;
  }

  .product-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .slider-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    margin-top: 0;
  }

  /* Spec section */
  .spec-block {
    padding: 60px 5%;
    min-height: auto;
  }

  .spec-container {
    flex-direction: column !important;
    gap: 40px;
  }

  .spec-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .spec-num {
    font-size: 60px;
  }

  .spec-title {
    font-size: 28px;
  }

  .spec-table th,
  .spec-table td {
    padding: 15px 0;
  }

  /* Why-choose section */
  .why-choose {
    padding: 80px 5%;
  }

  /* Reviews section */
  .reviews {
    padding: 80px 5%;
  }

  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   Slide-in Cart Drawer (vs-side-cart)
   ══════════════════════════════════════════ */
#vs-cart-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100% !important;
  height: 100dvh !important;
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 9999998 !important;
}

#vs-side-cart {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 420px !important;
  max-width: 100vw !important;
  height: 100% !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  background: #F7F2E8 !important;
  z-index: 9999999 !important;
  display: flex !important;
  flex-direction: column !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

@media (max-width: 600px) {
  #vs-side-cart {
    width: 100vw !important;
    max-width: 100vw !important;
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 118px !important;
    padding-bottom: 12px !important;
  }

  .hero.no-announcement {
    padding-top: 72px !important;
  }

  .hero-ecommerce-wrapper {
    padding: 0 10px !important;
  }

  .hero-ecommerce-right {
    aspect-ratio: 2.15 / 1 !important;
    min-height: 140px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px rgba(7, 27, 17, 0.07) !important;
  }

  .hero-slider-dots {
    bottom: 10px !important;
    padding: 4px 10px !important;
    gap: 5px !important;
  }

  .hero-slider-dots .dot {
    width: 5px !important;
    height: 5px !important;
  }

  .hero-slider-dots .dot.active {
    width: 16px !important;
  }
}