/* 
  KAPDASATHAN (VESTO) - LUXURY INDIAN ETHNIC eCOMMERCE 
  DESIGN SYSTEM & LAYOUT SPECIFICATIONS
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --color-maroon: #7A1F2B;
  --color-maroon-dark: #58141C;
  --color-maroon-light: #9B2E3C;
  --color-gold: #C9A34E;
  --color-gold-light: #DFBF77;
  --color-gold-dark: #A58032;
  --color-ivory: #FFF9F2;
  --color-beige: #F3ECE3;
  --color-beige-dark: #E4D8C8;
  --color-black: #121212;
  --color-black-light: #2C2C2C;
  --color-rose-nude: #D7B7B2;
  --color-green: #1D7A46;
  --color-red: #D93737;
  
  --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-button: 'Poppins', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease-in-out;
  --shadow-premium: 0 10px 30px rgba(122, 31, 43, 0.05);
  --shadow-luxury: 0 20px 50px rgba(18, 18, 18, 0.08);
  --border-gold-subtle: 1px solid rgba(201, 163, 78, 0.2);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-black);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-maroon);
}

/* Typography Utilities */
.text-gold { color: var(--color-gold); }
.text-maroon { color: var(--color-maroon); }
.font-serif { font-family: var(--font-heading); }
.uppercase-track { text-transform: uppercase; letter-spacing: 0.15em; }

/* Global Container */
.global-container {
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}

/* Buttons & Interactive Elements */
.btn-primary {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--color-gold);
  color: var(--color-black);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.btn-primary:hover {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  box-shadow: 0 8px 20px rgba(122, 31, 43, 0.2);
}

.btn-secondary {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--color-maroon);
  border: 1px solid var(--color-maroon);
  padding: 13px 28px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
}

/* Announcement Top Bar */
.top-bar {
  background-color: var(--color-maroon);
  color: var(--color-gold);
  height: 42px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.announcement-slide {
  position: absolute;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-slide.active {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Header */
header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  height: 80px;
}

header.scrolled {
  top: 0;
  background-color: var(--color-ivory);
  border-bottom: var(--border-gold-subtle);
  box-shadow: var(--shadow-premium);
  height: 70px;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-maroon);
}

header:not(.scrolled) .brand-logo {
  color: var(--color-ivory);
}

header.scrolled .brand-logo {
  color: var(--color-maroon);
}

.brand-logo h1 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-logo span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--color-gold);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  height: 100%;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  position: relative;
  padding: 10px 0;
  transition: var(--transition-fast);
}

header:not(.scrolled) .nav-menu a {
  color: var(--color-ivory);
}

header.scrolled .nav-menu a {
  color: var(--color-black);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

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

.nav-menu a:hover {
  color: var(--color-gold);
}

/* Navigation Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.action-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

header:not(.scrolled) .action-icon {
  color: var(--color-ivory);
}

header.scrolled .action-icon {
  color: var(--color-black);
}

.action-icon:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-maroon);
  color: var(--color-gold);
  font-size: 0.65rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
}

/* Hero Cinematic Banner */
.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background-color: var(--color-black);
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.3) 50%, rgba(18, 18, 18, 0.6) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 10%;
  padding: 0 20px;
  color: var(--color-ivory);
}

.hero-slide.active .hero-content h2 {
  animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-slide.active .hero-content p {
  animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-slide.active .hero-content .hero-btn {
  animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.hero-content p.hero-sub {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 12px;
  opacity: 0;
}

.hero-content h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
  opacity: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-btn {
  opacity: 0;
}

/* Categories Circular Section */
.section-padding {
  padding: 80px 24px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-maroon);
}

.categories-container {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 10px 0 25px 0;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.categories-container::-webkit-scrollbar {
  display: none; /* Safari / Chrome */
}

.category-card {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: var(--color-black);
  width: 110px;
  cursor: pointer;
}

.category-image-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 1px solid rgba(201, 163, 78, 0.3);
  background-color: var(--color-beige);
  padding: 4px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.category-image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-card:hover .category-image-wrap {
  transform: scale(1.06);
  border-color: var(--color-maroon);
  box-shadow: 0 10px 25px rgba(122, 31, 43, 0.15);
}

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

.category-card span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  transition: var(--transition-fast);
  color: var(--color-black-light);
}

.category-card:hover span {
  color: var(--color-maroon);
  font-weight: 600;
}

/* Product Card Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--color-ivory);
  border-bottom: 1px solid rgba(201, 163, 78, 0.1);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--color-beige);
}

.product-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-media .hover-img {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .primary-img {
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1;
  transform: scale(1.04);
}

/* Badges */
.badge-list {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.badge-new { background-color: var(--color-gold); color: var(--color-black); }
.badge-trending { background-color: var(--color-maroon); color: var(--color-ivory); }
.badge-bestseller { background-color: var(--color-black); color: var(--color-gold); }
.badge-sale { background-color: var(--color-red); color: var(--color-ivory); }

/* Favorite Button */
.fav-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  background: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: var(--transition-fast);
  color: var(--color-black-light);
}

.fav-btn:hover {
  transform: scale(1.1);
  color: var(--color-red);
}

.fav-btn.active {
  color: var(--color-red);
}

/* Quick Add Overlay */
.quick-add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 10;
  border-top: var(--border-gold-subtle);
  text-align: center;
}

.product-card:hover .quick-add-overlay {
  transform: translateY(0);
}

.quick-sizes {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.size-btn {
  border: 1px solid var(--color-beige-dark);
  background: transparent;
  width: 30px;
  height: 30px;
  font-size: 0.7rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.size-btn:hover {
  border-color: var(--color-maroon);
  color: var(--color-maroon);
}

.quick-add-btn {
  width: 100%;
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 0.75rem;
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  border: none;
  padding: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.quick-add-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* Product Info */
.product-info {
  padding: 16px 4px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-black-light);
  margin-bottom: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-name:hover {
  color: var(--color-maroon);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.product-rating span {
  color: #777;
  margin-left: 2px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
}

.curr-price {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-maroon);
}

.orig-price {
  font-size: 0.75rem;
  text-decoration: line-through;
  color: #888;
}

.discount-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-green);
}

/* Flash Sale Section */
.flash-sale-section {
  background: linear-gradient(135deg, var(--color-maroon-dark) 0%, var(--color-maroon) 100%);
  color: var(--color-ivory);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.flash-sale-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.flash-details {
  flex: 0 0 35%;
}

.flash-badge {
  background-color: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.flash-title {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--color-ivory);
}

.flash-desc {
  font-size: 0.9rem;
  color: var(--color-rose-nude);
  margin-bottom: 25px;
}

/* Countdown Timer */
.countdown-box {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.timer-unit {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 163, 78, 0.2);
  width: 60px;
  height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timer-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.timer-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-beige-dark);
  margin-top: 4px;
}

/* Flash Slider */
.flash-products-slider {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.flash-products-slider::-webkit-scrollbar {
  display: none;
}

.flash-product-card {
  flex: 0 0 260px;
  background-color: var(--color-ivory);
  color: var(--color-black);
  padding: 10px;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.inventory-indicator {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inventory-text {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-red);
  display: flex;
  justify-content: space-between;
}

.inventory-bar {
  height: 4px;
  background-color: var(--color-beige-dark);
  border-radius: 2px;
  overflow: hidden;
}

.inventory-fill {
  height: 100%;
  background-color: var(--color-red);
  border-radius: 2px;
  width: 30%;
}

/* Best Sellers horizontal slider */
.slider-container {
  position: relative;
  overflow: hidden;
}

.horizontal-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 10px 5px 30px;
  scrollbar-width: none;
}
.horizontal-slider::-webkit-scrollbar {
  display: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-beige-dark);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--color-maroon);
}

.slider-btn:hover {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  border-color: var(--color-maroon);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* Wedding Edit Section */
.wedding-edit-section {
  background-color: var(--color-beige);
  padding: 80px 24px;
}

.wedding-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.wedding-media {
  position: relative;
  box-shadow: var(--shadow-luxury);
  border: 8px solid white;
  overflow: hidden;
}

.wedding-media img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 10s ease;
}

.wedding-media:hover img {
  transform: scale(1.08);
}

.wedding-content {
  padding-right: 40px;
}

.wedding-content h3 {
  font-size: 3rem;
  color: var(--color-maroon);
  margin-bottom: 20px;
  line-height: 1.1;
}

.wedding-content p {
  font-size: 1rem;
  color: var(--color-black-light);
  margin-bottom: 35px;
}

/* Shop the Look - Hotspots */
.shop-look-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.shop-look-banner {
  position: relative;
  box-shadow: var(--shadow-luxury);
}

.shop-look-banner img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

/* Hotspot pulse animation */
.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--color-gold);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.hotspot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-gold);
  animation: pulseGold 2s infinite;
  opacity: 0.5;
}

.hotspot:hover {
  transform: scale(1.2);
  background-color: var(--color-maroon);
}

.hotspot:hover::after {
  background-color: var(--color-maroon);
}

.hotspot-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

/* Popover card styling */
.hotspot-popover {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 180px;
  background-color: white;
  border: var(--border-gold-subtle);
  padding: 10px;
  box-shadow: var(--shadow-luxury);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 15;
  text-align: center;
}

.hotspot-popover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.hotspot:hover .hotspot-popover,
.hotspot.active .hotspot-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot-popover img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 8px;
}

.hotspot-popover h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-black);
}

.hotspot-popover p {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-maroon);
  margin-bottom: 6px;
}

.hotspot-popover button {
  background: var(--color-maroon);
  color: white;
  border: none;
  font-size: 0.65rem;
  padding: 4px 8px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-fast);
}

.hotspot-popover button:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.shop-look-products {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.look-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background-color: white;
  border: 1px solid rgba(201, 163, 78, 0.1);
  transition: var(--transition-fast);
  align-items: center;
}

.look-item:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-premium);
}

.look-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background-color: var(--color-beige);
}

.look-item-info {
  flex-grow: 1;
}

.look-item-info h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.look-item-info .price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 8px;
}

.look-add-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-maroon);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.look-add-btn:hover {
  color: var(--color-gold);
}

/* View Panel Spacing */
#catalog-view, #checkout-view {
  padding: 140px 0 80px;
}

#success-view {
  padding: 180px 24px 100px;
}

.catalog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Category Filter System Layout */
.collection-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* Sidebar Filters */
.sidebar-filters {
  background-color: white;
  border: var(--border-gold-subtle);
  padding: 24px;
  align-self: start;
}

.filter-group {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-beige);
}

.filter-group:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.filter-title {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-maroon);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--color-black-light);
  cursor: pointer;
  user-select: none;
}

.checkbox-label input {
  accent-color: var(--color-maroon);
  width: 16px;
  height: 16px;
}

/* Filter controls bar */
.filter-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-beige-dark);
}

.filter-active-count {
  font-size: 0.85rem;
  color: #666;
}

.sorting-select {
  padding: 8px 12px;
  border: 1px solid var(--color-beige-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  background-color: white;
  color: var(--color-black);
  cursor: pointer;
  outline: none;
}

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

/* Mobile Filters trigger */
.mobile-filter-trigger {
  display: none;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--color-beige-dark);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

/* Bottom Sheet Mobile Filter */
.bottom-sheet-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.bottom-sheet-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 80vh;
  background: white;
  z-index: 1001;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.bottom-sheet-backdrop.active .bottom-sheet {
  transform: translateY(0);
}

.bottom-sheet-header {
  padding: 20px;
  border-bottom: 1px solid var(--color-beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-sheet-title {
  font-size: 1.2rem;
  color: var(--color-maroon);
}

.bottom-sheet-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-black);
}

.bottom-sheet-content {
  overflow-y: auto;
  padding: 20px;
  flex-grow: 1;
}

.bottom-sheet-actions {
  padding: 20px;
  border-top: 1px solid var(--color-beige);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Floating AI Chatbot */
.ai-chat-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-black);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(201, 163, 78, 0.4);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ai-chat-trigger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-gold);
  animation: pulseGold 2.5s infinite;
  z-index: -1;
}

.ai-chat-trigger:hover {
  background-color: var(--color-maroon);
  color: var(--color-gold);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 10px 25px rgba(122, 31, 43, 0.4);
}

/* AI Drawer Window */
.ai-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background-color: var(--color-ivory);
  box-shadow: var(--shadow-luxury);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  border-left: var(--border-gold-subtle);
}

.ai-drawer.active {
  transform: translateX(0);
}

.ai-drawer-header {
  background-color: var(--color-maroon);
  color: var(--color-gold);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ai-info h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.ai-info span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-rose-nude);
}

.ai-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ai-close:hover {
  color: white;
}

.ai-chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-bubble.assistant {
  background-color: white;
  border: 1px solid var(--color-beige-dark);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.chat-bubble.user {
  background-color: var(--color-maroon);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.chat-bubble .recommendation-card {
  margin-top: 10px;
  background-color: var(--color-ivory);
  border: var(--border-gold-subtle);
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-bubble .recommendation-card:hover {
  border-color: var(--color-gold);
  background-color: white;
}

.chat-bubble .recommendation-card img {
  width: 50px;
  height: 60px;
  object-fit: cover;
}

.chat-bubble .recommendation-card h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.chat-bubble .recommendation-card p {
  font-size: 0.75rem;
  color: var(--color-maroon);
  font-weight: 600;
}

.chat-suggested-queries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 20px;
  background-color: rgba(201, 163, 78, 0.05);
}

.suggestion-chip {
  background: white;
  border: 1px solid var(--color-beige-dark);
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.suggestion-chip:hover {
  border-color: var(--color-gold);
  color: var(--color-maroon);
  background-color: var(--color-ivory);
}

.ai-chat-input-area {
  padding: 20px;
  border-top: 1px solid var(--color-beige-dark);
  display: flex;
  gap: 10px;
  background: white;
}

.ai-input {
  flex-grow: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-beige-dark);
  border-radius: 4px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.ai-input:focus {
  border-color: var(--color-gold);
}

.ai-send-btn {
  background-color: var(--color-maroon);
  color: var(--color-gold);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.ai-send-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 99;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Sliding Cart Drawer */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: white;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.cart-drawer-backdrop.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.4rem;
  color: var(--color-maroon);
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items-wrap {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-beige);
  position: relative;
}

.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background-color: var(--color-beige);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 8px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-beige-dark);
  width: max-content;
}

.cart-qty-btn {
  background: none;
  border: none;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.cart-qty-val {
  padding: 0 8px;
  font-size: 0.8rem;
}

.cart-item-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-maroon);
}

.cart-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--color-maroon);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--color-beige);
  background-color: var(--color-ivory);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.cart-summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-maroon);
  border-top: 1px solid var(--color-beige-dark);
  padding-top: 12px;
  margin-bottom: 20px;
}

.cart-checkout-btn {
  width: 100%;
}

/* Product Detail Overlay View */
.product-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

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

.product-detail-box {
  background: white;
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-luxury);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.product-detail-modal.active .product-detail-box {
  transform: scale(1);
}

.detail-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: 1px solid var(--color-beige-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 20;
  transition: var(--transition-fast);
}

.detail-modal-close:hover {
  background-color: var(--color-maroon);
  color: white;
  border-color: var(--color-maroon);
}

.detail-gallery-wrap {
  position: relative;
  height: 100%;
  background-color: var(--color-beige);
  display: flex;
  flex-direction: column;
}

.detail-gallery-main {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

.detail-thumbs {
  height: 80px;
  background: rgba(255,255,255,0.8);
  display: flex;
  gap: 10px;
  padding: 10px;
  justify-content: center;
}

.detail-thumb-card {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 2px;
}

.detail-thumb-card.active {
  border-color: var(--color-gold);
}

.detail-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info-wrap {
  padding: 40px;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: var(--border-gold-subtle);
}

.detail-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-title {
  font-size: 2.2rem;
  color: var(--color-maroon);
  margin-bottom: 12px;
  line-height: 1.2;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.detail-rating span {
  color: #666;
}

.detail-pricing {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 24px;
}

.detail-curr-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-maroon);
}

.detail-orig-price {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: #888;
}

.detail-discount {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-green);
}

.detail-offers {
  background-color: var(--color-ivory);
  border: 1px dashed var(--color-gold);
  padding: 15px;
  margin-bottom: 25px;
}

.detail-offer-item {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.detail-offer-item:last-child {
  margin: 0;
}

.size-selector-wrap {
  margin-bottom: 25px;
}

.size-selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.size-guide-trigger {
  font-size: 0.75rem;
  color: var(--color-maroon);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 500;
}

.detail-sizes {
  display: flex;
  gap: 10px;
}

.detail-size-btn {
  border: 1px solid var(--color-beige-dark);
  background: transparent;
  width: 44px;
  height: 44px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.detail-size-btn:hover,
.detail-size-btn.active {
  border-color: var(--color-maroon);
  color: var(--color-maroon);
  background-color: var(--color-ivory);
  font-weight: 600;
}

.qty-selector-wrap {
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.detail-qty-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.detail-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-beige-dark);
}

.detail-qty-btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
}

.detail-qty-val {
  padding: 0 15px;
  font-size: 0.9rem;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

/* Accordion Specifications */
.accordion {
  border-top: 1px solid var(--color-beige-dark);
}

.accordion-item {
  border-bottom: 1px solid var(--color-beige-dark);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  text-align: left;
}

.accordion-trigger span {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-trigger span {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  max-height: 150px;
  padding-bottom: 16px;
}

/* Interactive Size recommendation engine modal */
.size-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.size-box {
  background: white;
  width: 400px;
  padding: 30px;
  border-radius: 4px;
  box-shadow: var(--shadow-luxury);
  position: relative;
  text-align: center;
}

.size-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.size-box h3 {
  font-size: 1.5rem;
  color: var(--color-maroon);
  margin-bottom: 10px;
}

.size-box p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 20px;
}

.size-inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.size-input-field {
  padding: 10px 14px;
  border: 1px solid var(--color-beige-dark);
  font-family: var(--font-body);
  outline: none;
}

.size-recommendation-result {
  margin-top: 20px;
  padding: 15px;
  background-color: var(--color-ivory);
  border: 1px dashed var(--color-gold);
  display: none;
}

.size-recommendation-result.active {
  display: block;
}

.rec-size-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-maroon);
  margin: 6px 0;
}

/* 1-Page Checkout Page Layout */
.checkout-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.checkout-section-box {
  background-color: white;
  border: var(--border-gold-subtle);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-premium);
}

.checkout-section-title {
  font-size: 1.3rem;
  color: var(--color-maroon);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-beige);
  padding-bottom: 10px;
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-black-light);
  display: block;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-beige-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

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

.payment-gateways {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gateway-option {
  border: 1px solid var(--color-beige-dark);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gateway-option.active,
.gateway-option:hover {
  border-color: var(--color-maroon);
  background-color: var(--color-ivory);
}

.gateway-option input {
  accent-color: var(--color-maroon);
}

.gateway-lbl {
  font-size: 0.85rem;
  font-weight: 600;
}

.checkout-summary-box {
  background-color: white;
  border: var(--border-gold-subtle);
  padding: 30px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-premium);
}

.checkout-item-row {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: center;
}

.checkout-item-row img {
  width: 50px;
  height: 60px;
  object-fit: cover;
  background-color: var(--color-beige);
}

.checkout-item-info {
  flex-grow: 1;
}

.checkout-item-title {
  font-size: 0.75rem;
  font-weight: 600;
}

.checkout-item-price {
  font-size: 0.75rem;
  color: var(--color-maroon);
}

/* Checkout Progress Indicator */
.checkout-progress {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #aaa;
}

.progress-step.active {
  color: var(--color-maroon);
  font-weight: 700;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.progress-step.active .step-num {
  border-color: var(--color-maroon);
  background-color: var(--color-maroon);
  color: white;
}

/* Trust Badges and Sections */
.trust-badge-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 60px auto 0;
  text-align: center;
  border-top: 1px solid var(--color-beige-dark);
  padding: 40px 24px 0;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-badge-icon {
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.trust-badge-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-badge-item p {
  font-size: 0.75rem;
  color: #777;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  margin: 0 !important;
  padding: 25px;
  border-radius: 2px;
}

/* Instagram Gallery Section */
.instagram-section {
  background-color: white;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-item {
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* SEO optimized blog section */
.blog-section {
  background-color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-card {
  background-color: var(--color-ivory);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.blog-image {
  height: 240px;
  overflow: hidden;
  background-color: var(--color-beige);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.04);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.blog-card h4 {
  font-size: 1.3rem;
  color: var(--color-maroon);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--color-black-light);
  margin-bottom: 15px;
}

.blog-link {
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-maroon);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.blog-link:hover {
  color: var(--color-gold);
}

/* Footer & Newsletter */
footer {
  background-color: var(--color-black);
  color: var(--color-ivory);
  padding: 80px 24px 40px;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  text-decoration: none;
  color: var(--color-rose-nude);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.footer-column ul a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--color-rose-nude);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  color: var(--color-rose-nude);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

.newsletter-box p {
  font-size: 0.8rem;
  color: var(--color-rose-nude);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 14px;
  border: 1px solid rgba(201, 163, 78, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.newsletter-submit {
  background-color: var(--color-gold);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-submit:hover {
  background-color: var(--color-maroon);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #777;
}

/* Mobile Fixed Navigation Bottom iOS style */
.mobile-nav-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: var(--border-gold-subtle);
  z-index: 100;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-black-light);
  gap: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.mobile-nav-item svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-item.active {
  color: var(--color-maroon);
}

.mobile-nav-item span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Animations */
@media (max-width: 375px) {
  .hero-content h2 {
    font-size: 1.6rem;
  }
  .product-grid {
    gap: 8px;
  }
  .product-info {
    padding: 8px 2px 6px;
  }
  .product-name {
    font-size: 0.7rem;
  }
  .curr-price {
    font-size: 0.75rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .category-image-wrap {
    width: 60px;
    height: 60px;
  }
  .category-card {
    width: 75px;
  }
  .categories-container {
    gap: 12px;
  }
  .action-icon {
    min-width: 44px;
    min-height: 44px;
  }
  .badge-count {
    top: -4px;
    right: -4px;
  }
}

@keyframes pulseGold {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 163, 78, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(201, 163, 78, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 163, 78, 0); }
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .shop-look-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  header {
    height: 64px;
  }
  header.scrolled {
    height: 64px;
  }
  .header-container {
    padding: 0 20px;
  }
  .nav-menu {
    display: none;
  }
  .hero-section {
    height: 50vh;
    min-height: 400px;
  }
  .hero-content h2 {
    font-size: 2.8rem;
  }
  .wedding-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wedding-content {
    padding-right: 0;
    text-align: center;
  }
  .wedding-content h3 {
    font-size: 2.2rem;
  }
  .flash-sale-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .flash-details {
    width: 100%;
    text-align: center;
  }
  .countdown-box {
    justify-content: center;
  }
  .collection-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-filters {
    display: none;
  }
  .mobile-filter-trigger {
    display: flex;
  }
  .product-detail-box {
    grid-template-columns: 1fr;
    height: 85vh;
  }
  .detail-info-wrap {
    padding: 24px;
    border-left: none;
    border-top: var(--border-gold-subtle);
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary-box {
    position: static;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .top-bar {
    height: 38px;
    font-size: 0.7rem;
  }
  header {
    top: 38px;
  }
  .brand-logo h1 {
    font-size: 1.4rem;
  }
  .brand-logo span {
    font-size: 0.55rem;
  }
  .section-padding {
    padding: 48px 15px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-title-wrap {
    margin-bottom: 28px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-info {
    padding: 12px 4px 8px;
  }
  .product-name {
    font-size: 0.75rem;
  }
  .curr-price {
    font-size: 0.8rem;
  }
  .orig-price {
    font-size: 0.7rem;
  }
  .discount-badge {
    font-size: 0.65rem;
  }
  .category-image-wrap {
    width: 70px;
    height: 70px;
  }
  .category-card {
    width: 85px;
  }
  .categories-container {
    gap: 20px;
  }
  .hero-section {
    height: 50vh;
    min-height: 350px;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content p.hero-sub {
    font-size: 0.7rem;
  }
  .flash-sale-section {
    padding: 48px 15px;
  }
  .flash-title {
    font-size: 1.8rem;
  }
  .wedding-edit-section {
    padding: 48px 15px;
  }
  .wedding-content h3 {
    font-size: 1.8rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer {
    padding: 48px 15px 30px;
  }
  .mobile-nav-bar {
    display: flex;
    height: 64px;
  }
  .mobile-nav-item {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .mobile-nav-item svg {
    width: 24px;
    height: 24px;
  }
  .mobile-nav-item span {
    font-size: 0.6rem;
  }
  body {
    padding-bottom: 64px;
  }
  .ai-chat-trigger {
    bottom: 80px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float {
    bottom: 145px;
    right: 15px;
    width: 44px;
    height: 44px;
  }
  .cart-drawer, .ai-drawer {
    width: 100%;
  }
  .trust-badge-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 15px 0;
  }
  .categories-container {
    gap: 15px;
  }
  .checkout-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .checkout-section-box {
    padding: 20px;
  }
  .checkout-progress {
    gap: 20px;
    flex-wrap: wrap;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .slider-container {
    overflow: visible;
  }
  .flash-products-slider {
    gap: 12px;
  }
  .flash-product-card {
    flex: 0 0 200px;
  }
  .detail-title {
    font-size: 1.4rem;
  }
  .detail-curr-price {
    font-size: 1.2rem;
  }
  .product-detail-box {
    height: 90vh;
  }
  .product-detail-modal {
    padding: 0;
  }
}
