/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --color-maroon: #7B0F24;
  --color-burgundy: #5B0B1B;
  --color-ivory: #FAF7F2;
  --color-gold: #C8A46A;
  --color-gold-hover: #E4C085;
  --color-beige: #F3ECE4;
  --color-text-dark: #222222;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-pink-soft: #FCF4F2;
  
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  
  --shadow-premium: 0 15px 35px rgba(91, 11, 27, 0.06);
  --shadow-hover: 0 20px 45px rgba(91, 11, 27, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-ivory);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button, input {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SCROLL REVEAL STYLES
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   FLOATING PETALS & SPARKLES
   ========================================================================== */
.petal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
  overflow: hidden;
}

.petal {
  position: absolute;
  background-color: #FFB7C5; /* soft cherry blossom pink */
  opacity: 0.7;
  border-radius: 15% 70% 15% 70%;
  pointer-events: none;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translate3d(0, -10px, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(100px, 100vh, 0) rotate(360deg);
    opacity: 0;
  }
}

.sparkle {
  position: absolute;
  color: var(--color-gold);
  pointer-events: none;
  animation: pulse 3s infinite ease-in-out;
  opacity: 0.8;
}

.size-s { font-size: 0.8rem; }
.size-m { font-size: 1.2rem; }
.size-l { font-size: 1.8rem; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 1; text-shadow: 0 0 10px rgba(200, 164, 106, 0.6); }
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.announcement-bar {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 8px 0;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-gold);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: ticker-slide 20s linear infinite;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-content span {
  padding: 0 30px;
}

.ticker-separator {
  color: var(--color-gold);
}

@keyframes ticker-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.main-header {
  background-color: rgba(250, 247, 242, 0.95);
  border-bottom: 1px solid rgba(200, 164, 106, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(91, 11, 27, 0.05);
  padding: 5px 0;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-maroon);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
}

.logo-img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 2px 8px rgba(91, 11, 27, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo:hover .logo-img {
  transform: rotate(15deg) scale(1.08);
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  position: relative;
  padding: 5px 0;
}

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

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

.nav-link:hover {
  color: var(--color-maroon);
}

.nav-close-btn {
  display: none;
}

.hamburger-menu {
  display: none;
  color: var(--color-maroon);
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.action-btn {
  color: var(--color-text-dark);
  padding: 5px;
  position: relative;
  transition: var(--transition-fast);
}

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

.badge-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-maroon);
  color: var(--color-white);
  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-white);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, #FAF7F2 0%, #F3ECE4 90%);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: calc(100vh - 120px);
  align-items: center;
  padding: 40px;
}

.hero-left {
  padding-right: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  line-height: 1.05;
  color: var(--color-burgundy);
  font-weight: 500;
  margin-bottom: 25px;
}

.hero-title .highlight {
  font-style: italic;
  font-weight: 400;
  color: var(--color-maroon);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 105%;
  height: 8px;
  background-color: rgba(200, 164, 106, 0.15);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 480px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  border-radius: 4px;
  border: 1px solid var(--color-maroon);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(123, 15, 36, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(91, 11, 27, 0.25);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-image-container {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 30px 30px;
  border: 2px solid var(--color-gold);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--color-gold);
  border-radius: 190px 190px 20px 20px;
  pointer-events: none;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.15, 0.85, 0.45, 1);
}

.hero-image-container:hover .hero-img {
  transform: scale(1.05);
}

/* Curve Divider at Bottom */
.curve-divider-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.curve-divider-container.reverse {
  bottom: auto;
  top: 0;
  transform: rotate(180deg);
}

.curve-svg {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section {
  padding: 60px 40px;
  background-color: var(--color-ivory);
  position: relative;
  z-index: 4;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-card {
  background-color: var(--color-beige);
  padding: 40px 25px 30px;
  border-radius: 40px 15px 40px 15px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(200, 164, 106, 0.25);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-maroon), var(--color-gold), var(--color-maroon));
  opacity: 0.8;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}

.icon-wrapper {
  color: var(--color-maroon);
  background-color: rgba(123, 15, 36, 0.05);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(200, 164, 106, 0.3);
  transition: var(--transition-smooth);
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
  transition: var(--transition-smooth);
}

.trust-card:hover .icon-wrapper {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  transform: rotateY(180deg);
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-burgundy);
  margin-bottom: 8px;
  font-weight: 600;
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   SECTION HEADER ORNAMENTS
   ========================================================================== */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.line-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
  width: 100px;
}

.gold-flower {
  color: var(--color-gold);
  font-size: 1.2rem;
  animation: spin 10s infinite linear;
}

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

.section-title-label {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-burgundy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* ==========================================================================
   FEATURED & NEW ARRIVALS CAROUSEL
   ========================================================================== */
.featured-section, .arrivals-section {
  padding: 80px 40px;
  background-color: var(--color-ivory);
  position: relative;
}

.slider-outer {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.product-slider-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 5px 30px;
  scrollbar-width: none; /* Firefox */
}

.product-slider-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.product-card {
  flex: 0 0 calc((100% - 90px) / 4);
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(200, 164, 106, 0.15);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.wishlist-card-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition-fast);
  z-index: 10;
}

.wishlist-card-btn:hover {
  background-color: var(--color-white);
  color: var(--color-maroon);
  transform: scale(1.1);
}

.wishlist-card-btn.active {
  background-color: var(--color-maroon);
  color: var(--color-white);
}

.wishlist-card-btn svg {
  width: 18px;
  height: 18px;
  fill: transparent;
  transition: var(--transition-fast);
}

.wishlist-card-btn.active svg {
  fill: currentColor;
}

.card-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, transparent, rgba(91, 11, 27, 0.85));
  display: flex;
  justify-content: center;
  transition: var(--transition-smooth);
  opacity: 0;
}

.product-card:hover .card-overlay {
  bottom: 0;
  opacity: 1;
}

.btn-quick-view {
  background-color: var(--color-ivory);
  color: var(--color-burgundy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid var(--color-gold);
  transition: var(--transition-fast);
}

.btn-quick-view:hover {
  background-color: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon);
}

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-burgundy);
  margin-bottom: 12px;
  line-height: 1.3;
  /* Truncate long titles to max 2 lines with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

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

.btn-add-cart-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-beige);
  color: var(--color-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(200, 164, 106, 0.2);
}

.btn-add-cart-icon:hover {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  transform: scale(1.1);
}

/* Carousel Arrow Styles */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-maroon);
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
  z-index: 10;
}

.nav-arrow:hover {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  border-color: var(--color-maroon);
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }

/* ==========================================================================
   SHOP BY COLLECTION SECTION (Arched Cards)
   ========================================================================== */
.collection-section {
  padding: 40px 40px;
  background-color: var(--color-beige);
  position: relative;
  z-index: 2;
}

.collection-grid-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 8px 0 12px;
  scrollbar-width: none;
}

.collection-grid-container::-webkit-scrollbar {
  display: none;
}

.collection-card {
  display: block;
  flex: 0 0 185px;
}

.arch-frame {
  position: relative;
  aspect-ratio: 1/1.6;
  border-radius: 120px 120px 15px 15px;
  overflow: hidden;
  border: 1.5px solid var(--color-gold);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  background-color: var(--color-pink-soft);
}

.arch-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(200, 164, 106, 0.4);
  border-radius: 114px 114px 10px 10px;
  pointer-events: none;
  z-index: 2;
}

.collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(91, 11, 27, 0.1) 40%, rgba(91, 11, 27, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 10px;
  color: var(--color-white);
  text-align: center;
  z-index: 3;
}

.collection-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.gold-pendant {
  color: var(--color-gold);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.collection-card:hover .arch-frame {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-maroon);
}

.collection-card:hover .collection-img {
  transform: scale(1.1);
}

.collection-card:hover .gold-pendant {
  color: var(--color-gold-hover);
  transform: rotate(45deg) scale(1.2);
}

/* ==========================================================================
   NEW ARRIVALS BG BLEND
   ========================================================================== */
.arrivals-section {
  position: relative;
}

.section-bg-blend {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-pink-soft) 100%);
  z-index: 1;
}

.arrivals-section > * {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   CUSTOMER GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 80px 40px;
  background-color: var(--color-ivory);
}

.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 10px 5px 25px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

.gallery-grid::-webkit-scrollbar {
  height: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(200, 164, 106, 0.15);
  border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 10px;
}

.gallery-grid .gallery-card {
  flex: 0 0 220px;
  min-width: 220px;
}

.gallery-arch-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 180px 180px 20px 20px;
  overflow: hidden;
  border: 1.5px solid var(--color-gold);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.gallery-arch-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(200, 164, 106, 0.4);
  border-radius: 172px 172px 12px 12px;
  pointer-events: none;
  z-index: 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-hover-tag {
  position: absolute;
  inset: 0;
  background-color: rgba(91, 11, 27, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ivory);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(3px);
  z-index: 3;
}

.gallery-card:hover .gallery-arch-frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-maroon);
}

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

.gallery-card:hover .gallery-hover-tag {
  opacity: 1;
}

/* ==========================================================================
   STORY SECTION
   ========================================================================== */
.story-section {
  padding: 80px 40px;
  background-color: var(--color-beige);
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 50px 15px 50px 15px;
  border: 1px solid rgba(200, 164, 106, 0.25);
  box-shadow: var(--shadow-premium);
}

.story-left {
  position: relative;
  border-radius: 30px 10px 30px 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1.5px solid var(--color-gold);
}

.story-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-left:hover .story-banner-img {
  transform: scale(1.04);
}

.story-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  padding: 8px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
}

.story-right {
  padding-left: 20px;
}

.story-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--color-burgundy);
  line-height: 1.15;
  margin-bottom: 25px;
}

.story-heading .highlight {
  font-style: italic;
  font-weight: 400;
  color: var(--color-maroon);
}

.story-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 35px;
}

.inline-btn {
  padding: 14px 30px;
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.newsletter-section {
  padding: 80px 40px;
  background-color: var(--color-ivory);
}

.newsletter-banner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-maroon);
  border: 1.5px solid var(--color-gold);
  color: var(--color-ivory);
  padding: 60px 40px;
  text-align: center;
  border-radius: 40px 10px 40px 10px;
  box-shadow: 0 15px 30px rgba(91, 11, 27, 0.15);
  position: relative;
  overflow: hidden;
}

.newsletter-banner::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(200, 164, 106, 0.3);
  border-radius: 30px 6px 30px 6px;
  pointer-events: none;
}

.newsletter-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.newsletter-subheading {
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 35px;
  letter-spacing: 0.05em;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  padding: 15px 20px;
  font-size: 0.9rem;
  border-radius: 4px;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(250, 247, 242, 0.5);
}

.newsletter-form input[type="email"]:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-ivory);
  box-shadow: 0 0 10px rgba(250, 247, 242, 0.1);
}

.btn-subscribe {
  background-color: var(--color-gold);
  color: var(--color-burgundy);
  padding: 15px 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-subscribe:hover {
  background-color: var(--color-ivory);
  color: var(--color-maroon);
  box-shadow: 0 5px 15px rgba(250, 247, 242, 0.2);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  background-color: var(--color-burgundy);
  color: var(--color-ivory);
  padding: 80px 40px 30px;
  border-top: 2px solid var(--color-gold);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.brand-col {
  padding-right: 40px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-wrapper .footer-brand {
  margin-bottom: 0;
}

.footer-logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 106, 0.4);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background-color: var(--color-gold);
  color: var(--color-burgundy);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.7);
  position: relative;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 30px;
}

.bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.5);
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.pay-icon {
  height: 24px;
  filter: grayscale(40%);
  transition: var(--transition-fast);
}

.pay-icon:hover {
  filter: grayscale(0);
}

/* ==========================================================================
   MODAL (Quick Shop)
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(91, 11, 27, 0.4);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background-color: var(--color-ivory);
  width: 90%;
  max-width: 850px;
  border-radius: 24px;
  border: 1.5px solid var(--color-gold);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  z-index: 2;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--color-maroon);
  line-height: 1;
  transition: var(--transition-fast);
  z-index: 3;
}

.modal-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.modal-image-col {
  aspect-ratio: 4/5;
  background-color: var(--color-pink-soft);
  overflow: hidden;
}

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

.modal-details-col {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

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

.modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-burgundy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 20px;
}

.modal-divider {
  height: 1px;
  background-color: rgba(200, 164, 106, 0.3);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal-options {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.option-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background-color: var(--color-beige);
  color: var(--color-burgundy);
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.qty-selector input {
  width: 45px;
  border: none;
  text-align: center;
  background: transparent;
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  outline: none;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-selector input[type=number] {
  -moz-appearance: textfield;
}

.full-width {
  width: 100%;
  justify-content: center;
  margin-bottom: 25px;
}

.modal-meta {
  font-size: 0.75rem;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed rgba(200, 164, 106, 0.3);
  padding-top: 15px;
}

.modal-meta p strong {
  color: var(--color-text-dark);
}

/* ==========================================================================
   CART DRAWERS (Bag / Wishlist)
   ========================================================================== */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(91, 11, 27, 0.4);
  backdrop-filter: blur(4px);
}

.drawer-container {
  position: absolute;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--color-ivory);
  border-left: 2px solid var(--color-gold);
  box-shadow: -10px 0 35px rgba(91, 11, 27, 0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.cart-drawer.active .drawer-container {
  right: 0;
}

.drawer-header {
  padding: 30px;
  border-bottom: 1px solid rgba(200, 164, 106, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-burgundy);
  letter-spacing: 0.05em;
}

.drawer-close {
  font-size: 1.8rem;
  color: var(--color-maroon);
  line-height: 1;
  transition: var(--transition-fast);
}

.drawer-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.empty-cart-message {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: 50px;
}

/* Cart Item Cards */
.drawer-item-card {
  display: flex;
  gap: 15px;
  border-bottom: 1px dashed rgba(200, 164, 106, 0.2);
  padding-bottom: 20px;
  position: relative;
}

.drawer-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--color-gold);
}

.drawer-item-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.drawer-item-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-burgundy);
  margin-bottom: 6px;
}

.drawer-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 10px;
}

.drawer-item-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-item-qty {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.btn-remove-item {
  color: var(--color-text-light);
  font-size: 0.75rem;
  text-decoration: underline;
}

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

.drawer-footer {
  padding: 30px;
  border-top: 1px solid rgba(200, 164, 106, 0.3);
  background-color: var(--color-beige);
}

.cart-totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-burgundy);
  margin-bottom: 20px;
}

#cart-total-price {
  color: var(--color-maroon);
  font-size: 1.25rem;
}

/* ==========================================================================
   ABOUT & CONTACT PAGE LAYOUTS
   ========================================================================== */
.page-title-section {
  padding: 100px 40px 40px;
  background: radial-gradient(circle at 10% 20%, #FAF7F2 0%, #F3ECE4 90%);
  text-align: center;
  border-bottom: 1px solid rgba(200, 164, 106, 0.25);
}

.page-title-section .section-title-label {
  font-size: 2.8rem;
  margin: 0;
  display: inline-block;
}

.page-title-subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

.about-content-section, .contact-content-section {
  padding: 80px 40px;
  background-color: var(--color-ivory);
}

.about-split-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-split-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.contact-split-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-form-container {
  background-color: var(--color-beige);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(200, 164, 106, 0.25);
  box-shadow: var(--shadow-premium);
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & BREAKPOINTS
   ========================================================================== */

/* --- Tablet Breakpoint (1024px) --- */
@media screen and (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 40px;
  }
  
  .hero-left {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
  
  .hero-right {
    justify-content: center;
  }
  
  .hero-image-container {
    max-width: 480px;
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-slider-container {
    gap: 20px;
  }

  .product-card {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 cards visible */
  }

  .collection-grid-container {
    gap: 20px;
  }
  
  .collection-card {
    flex: 0 0 130px;
  }
  .collection-title {
    font-size: 1.05rem;
  }
  
  .arch-frame {
    aspect-ratio: 1/1.6;
  }

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

  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .story-right {
    padding-left: 0;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .brand-col {
    grid-column: span 3;
    padding-right: 0;
    text-align: center;
    border-bottom: 1px dashed rgba(250, 247, 242, 0.2);
    padding-bottom: 30px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .about-split-row, .contact-split-row {
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* --- Mobile Landscape / Large Mobile (768px) --- */
@media screen and (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-ivory);
    border-right: 2px solid var(--color-gold);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    transition: left 0.4s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 25px;
  }

  .nav-link {
    font-size: 1.05rem;
  }

  .nav-close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--color-maroon);
  }

  .hamburger-menu {
    display: block;
  }

  .slider-outer {
    padding: 0 35px;
  }

  /* --- Section Ornament: hide decorative lines on mobile, shrink title --- */
  .section-ornament {
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
  }

  .line-gold {
    display: none; /* remove the framing lines that cause a 'masked box' look */
  }

  .gold-flower {
    font-size: 1rem;
  }

  .section-title-label {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    white-space: nowrap; /* force single line */
  }

  .page-title-section .section-title-label {
    font-size: 2rem;
    white-space: normal;
    line-height: 1.25;
  }

  .nav-arrow {
    display: flex;
    width: 32px;
    height: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .nav-arrow svg {
    width: 14px;
    height: 14px;
  }

  .prev-arrow {
    left: 2px;
  }

  .next-arrow {
    right: 2px;
  }

  .featured-section,
  .arrivals-section {
    padding: 40px 20px;
  }

  .slider-outer {
    padding: 0 30px;
  }

  .product-slider-container {
    padding: 10px 0 20px;
    gap: 12px;
  }

  .product-card {
    flex: 0 0 200px; /* Compact cards for mobile screens */
  }

  .product-title {
    font-size: 1rem;
    -webkit-line-clamp: 2;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .product-details {
    padding: 14px;
  }

  .collection-grid-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: none;
  }

  .collection-grid-container::-webkit-scrollbar {
    display: none;
  }

  .collection-card {
    flex: 0 0 115px; /* fixed size slider on mobile */
  }
  .collection-title {
    font-size: 0.95rem;
  }

  .arch-frame {
    aspect-ratio: 1/1.6;
  }

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

  .brand-col {
    grid-column: span 2;
  }

  .gallery-section {
    padding: 40px 20px;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-card {
    flex: 0 0 220px;
  }

  .page-title-section {
    padding: 80px 20px 30px;
  }
  
  .page-title-section .section-title-label {
    font-size: 1.6rem;
    white-space: normal;
    line-height: 1.25;
  }
  
  .about-content-section, .contact-content-section {
    padding: 40px 20px;
  }
  
  .about-split-row, .about-split-row.reverse, .contact-split-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .contact-form-container {
    padding: 25px 20px;
  }
}

/* --- Small Mobile Breakpoint (480px) --- */
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .header-container {
    padding: 10px 15px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero-wrapper {
    padding: 40px 15px;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .hero-image-container {
    border-radius: 120px 120px 20px 20px;
  }
  
  .hero-image-container::before {
    border-radius: 110px 110px 12px 12px;
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-card {
    padding: 22px 14px 18px;
  }

  .icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .trust-title {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .trust-desc {
    font-size: 0.72rem;
  }

  section.trust-section {
    padding: 40px 15px;
  }

  .section-title-label {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .section-ornament {
    margin-bottom: 22px;
    gap: 8px;
  }

  .gold-flower {
    font-size: 0.9rem;
  }

  .product-card {
    flex: 0 0 160px; /* Even more compact on very small phones */
  }

  .product-title {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 0.85rem;
  }

  .product-details {
    padding: 10px 12px;
  }

  .featured-section,
  .arrivals-section {
    padding: 30px 15px;
  }

  .slider-outer {
    padding: 0 28px;
  }



  .story-container {
    padding: 20px 15px;
  }

  .story-heading {
    font-size: 2rem;
  }

  .newsletter-banner {
    padding: 40px 15px;
  }

  .newsletter-heading {
    font-size: 1.6rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .btn-subscribe {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .brand-col {
    grid-column: span 1;
  }

  .bottom-container {
    flex-direction: column-reverse;
    gap: 15px;
    text-align: center;
  }

  .modal-body-grid {
    grid-template-columns: 1fr;
  }

  .modal-image-col {
    aspect-ratio: 16/9;
  }

  .modal-details-col {
    padding: 20px;
  }
}

/* ==========================================================================
   PRODUCT CATALOG GRID (FOR SHOP PAGE)
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-grid .product-card {
    flex: unset; /* override slider style */
    width: 100%;
  }
}

/* ==========================================================================
   COLLECTION TABS FILTER BAR (PREMIUM THEME)
   ========================================================================== */
.collection-tabs-wrapper {
  margin-bottom: 50px;
  text-align: center;
}

.collection-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 8px;
  background: rgba(243, 236, 228, 0.5); /* Semi-transparent beige */
  border-radius: 40px;
  border: 1px solid rgba(200, 164, 106, 0.25);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-poppins), var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 30px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tab-btn:hover {
  color: var(--color-burgundy);
  background: rgba(255, 255, 255, 0.4);
}

.tab-btn.active {
  color: var(--color-ivory);
  background-color: var(--color-maroon);
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 10px rgba(123, 15, 36, 0.2);
}

@media screen and (max-width: 768px) {
  .collection-tabs {
    border-radius: 20px;
    padding: 10px;
    gap: 8px;
  }
  
  .tab-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* ==========================================================================
   CUSTOMER REVIEWS & TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  scrollbar-width: none;
  padding: 10px 0 20px;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonials-grid .review-card {
  flex: 0 0 calc((100% - 60px) / 3);
  box-sizing: border-box;
}

.review-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 20px 8px 20px 8px;
  border: 1px solid rgba(200, 164, 106, 0.2);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

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

.review-stars {
  color: #D4AF37; /* Premium Gold */
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-maroon);
}

.star-rating-selector .star {
  transition: color 0.2s ease;
}

.star-rating-selector .star.hover,
.star-rating-selector .star.selected {
  color: #D4AF37; /* Premium Gold */
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .testimonials-grid .review-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials-grid .review-card {
    flex: 0 0 280px;
  }
}



/* ==========================================================================
   PROMO LOGIN POPUP MODAL
   ========================================================================== */
.login-promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(91, 11, 27, 0.45); /* Burgundy tinted transparent overlay */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.login-promo-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.login-promo-card {
  background-color: var(--color-white); /* Pure clean white background */
  border: 1px solid rgba(200, 164, 106, 0.3); /* Subtle gold border border */
  border-radius: 12px; /* Standard clean modern border radius */
  padding: 45px 35px;
  width: 90%;
  max-width: 440px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-promo-overlay.active .login-promo-card {
  transform: scale(1) translateY(0);
}

.login-promo-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.2rem;
  color: var(--color-maroon);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.login-promo-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.login-promo-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-light); /* Clean grey color */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.login-promo-card h2 {
  font-family: var(--font-sans); /* Clean, modern sans-serif font */
  font-size: 1.85rem; /* Slightly smaller, clean size */
  color: var(--color-burgundy);
  line-height: 1.25;
  margin-bottom: 15px;
  font-weight: 600; /* Clean, strong bold */
}

.login-promo-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-promo-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  border-radius: 4px;
  border: 1px solid var(--color-maroon);
  width: 100%;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(123, 15, 36, 0.15);
}

.btn-promo-auth:hover {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 8px 25px rgba(91, 11, 27, 0.25);
  transform: translateY(-2px);
}

.btn-promo-auth svg {
  transition: transform 0.3s ease;
}

.btn-promo-auth:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   FAQ ACCORDION LAYOUT
   ========================================================================== */
.faq-section {
  padding: 80px 40px;
  background-color: var(--color-ivory);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-block {
  margin-bottom: 50px;
}

.faq-category-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-burgundy);
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(200, 164, 106, 0.3);
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid rgba(200, 164, 106, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(91, 11, 27, 0.02);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 15px rgba(91, 11, 27, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-dark);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-maroon);
}

.faq-icon-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon-toggle::before,
.faq-icon-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--color-gold);
  transition: transform 0.3s ease;
}

/* Horizontal line */
.faq-icon-toggle::before {
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-icon-toggle::after {
  top: 3px;
  left: 9px;
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon-toggle::before {
  background-color: var(--color-maroon);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-answer-inner {
  padding: 15px 25px 25px;
}

.faq-answer-inner p {
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  border-top: 1px solid rgba(200, 164, 106, 0.1);
}

@media screen and (max-width: 768px) {
  .faq-section {
    padding: 50px 20px;
  }
  .faq-category-title {
    font-size: 1.5rem;
  }
  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
  .faq-answer-inner {
    padding: 12px 20px 20px;
  }
}

/* ==========================================================================
   POLICIES PAGE LAYOUT
   ========================================================================== */
.policy-section {
  padding: 80px 40px;
  background-color: var(--color-ivory);
}

.policy-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(200, 164, 106, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.policy-tab-btn {
  width: 100%;
  text-align: left;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.policy-tab-btn:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-burgundy);
}

.policy-tab-btn.active {
  background-color: var(--color-maroon);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(123, 15, 36, 0.15);
  border: 1px solid var(--color-gold);
}

.policy-content-card {
  background-color: var(--color-white);
  border: 1px solid rgba(200, 164, 106, 0.2);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  min-height: 400px;
}

.policy-body {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy-body p {
  margin-bottom: 20px;
}

.policy-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-burgundy);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-body ul, .policy-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-body li {
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .policy-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .policy-sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    border-radius: 8px;
  }
  .policy-tab-btn {
    width: auto;
    padding: 10px 18px;
  }
  .policy-content-card {
    padding: 25px;
  }
}

/* ==========================================================================
   CATALOG TWO-COLUMN LAYOUT & SIDEBAR FILTER
   ========================================================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.filter-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  background-color: var(--color-white);
  border: 1px solid rgba(200, 164, 106, 0.2);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(200, 164, 106, 0.15);
  padding-bottom: 15px;
}

.sidebar-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-burgundy);
  letter-spacing: 0.05em;
  margin: 0;
}

.sidebar-close-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
}

.filter-section-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.filter-group-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-maroon);
  text-transform: uppercase;
  margin: 0;
}

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

.filter-option-btn {
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-option-btn:hover {
  background-color: rgba(200, 164, 106, 0.08);
  color: var(--color-burgundy);
}

.filter-option-btn.active {
  background-color: var(--color-ivory);
  color: var(--color-burgundy);
  border-color: rgba(200, 164, 106, 0.3);
  font-weight: 600;
}

.catalog-main-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(200, 164, 106, 0.15);
}

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: var(--color-white);
  border: 1px solid rgba(200, 164, 106, 0.3);
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-burgundy);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
  background-color: var(--color-ivory);
  border-color: var(--color-gold);
}

.products-count-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

@media screen and (max-width: 992px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  
  .filter-toggle-btn {
    display: inline-flex;
  }

  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    z-index: 1000;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(200, 164, 106, 0.2);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--color-white);
  }

  .filter-sidebar.active {
    left: 0;
  }

  .sidebar-close-btn {
    display: block;
  }
}




