/* ── Velora Luxury Fashion Brand Stylesheet ────────────────────────────── */
:root {
  /* Premium Luxury Color Palette */
  --color-ivory: #FDFBF7;
  --color-champagne: #F4EDE7;
  --color-champagne-dark: #E2D2C6;
  --color-rosegold: #D07A7F;
  --color-rosegold-light: #ECC0C2;
  --color-beige: #EFE9E0;
  --color-nude: #E4DCD0;
  --color-blush: #FCF6F3;
  --color-deepbrown: #1D0B08;
  --color-deepbrown-light: #2E1612;
  --color-gold: #C0A076;
  --color-gold-bright: #DFB253;
  --color-white: #FFFFFF;
  --color-gray-100: #F7F7F7;
  --color-gray-200: #EAEAEA;
  --color-gray-400: #A3A3A3;
  --color-gray-600: #525252;
  --color-gray-800: #262626;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Borders */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(26, 15, 13, 0.04);
  --shadow-md: 0 12px 32px rgba(26, 15, 13, 0.06);
  --shadow-lg: 0 24px 48px rgba(26, 15, 13, 0.1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-deepbrown);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Container */
.container-7xl {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-4xl {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── HEADER & NAVBAR ───────────────────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #1D0B08 0%, #2E1612 50%, #1D0B08 100%);
  color: var(--color-champagne);
  font-size: 11px;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(192, 160, 118, 0.15);
}

.luxury-header {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
}

.luxury-header.sticky {
  position: fixed;
  top: 0;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.luxury-header.sticky .nav-link {
  color: var(--color-deepbrown);
}

.navbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.luxury-header.sticky .navbar-wrap {
  height: 70px;
  border-bottom-color: transparent;
}



.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-deepbrown);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-deepbrown);
  position: relative;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.nav-icon-btn:hover {
  color: var(--color-gold);
  transform: translateY(-1px);
}

.badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-rosegold);
  color: var(--color-white);
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ── FULL SCREEN HERO SLIDER ───────────────────────────────────────────── */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 15, 13, 0.3) 0%, rgba(26, 15, 13, 0.6) 100%);
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--color-white);
  text-align: center;
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--color-champagne);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.5s;
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--color-beige);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.7s;
}

.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  background: var(--color-white);
  color: var(--color-deepbrown);
  border: 1px solid var(--color-white);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.luxury-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-rosegold) 100%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.luxury-btn:hover {
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.luxury-btn.outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.luxury-btn.outline:hover {
  background: var(--color-white);
  color: var(--color-deepbrown);
  border-color: var(--color-white);
}

.hero-slide.active .luxury-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(26, 15, 13, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.hero-arrow.prev {
  left: 2rem;
}

.hero-arrow.next {
  right: 2rem;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ── PREMIUM SECTIONS & TYPOGRAPHY ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--color-deepbrown);
  line-height: 1.2;
}

.luxury-divider {
  width: 3rem;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto 0;
}

/* ── PRODUCT CARDS ─────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem 2rem;
  justify-content: center;
}

.product-card {
  background: transparent;
  position: relative;
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.product-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-inner {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: var(--color-white);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--color-gray-800);
  transition: var(--transition-fast);
}

.product-wishlist-btn:hover {
  transform: scale(1.1);
  color: var(--color-rosegold);
}

.product-wishlist-btn.wishlisted {
  color: var(--color-rosegold);
}

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  pointer-events: none;
}

.badge-discount {
  background: var(--color-rosegold);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.2;
}

.badge-new {
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.2;
}

.badge-bestseller {
  background: var(--color-deepbrown);
  color: var(--color-champagne);
  font-size: 10px;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.2;
}

/* Quick Add Overlay */
.product-atc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26, 15, 13, 0.85) 0%, rgba(26, 15, 13, 0) 100%);
  z-index: 9;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.product-card:hover .product-atc-overlay {
  transform: translateY(0);
}

.product-atc-btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-deepbrown);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-atc-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

/* Product Info */
.product-info {
  padding: 1.25rem 0.5rem;
}

.product-info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.product-category {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-gray-400);
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-rating-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gold);
}

.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-deepbrown);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  max-height: 2.8em;
  line-height: 1.35;
  font-weight: 500;
  word-break: break-word;
}

.product-name:hover {
  color: var(--color-gold);
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-price {
  font-weight: 600;
  color: var(--color-deepbrown);
  font-size: 15px;
}

.product-mrp {
  text-decoration: line-through;
  color: var(--color-gray-400);
  font-size: 13px;
}

.product-save {
  color: var(--color-rosegold);
  font-size: 11px;
  font-weight: 500;
}

/* ── PREMIUM FABRIC SECTION ── */
.fabric-section {
  background: var(--color-blush);
  padding: 6rem 0;
  margin: 6rem 0;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.fabric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fabric-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.fabric-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fabric-content {
  padding-right: 2rem;
}

.fabric-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.fabric-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.fabric-desc {
  font-size: 15px;
  color: var(--color-gray-600);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ── WHY CHOOSE VELORA ── */
.features-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Carousel Dots — hidden on desktop */
.features-carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.fc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.35);
  transition: all 0.35s ease;
  cursor: pointer;
}

.fc-dot.active {
  background: var(--color-gold);
  width: 22px;
  border-radius: 4px;
}

.feature-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.05);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.2);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-blush);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.feature-desc {
  font-size: 13px;
  color: var(--color-gray-600);
  font-weight: 300;
}

/* ── REVIEWS SECTION ── */
.reviews-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-top: 2rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 340px;
  max-width: 340px;
  scroll-snap-align: start;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.2);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.review-quote {
  font-size: 13.5px;
  font-style: italic;
  color: var(--color-deepbrown);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-weight: 300;
}
  line-height: 1.6;
}

.review-user-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-deepbrown);
  display: block;
}

.review-user-meta {
  font-size: 11px;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--color-deepbrown);
  color: var(--color-white);
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-section .section-title {
  color: var(--color-champagne);
}

.newsletter-desc {
  max-width: 500px;
  margin: 1rem auto 2.5rem;
  color: var(--color-beige);
  font-size: 14px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.75rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 1rem 1.75rem;
  color: var(--color-white);
  font-size: 13px;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 1rem 2.5rem;
  background: var(--color-champagne);
  color: var(--color-deepbrown);
  border: none;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ── FOOTER ── */
.luxury-footer {
  background: var(--color-deepbrown);
  color: var(--color-beige);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-champagne);
  margin-bottom: 1.5rem;
}

.footer-about-text {
  font-size: 13px;
  color: var(--color-beige);
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-head {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-champagne);
  margin-bottom: 1.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 13px;
  color: var(--color-beige);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.footer-link:hover {
  opacity: 1;
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  padding: 2px;
  background: var(--color-white);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(6deg);
  border-color: var(--color-rosegold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.26em;
  color: var(--color-deepbrown);
  font-size: clamp(20px, 2.5vw, 24px);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.brand-logo:hover .brand-title {
  color: var(--color-gold);
}

.brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.48em;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 3px;
}

/* Footer Brand Logo */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  padding: 2px;
  background: var(--color-deepbrown-light);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}

.footer-logo-wrapper:hover .footer-logo-img {
  transform: scale(1.08) rotate(-6deg);
  border-color: var(--color-rosegold-light);
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.3);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.26em;
  color: var(--color-white);
  font-size: clamp(22px, 2.5vw, 26px);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-logo-wrapper:hover .footer-brand-title {
  color: var(--color-gold);
}

.footer-brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.48em;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 3px;
}

.footer-about-text {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/* ── CAROUSEL / SLIDE ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.skeleton {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  background-color: var(--color-gray-200);
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-slider {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar-wrap {
    height: 70px;
  }

  .nav-menu {
    display: none;
  }

  /* Mobile menu toggled by JS */
  .fabric-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fabric-content {
    padding-right: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-arrow {
    display: none;
  }
}

/* ── CIRCULAR CATEGORY SECTION ── */
.category-circles-wrap {
  width: 100%;
  overflow: visible;
  padding: 1rem 0;
}

.category-circles-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

.category-circle-item {
  text-align: center;
  display: flex;
  justify-content: center;
}

.category-circle-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  width: 100%;
  max-width: 120px;
}

.category-circle-img-container {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(197, 168, 128, 0.25);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  background: var(--color-champagne);
  aspect-ratio: 1/1;
}

.category-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-circle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 15, 13, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-fast);
}

.category-circle-link:hover .category-circle-img-container {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-circle-link:hover .category-circle-img {
  transform: scale(1.08);
}

.category-circle-link:hover .category-circle-overlay {
  opacity: 1;
}

.category-circle-name {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  color: var(--color-deepbrown);
  transition: var(--transition-fast);
  text-align: center;
  line-height: 1.2;
}

.category-circle-link:hover .category-circle-name {
  color: var(--color-gold);
}

/* ── LUXURY OFFER BANNER ── */
.luxury-offer-section {
  padding: 4rem 0;
  background: transparent;
}

.luxury-offer-card {
  position: relative;
  background: linear-gradient(135deg, var(--color-deepbrown) 0%, var(--color-deepbrown-light) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 4rem;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: var(--shadow-lg);
}

.luxury-offer-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.08);
  pointer-events: none;
}

.luxury-offer-blob.blob-1 {
  width: 300px;
  height: 300px;
  right: -100px;
  top: -100px;
}

.luxury-offer-blob.blob-2 {
  width: 200px;
  height: 200px;
  left: -80px;
  bottom: -80px;
}

.luxury-offer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  color: var(--color-white);
}

.luxury-offer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.luxury-offer-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.luxury-offer-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.luxury-offer-title-sm {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-champagne);
}

.luxury-offer-center {
  flex: 1;
  text-align: center;
}

.luxury-offer-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.luxury-offer-sub {
  font-size: 13px;
  color: var(--color-champagne-dark);
  font-weight: 300;
}

.luxury-offer-right {
  flex-shrink: 0;
}

.luxury-coupon-btn {
  background: var(--color-white);
  color: var(--color-deepbrown);
  border: 1px solid var(--color-white);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.luxury-coupon-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.coupon-copy-lbl {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 2px;
}

/* Mobile menu toggle */
#mobile-menu-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  #mobile-menu-toggle {
    display: inline-flex !important;
  }
}

/* ── LUXURY MOBILE MENU DRAWER ── */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26, 15, 13, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: var(--color-ivory);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border-right: 1px solid rgba(197, 168, 128, 0.15);
  padding: 4rem 2rem 2rem;
}

.mobile-menu-drawer.active {
  left: 0;
}

.mobile-menu-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-deepbrown);
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.mobile-menu-close-btn:hover {
  color: var(--color-gold);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  padding-bottom: 0.75rem;
  color: var(--color-deepbrown);
  transition: var(--transition-fast);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* ── COMPREHENSIVE RESPONSIVE BREAKPOINTS ── */

/* Desktop & Laptop Alignments */
@media (max-width: 1440px) {
  .container-7xl {
    padding: 0 3rem;
  }
}

@media (max-width: 1280px) {
  .category-circles-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
  }
  .category-circle-img-container {
    width: 90px;
    height: 90px;
  }
}

/* Tablet Layouts */
@media (max-width: 991px) {
  .luxury-header {
    top: 0;
  }
  .announce-bar {
    font-size: 10px;
  }
  .category-circles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }
  .category-circle-img-container {
    width: 110px;
    height: 110px;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .fabric-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .fabric-img-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  .fabric-content {
    text-align: center;
  }
  .fabric-content a {
    margin: 0 auto;
  }
  .luxury-offer-card {
    padding: 3rem 2.5rem;
  }
  .luxury-offer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .luxury-offer-left {
    flex-direction: column;
    gap: 0.75rem;
  }
  .luxury-offer-center {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container-7xl {
    padding: 0 1.5rem;
  }
  .brand-logo {
    font-size: 26px;
  }
  .nav-icons {
    gap: 1rem;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
  }
  /* Luxury Standard — auto-carousel on mobile */
  .features-grid.features-carousel {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.25rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .features-grid.features-carousel::-webkit-scrollbar {
    display: none;
  }
  .features-grid.features-carousel .feature-item {
    flex: 0 0 82vw;
    max-width: 82vw;
    scroll-snap-align: center;
    padding: 2rem 1.5rem;
  }
  .features-carousel-dots {
    display: flex;
  }
  .hero-slider-container {
    height: 70vh;
    min-height: 450px;
  }
}

/* Mobile Screen Sizes */
@media (max-width: 576px) {
  /* Horizontal Slider for Category circles on Mobile */
  .category-circles-wrap {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
  }
  .category-circles-wrap::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .category-circles-grid {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
    width: max-content;
  }
  .category-circle-item {
    flex: 0 0 100px;
  }
  .category-circle-img-container {
    width: 90px;
    height: 90px;
  }
  
  .luxury-offer-card {
    padding: 2.5rem 1.5rem;
  }
  .luxury-offer-heading {
    font-size: clamp(20px, 4vw, 24px);
  }
  .luxury-coupon-btn {
    padding: 0.8rem 2rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  .newsletter-input {
    width: 100%;
  }
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 22px;
  }
  .brand-logo-img {
    width: 32px;
    height: 32px;
  }
  .nav-icons {
    gap: 0.75rem;
  }
  .nav-icon-btn svg {
    width: 16px;
    height: 16px;
  }
  .hero-slider-container {
    height: 65vh;
    min-height: 400px;
  }
  .hero-slide-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem !important;
  }
  .hero-slide-btns .luxury-btn {
    width: 85%;
    padding: 0.8rem 2rem;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  .features-grid:not(.features-carousel) {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-about-text {
    margin: 0 auto;
  }
  .footer-links {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .brand-logo {
    font-size: 19px;
  }
  .brand-logo-img {
    width: 28px;
    height: 28px;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.5rem;
  }
  .product-info {
    padding: 1rem 0.25rem;
  }
  .product-name {
    font-size: 15px !important;
    height: 2.6em !important;
  }
}

@media (max-width: 320px) {
  .container-7xl {
    padding: 0 1rem;
  }
  .brand-logo {
    font-size: 17px;
    gap: 0.15rem;
  }
  .brand-logo-img {
    width: 24px;
    height: 24px;
  }
  .nav-icons {
    gap: 0.5rem;
  }
  .hero-slider-container {
    height: 60vh;
    min-height: 380px;
  }
}

/* ── ADDITIONAL WEB OPTIMIZATIONS ── */
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.luxury-header {
  position: relative;
  width: 100%;
  transition: var(--transition-smooth);
}
.luxury-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.luxury-section {
  padding: 6rem 0;
}
@media (max-width: 991px) {
  .luxury-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  .luxury-section {
    padding: 3rem 0;
  }
}

.luxury-section.container-7xl {
  padding-bottom: 10px !important;
}

.mobile-atc-wrap {
  display: none;
}
@media (max-width: 991px) {
  .mobile-atc-wrap {
    display: block !important;
  }
  .product-atc-overlay {
    display: none !important;
  }
}
.hero-slide-btns {
  z-index: 5;
}

/* Utility Classes */
.block {
  display: block !important;
}
.w-full {
  width: 100% !important;
}
.h-full {
  height: 100% !important;
}

/* Featured Collection Card Responsive Refinements */
@media (max-width: 768px) {
  .product-name {
    font-size: 15px !important;
    line-height: 1.3 !important;
    height: 2.6em !important;
  }
  .product-pricing {
    flex-wrap: wrap !important;
    gap: 0.25rem 0.5rem !important;
  }
  .product-price {
    font-size: 14px !important;
  }
  .product-mrp {
    font-size: 12px !important;
  }
  .product-save {
    font-size: 10px !important;
  }
}

@media (max-width: 576px) {
  .product-save {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .product-wishlist-btn {
    top: 0.5rem !important;
    right: 0.5rem !important;
    width: 28px !important;
    height: 28px !important;
  }
  .product-badges {
    top: 0.5rem !important;
    left: 0.5rem !important;
    gap: 0.25rem !important;
  }
  .badge-discount, .badge-new, .badge-bestseller {
    font-size: 8px !important;
    padding: 0.15rem 0.4rem !important;
  }
  .product-name {
    font-size: 13.5px !important;
    margin-bottom: 0.25rem !important;
    height: 2.6em !important;
  }
  .product-info {
    padding: 0.75rem 0.25rem !important;
  }
  .product-price {
    font-size: 13px !important;
  }
  .product-mrp {
    font-size: 11px !important;
  }
  .mobile-atc-wrap {
    margin-top: 0.5rem !important;
  }
  .mobile-atc-wrap button {
    padding: 0.5rem 0.75rem !important;
    font-size: 9px !important;
    border-radius: 4px !important;
  }
}

/* ── MOBILE BOTTOM NAVIGATION (320px - 768px) ── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  z-index: 990;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex !important;
  }
  body {
    padding-bottom: 64px !important;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--color-gray-600);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, transform 0.2s;
  min-width: 54px;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--color-gold);
}

.mobile-nav-item svg {
  transition: transform 0.2s ease;
}

.mobile-nav-item:active svg {
  transform: scale(0.9);
}

/* ── RESPONSIVE OVERFLOW & BREAKPOINT SAFEGUARDS ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ultra Wide Screen Polish (1440px - 1920px+) */
@media (min-width: 1440px) {
  .container-7xl {
    max-width: 1440px;
    padding: 0 3rem;
  }
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .container-7xl {
    padding: 0 1.5rem;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .product-detail-layout {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ── DESKTOP HERO & TRANSPARENT HEADER OVERLAY (>= 769px) ── */
@media (min-width: 769px) {
  .luxury-header:not(.sticky) .nav-link,
  .luxury-header:not(.sticky) .brand-title,
  .luxury-header:not(.sticky) .nav-icon-btn {
    color: var(--color-white) !important;
  }
  .luxury-header:not(.sticky) .brand-subtitle {
    color: var(--color-champagne) !important;
  }
  .luxury-header:not(.sticky) .navbar-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  .hero-slider-container {
    height: 100vh !important;
    min-height: 700px !important;
    margin-top: 0 !important;
  }
  .hero-content-wrap {
    padding-top: 120px !important;
  }
  .hero-title {
    font-size: clamp(3.2rem, 5.5vw, 5.5rem) !important;
    font-weight: 300 !important;
    line-height: 1.1 !important;
  }
}

/* ── MOBILE HERO & HEADER OVERLAY REFINEMENTS (<= 768px) ── */
@media (max-width: 768px) {
  .header-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 150 !important;
  }
  .announce-bar {
    font-size: 9.5px !important;
    padding: 0.35rem 0.5rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .luxury-header {
    background: rgba(253, 251, 247, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2) !important;
  }
  .navbar-wrap {
    height: 60px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .brand-title {
    color: var(--color-deepbrown) !important;
    font-size: 17px !important;
  }
  .brand-subtitle {
    color: var(--color-gold) !important;
  }
  .nav-icon-btn {
    color: var(--color-deepbrown) !important;
    padding: 6px !important;
  }
  .nav-icons {
    display: none !important; /* Hide top action icons on mobile because fixed bottom nav handles Wishlist, Bag, and Account */
  }
  .hero-slider-container {
    height: calc(100vh - 34px) !important;
    min-height: 540px !important;
    margin-top: 34px !important;
  }
  .hero-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-content-wrap {
    padding-top: 70px !important;
    padding-bottom: 2rem !important;
  }
  .hero-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 0.75rem !important;
  }
  .hero-title {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.75rem !important;
  }
  .hero-subtitle {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
    padding: 0 1rem !important;
  }
  .hero-slide-btns {
    transform: none !important;
  }
  .hero-slide-btns .luxury-btn {
    width: auto !important;
    padding: 0.75rem 1.75rem !important;
    font-size: 11px !important;
  }

  /* Compact Mobile Footer */
  .luxury-footer {
    padding: 2.25rem 0 1.5rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .footer-about-text {
    display: none !important;
  }
  .footer-socials {
    margin-top: 0.5rem !important;
    justify-content: center !important;
  }
  .footer-head {
    font-size: 13px !important;
    margin-bottom: 0.65rem !important;
  }
  .footer-links {
    gap: 0.45rem !important;
  }
  .footer-link {
    font-size: 11.5px !important;
  }
  .review-card {
    flex: 0 0 82vw !important;
    max-width: 82vw !important;
    padding: 1.25rem !important;
  }
  .reviews-slider {
    gap: 1rem !important;
  }
  .footer-bottom {
    padding-top: 1.25rem !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
  }
}

/* ── SMART LUXURY MOBILE MENU DRAWER ── */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -340px;
  width: 86%;
  max-width: 330px;
  height: 100vh;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 0 40px rgba(42, 31, 29, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.25rem 6rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu-drawer.active {
  left: 0 !important;
}
.mobile-menu-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(26, 15, 13, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.mobile-menu-backdrop.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}
.drawer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.drawer-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  object-fit: cover;
}
.drawer-brand-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-deepbrown);
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
}
.drawer-brand-sub {
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  font-weight: 600;
}
.mobile-menu-close-btn {
  background: var(--color-white);
  border: 1px solid rgba(197, 168, 128, 0.25);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deepbrown);
  cursor: pointer;
  transition: var(--transition-fast);
}
.mobile-menu-close-btn:hover {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

.drawer-search-form {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 25px;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.drawer-search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--color-deepbrown);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
}
.drawer-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-deepbrown);
  text-decoration: none;
  transition: var(--transition-fast);
  margin-bottom: 0.2rem;
}
.drawer-nav-item:hover, .drawer-nav-item.active {
  background: rgba(197, 168, 128, 0.12);
  color: var(--color-gold);
  font-weight: 600;
}
.drawer-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin: 1.25rem 0 0.5rem 0.5rem;
}
.drawer-cat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-deepbrown);
  text-decoration: none;
  transition: var(--transition-fast);
}
.cat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.4);
  transition: var(--transition-fast);
}
.drawer-cat-item:hover .cat-dot, .drawer-cat-item.active .cat-dot {
  background: var(--color-gold);
  transform: scale(1.4);
}
.drawer-cat-item:hover, .drawer-cat-item.active {
  color: var(--color-gold);
  background: rgba(197, 168, 128, 0.08);
  font-weight: 500;
  padding-left: 1.1rem;
}
