@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ─── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* White + Luxury Gold Theme */
  --burgundy: #FFFFFF;
  --burgundy-mid: #FFFDF8;
  --burgundy-soft: #FFF8E8;
  --burgundy-muted: #F5E6C8;

  --gold: #B8860B;
  --gold-rich: #C99618;
  --gold-light: #E8C15A;
  --gold-pale: #FFF1BE;
  --gold-dark: #8A6508;

  --crimson: #B8860B;
  --cream: #2B2418;
  --cream-dim: #5F5647;
  --blush: #F7E8C5;
  --charcoal: #241C12;
  --white: #FFFFFF;
  --rose-gold: #C99A5A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 28px;
  --r-xl: 60px;

  --shadow-gold: 0 10px 35px rgba(184, 134, 11, 0.18);
  --shadow-deep: 0 12px 48px rgba(77, 56, 18, 0.12);
  --shadow-card: 0 6px 24px rgba(77, 56, 18, 0.10);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--burgundy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ─── CURSOR SPARKLE ─────────────────────────────────────── */
.sparkle-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 10px;
  height: 10px;
  background: var(--gold-rich);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.3s;
  mix-blend-mode: screen;
  box-shadow: 0 0 8px var(--gold-light);
}

.sparkle-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: sparkle-fade 0.9s ease forwards;
}

@keyframes sparkle-fade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -80px) scale(0);
  }
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
/* logo  */
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #d4a017;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 4rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 10, 15, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  height: 73px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, var(--gold-dark), var(--gold-rich), var(--gold-light)); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  /* box-shadow: 0 0 16px rgba(212, 160, 23, 0.4); */
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.nav-logo-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, var(--gold-rich), var(--gold-dark)); */
  z-index: 0;
}

.nav-logo-icon span {
  position: relative;
  z-index: 1;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-rich);
  text-transform: uppercase;
}

.nav-logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240, 192, 64, 0.6);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.7);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-rich);
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  border-radius: var(--r-xl);
  font-size: 0.72rem !important;
  letter-spacing: 0.2em;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--burgundy) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(139, 26, 42, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.12) 0%, transparent 45%),
    var(--burgundy);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-ornament {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(61, 21, 37, 0.9) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 9rem 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-rich));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5vw, 6.1rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-rich);
  display: block;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-pale) 40%, var(--gold-rich) 70%, var(--gold-dark) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 250% center;
  }

  100% {
    background-position: -250% center;
  }
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(253, 246, 236, 0.6);
  max-width: 440px;
  margin-bottom: 2.8rem;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.btn-primary {
  padding: 1rem 2.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-rich));
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(184, 134, 11, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.65s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(212, 160, 23, 0.45);
}

.btn-secondary {
  padding: 1rem 2.4rem;
  border: 1px solid rgba(253, 246, 236, 0.25);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r-xl);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 1.4s 0.6s ease forwards;
}

.hero-jewel-showcase {
  position: relative;
  width: 420px;
  height: 420px;
}

.jewel-orbit {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 11, 0.2);
  position: relative;
  animation: rotateSlow 35s linear infinite;
}

.jewel-orbit::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 11, 0.1);
  animation: rotateSlow 20s linear infinite reverse;
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

.jewel-orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold-rich);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-rich);
  top: -4px;
  left: calc(50% - 4px);
}

.jewel-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jewel-img-container {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(212, 160, 23, 0.25), rgba(61, 21, 37, 0.8));
  border: 2px solid rgba(184, 134, 11, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(184, 134, 11, 0.2), inset 0 0 40px rgba(139, 26, 42, 0.4);
  animation: gemPulse 5s ease-in-out infinite;
}

.jewel-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

.jewel-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.6));
}

@keyframes gemPulse {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(184, 134, 11, 0.2), inset 0 0 40px rgba(139, 26, 42, 0.4);
  }

  50% {
    box-shadow: 0 0 80px rgba(212, 160, 23, 0.35), inset 0 0 60px rgba(139, 26, 42, 0.5);
  }
}

.hero-floating-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.floating-tag {
  padding: 0.4rem 1.1rem;
  background: rgba(61, 21, 37, 0.7);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--r-xl);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  backdrop-filter: blur(8px);
}

.hero-stats {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  background: rgba(42, 14, 24, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--r-lg);
  padding: 1.4rem 2.8rem;
  white-space: nowrap;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s ease forwards;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-rich);
  display: block;
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.45);
}

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-band {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-rich), var(--gold-dark));
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 4rem;
  animation: marquee 22s linear infinite;
}

.marquee-inner span {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}

.marquee-inner span::before {
  content: '◆  ';
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTIONS SHARED ─────────────────────────────────────── */
section {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.64rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-rich));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-rich);
}

.section-sub {
  font-size: 0.9rem;
  color: rgba(253, 246, 236, 0.5);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 3rem;
}

/* ─── COLLECTIONS GRID ───────────────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collections-grid .col-span-2 {
  grid-column: span 2;
}

.collection-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  height: 90vh auto;

  background: var(--burgundy-soft);
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.collection-card.large {
  aspect-ratio: 3/4;
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
  background-size: cover;
  background-position: center;
}

.collection-card:hover .collection-card-bg {
  transform: scale(1.06);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 10, 15, 0.92) 0%, rgba(26, 10, 15, 0.1) 55%);
  transition: var(--transition);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(26, 10, 15, 0.96) 0%, rgba(26, 10, 15, 0.3) 65%);
}

.collection-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.collection-card-tag {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 0.5rem;
}

.collection-card-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.collection-card-count {
  font-size: 0.75rem;
  color: rgba(253, 246, 236, 0.45);
}

.collection-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-rich);
  font-size: 1rem;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: var(--transition);
  background: rgba(26, 10, 15, 0.5);
  backdrop-filter: blur(8px);
}

.collection-card:hover .collection-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* Jewel icon in collection card */
.collection-jewel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: var(--transition);
}

.collection-card:hover .collection-jewel {
  transform: scale(0.9);
  opacity: 0.5;
}

/* ─── PRODUCT GRID ───────────────────────────────────────── */
.products-section {
  background: var(--burgundy-mid);
}

.products-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--burgundy-soft);
  border: 1px solid rgba(184, 134, 11, 0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: rgba(184, 134, 11, 0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.product-img-wrap {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 40% 35%, rgba(61, 21, 37, 0.8), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-real-img {
  transform: scale(1.07);
}

.product-gem-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.5));
}

.product-actions-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  opacity: 0;
  transition: var(--transition);
  background: rgba(26, 10, 15, 0.25);
}

.product-card:hover .product-actions-overlay {
  opacity: 1;
}

.product-card {
  transition: all 0.35s ease;
}

.product-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 10, 15, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 134, 11, 0.5);
  color: var(--gold-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.product-action-btn:hover {
  background: var(--gold-rich);
  color: var(--burgundy);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.28rem 0.8rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-rich));
  color: var(--burgundy);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r-xl);
}

.product-info {
  padding: 1.4rem 1.5rem;
}

.product-category {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.product-material {
  font-size: 0.75rem;
  color: rgba(253, 246, 236, 0.4);
  margin-bottom: 1rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold-rich);
}

.product-price-old {
  font-size: 0.8rem;
  color: rgba(253, 246, 236, 0.28);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* old button css */
/* .add-cart-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.add-cart-btn:hover {
  background: var(--gold-rich);
  color: var(--burgundy);
  border-color: var(--gold-rich);
} */

/* new button css */
/* Add to Cart button */
.add-cart-btn {
  width: 100%;
  margin-top: auto;
  /* pushes button to bottom of product card */
  border-radius: 5px;
  padding: 11px 15px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.add-cart-btn:hover {
  background: var(--gold-rich);
  color: var(--burgundy);
  border-color: var(--gold-rich);
  transform: translateY(-2px);
}

/* Button click effect */
.add-cart-btn:active {
  transform: translateY(0);
}


/* ─── WHY TANISHQ ────────────────────────────────────────── */
.why-section {
  background: linear-gradient(135deg, var(--burgundy-mid), var(--charcoal));
  border-radius: var(--r-lg);
  padding: 5.5rem 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.08);
}

.why-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.06), transparent 65%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.feature-card {
  padding: 2rem;
  background: rgba(26, 10, 15, 0.5);
  border: 1px solid rgba(184, 134, 11, 0.12);
  border-radius: var(--r-md);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(184, 134, 11, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.feature-desc {
  font-size: 0.8rem;
  color: rgba(253, 246, 236, 0.48);
  line-height: 1.75;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-wrapper {
  background: linear-gradient(140deg, var(--burgundy-mid), var(--burgundy-soft));
  border-radius: var(--r-lg);
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.testimonials-wrapper::before {
  content: '\201C';
  position: absolute;
  top: -3rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(184, 134, 11, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-slider {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-stars {
  color: var(--gold-rich);
  font-size: 1rem;
  letter-spacing: 0.35em;
  margin-bottom: 1.8rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 720px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-rich);
}

.testimonial-loc {
  font-size: 0.65rem;
  color: rgba(253, 246, 236, 0.35);
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.t-dot.active {
  background: var(--gold-rich);
  width: 26px;
  border-radius: 3px;
}

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
  background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.07) 0%, transparent 65%), var(--burgundy-mid);
  border-top: 1px solid rgba(184, 134, 11, 0.12);
  border-bottom: 1px solid rgba(184, 134, 11, 0.12);
  text-align: center;
  padding: 5.5rem 4rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-right: none;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(253, 246, 236, 0.28);
}

.newsletter-input:focus {
  border-color: var(--gold-rich);
  background: rgba(184, 134, 11, 0.05);
}

.newsletter-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-rich));
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #0D050A;
  padding: 5rem 4rem 2rem;
  border-top: 1px solid rgba(184, 134, 11, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(253, 246, 236, 0.06);
  margin-bottom: 2rem;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(253, 246, 236, 0.4);
  line-height: 1.9;
  margin-top: 1.2rem;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 246, 236, 0.45);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold-rich);
  color: var(--gold-rich);
  background: rgba(184, 134, 11, 0.1);
}

.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(253, 246, 236, 0.4);
  transition: color 0.3s;
}

.footer-links .add {
  color: rgb(253, 246, 236, 0.5);
}

/*  */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}





.footer-contact a:hover {
  color: #d4af37;
}

.contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  color: #d4af37;
  font-size: 0.85rem;
  background: rgba(212, 175, 55, 0.06);
}


/*  */

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(253, 246, 236, 0.22);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ─── PAGE HERO (Inner pages) ─────────────────────────────── */
.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 75%, rgba(139, 26, 42, 0.22) 0%, transparent 55%),
    linear-gradient(to bottom, var(--burgundy), var(--burgundy-mid));
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.page-hero-breadcrumb {

  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.38);
}

.page-hero-breadcrumb a {
  color: var(--gold-rich);
  transition: opacity 0.3s;
}

.page-hero-breadcrumb a:hover {
  opacity: 0.7;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 520px;
}

.about-img-box {
  width: 78%;
  height: 100%;
  background: linear-gradient(135deg, var(--burgundy-soft), var(--charcoal));
  border-radius: var(--r-md);
  border: 1px solid rgba(184, 134, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  position: relative;
  overflow: hidden;
}

.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(184, 134, 11, 0.1), transparent 60%);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
}

.about-accent-card {
  position: absolute;
  bottom: 2rem;
  right: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-rich));
  color: var(--burgundy);
  padding: 1.6rem 2.2rem;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.35);
}

.about-accent-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
}

.about-accent-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-text-block p {
  font-size: 0.92rem;
  color: rgba(253, 246, 236, 0.62);
  line-height: 1.95;
  margin-bottom: 1.3rem;
}

.signature-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--gold-rich);
  margin-top: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2.2rem;
  background: var(--burgundy-soft);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: var(--r-md);
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(184, 134, 11, 0.3);
  transform: translateY(-4px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--burgundy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.2rem;
  border: 2px solid rgba(184, 134, 11, 0.25);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--burgundy-soft);
  border: 1px solid rgba(184, 134, 11, 0.12);
  border-radius: var(--r-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(184, 134, 11, 0.35);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.88rem;
  color: rgba(253, 246, 236, 0.65);
  line-height: 1.65;
}

.contact-form-card {
  background: var(--burgundy-soft);
  border: 1px solid rgba(184, 134, 11, 0.14);
  border-radius: var(--r-lg);
  padding: 3.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.45);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: var(--r-xs);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-rich);
  background: rgba(184, 134, 11, 0.04);
}

.form-group select option {
  background: var(--burgundy-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 246, 236, 0.22);
}

.submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-rich));
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  transition: var(--transition);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 134, 11, 0.38);
}

/* ─── COLLECTION / FILTER ────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.3rem;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--r-xl);
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold-rich);
  color: var(--gold-light);
  background: rgba(184, 134, 11, 0.1);
}

/* ─── WISHLIST PAGE ──────────────────────────────────────── */
.wishlist-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.wishlist-empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--burgundy-soft);
  border: 1px solid var(--gold-rich);
  border-radius: var(--r-md);
  padding: 1rem 1.6rem;
  color: var(--cream);
  font-size: 0.82rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-gold);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--gold-rich);
}

/* ─── DIVIDER ────────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
  margin: 1.5rem 0;
}

.gold-divider.center {
  margin: 1.5rem auto;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collections-grid .col-span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    transform: none;
    margin-top: 3rem;
  }

  .hero-eyebrow,
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero-content {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: var(--r-md);
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .page-hero {
    padding: 0 1.5rem 3rem;
  }

  .contact-form-card {
    padding: 1.8rem;
  }

  .why-section,
  .testimonials-wrapper,
  .newsletter-section {
    padding: 3.5rem 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid rgba(184, 134, 11, 0.22);
    border-radius: var(--r-xl);
  }

  .newsletter-btn {
    border-radius: var(--r-xl);
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .products-section-inner {
    padding: 4rem 1.5rem;
  }
}




.feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.35rem;
  background: rgba(212, 175, 55, 0.08);
  margin-bottom: 16px;
  transition: 0.35s ease;
}

.feature-card:hover .feature-icon {
  background: #d4af37;
  color: #1a0d0a;
  transform: rotateY(180deg);
}

.btn-secondary i {
  margin-left: 10px;
  transition: 0.3s ease;
}

.btn-secondary:hover i {
  transform: translateX(5px);
}

/* ==========================================
   WHITE + GOLD THEME OVERRIDES
========================================== */

body {
  background: #ffffff;
  color: #2B2418;
}

/* Navbar */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(184, 134, 11, 0.22);
  box-shadow: 0 4px 25px rgba(77, 56, 18, 0.08);
}

.nav-links a {
  color: rgba(43, 36, 24, 0.78);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-rich);
}

.hamburger span {
  background: #2B2418;
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(232, 193, 90, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 45%),
    #FFFFFF;
}

.hero-ornament {
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 241, 190, 0.9) 0%, transparent 70%);
}

.hero-desc,
.section-sub {
  color: rgba(43, 36, 24, 0.68);
}

.btn-secondary {
  border-color: rgba(184, 134, 11, 0.45);
  color: #2B2418;
}

.btn-secondary:hover {
  color: var(--gold-dark);
  border-color: var(--gold-rich);
}

/* Hero image and tags */
.jewel-img-container {
  background: radial-gradient(circle at 35% 35%, rgba(232, 193, 90, 0.40), #FFF8E8);
  box-shadow: 0 0 50px rgba(184, 134, 11, 0.18);
}

.floating-tag,
.hero-stats {
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-dark);
  border-color: rgba(184, 134, 11, 0.28);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.10);
}

.stat-label {
  color: rgba(43, 36, 24, 0.55);
}

/* Cards and product section */
.products-section {
  background: #FFFDF8;
}

.product-card,
.collection-card,
.team-card,
.contact-info-card,
.contact-form-card,
.feature-card {
  background: #FFFFFF;
  border-color: rgba(184, 134, 11, 0.18);
  box-shadow: 0 5px 20px rgba(77, 56, 18, 0.06);
}

.product-img-wrap {
  background: radial-gradient(circle at 40% 35%, #FFF8E8, #FFFDF8);
}

.product-name,
.feature-name,
.team-name {
  color: #2B2418;
}

.product-material,
.feature-desc,
.contact-info-value,
.about-text-block p {
  color: rgba(43, 36, 24, 0.62);
}

.product-price-old {
  color: rgba(43, 36, 24, 0.38);
}

/* Collection image overlay */
.collection-card-overlay {
  background: linear-gradient(to top, rgba(43, 36, 24, 0.82) 0%, rgba(43, 36, 24, 0.04) 55%);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(43, 36, 24, 0.90) 0%, rgba(43, 36, 24, 0.20) 65%);
}

/* card page */
.cart-page {
  padding: 140px 7% 80px;
  min-height: 100vh;
  background: #fffaf4;
}

.cart-title {
  font-size: 38px;
  color: #4a1c1c;
  margin-bottom: 30px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}

.cart-items {
  background: #fff;
  border: 1px solid #eadfce;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee3d7;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-product-name {
  margin: 0 0 8px;
  color: #4a1c1c;
  font-size: 18px;
}

.cart-product-price {
  color: #b8860b;
  font-weight: 700;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #d4a017;
  background: transparent;
  color: #b8860b;
  font-size: 18px;
  cursor: pointer;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: #a02020;
  padding: 0;
  margin-top: 12px;
  cursor: pointer;
}

.item-total {
  font-weight: 700;
  color: #4a1c1c;
  font-size: 17px;
}

.cart-summary {
  height: fit-content;
  padding: 28px;
  background: #4a1c1c;
  color: #fff;
}

.cart-summary h2 {
  margin-top: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  color: #f4dfb7;
}

.summary-total {
  border-top: 1px solid rgba(255, 255, 255, .35);
  margin-top: 12px;
  padding-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.checkout-btn {
  width: 100%;
  margin-top: 24px;
  padding: 15px;
  border: none;
  background: #d4a017;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.empty-cart {
  padding: 70px 20px;
  background: #fff;
  border: 1px solid #eadfce;
  text-align: center;
}

.continue-shopping {
  display: inline-block;
  margin-top: 25px;
  color: #b8860b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cart-page {
    padding: 110px 15px 50px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 75px 1fr;
    gap: 14px;
  }

  .cart-item img {
    width: 75px;
    height: 75px;
  }

  .item-total {
    grid-column: 2;
  }
}


.cart-menu {
  position: relative;
}

.cart-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cart-menu i {
  font-size: 20px;
}

.cart-count {
  position: absolute;
  top: -9px;
  right: -11px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}


/* Why and testimonials */
.why-section,
.testimonials-wrapper {
  background: linear-gradient(135deg, #FFFDF8, #FFF3D6);
  border-color: rgba(184, 134, 11, 0.18);
}

.testimonial-text {
  color: #2B2418;
}

.testimonial-loc {
  color: rgba(43, 36, 24, 0.52);
}

/* Newsletter */
.newsletter-section {
  background: radial-gradient(ellipse at center, rgba(232, 193, 90, 0.24) 0%, transparent 65%), #FFFDF8;
  border-color: rgba(184, 134, 11, 0.20);
}

.newsletter-input,
.form-group input,
.form-group textarea,
.form-group select {
  background: #FFFFFF;
  color: #2B2418;
  border-color: rgba(184, 134, 11, 0.30);
}

.newsletter-input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(43, 36, 24, 0.42);
}

.form-group label {
  color: rgba(43, 36, 24, 0.68);
}

.form-group select option {
  background: #FFFFFF;
  color: #2B2418;
}

/* Inner page hero */
.page-hero {
  background:
    radial-gradient(ellipse at 15% 75%, rgba(232, 193, 90, 0.30) 0%, transparent 55%),
    linear-gradient(to bottom, #FFFFFF, #FFF8E8);
}

.page-hero-breadcrumb {
  color: rgba(43, 36, 24, 0.58);
}

/* Footer */
.footer {
  background: #2B2418;
  border-top: 2px solid var(--gold-rich);
}

.footer-brand-desc,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.48);
}

/* Toast */
.toast {
  background: #FFFFFF;
  color: #2B2418;
}

/* Mobile navbar */
@media (max-width: 768px) {
  .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(184, 134, 11, 0.20);
  }
}


@media (max-width: 768px) {
  .cart-menu {
    display: block !important;
    position: relative;
  }

  .cart-menu a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--gold-rich);
    font-size: 20px;
    text-decoration: none;
  }

  .cart-menu i {
    display: block !important;
    visibility: visible !important;
  }

  .cart-count {
    display: flex !important;
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    line-height: 1;
    background: var(--gold, #c9a227);
    color: #fff;
  }
}



.mobile-cart {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--gold-rich);
  font-size: 21px;
  text-decoration: none;
}

.mobile-cart .cart-count {
  position: absolute;
  top: -9px;
  right: -11px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .mobile-cart {
    display: inline-flex;
    margin-left: auto;
    margin-right: 16px;
  }

  .hamburger {
    display: flex;
  }

  /* Cart inside dropdown menu is not needed */
  .nav-links .cart-menu {
    display: none !important;
  }
}