@import url('/assets/fonts.css');

:root {
  --navy: #FFFFFF;
  --gold: #C5A368;
  --bg-color: #040712;
  --white: #0A0E1A;
  --text-main: #E2E8F0;
  --text-light: #9CA3AF;
  --border-color: rgba(255, 255, 255, 0.08);
  --light-beige: #0A0E1A;
}

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

html, body {
  max-width: 100vw;
  overflow-x: clip; /* Prevent horizontal scrolling gaps without breaking sticky positioning */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color) !important;
  color: var(--text-main) !important;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none; /* Prevent long-press menu on mobile */
  user-select: none; /* Prevent text selection */
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  color: var(--navy) !important;
  font-weight: 400;
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background-color: rgba(248, 246, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  width: 100%;
  box-sizing: border-box;
}

.logo-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-box {
  background: url('/assets/logo.jpg?v=1') no-repeat center center;
  background-size: cover;
  color: transparent !important; /* Hide original white text node */
  width: 48px;
  height: 48px;
  border-radius: 10px; /* Match the beautifully rounded corners of the image */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  padding: 0 !important;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-nav-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  font-weight: 500;
}

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

.mobile-menu-header {
  display: none;
}

.header-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  cursor: pointer;
  margin-left: 20px;
}

.hamburger svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
}


.icon-bag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #1a2a4a;
}

/* ── Featured Spotlight Banner ─────────────────────────────────── */
.featured-banner-wrap {
  position: relative;
  margin: 0 60px 0 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.featured-banner {
  position: relative;
  width: 100%;
  height: 240px;
  background: #0f1c34;
  border-radius: 16px;
  overflow: hidden;
}

/* Each slide */
.fbs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

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

/* Banner background image — same approach as shop carousel */
.fbs-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  z-index: 1;
}

/* Dark gradient overlay — Netflix-style multi-stop, matching shop carousel */
.fbs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      #000000 0%,
      #000000 20%,
      rgba(0,0,0,0.85) 38%,
      rgba(0,0,0,0.5) 55%,
      rgba(0,0,0,0.2) 70%,
      rgba(0,0,0,0.05) 85%,
      transparent 100%
    );
  z-index: 2;
  border-radius: inherit;
}

.fbs-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 36px;
  gap: 8px;
  z-index: 3;
}

.fbs-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #C09858;
  text-transform: uppercase;
}

.fbs-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.fbs-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.fbs-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  flex-wrap: wrap;
}

.fbs-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  border: none;
  white-space: nowrap;
}

.fbs-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
  flex-shrink: 0;
}

.fbs-btn-preview {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.fbs-btn-preview:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.fbs-btn-send {
  background: #C09858;
  color: #ffffff;
  border: 1px solid #C09858;
}

.fbs-btn-send:hover {
  background: #a87d42;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,152,88,0.4);
}

.fbs-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.fbs-duration svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.55);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Dots */
.featured-banner-dots {
  position: absolute;
  bottom: 14px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.fbs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.fbs-dot.active {
  background: #ffffff;
  transform: scale(1.45);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .featured-banner-wrap {
    margin: 0 20px;
  }
  .featured-banner {
    height: 220px;
  }
  .fbs-content {
    width: 70%;
    padding: 20px 22px;
  }
  .fbs-title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .featured-banner-wrap {
    margin: 0 16px;
    border-radius: 12px;
  }
  .featured-banner {
    height: 200px;
    border-radius: 12px;
  }
  .fbs-content {
    width: 85%;
    padding: 16px 18px;
    gap: 6px;
  }
  .fbs-title {
    font-size: 17px;
  }
  .fbs-desc {
    display: none;
  }
  .fbs-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Hero-mode banner overrides */
.featured-banner-wrap {
  position: relative;
  z-index: 1; /* Under main-content overlap to resolve flicker */
}

.featured-banner-hero {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.featured-banner-hero .featured-banner {
  height: 600px;
  border-radius: 0;
}

.featured-banner-hero .fbs-title {
  font-size: 42px;
}

.featured-banner-hero .fbs-desc {
  font-size: 15px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

@media (min-width: 901px) {
  .featured-banner-hero .fbs-content {
    left: 45%;
    width: 55%;
    padding: 40px 80px;
    gap: 14px;
  }
}

.featured-banner-hero .fbs-btn {
  padding: 12px 24px;
  font-size: 14px;
}

.featured-banner-hero .featured-banner-dots {
  bottom: 42px; /* Moved up above the overlapping -30px region of main-content */
  right: 32px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 20px;
  gap: 8px;
}

.featured-banner-hero .fbs-dot {
  width: 9px;
  height: 9px;
}

/* Placeholder keeps space while banner JS loads */
.featured-banner-placeholder {
  height: 600px;
  background: #0f1c34;
  display: none;
}

@media (max-width: 900px) {
  .featured-banner-hero .featured-banner {
    height: 420px;
  }
  .featured-banner-hero .fbs-content {
    width: 65%;
    padding: 30px 40px;
  }
  .featured-banner-hero .fbs-title {
    font-size: 30px;
  }
  .featured-banner-placeholder {
    height: 420px;
  }
  .featured-banner-hero .featured-banner-dots {
    bottom: 38px; /* Safe distance above overlap */
    right: 24px;
  }
}

@media (max-width: 600px) {
  .featured-banner-hero .featured-banner {
    height: 320px;
    border-radius: 0;
  }
  .featured-banner-hero .fbs-content {
    width: 80%;
    padding: 20px 24px;
  }
  .featured-banner-hero .fbs-title {
    font-size: 22px;
  }
  .featured-banner-placeholder {
    height: 320px;
  }
  .featured-banner-hero .featured-banner-dots {
    bottom: 34px; /* Safe distance above overlap */
    right: 20px;
  }
}

/* Persistent Brand Overlay for Desktop Banner */
.fbs-brand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
  z-index: 10;
  background: rgba(15, 28, 52, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  box-sizing: border-box;
}

.fbs-brand-overlay .ki-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.fbs-brand-overlay .ki-headline {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left align for overlay card */
}

.fbs-brand-overlay .ki-line {
  display: block;
}

.fbs-brand-overlay .ki-cycler-wrap {
  display: block;
  height: 1.15em;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 4px 0;
}

.fbs-brand-overlay .ki-word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: left; /* Left align for overlay card */
  font-style: italic;
  color: var(--gold);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}

.fbs-brand-overlay .ki-word.active {
  transform: translateY(0);
  opacity: 1;
}

.fbs-brand-overlay .ki-word.ki-exit {
  transform: translateY(-110%);
  opacity: 0;
}

.fbs-brand-overlay .ki-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* Hide overlay on screens <= 900px, show original inline intro */
@media (max-width: 900px) {
  .fbs-brand-overlay {
    display: none !important;
  }
  .kinetic-intro {
    display: block !important;
  }
}

/* Show overlay on screens > 900px, hide original inline intro */
@media (min-width: 901px) {
  .fbs-brand-overlay {
    display: flex;
  }
  .kinetic-intro {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px 50px 100px;
  background: linear-gradient(to right, #F8F6F2 50%, #ECE9E1 100%);
}

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

.hero-tag {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  font-weight: 500;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.hero h1::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  margin-top: 24px;
}

.hero p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 800px;
}

.hero-image-container img {
  width: 100%;
  max-width: 800px;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Main Content area */
.main-content {
  background-color: var(--white);
  padding: 40px 60px 80px 60px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: -30px;
  position: relative;
  z-index: 2; /* Always strictly on top of banner to completely resolve flicker */
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* ── Kinetic Intro ─────────────────────────────────────────────── */
.kinetic-intro {
  position: relative;
  text-align: center;
  padding: 72px 40px 56px;
  overflow: hidden;
}

/* Subtle radial gold glow behind the text */
.ki-bg-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(ellipse, rgba(192,152,88,0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.ki-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.ki-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: ki-fade-up 0.7s 0.1s ease forwards;
}

/* Main headline — 3 stacked lines */
.ki-headline {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ki-line {
  display: block;
  opacity: 0;
  animation: ki-fade-up 0.7s ease forwards;
}
.ki-line-1 { animation-delay: 0.25s; }
.ki-line-3 { animation-delay: 0.45s; }

/* Cycling animated word */
.ki-cycler-wrap {
  display: block;
  height: 1.15em;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 8px 0;
}

.ki-word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  font-style: italic;
  color: var(--gold);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}

.ki-word.active {
  transform: translateY(0);
  opacity: 1;
}

.ki-word.ki-exit {
  transform: translateY(-110%);
  opacity: 0;
}

/* Sub paragraph */
.ki-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: ki-fade-up 0.7s 0.55s ease forwards;
}

/* Feature badge row */
.ki-features {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ki-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--light-beige);
  border: 1px solid var(--border-color);
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0;
  animation: ki-fade-up 0.6s ease forwards;
  animation-delay: calc(0.7s + var(--d, 0s));
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: default;
}

.ki-feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  background: var(--white);
  border-color: var(--gold);
}

.ki-feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a84b, #a87d42);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ki-feat-icon svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes ki-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .kinetic-intro { padding: 56px 32px 44px; }
  .ki-headline { font-size: 46px; }
}
@media (max-width: 600px) {
  .kinetic-intro { padding: 44px 20px 36px; }
  .ki-headline { font-size: 34px; }
  .ki-desc { font-size: 15px; }
  .ki-feat { font-size: 12px; padding: 10px 16px; }
  .ki-cycler-wrap { height: 1.2em; }
}

/* Filters */
.filters {
  position: sticky;
  top: var(--header-height, 88px); /* Dynamic height based on header */
  z-index: 99;
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  margin-left: -60px;
  margin-right: -60px;
  padding-left: 60px;
  padding-right: 60px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 20px;
  color: var(--text-main);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.filter-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* Card */
.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(197, 163, 104, 0.25), 0 0 15px rgba(197, 163, 104, 0.1);
  border-color: rgba(197, 163, 104, 0.4) !important;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Default 1:1 Aspect Ratio */
  overflow: hidden;
  background: #000;
}

.card-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image-wrapper .bg-blur {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(2px) brightness(0.85);
  z-index: 1;
}

.card-image-wrapper .fg-clear {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 5 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.card-image-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15) !important;
  background: #C5A368 !important;
  border-color: #C5A368 !important;
  box-shadow: 0 6px 20px rgba(197, 163, 104, 0.5) !important;
}

.play-icon {
  width: 0 !important; 
  height: 0 !important; 
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 13px solid #FFFFFF !important;
  margin-left: 5px !important;
  transition: border-left-color 0.3s ease !important;
}

.card-image-wrapper:hover .play-icon {
  border-left-color: #040712 !important;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-tag {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 0;
}

.card-duration {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.card-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
  margin-top: auto;
}

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

.btn-card {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-preview {
  background-color: #FFFFFF !important;
  color: #0A0E1A !important;
  border: none;
}

.btn-preview:hover {
  background-color: #1a3060 !important;
  color: #FFFFFF !important;
}

.btn-preview-icon {
  width: 0; 
  height: 0; 
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--gold);
}

.btn-share {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-share:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-personalize {
  background-color: transparent;
  color: var(--gold);
  border: none;
}

.btn-personalize svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Info Column (4th column, 2nd row) */
.info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.feature-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

.help-box {
  background-color: var(--light-beige);
  padding: 24px;
  border-radius: 8px;
  margin-top: auto;
}

.help-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.help-box p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.help-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.help-link:hover {
  text-decoration: underline;
}

/* Premium Global Footer Styles */
.global-footer {
  background: rgba(4, 7, 18, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(197, 163, 104, 0.15); /* Sleek gold border */
  color: var(--text-main);
  padding: 80px 0 40px 0;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 10;
}

.global-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.global-footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 2fr 2fr;
  gap: 48px;
  margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-badge {
  background: url('/assets/logo.jpg?v=1') no-repeat center center;
  background-size: cover;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 15px rgba(197, 163, 104, 0.2);
  flex-shrink: 0;
}

.footer-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-logo-subtitle {
  font-size: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Social icons with micro-animations */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-circle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.social-circle:hover {
  background: rgba(197, 163, 104, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(197, 163, 104, 0.2);
}

.social-circle:hover svg {
  transform: scale(1.1);
}

/* Column General Styling */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF !important;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 10px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--gold);
  border-radius: 1px;
}

/* Quick Links Section */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-item a::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.footer-link-item a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-link-item a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Trust Pillar Styles */
.footer-trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-trust-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.footer-trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-trust-title {
  font-size: 13.5px;
  font-weight: 500;
  color: #FFFFFF;
}

.footer-trust-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* Subscription Column */
.footer-newsletter-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-light);
}

.footer-subscribe-form {
  display: flex;
  margin-top: 8px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}

.footer-subscribe-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(197, 163, 104, 0.1);
}

.footer-subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  width: 100%;
}

.footer-subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-subscribe-btn {
  background: var(--gold);
  color: #040712;
  border: none;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-subscribe-btn:hover {
  background: #FFFFFF;
  color: #040712;
}

.newsletter-success {
  font-size: 12px;
  color: #2ec4b6;
  margin-top: 4px;
  display: none;
}

/* Bottom Bar */
.global-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-light);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-item a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-item a:hover {
  color: var(--gold);
}

/* Floating Back to Top Button */
.back-to-top-btn {
  position: absolute;
  right: 48px;
  bottom: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover {
  background: var(--gold);
  color: #040712;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(197, 163, 104, 0.3);
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

/* Responsive Footer styling */
@media (max-width: 1024px) {
  .global-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .global-footer {
    padding: 60px 0 30px 0;
  }
  
  .global-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  
  .global-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 24px;
  }
  
  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .back-to-top-btn {
    position: static;
    margin: 20px auto 0 auto;
  }
}

/* 3D Player Styles (Shared) */
.card-3d-scene {
  width: 320px;
  height: 440px;
  position: relative;
  transform-style: preserve-3d;
}

.card-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  backface-visibility: hidden;
}

.card-inside-panel {
  background: #fff;
  z-index: 1;
  overflow: hidden;
}

.card-front-panel {
  z-index: 3;
  transform-origin: left center;
  transition: transform ease-in-out;
  border-left: 2px solid rgba(0,0,0,0.1);
}

.card-back-panel {
  z-index: 2;
  transform-origin: right center;
  transform: rotateY(180deg);
  transition: transform ease-in-out;
  border-right: 2px solid rgba(0,0,0,0.1);
}

.card-front-panel.is-open {
  transform: rotateY(-135deg);
}

.card-back-panel.is-closed {
  transform: rotateY(0deg);
  z-index: 4;
}

/* Storefront Modal Viewer */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 28, 52, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.modal-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  color: #FFFFFF !important;
  font-size: 32px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  z-index: 2001 !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.modal-close:hover {
  color: #040712 !important;
  background: #C5A368 !important;
  border-color: #C5A368 !important;
  transform: scale(1.1) rotate(90deg) !important;
  box-shadow: 0 6px 20px rgba(197, 163, 104, 0.4) !important;
}

/* High contrast dark navy close button when personalization note is active */
.extra-page-active .modal-close,
#preview-modal.extra-page-active .modal-close {
  color: #0A0E1A !important;
  background: rgba(10, 14, 26, 0.1) !important;
  border-color: rgba(10, 14, 26, 0.2) !important;
  box-shadow: none !important;
}

.extra-page-active .modal-close:hover,
#preview-modal.extra-page-active .modal-close:hover {
  color: #FFFFFF !important;
  background: #0A0E1A !important;
  border-color: #0A0E1A !important;
  box-shadow: 0 4px 15px rgba(10, 14, 26, 0.3) !important;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.gold-play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DFBE84 0%, #B88A44 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3), inset 0 2px 5px rgba(255,255,255,0.4);
  margin-bottom: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gold-play-button svg {
  width: 32px;
  height: 32px;
  fill: #040712 !important;
  margin-left: 6px;
}

.play-overlay:hover .gold-play-button {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4), inset 0 2px 5px rgba(255,255,255,0.4);
}

.play-text {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Landing Grid — exactly 4 columns */
.landing-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

/* ============================================
   Home Page Featured Cards — Mirror Shop Grid Exactly
   ============================================ */

@media (min-width: 601px) {
  /* Card container: no border, transparent bg, no shadow */
  #product-grid .card {
    flex-direction: column !important;
    min-height: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
  }

  /* Square 1:1 image wrapper with rounded corners */
  #product-grid .card-image-wrapper {
    width: 100% !important;
    padding-top: 100% !important;
    height: 0 !important;
    border-right: none !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 10px;
  }

  /* Duration badge overlaid at bottom-right of image */
  #product-grid .card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
    display: block;
  }

  /* Card content: flush, no padding on sides from wrapper */
  #product-grid .card-content {
    padding: 0 !important;
    background: transparent;
  }

  /* Title: 13px Playfair Display — matches shop exactly */
  #product-grid .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 2px;
    white-space: normal;
    font-weight: 600;
  }

  /* Category tag: small, uppercase, below title */
  #product-grid .card-tag {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
  }

  /* Buttons: full-width stacked layout matching shop card screenshot */
  #product-grid .card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  #product-grid .btn-card {
    width: 100%;
    padding: 9px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  #product-grid .btn-preview {
    background: #FFFFFF !important;
    color: #0A0E1A !important;
    border: none;
  }

  #product-grid .btn-preview:hover {
    background: #1a3060 !important;
    color: #FFFFFF !important;
  }

  #product-grid .btn-share {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
  }

  #product-grid .btn-share:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #FFFFFF !important;
  }

  #product-grid .btn-personalize {
    background: var(--gold) !important;
    color: #0A0E1A !important;
    border: none;
  }

  #product-grid .btn-personalize:hover {
    background: #b8903a !important;
    color: #0A0E1A !important;
  }
}



/* View More Button */
.view-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.view-more-btn:hover {
  background: #1a2a4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,28,52,0.15);
}

/* ---- Landing Page Sections ---- */
.landing-section {
  margin-bottom: 60px;
}

.landing-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.landing-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 8px;
}

.landing-section-header p {
  color: var(--text-light);
  font-size: 15px;
}

/* How It Works */
.how-it-works-section {
  padding-top: 60px;
  border-top: 1px solid var(--border-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.step-icon svg {
  width: 100%;
  height: 100%;
  max-width: 56px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  display: block;
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Browse by Occasion */
.occasions-section {
  padding-top: 60px;
  border-top: 1px solid var(--border-color);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.occasion-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.occasion-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  border-color: var(--accent, var(--gold));
}

.occasion-emoji {
  font-size: 36px;
  line-height: 1;
}

/* Why KerMor Cards */
.why-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  display: block;
}

.why-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Banner */
.landing-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d4f 100%);
  padding: 60px 40px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.landing-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
}

.landing-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 28px;
}

.landing-cta .view-more-btn {
  background: var(--gold);
  color: var(--white);
}

.landing-cta .view-more-btn:hover {
  background: #b08840;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
  .main-layout {
    flex-direction: column;
  }
  .sidebar-area {
    width: 100% !important;
    margin-top: 40px;
  }
  .info-column {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature-item, .help-box {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 900px) {
  .global-header {
    padding: 12px 16px;
    position: relative;
  }
  .logo-title {
    font-size: 18px;
    white-space: nowrap;
  }
  .logo-subtitle {
    display: none;
  }
  .header-nav-container {
    gap: 12px;
  }
  .logo-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .header-actions {
    gap: 10px;
    flex-shrink: 0;
  }
  .icon-bag {
    display: none;
  }
  .btn-primary {
    padding: 6px 14px;
    font-size: 13px;
  }
  .hamburger {
    display: block;
    flex-shrink: 0;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 10000;
  }
  .nav-links.mobile-active {
    display: flex !important;
  }
  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    font-size: 16px;
    font-weight: 500;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .mobile-menu-header {
    display: flex !important;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 16px;
  }
  .close-menu-btn {
    cursor: pointer;
    color: var(--navy);
  }
  .filters {
    padding: 12px 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .main-content {
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero {
    flex-direction: column;
    padding: 40px;
  }
  .hero-content {
    margin-bottom: 40px;
    max-width: 100%;
  }
  .footer-trust {
    display: none;
  }
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 30px 20px;
  }
  .footer-logo-section {
    flex-direction: column;
    gap: 8px;
  }
  .footer-logo {
    width: 40px;
    height: 40px;
  }
  .footer-text p {
    font-size: 13px;
  }
  .footer-copy {
    font-size: 11px;
  }
  .landing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-cta {
    padding: 40px 20px;
  }
  .landing-cta h2 {
    font-size: 24px;
  }

  /* Admin & Dashboard Mobile Styling */
  body .admin-container {
    padding: 20px 15px;
  }
  
  body .admin-layout {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  
  body .admin-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 8px;
    padding: 5px 0;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    background: white;
    border: 1px solid #E2DDD2;
  }
  
  body .admin-sidebar::-webkit-scrollbar {
    display: none;
  }
  
  body .admin-sidebar a {
    display: inline-block;
    padding: 12px 20px;
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  body .admin-sidebar a.active {
    background: transparent;
    border-bottom-color: var(--gold);
    border-left-color: transparent;
    color: var(--navy);
  }
  
  body .admin-header h1 {
    font-size: 30px;
  }
  
  body .status-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
    padding: 15px;
  }
  
  body .stat-cards {
    flex-direction: column;
    gap: 15px;
  }
  
  body .stat-card {
    padding: 20px;
  }
  
  body .dashboard-card {
    padding: 20px;
  }
  
  body #login-view {
    margin: 40px auto;
    padding: 30px 20px;
    max-width: 90%;
  }

  body .product-row {
    flex-direction: row !important;
    align-items: stretch !important;
    text-align: left !important;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: white;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(15, 28, 52, 0.03);
    gap: 16px;
    position: relative;
    box-sizing: border-box;
  }
  
  body .product-thumb {
    width: 100px !important;
    height: 133px !important;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  body .product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  body .product-info h3 {
    font-size: 15px !important;
    margin: 0 0 6px 0 !important;
    display: flex;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    width: 100%;
  }

  body .product-info h3 span.product-name-price {
    font-size: 15px !important;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
  }

  body .product-info h3 span.product-name-price span.product-price {
    font-size: 13px !important;
    font-weight: 500;
    color: var(--gold);
    margin-left: 6px;
  }

  body .product-info .product-meta-sent {
    font-size: 11px !important;
    font-weight: 600;
    color: var(--text-light);
    background: #F1EFE9;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  body .product-info .product-date {
    font-size: 11px !important;
    color: var(--text-light);
    margin-bottom: 6px !important;
    opacity: 0.9;
  }

  body .product-info .sender-badge {
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 8px;
    font-size: 10px;
    letter-spacing: 0.2px;
  }
  body .product-info .sender-badge.from-me {
    background: #EBF4FF;
    color: #2563eb;
  }
  body .product-info .sender-badge.from-us {
    background: #F0F4FF;
    color: #4f46e5;
  }

  body .product-info .product-desc {
    font-size: 12px !important;
    color: #555;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body .product-info .product-status {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px !important;
    margin-top: auto;
  }

  body .product-info .media-ready-lbl {
    color: #777;
    font-weight: normal;
  }

  body .product-info .optimized-badge {
    background-color: #1a8b5e;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
  }

  body .product-info .btn-optimize {
    border: 1px solid #1a8b5e;
    color: #1a8b5e;
    background: transparent;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 4px;
    cursor: pointer;
  }

  body .product-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    justify-content: center !important;
    min-width: 70px !important;
    flex-shrink: 0 !important;
    position: static !important;
    width: auto !important;
  }

  body .product-actions button {
    width: 100% !important;
    padding: 6px 0 !important;
    font-size: 11px !important;
    border-radius: 6px;
    font-weight: 600;
  }

  body .product-actions button.btn-delete {
    border-color: red !important;
    color: red !important;
  }
  
  body .wizard-container {
    flex-direction: column;
    gap: 20px;
  }

  /* Stats Tables as Cards on Mobile */
  body .stats-table,
  body .stats-table thead,
  body .stats-table tbody,
  body .stats-table th,
  body .stats-table td,
  body .stats-table tr {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  body .stats-table thead {
    display: none;
  }
  
  body .stats-table tr {
    background: #ffffff;
    border: 1px solid #E2DDD2;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  body .stats-table tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(22, 35, 60, 0.05);
  }
  
  body .stats-table td {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    text-align: right;
  }
  
  body .stats-table td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  body .stats-table td:first-child {
    padding-top: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
  }

  /* Table specific mobile cards (Horizontal styling) */
  body #stats-table-body tr,
  body #video-analytics-table-body tr {
    position: relative !important;
    padding: 16px 16px 16px 106px !important;
    min-height: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: #ffffff;
    border: 1px solid #E2DDD2;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    box-sizing: border-box;
  }

  body #stats-table-body tr:hover,
  body #video-analytics-table-body tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(22, 35, 60, 0.05);
  }

  body #stats-table-body tr .product-thumb,
  body #video-analytics-table-body tr .product-thumb {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    width: 74px !important;
    height: 108px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    margin-right: 0 !important;
    border: 1px solid #eee;
  }

  body #stats-table-body td:nth-child(1),
  body #video-analytics-table-body td:nth-child(1) {
    display: block !important;
    width: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--navy) !important;
    text-align: left !important;
  }

  body #stats-table-body td:nth-child(2):before { content: "Category"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #stats-table-body td:nth-child(3):before { content: "Price"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #stats-table-body td:nth-child(4):before { content: "Times Sent"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }

  body #video-analytics-table-body td:nth-child(2):before { content: "Category"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #video-analytics-table-body td:nth-child(3):before { content: "Views"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #video-analytics-table-body td:nth-child(4):before { content: "Avg Watch %"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #video-analytics-table-body td:nth-child(5):before { content: "Last Viewed"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }

  body #table-traffic-pages td:nth-child(1):before { content: "Page URL"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #table-traffic-pages td:nth-child(2):before { content: "Views"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }

  body #table-traffic-countries td:nth-child(1):before { content: "Country"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #table-traffic-countries td:nth-child(2):before { content: "Views"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }

  body #table-traffic-recent td:nth-child(1):before { content: "Time"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #table-traffic-recent td:nth-child(2):before { content: "Location"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #table-traffic-recent td:nth-child(3):before { content: "Page URL"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #table-traffic-recent td:nth-child(4):before { content: "Referrer"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }

  body #reviews-table-body td:nth-child(1):before { content: "Date"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #reviews-table-body td:nth-child(2):before { content: "Name"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #reviews-table-body td:nth-child(3):before { content: "Rating"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #reviews-table-body td:nth-child(4):before { content: "Comment"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #reviews-table-body td:nth-child(5):before { content: "Status"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #reviews-table-body td:nth-child(6) { flex-direction: row; justify-content: flex-end; gap: 8px; }
  body #reviews-table-body td:nth-child(6):before { content: "Actions"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }

  body #emails-table-body td:nth-child(1):before { content: "Date Sent"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #emails-table-body td:nth-child(2):before { content: "Sender Email"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #emails-table-body td:nth-child(3):before { content: "Recipient Name"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #emails-table-body td:nth-child(4):before { content: "Product ID"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #emails-table-body td:nth-child(5):before { content: "Views"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #emails-table-body td:nth-child(6):before { content: "Avg Watch %"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
  body #emails-table-body td:nth-child(7):before { content: "Last Watched"; font-weight: 600; color: #777; font-size: 12px; text-transform: uppercase; }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .landing-grid {
    grid-template-columns: 1fr !important;
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Compact Horizontal Mobile Cards */
  .card {
    flex-direction: row;
    min-height: 140px;
    align-items: stretch;
  }
  .card-image-wrapper {
    width: 120px;
    padding-top: 0;
    height: auto;
    flex-shrink: 0;
    border-right: 1px solid var(--border-color);
  }
  .card-content {
    padding: 12px 16px;
    flex: 1;
    min-width: 0; /* Prevents text from blowing out the flex container */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .card-meta {
    margin-bottom: 4px;
  }
  .card-title {
    font-size: 16px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-desc {
    display: none; /* Trim details on mobile */
  }
  .card-price {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .card-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 8px !important;
  }
  .card-actions .btn-preview,
  .card-actions .btn-share,
  .card-actions .btn-view-product {
    display: none !important; /* Trim extra buttons */
  }
  .card-actions .btn-info-details {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f4f2ee !important;
    color: #0A0E1A !important;
    border: 1px solid #E2DDD2 !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    flex: 1 !important;
    text-align: center;
    height: auto !important;
    font-family: 'Inter', sans-serif !important;
  }
  .card-actions .btn-personalize {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(192, 152, 88, 0.1) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(192, 152, 88, 0.2) !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    flex: 1 !important;
    text-align: center;
    width: auto !important;
    height: auto !important;
    font-family: 'Inter', sans-serif !important;
  }
}

/* Share Modal Styles */
.share-content {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1000;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.social-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 35, 60, 0.15);
}

/* Card Favorite Button */
.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #040712 !important;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  z-index: 4;
}

.favorite-btn:hover {
  transform: scale(1.1);
  background: var(--white);
}

.favorite-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: fill 0.2s, color 0.2s;
}

.favorite-btn.active {
  color: #e24c4c;
}

.favorite-btn.active svg {
  fill: #e24c4c;
  stroke: #e24c4c;
  animation: heart-pop 0.3s ease-out;
}

@keyframes heart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast-message {
  background: rgba(18, 30, 49, 0.95);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--gold);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.25);
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Tooltip */
.card-desc-container {
  position: relative;
}
.custom-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(30, 30, 30, 0.95);
  color: #fff;
  text-align: left;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 100;
  width: max-content;
  max-width: 250px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  margin-bottom: 8px;
}
.custom-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(30, 30, 30, 0.95) transparent transparent transparent;
}
.card-desc-container:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
}
.btn-info-details {
  display: none !important;
}

/* ==========================================================================
   HOMEPAGE REDESIGN — LUMINOUS KEEPSAKES OVERRIDES & CORE SYSTEMS
   ========================================================================== */

:root {
  --navy-950: #07111f;
  --navy-900: #0b1729;
  --navy-800: #10223d;
  --gold-500: #c89b4f;
  --gold-400: #e0b86c;
  --cream-100: #f7f0e7;
  --cream-50: #fbf7f0;
  --ink: #172033;
  --muted: #6c7380;
}

/* Dark mode global variables on homepage */
.homepage-redesign {
  background-color: var(--navy-950);
  color: var(--cream-50);
  overflow-x: hidden;
}

/* 1. Header / Navigation in dark mode */
.homepage-redesign .global-header {
  background-color: rgba(7, 17, 31, 0.75) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(224, 184, 108, 0.08) !important;
  transition: all 0.3s ease;
}

.homepage-redesign .logo-title {
  color: var(--cream-50) !important;
}

.homepage-redesign .logo-subtitle {
  color: var(--gold-400) !important;
}

.homepage-redesign .nav-links a {
  color: rgba(251, 247, 240, 0.75) !important;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.homepage-redesign .nav-links a.active {
  border-bottom: none !important;
  color: var(--gold-400) !important;
}

.homepage-redesign .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-400);
}

.homepage-redesign .nav-links a:hover {
  color: var(--gold-400) !important;
}

.homepage-redesign .icon-action-btn {
  background: none;
  border: none;
  color: rgba(251, 247, 240, 0.75);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.homepage-redesign .icon-action-btn:hover {
  color: var(--gold-400);
  background-color: rgba(255, 255, 255, 0.05);
}

.homepage-redesign .global-header .btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%) !important;
  color: var(--navy-950) !important;
  font-weight: 600 !important;
  border-radius: 30px !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(200, 155, 79, 0.2) !important;
  transition: all 0.2s ease !important;
}

.homepage-redesign .global-header .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 155, 79, 0.35) !important;
}

/* 2. Magical Twinkling Star Field */
.star-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  contain: paint;
}

.star {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(224, 184, 108, 0.82);
  box-shadow: 0 0 8px rgba(224, 184, 108, 0.45);
  animation-name: kermor-twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: opacity, transform;
}

.memory-spark {
  background: rgba(255, 216, 146, 0.95);
  box-shadow:
    0 0 8px rgba(255, 216, 146, 0.75),
    0 0 20px rgba(224, 184, 108, 0.45);
}

@keyframes kermor-twinkle {
  0%, 100% {
    opacity: 0.16;
    transform: scale(0.72);
  }
  42% {
    opacity: 0.88;
    transform: scale(1.18);
  }
  68% {
    opacity: 0.34;
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .star {
    animation: none;
    opacity: 0.28;
  }
}

/* 3. Splitted Cinematic Hero Redesign */
.homepage-redesign .featured-banner-wrap {
  background: var(--navy-950) !important;
  border-bottom: none !important;
}

.homepage-redesign .fbs-brand-overlay {
  background: transparent !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.homepage-redesign .family-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-400);
}

.homepage-redesign .ki-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--navy-950) !important;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(200, 155, 79, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 155, 79, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--cream-50);
  border: 1px solid rgba(251, 247, 240, 0.4);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  border-color: var(--cream-50);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hero animations & parallax */
.homepage-redesign .fbs-slide.active .fbs-bg-img {
  animation: breathingScale 15s ease-out infinite alternate;
}

@keyframes breathingScale {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.05); }
}

/* Light ribbons drift */
.homepage-redesign .featured-banner-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(200, 155, 79, 0.08) 0%, rgba(7, 17, 31, 0) 70%);
  animation: ribbonDrift 20s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes ribbonDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(25%); }
}

/* 4. Curated Collections Styling */
.collections-section {
  position: relative;
  padding: 100px 60px;
  background-color: var(--navy-950);
  z-index: 5;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.collections-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.collections-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--cream-50);
  margin: 0;
}

.collections-header p {
  color: rgba(251, 247, 240, 0.6);
  font-size: 15px;
  margin-top: 8px;
  font-weight: 300;
}

.collections-view-all {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.collections-view-all:hover {
  color: var(--cream-50);
  transform: translateX(3px);
}

.collections-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.collection-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  border: 1px solid rgba(224, 184, 108, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.collection-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.4) 50%, rgba(7, 17, 31, 0.1) 100%);
  z-index: 1;
}

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  box-sizing: border-box;
}

.collection-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--cream-50);
  margin: 0 0 10px;
  line-height: 1.2;
}

.collection-content p {
  font-size: 13.5px;
  color: rgba(251, 247, 240, 0.7);
  margin: 0 0 24px;
  line-height: 1.5;
  font-weight: 300;
}

.collection-cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.collection-play-btn {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(200, 155, 79, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(224, 184, 108, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collection-play-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-left: 2px;
}

/* Hover effects */
.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 184, 108, 0.4);
  box-shadow: 0 16px 40px rgba(200, 155, 79, 0.15), 0 0 25px rgba(200, 155, 79, 0.08);
}

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

.collection-card:hover .collection-play-btn {
  background-color: var(--gold-400);
  color: var(--navy-950);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(224, 184, 108, 0.4);
}

.collection-card:hover .collection-cta {
  color: var(--cream-50);
  transform: translateX(4px);
}

/* 5. Parchment Wave Separator & Steps Section */
.parchment-wave-top {
  position: relative;
  height: 60px;
  width: 100%;
  background-color: var(--cream-50);
  overflow: hidden;
  z-index: 4;
}

.parchment-wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 61px;
  fill: var(--navy-950);
}

.three-steps-section {
  background: url('https://www.transparenttextures.com/patterns/cream-paper.png'), var(--cream-50);
  color: var(--ink);
  padding: 100px 60px;
  position: relative;
  z-index: 5;
}

.three-steps-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.steps-heading-col {
  max-width: 380px;
}

.steps-heading-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.15;
}

.step-cards-container {
  display: flex;
  gap: 24px;
  position: relative;
}

/* Connecting Line */
.step-connecting-line {
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 2px;
  z-index: 1;
}

.step-connecting-line svg {
  width: 100%;
  height: 20px;
  stroke: rgba(200, 155, 79, 0.25);
  stroke-dasharray: 8 6;
  fill: none;
}

.step-journey-card {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 28, 52, 0.03), 0 1px 3px rgba(15, 28, 52, 0.01);
  border: 1px solid rgba(200, 155, 79, 0.12);
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: border-box;
}

.step-journey-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--cream-100);
  border: 1px solid rgba(200, 155, 79, 0.25);
  color: var(--gold-500);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.step-journey-icon {
  color: var(--gold-500);
  margin-bottom: 20px;
}

.step-journey-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.step-journey-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 12px;
}

.step-journey-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.step-journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(200, 155, 79, 0.06), 0 0 20px rgba(200, 155, 79, 0.03);
  border-color: rgba(200, 155, 79, 0.3);
}

.step-journey-card:hover .step-journey-icon {
  animation: iconShimmer 0.6s ease-out;
}

@keyframes iconShimmer {
  0% { transform: scale(1); }
  50% { transform: scale(1.12) rotate(3deg); }
  100% { transform: scale(1); }
}

/* 6. Browse by Occasion Carousel Section */
.occasions-carousel-section {
  background-color: var(--navy-950);
  padding: 80px 60px 60px;
  position: relative;
  z-index: 5;
}

.occasions-carousel-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--cream-50);
  margin: 0 0 36px;
}

.occasions-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
}

.occasions-carousel-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  display: flex;
  gap: 12px;
  padding: 12px 4px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  width: 100%;
  justify-content: center;
}

.occasions-carousel-viewport::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.occasion-card-tile {
  flex: 0 0 auto;
  min-width: 100px;
  max-width: 130px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: border-box;
  padding: 8px;
}

.occasion-card-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 2px solid rgba(224, 184, 108, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.occasion-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.occasion-card-tile span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-50);
  text-align: center;
  transition: color 0.3s ease;
  letter-spacing: 0.2px;
}

.occasion-card-tile:hover {
  transform: translateY(-6px);
}

.occasion-card-tile:hover .occasion-card-img-wrap {
  border-color: var(--gold-400);
  box-shadow: 0 8px 24px rgba(200, 155, 79, 0.25), 0 0 12px rgba(200, 155, 79, 0.12);
  transform: scale(1.08);
}

.occasion-card-tile:hover .occasion-card-img-wrap img {
  transform: scale(1.1);
}

.occasion-card-tile:hover span {
  color: var(--gold-400);
}

/* Occasion Carousel Pagination Dots */
.occasions-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  position: relative;
  z-index: 10;
}

.occ-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(224, 184, 108, 0.25);
  border: 1px solid rgba(224, 184, 108, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.occ-dot.active {
  background-color: var(--gold-400);
  width: 24px;
  border-radius: 4px;
  border-color: var(--gold-400);
}

.carousel-nav-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(16, 34, 61, 0.8);
  border: 1px solid rgba(224, 184, 108, 0.25);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.carousel-nav-btn.prev-btn {
  left: -24px;
}

.carousel-nav-btn.next-btn {
  right: -24px;
}

.carousel-nav-btn:hover {
  background: var(--gold-400);
  color: var(--navy-950);
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(224, 184, 108, 0.4);
}

/* 7. Behind Every Card Is a Feeling Section */
.feelings-section {
  background: url('https://www.transparenttextures.com/patterns/cream-paper.png'), var(--cream-50);
  color: var(--ink);
  padding: 100px 60px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.feelings-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feelings-text-col {
  max-width: 360px;
}

.feelings-text-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.15;
}

.feelings-text-col p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 32px;
  font-weight: 300;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-950);
  border: 1px solid rgba(15, 28, 52, 0.4);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-outline-navy:hover {
  border-color: var(--navy-950);
  background-color: rgba(15, 28, 52, 0.04);
}

.feelings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feeling-card-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 28, 52, 0.02);
  border: 1px solid rgba(200, 155, 79, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.feeling-card-thumb-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.feeling-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feeling-card-body {
  padding: 24px;
  box-sizing: border-box;
}

.feeling-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 8px;
}

.feeling-card-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}

.feeling-card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 155, 79, 0.28);
  box-shadow: 0 12px 28px rgba(200, 155, 79, 0.05);
}

.feeling-card-item:hover .feeling-card-thumb {
  transform: scale(1.05);
}

/* Heart overlay for Delivered with Love */
.feeling-heart-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(200, 100, 120, 0.35));
  z-index: 2;
}

/* Floral Line Art Accents */
.feelings-section .floral-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.15;
  pointer-events: none;
}

.feelings-section .floral-top-left {
  top: 24px;
  left: 24px;
}

.feelings-section .floral-bottom-right {
  bottom: 24px;
  right: 24px;
}

/* 8. Final CTA Banner Redesign */
.luminous-cta-section {
  background-color: var(--navy-950);
  padding: 100px 60px;
  position: relative;
  z-index: 5;
}

.luminous-banner-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 34, 61, 0.8) 0%, rgba(7, 17, 31, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(224, 184, 108, 0.2);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  box-sizing: border-box;
}

.luminous-banner-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--cream-50);
  margin: 0 0 16px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.luminous-banner-card p {
  font-size: 16px;
  color: rgba(251, 247, 240, 0.7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.luminous-banner-card .btn-gold {
  position: relative;
  z-index: 2;
  padding: 16px 36px;
  font-size: 15px;
}

/* Ambient Candle Glow effects */
.candle-glow-left {
  position: absolute;
  bottom: -40px;
  left: 60px;
  width: 140px;
  opacity: 0.15;
  filter: drop-shadow(0 0 25px rgba(224, 184, 108, 0.5));
  animation: candleFlicker 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.candle-glow-right {
  position: absolute;
  bottom: -40px;
  right: 60px;
  width: 140px;
  opacity: 0.15;
  filter: drop-shadow(0 0 25px rgba(224, 184, 108, 0.5));
  animation: candleFlicker 5.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes candleFlicker {
  0% { transform: scale(0.98); opacity: 0.13; }
  50% { transform: scale(1.02); opacity: 0.17; }
  100% { transform: scale(0.99); opacity: 0.14; }
}

/* 9. Responsive Layout Refinements */
@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collections-grid .collection-card:first-child {
    grid-column: span 2;
  }
  .feelings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .global-header {
    padding: 20px 40px !important;
  }
  .collections-section,
  .three-steps-section,
  .occasions-carousel-section,
  .feelings-section,
  .luminous-cta-section {
    padding: 80px 40px;
  }
  .three-steps-layout,
  .feelings-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-heading-col,
  .feelings-text-col {
    max-width: 100%;
    text-align: center;
  }
  .step-connecting-line {
    display: none;
  }
  .step-cards-container {
    flex-direction: column;
    gap: 20px;
  }
  .luminous-banner-card {
    padding: 60px 24px;
  }
  .luminous-banner-card h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .collections-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 16px;
    scrollbar-width: none;
  }
  .collections-grid::-webkit-scrollbar {
    display: none;
  }
  .collections-grid .collection-card {
    flex: 0 0 280px;
    height: 380px;
  }
  .collections-grid .collection-card:first-child {
    grid-column: auto;
    flex: 0 0 280px;
  }
  .occasions-carousel-section .section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 24px;
  }
  .carousel-nav-btn {
    display: none;
  }
  .feelings-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 16px;
    scrollbar-width: none;
  }
  .feelings-grid::-webkit-scrollbar {
    display: none;
  }
  .feelings-grid .feeling-card-item {
    flex: 0 0 260px;
  }
  .candle-glow-left,
  .candle-glow-right {
    display: none;
  }
}

@media (max-width: 576px) {
  .global-header {
    padding: 16px 20px !important;
  }
  .collections-section,
  .three-steps-section,
  .occasions-carousel-section,
  .feelings-section,
  .luminous-cta-section {
    padding: 60px 20px;
  }
  .collections-header h2 {
    font-size: 32px;
  }
  .steps-heading-col h2,
  .feelings-text-col h2 {
    font-size: 32px;
  }
  .luminous-banner-card h2 {
    font-size: 28px;
  }
  .luminous-banner-card p {
    font-size: 14px;
  }
  .homepage-redesign .ki-actions {
    flex-direction: column;
    width: 100%;
  }
  .homepage-redesign .ki-actions .btn-gold,
  .homepage-redesign .ki-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   Luminous Keepsakes Mockup Pixel-for-Pixel Visual Overrides
   ========================================================================== */

/* 1. Cinematic Hero Left & Right Layer Alignments */

/* Clear persistent overlay background to let background images span fully */
.homepage-redesign .fbs-brand-overlay {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-right: none !important;
  box-shadow: none !important;
}

/* Rich deep-navy linear fade on slide images for high text contrast */
.homepage-redesign .fbs-overlay {
  background: linear-gradient(to right,
    #07111f 0%,
    rgba(7, 17, 31, 0.95) 20%,
    rgba(7, 17, 31, 0.85) 40%,
    rgba(7, 17, 31, 0.5) 60%,
    rgba(7, 17, 31, 0.2) 80%,
    transparent 100%
  ) !important;
  z-index: 2 !important;
}

/* Floating Glassy Featured Card Panel on Desktop */
@media (min-width: 901px) {
  .homepage-redesign .featured-banner-hero .fbs-content {
    position: absolute !important;
    top: 50% !important;
    right: 80px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    width: 440px !important;
    height: auto !important;
    background: rgba(7, 17, 31, 0.72) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(224, 184, 108, 0.22) !important;
    border-radius: 20px !important;
    padding: 44px 38px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    z-index: 12 !important;
    box-sizing: border-box !important;
  }

  .homepage-redesign .fbs-title {
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: var(--cream-50) !important;
    text-shadow: none !important;
  }

  .homepage-redesign .fbs-desc {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: rgba(251, 247, 240, 0.8) !important;
    margin-bottom: 8px !important;
  }

  .homepage-redesign .featured-banner-hero .featured-banner-dots {
    bottom: 34px !important;
    right: 560px !important; /* Positioned perfectly next to the floating glassy card */
    background: rgba(7, 17, 31, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    z-index: 15 !important;
  }
}

/* 2. Premium Pill Button Styles for Slides */
.homepage-redesign .fbs-btn {
  border-radius: 30px !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.5px !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.homepage-redesign .fbs-btn svg {
  width: 13px !important;
  height: 13px !important;
}

.homepage-redesign .fbs-btn-preview {
  background: transparent !important;
  color: var(--cream-50) !important;
  border: 1px solid rgba(251, 247, 240, 0.4) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.homepage-redesign .fbs-btn-preview:hover {
  border-color: var(--cream-50) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
}

.homepage-redesign .fbs-btn-send {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%) !important;
  color: var(--navy-950) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(200, 155, 79, 0.2) !important;
}

.homepage-redesign .fbs-btn-send:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(200, 155, 79, 0.4) !important;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%) !important;
}

/* 3. Duration Badge styling */
.homepage-redesign .fbs-duration {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--gold-400) !important;
  background-color: rgba(7, 17, 31, 0.6) !important;
  border: 1px solid rgba(224, 184, 108, 0.18) !important;
  border-radius: 20px !important;
  padding: 4px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: fit-content !important;
  margin-top: 4px !important;
}

.homepage-redesign .fbs-duration svg {
  width: 12px !important;
  height: 12px !important;
  stroke: var(--gold-400) !important;
  fill: none !important;
  stroke-width: 2.2 !important;
}

/* 4. Section content wrappers z-index elevation to sit above Star Fields */
.homepage-redesign .collections-header,
.homepage-redesign .collections-grid,
.homepage-redesign .occasions-carousel-section > *,
.homepage-redesign .luminous-banner-card {
  position: relative !important;
  z-index: 10 !important;
}

/* GLOBAL Redesign Dark Theme Synced Style Overrides */
.serif-title {
  font-family: 'Playfair Display', serif;
}
.gradient-overlay {
  background: linear-gradient(180deg, rgba(4,7,18,0.4) 0%, rgba(4,7,18,0.9) 100%);
}
.gold-glow {
  box-shadow: 0 0 20px rgba(197, 163, 104, 0.2);
}
.curve-bg {
  position: relative;
  overflow: hidden;
}
.curve-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(ellipse at center, transparent 0%, #040712 70%);
  pointer-events: none;
}

/* Ensure existing preview modal overlaps perfectly when active */
#preview-modal.active, #share-modal.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Headings on the home page default to readable white to override style.css global selectors */
h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF !important;
}
p, span {
  color: #D1D5DB; /* Readable light gray body text */
}

/* Keep explicit Tailwind text classes operational with strong overrides */
.text-kermor-gold { color: #C5A368 !important; }
.text-kermor-gold-light { color: #D4AF37 !important; }
.text-white { color: #FFFFFF !important; }
.text-black { color: #000000 !important; }
.text-gray-300 { color: #D1D5DB !important; }
.text-gray-400 { color: #9CA3AF !important; }
.text-gray-500 { color: #6B7280 !important; }
.text-gray-200 { color: #E5E7EB !important; }

/* Override colors specifically inside the white background Behind The Scenes section */
.bg-white, .bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
  color: #040712 !important;
}
.bg-white p {
  color: #374151 !important; /* Charcoal dark gray text for descriptions inside white background */
}
.bg-white .text-gray-500 {
  color: #6B7280 !important; /* Feature muted descriptions */
}

/* RESPONSIVE & MOBILE OVERRIDES */
@media (max-width: 767px) {
  /* Adjust Hero section container for mobile card styling */
  [data-purpose="hero-section"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    min-height: auto !important;
    padding-top: 6rem !important;
    padding-bottom: 3.5rem !important;
  }
  
  /* Force featured card overlay to display underneath hero text in full width */
  [data-purpose="featured-card-overlay"] {
    margin-top: 2.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important; /* Forces it to show side-by-side card layout on mobile */
  }

  /* Adjust padding inside header */
  header nav {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.btn-navy {
  background: var(--gold) !important;
  color: #040712 !important;
  border: 1px solid var(--gold) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(197, 163, 104, 0.2) !important;
}

.btn-navy:hover {
  background: #FFFFFF !important;
  color: #040712 !important;
  border-color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

.btn-navy:active {
  transform: translateY(0) !important;
}

/* ----------------------------------------------------
   RESPONSIVE OVERRIDES & CONTRAST ENHANCEMENTS
---------------------------------------------------- */

/* Ensure complete legibility of text inside white backgrounds globally */
.portal-welcome, .portal-card, .empty-state, .portal-modal-card {
  --navy-dark: #0A0E1A;
  --text-light: #4B5563;
  --accent-gold: #B08D51;
  --border-color: rgba(10, 14, 26, 0.12);
  color: var(--navy-dark) !important;
}

.portal-welcome h1,
.portal-welcome p,
.card-template-title,
.card-details-list,
.card-details-list li,
.card-details-list span,
.empty-state-title,
.empty-state-desc,
.modal-title,
.modal-subtitle,
.modal-form-group label {
  color: #0A0E1A !important;
}

.card-details-list strong,
.portal-modal-card strong,
.portal-welcome strong {
  color: #0A0E1A !important;
}

.welcome-text p,
.card-details-list,
.empty-state-desc,
.modal-subtitle {
  color: #4B5563 !important;
}

.card-details-list svg,
.empty-state-icon {
  color: #B08D51 !important;
}

/* Storefront Hero CTA Buttons and Featured Card Mobile Responsive Styles */
@media (max-width: 639px) {
  .hero-cta-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .hero-cta-container a, 
  .hero-cta-container button {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  #featured-card-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  #featured-card-inner .flex.justify-between.items-center {
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  #featured-card-img-wrap {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Card Image Golden Glow Hover States */
.card-image-wrapper, .card-media {
  transition: all 0.3s ease-in-out !important;
  position: relative;
}

.card:hover .card-image-wrapper,
.portal-card:hover .card-media,
.related-grid .card:hover .card-image-wrapper {
  box-shadow: 0 0 30px rgba(197, 163, 104, 0.65), 0 0 15px rgba(197, 163, 104, 0.3) !important;
  border-color: rgba(197, 163, 104, 0.75) !important;
  z-index: 2;
}

.card:hover, .portal-card:hover, .related-grid .card:hover {
  transform: translateY(-4px) !important;
  box-shadow: none !important; /* Remove shadow from the entire block as requested */
  border-color: rgba(197, 163, 104, 0.35) !important;
}

/* Home Page Collections Card Golden Glow Hover States */
.collection-image-wrapper {
  transition: all 0.3s ease-in-out !important;
  border: 1px solid rgba(197, 163, 104, 0.15) !important;
  position: relative;
}

#collections a.group:hover .collection-image-wrapper {
  box-shadow: 0 0 30px rgba(197, 163, 104, 0.65), 0 0 15px rgba(197, 163, 104, 0.3) !important;
  border-color: rgba(197, 163, 104, 0.75) !important;
  z-index: 2;
}

#collections a.group {
  transition: all 0.3s ease-in-out !important;
}

#collections a.group:hover {
  transform: translateY(-4px) !important;
  box-shadow: none !important; /* Ensure the block container itself has no shadow */
}

/* Hero Featured Card Image Glow Hover States */
#featured-card-img-wrap {
  transition: all 0.3s ease-in-out !important;
}

[data-purpose="featured-card-overlay"]:hover #featured-card-img-wrap {
  box-shadow: 0 0 30px rgba(197, 163, 104, 0.65), 0 0 15px rgba(197, 163, 104, 0.3) !important;
  border-color: rgba(197, 163, 104, 0.75) !important;
}

[data-purpose="featured-card-overlay"] {
  transition: all 0.3s ease-in-out !important;
}

[data-purpose="featured-card-overlay"]:hover {
  transform: translateY(-4px) !important;
  box-shadow: none !important;
}

/* ==========================================================================
   HEIRLOOM NOTE OVERLAY HIGH CONTRAST ACCESSIBILITY STYLES (Light Backgrounds)
   ========================================================================== */
#extra-page,
#extra-page div,
#extra-page p,
#extra-page span,
#extra-page strong,
#extra-page em,
#extra-page b,
#extra-page i,
#extra-page small {
  color: #1A202C !important; /* Deep charcoal for perfect visual contrast against cream backgrounds */
}

/* Highlight headings and personalizations with rich dark navy */
#extra-page h1,
#extra-page h2,
#extra-page h3,
#extra-page h4,
#extra-page h5,
#extra-page h6,
#extra-page #personalize-to,
#extra-page #personalize-from {
  color: #0A0E1A !important;
}

/* Reset countdown pill span to ensure dark navy blue text */
#reading-countdown-pill {
  color: #0A0E1A !important;
  border-color: rgba(10, 14, 26, 0.15) !important;
  background: rgba(10, 14, 26, 0.06) !important;
}

#reading-countdown-pill span,
#reading-countdown-pill strong {
  color: #0A0E1A !important;
}

/* Specific SVG control icons inside countdown pill */
#reading-countdown-pill .pulsing-dot {
  background: #C5A368 !important;
}

/* Circular Pause Button: Solid navy background with gold text & SVG */
#note-pause-btn {
  background: #0A0E1A !important;
  color: #C5A368 !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(10, 14, 26, 0.15) !important;
}

#note-pause-btn span,
#note-pause-btn svg {
  color: #C5A368 !important;
  fill: #C5A368 !important;
}

/* Circular Replay Button: Transparent background with solid dark navy border, text & SVG */
#extra-page button[onclick="replayVideo()"],
#extra-page button[onclick="replayVideo()"] span,
#extra-page button[onclick="replayVideo()"] svg {
  color: #0A0E1A !important;
  border-color: #0A0E1A !important;
}
#extra-page button[onclick="replayVideo()"] svg {
  fill: none !important;
}

/* Accessible Cinematic Video Preview Watermark */
.preview-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 10vw, 120px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Three distributed watermarks container fitting exact video bounds */
.preview-watermark-container {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 8% 0;
  overflow: hidden;
}

.preview-watermark-container .preview-watermark {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: rotate(-20deg) !important;
  margin: 0 !important;
  text-align: center;
  font-size: clamp(20px, 6vw, 64px) !important;
}
