@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #000035;
  --color-secondary: #000055;
  --color-cream: #F3E2CF;
  --color-sand: #e4e1dc;
  --color-clay: #b68863;
  --color-moss: #7f8562;
  --color-text: #2b2b2b;
  /* Luxury soft off-black */
  --color-muted: #666666;
  /* Elegant muted grey */
  --color-white: #ffffff;
  --shadow-soft: 0 8px 30px rgba(0, 0, 53, 0.04);
  /* Softened shadows for luxury aesthetic */
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.02);
  --radius-large: 0px;
  /* Architectural corners */
  --radius-medium: 0px;
  --radius-small: 0px;
  --font-heading: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --spacing-sm: clamp(1rem, 2vw, 2rem);
  --spacing-md: clamp(2rem, 4vw, 4rem);
  --spacing-lg: clamp(4rem, 6vw, 6rem);
  --spacing-xl: clamp(6rem, 10vw, 12rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- GLOBAL SPACING UTILITIES --- */
.section-padding {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.grid-gap-lg {
  gap: clamp(3rem, 5vw, 5rem);
}

.grid-gap-md {
  gap: clamp(1.5rem, 3vw, 3rem);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #000000;
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  display: none;
}

.page-glow {
  position: fixed;
  inset: auto -8rem -10rem auto;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(214, 209, 159, 0.25), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 0.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.nav-icon:hover {
  transform: translateY(-2px);
  background: var(--color-cream);
}

.nav-icon svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 2000;
}

.mobile-menu-toggle .bar {
  width: 25px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  z-index: 9999;
  transition: 0.4s ease;
  padding: 6rem 2rem;
}

.mobile-nav-overlay.active {
  left: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-cream);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-content a {
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-weight: 700;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1.5rem !important;
    justify-content: space-between !important;
    position: relative !important;
    /* Allow it to push content on mobile if needed, or stay absolute */
  }



  .site-nav > a,
  .site-nav > .nav-item-dropdown {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 3;
  }

  .site-nav {
    margin-left: 0 !important;
    order: 2;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    padding-right: 15px; /* space between icons and hamburger */
  }
  
  .nav-actions {
    gap: 0.5rem;
  }

  .brand {
    order: 1;
  }

  .brand-logo {
    height: 42px;
    width: auto !important;
    flex-shrink: 0;
  }
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #f2c94c;
  color: #fff;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #fff;
  z-index: 10;
}

@media (max-width: 800px) {
  .cart-badge {
    width: 14px;
    height: 14px;
    font-size: 0.55rem;
    top: -2px;
    right: -2px;
    border-width: 1px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 50px;
  width: auto !important;
  max-width: 190px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  /* Center on mobile */
}

.site-nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-cta,
.nav-logout {
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(33, 3, 48, 0.12);
  background: rgba(214, 209, 159, 0.18);
  color: var(--color-primary);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 1rem;
}

.home-page.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.home-page.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero,
.landing-showcase,
.collection-strip,
.craft-section,
.contact-banner,
.motion-ribbon {
  margin-bottom: var(--spacing-xl);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 1.5rem 0 0;
}

.hero-copy,
.hero-card,
.collection-strip,
.craft-section,
.contact-banner {
  border: 1px solid rgba(33, 3, 48, 0.09);
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at top right, rgba(214, 209, 159, 0.4), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(244, 233, 213, 0.88));
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 38% 62% 56% 44%;
  background: linear-gradient(135deg, rgba(33, 3, 48, 0.95), rgba(63, 24, 82, 0.6));
  opacity: 0.1;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--color-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  /* Clean medium weight */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #1a1a1a;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 1rem;
}

p {
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 0 1rem;
  color: var(--color-text);
  font-weight: 300;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.hero h1,
.section-heading h2,
.contact-banner h2 {
  margin: 0;
  font-family: var(--font-heading);
  color: #1a1a1a !important;
  /* Premium luxury off-black */
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 400;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  margin-bottom: 2rem;
}

.hero-text {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 2.4rem;
  /* Luxury expanded horizontal padding */
  border-radius: 100px;
  /* High-end rounded edge */
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  /* Clean medium weight instead of heavy bold */
  letter-spacing: 0.06em;
  /* Subtle modern letter spacing */
  text-transform: uppercase;
  font-size: 0.85rem;
  /* Elegant refined sizing */
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--color-primary);
  color: #ffffff !important;
}

.button-primary {
  color: #000000 !important;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.button-primary:hover {
  background: transparent;
  color: var(--color-primary) !important;
}

.button-secondary {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: transparent;
}

.button-secondary:hover {
  background: var(--color-primary);
  color: #000000 !important;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.detail-actions .button {
  padding: 0.9rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 500 !important;
  /* Medium weight only */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-medium);
  cursor: pointer;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

/* BUY NOW â€” premium primary deep navy instead of generic bright blue */
.buy-now-btn {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 53, 0.08);
}

.buy-now-btn:hover {
  background: transparent !important;
  color: var(--color-primary) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 53, 0.12);
  transform: translateY(-1px);
}

/* ADD TO CART â€” refined outline */
.add-to-cart-btn {
  background: transparent !important;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  font-weight: 500 !important;
}

.add-to-cart-btn:hover {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-metrics li {
  padding: 1rem;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(33, 3, 48, 0.08);
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.4rem;
}

.hero-metrics span {
  display: block;
  margin-top: 0.3rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-large);
  background: var(--color-primary);
}

.hero-carousel {
  position: relative;
  overflow: hidden;

  min-height: 480px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-carousel {
    min-height: 320px;
  }
}

.hero-carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  height: 100%;
  will-change: transform;
}

.hero-carousel-item {
  flex: 0 0 100% !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}

.hero-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}

.hero-carousel-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none !important;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 1.4rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-carousel-arrow {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0 0.5rem;
}

.hero-carousel-arrow:hover {
  opacity: 1;
}

.hero-carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.hero-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-carousel-dots .dot.active {
  background: white;
  border-color: white;
  transform: scale(1.1);
}

.hero-carousel-pause {
  background: none;
  border: none;
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0.7;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Home Brand Quote Section Ã¢â€â‚¬Ã¢â€â‚¬ */
.home-brand-quote {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem 3rem 2rem;
  background: transparent;
  box-sizing: border-box;
}

.quote-container {
  max-width: 880px;
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading, serif);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.7;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0;
  position: relative;
}

.quote-text::before,
.quote-text::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 1.5rem auto;
}

/* Dark theme overrides */
.dark-theme .quote-text {
  color: #000000 !important;
}

.dark-theme .quote-text::before,
.dark-theme .quote-text::after {
  background: rgba(0, 0, 0, 0.15) !important;
}

.hero-motion {
  position: absolute;
  pointer-events: none;
  border-radius: 40% 60% 56% 44%;
  opacity: 0.55;
  filter: blur(0.4px);
}

.hero-motion-one {
  top: 1rem;
  right: 4rem;
  width: 6.5rem;
  height: 6.5rem;
  background: radial-gradient(circle, rgba(214, 209, 159, 0.55), transparent 70%);
  animation: float-orb 11s ease-in-out infinite;
}

.hero-motion-two {
  left: -1.5rem;
  bottom: 3rem;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(33, 3, 48, 0.16), transparent 72%);
  animation: float-orb 14s ease-in-out infinite reverse;
}

.hero-card-grid {
  position: absolute;
  inset: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  pointer-events: none;
  opacity: 0.18;
}

.hero-card-grid span {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  animation: pulse-grid 7s ease-in-out infinite;
}

.hero-card-grid span:nth-child(2) {
  animation-delay: 1.1s;
}

.hero-card-grid span:nth-child(3) {
  animation-delay: 1.9s;
}

.hero-card-grid span:nth-child(4) {
  animation-delay: 2.7s;
}

.motion-ribbon {
  overflow: hidden;
  padding: 1rem 0;
  border: 1px solid rgba(33, 3, 48, 0.09);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.92), rgba(214, 209, 159, 0.36), rgba(255, 253, 249, 0.92));
  box-shadow: var(--shadow-card);
}

.motion-ribbon-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: ribbon-scroll 28s linear infinite;
}

.motion-ribbon-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-left: 2rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-ribbon-track span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}

.collection-strip,
.catalogue-section,
.craft-section {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem) !important;
  border-radius: var(--radius-large);
  width: 100% !important;
}

.catalogue-section {
  padding-top: 1.5rem !important;
}

.landing-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.landing-showcase-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-large);
  border: 1px solid rgba(33, 3, 48, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.9), rgba(214, 209, 159, 0.18)),
    rgba(255, 253, 249, 0.8);
  box-shadow: var(--shadow-soft);
}

.landing-showcase-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.landing-showcase-card p:last-child {
  color: var(--color-muted);
  line-height: 1.8;
}

.landing-showcase-card-dark {
  background:
    radial-gradient(circle at top right, rgba(214, 209, 159, 0.2), transparent 24%),
    linear-gradient(160deg, rgba(33, 3, 48, 0.98), rgba(57, 22, 71, 0.92));
}

.landing-showcase-card-dark h2,
.landing-showcase-card-dark .eyebrow,
.landing-showcase-card-dark p:last-child {
  color: var(--color-white);
}

.landing-showcase-card-accent {
  background:
    radial-gradient(circle at top left, rgba(214, 209, 159, 0.3), transparent 25%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(232, 223, 192, 0.72));
}

.collections-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.collections-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 1.2rem;
}

@media (max-width: 800px) {
  .collections-shell {
    grid-template-columns: 1fr;
  }

  .collections-intro {
    position: static;
  }
}

.collections-intro,
.collections-directory {
  border: 1px solid rgba(33, 3, 48, 0.09);
  border-radius: var(--radius-large);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-soft);
}

.collections-intro {
  position: sticky;
  top: 1.2rem;
  align-self: start;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background:
    radial-gradient(circle at top right, rgba(214, 209, 159, 0.3), transparent 24%),
    linear-gradient(140deg, rgba(255, 253, 249, 0.95), rgba(239, 230, 205, 0.74));
}

.collections-intro h1,
.directory-block h2 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.collections-intro h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
}

.collections-directory {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.directory-block {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(33, 3, 48, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.directory-block h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.02;
}

.directory-block-highlight {
  background:
    radial-gradient(circle at top left, rgba(214, 209, 159, 0.3), transparent 25%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(232, 223, 192, 0.7));
}

.directory-link,
.directory-list a {
  color: #000000 !important;
  text-decoration: none;
}

.directory-link-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}

.directory-list {
  display: grid;
  gap: 0.45rem;
}

.directory-list-long {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.4rem;
  row-gap: 0.45rem;
}

.directory-list a {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease;
}

.directory-list a:hover,
.directory-list a:focus-visible {
  color: #6a2f7c;
  transform: translateX(5px);
}

.section-heading {
  display: grid;
  gap: 1.2rem;
  /* Airy gap between eyebrow and header */
  margin-top: 2.5rem;
  /* Spacious breathing room above */
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  /* Editorial luxury spacing below */
}

.section-heading h2,
.contact-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.75rem) !important;
  /* 28px mobile, 32px tablet, 44px desktop */
  font-weight: 500 !important;
  /* Elegant medium weight instead of loud bold */
  line-height: 1.15 !important;
  letter-spacing: -0.015em;
  color: #1a1a1a !important;
}

.section-heading-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 1.2rem;
}

.section-blurb {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.collection-grid,
.craft-grid {
  display: grid;
  gap: clamp(1.8rem, 3.5vw, 3.5rem);
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-panel {
  padding: clamp(2rem, 3.5vw, 3.5rem) !important;
  border-radius: var(--radius-medium);
  min-height: 14rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.65), rgba(214, 209, 159, 0.24)),
    var(--color-white);
  border: 1px solid rgba(33, 3, 48, 0.08);
  box-shadow: var(--shadow-card);
}

/* Editorial Layout Styles */
.editorial-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 6rem);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  max-width: 1400px;
  align-items: start;
}

@media (max-width: 900px) {
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.editorial-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.editorial-feature,
.editorial-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-image-wrapper {
  overflow: hidden;
  position: relative;
  background: #f4f4f4;
  width: 100%;
}

.editorial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.editorial-feature:hover img,
.editorial-card:hover img {
  transform: scale(1.02);
}

.aspect-portrait {
  aspect-ratio: 3 / 4;
}

.aspect-landscape {
  aspect-ratio: 16 / 9;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.editorial-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.editorial-content h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 0;
  font-family: var(--font-heading);
}

.editorial-content p {
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.panel-index {
  margin: 0 0 1rem;
  color: rgba(33, 3, 48, 0.42);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.collection-panel h3,
.craft-card h3,
.catalogue-card h3 {
  margin: 0 0 0.8rem 0;
  /* Breathable spacing below titles */
  font-family: var(--font-heading);
  color: #1a1a1a !important;
  /* Elegant off-black */
  font-size: clamp(1.375rem, 2.5vw, 1.625rem) !important;
  /* 22px to 26px responsive */
  font-weight: 500 !important;
  /* Consistent medium weight */
  line-height: 1.25 !important;
  letter-spacing: -0.005em;
}

.collection-panel p:last-child,
.craft-card p,
.catalogue-card p,
.catalogue-card li,
.catalogue-meta p,
.product-copy p {
  color: #555555 !important;
  /* Soft luxury dark charcoal for reading comfort */
  font-family: var(--font-body) !important;
  font-size: clamp(0.975rem, 1.8vw, 1.05rem) !important;
  /* 16px to 17px */
  line-height: 1.7 !important;
  /* Clean line spacing */
  max-width: 700px;
}

.catalogue-toolbar {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.search-field {
  display: grid;
  gap: 0.45rem;
}

.search-field span {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--color-primary);
}

.search-field input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
  /* Solid white for maximum contrast */
  font: inherit;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-field input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.filter-field {
  display: grid;
  gap: 0.45rem;
}

.filter-field span {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--color-primary);
}

.filter-field select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
  /* Solid white */
  font: inherit;
  color: #000000;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000035' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.2rem;
}

.search-field input:focus-visible,
.filter-field select:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}



.catalogue-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.94rem;
  display: none;
}

.catalogue-meta p {
  margin: 0;
}

.catalogue-intro-block {
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  border-radius: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 5rem;
  background: rgba(255, 253, 249, 0.85);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.catalogue-intro-block .section-heading {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.catalogue-intro-block .section-heading h1,
.catalogue-intro-block .section-heading .eyebrow {
  margin: 0 !important;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 4rem);
  width: 85%;
  margin: 0 auto;
  align-items: start;
}

.catalogue-grid>.catalogue-card-link {
  grid-column: span 1;
}

.catalogue-grid>.catalogue-card-link:nth-child(7n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .catalogue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalogue-grid>.catalogue-card-link:nth-child(7n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-grid>.catalogue-card-link:nth-child(7n + 1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .catalogue-grid>.catalogue-card-link:nth-child(7n + 1) {
    grid-column: span 1;
  }
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.catalogue-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalogue-card-link:hover .catalogue-card,
.catalogue-card-link:focus-visible .catalogue-card {
  transform: none;
  box-shadow: none;
}

.catalogue-card-link:focus-visible {
  outline: none;
}

.catalogue-card,
.detail-thumb,
.detail-stage {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-copy {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.catalogue-card .product-card-title {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.catalogue-card .product-card-price {
  font-size: 1.05rem;
  font-weight: 500;
  color: #000000;
  margin: 0 0 1.2rem 0;
}

.catalogue-card .product-card-btn {
  width: 100%;
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
  margin-top: auto;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.catalogue-card .product-card-btn:hover {
  background: #000000;
  color: #ffffff;
}

.product-visual {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1 !important;
  background: var(--card-background, linear-gradient(135deg, #d8ceb8, #b9a48a));
}

/* When there is no image, show a placeholder box at landscape ratio */
.product-visual:not(.has-image) {
  aspect-ratio: 1 / 1 !important;
}

/*
 * Force a beautiful uniform square aspect ratio on all product images
 * so that they line up perfectly in the grid rows.
 */
.product-visual.has-image {
  aspect-ratio: 1 / 1 !important;
  min-height: 0;
}

.product-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  border-radius: inherit;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.catalogue-card-link:hover .product-photo {
  transform: scale(1.05) !important;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-visual::before {
  display: none;
}

.product-visual:hover::before {
  opacity: 0.3;
}

.product-visual::after {
  display: none !important;
}

.product-badge {
  display: none !important;
}

.product-copy {
  display: grid;
  gap: 0.8rem;
}

.product-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.product-price {
  color: var(--color-primary);
  font-weight: 800;
  white-space: nowrap;
}

.product-compare-price {
  font-size: 0.72rem;
  color: var(--color-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.product-tags,
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-tags li,
.product-specs li {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(214, 209, 159, 0.26);
  font-size: 0.8rem;
}

.product-specs li {
  color: var(--color-primary);
  background: rgba(33, 3, 48, 0.05);
}

.product-link-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-primary);
  font-weight: 800;
}

.product-link-row::after {
  content: "->";
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(33, 3, 48, 0.2);
}

.craft-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.craft-card {
  padding: clamp(2rem, 3.5vw, 3.5rem) !important;
  border-radius: var(--radius-medium);
  background:
    linear-gradient(180deg, rgba(214, 209, 159, 0.14), rgba(255, 253, 249, 0.92)),
    var(--color-white);
  border: 1px solid rgba(33, 3, 48, 0.08);
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at top left, rgba(214, 209, 159, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.88), rgba(214, 209, 159, 0.32));
}

.contact-banner h2 {
  max-width: 14ch;
}

/* Redundant footer styles removed to fix flex conflict */


.auth-banner {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(33, 3, 48, 0.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(214, 209, 159, 0.26), transparent 20%),
    rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-card);
}

.auth-banner h2 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.auth-banner p:last-child {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.login-main {
  width: min(1200px, 94%);
  margin: 3rem auto;
}

.checkerboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.quadrant-form {
  padding: 2.5rem 3rem;
  /* Reduced vertical padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.login-quadrant-image {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  height: 500px;
  /* Increased from 400px */
  box-shadow: var(--shadow-card);
}

.login-quadrant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.login-quadrant-image:hover img {
  transform: scale(1.05);
}

.quadrant-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-quadrant-image:hover .quadrant-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 868px) {
  .checkerboard-grid {
    grid-template-columns: 1fr;
  }

  .login-quadrant-image {
    height: 300px;
  }

  /* Reorder for mobile: Sign In -> Image 1 -> Sign Up -> Image 2 */
  .q-img-top-right {
    order: 2;
  }

  .q-img-bottom-left {
    order: 4;
  }

  section[aria-labelledby="signup-title"] {
    order: 3;
  }
}

.login-panel {
  border: 1px solid rgba(33, 3, 48, 0.09);
  border-radius: var(--radius-large);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-soft);
}

.login-intro {
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top right, rgba(214, 209, 159, 0.3), transparent 24%),
    linear-gradient(140deg, rgba(255, 253, 249, 0.96), rgba(244, 234, 214, 0.76));
}

.login-intro h1,
.login-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
}

.login-intro h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 11ch;
}

.login-company-card {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(33, 3, 48, 0.94);
  color: var(--color-white);
}

.login-company-card h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.login-company-card p,
.login-company-card strong,
.login-company-note {
  display: block;
}

.login-company-card p,
.login-company-note {
  color: rgba(255, 253, 249, 0.8);
  line-height: 1.7;
}

.login-company-card strong {
  margin-top: 0.4rem;
  color: var(--color-secondary);
  font-size: 1.15rem;
}

.login-panel {
  padding: clamp(1.6rem, 4vw, 2.2rem);
}

.login-support-text {
  color: var(--color-muted);
  line-height: 1.7;
}

.login-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.5rem 0 1rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(33, 3, 48, 0.1);
}

.login-panel-block {
  margin-top: 0.2rem;
  padding-top: 0.4rem;
}

.login-field {
  display: grid;
  gap: 0.45rem;
}

.login-field span {
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.login-field input {
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(33, 3, 48, 0.14);
  background: rgba(255, 255, 255, 0.85);
  font: inherit;
  color: inherit;
}

.login-field input:focus-visible,
.nav-logout:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.login-feedback {
  min-height: 1.4rem;
  margin: 0;
  color: #9c2f3a;
  font-weight: 700;
}

.login-feedback.is-success {
  color: #2b5d32;
}

.login-meta {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(33, 3, 48, 0.08);
}

.login-meta p,
.login-meta a {
  margin: 0;
  color: var(--color-muted);
}

.login-meta a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PRODUCT DETAIL Ã¢â‚¬â€ ZERAVITY-style flat layout
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

.detail-main {
  width: min(1100px, 94%);
  margin: 0 auto 2rem;
  padding-top: 8rem;
}

@media (max-width: 768px) {
  .detail-main {
    padding-top: 6rem;
    margin-top: 0;
    /* Room for the absolute header */
  }
}

.back-link {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
}

.detail-shell,
.detail-empty {
  display: grid;
  gap: 1.2rem;
}

/* Hero Ã¢â‚¬â€ flat, no card wrapper */
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 0;
  border: none;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
}

.detail-story-grid,
.detail-empty {
  border: 1px solid rgba(33, 3, 48, 0.09);
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
}

@media (max-width: 800px) {
  .detail-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* LEFT Ã¢â‚¬â€ Gallery */
.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.detail-stage {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;

}

.detail-stage-image {
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  z-index: 1;
}

.detail-thumb-art::before,
.detail-thumb-art::after {
  content: "";
}

.detail-stage::before,
.detail-thumb-art::before {
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 3%, transparent 3% 12%, rgba(255, 255, 255, 0.18) 12% 15%, transparent 15% 100%),
    linear-gradient(0deg, rgba(33, 3, 48, 0.12) 0 7%, transparent 7% 20%, rgba(33, 3, 48, 0.07) 20% 26%, transparent 26% 100%);
  mix-blend-mode: soft-light;
}

.detail-stage.has-image::before {
  display: none;
}

.detail-thumb-art.has-image::before {
  display: none;
}

.detail-stage::after,
.detail-thumb-art::after {
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.detail-stage-copy {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(33, 3, 48, 0.72);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

.detail-stage-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.detail-view-label {
  margin: 0.45rem 0 0;
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-stage-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.82);
}

/* Thumbnails Ã¢â‚¬â€ tiny row */
.detail-thumb-grid {
  display: flex;
  gap: 0.5rem;
}

.detail-thumb {
  display: flex;
  flex-direction: column;
  width: 56px;
  padding: 3px;
  border: 1px solid rgba(33, 3, 48, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: border-color 0.15s;
}

.detail-thumb:hover,
.detail-thumb.is-active {
  border-color: var(--color-primary);
  box-shadow: none;
  transform: none;
}

.detail-thumb-art {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--card-background);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-thumb-art.is-portrait,
.detail-thumb-art.is-landscape,
.detail-thumb-art.is-square,
.detail-thumb-art:not(.has-image) {
  aspect-ratio: 1/1;
  max-height: none;
}

.detail-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-thumb-copy {
  display: none;
}

.detail-thumb-copy strong,
.detail-panel h2,
.detail-story-card h2,
.detail-empty h1 {
  font-family: var(--font-heading);
  color: #000000;
}

/* RIGHT Ã¢â‚¬â€ Info panel (flat, no card) */
.detail-panel {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  min-width: 0;
}

.detail-panel .eyebrow {
  color: #000000;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin: 0;
}

.detail-panel h2,
.detail-story-card h2,
.detail-empty h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
  /* Elegant editorial serif sizes */
  line-height: 1.15 !important;
  text-transform: none !important;
  /* No loud all-caps */
  font-weight: 500 !important;
  /* Refined medium weight instead of heavy 900 */
  letter-spacing: -0.01em !important;
}

/* Price row Ã¢â‚¬â€ clean inline */
.detail-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  border-radius: 0;
  background: none;
}

.detail-price-row strong {
  color: #1a1a1a !important;
  font-size: 1.6rem;
  font-weight: 500 !important;
  /* Elegant medium weight price */
  letter-spacing: -0.01em;
}

.detail-price-row span {
  color: #555555;
  font-size: 0.85rem;
}

/* Variant Selection Strip */
.variant-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1rem;
  margin-top: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  min-width: 0;
  min-height: 50px;
  flex-wrap: nowrap;
}

.variant-strip::-webkit-scrollbar {
  display: none;
}

.variant-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid #e4e1dc;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #333;
  flex-shrink: 0;
}

.variant-chip img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eee;
}

.variant-chip:hover {
  border-color: #b68863;
  background: #fafaf9;
}

.variant-chip.is-active {
  border-color: #b68863;
  background: #fdfaf7;
  color: #b68863;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(182, 136, 99, 0.1);
}

/* Smooth gallery swap */
#detailThumbGrid {
  transition: opacity 0.15s ease-in-out;
}

.detail-compare-price {
  text-decoration: line-through;
  color: #999999;
  font-size: 1.1rem;
  margin-left: 0.4rem;
}

.detail-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: var(--color-sand) !important;
  /* Minimal sand background */
  color: #2b2b2b !important;
  /* Soft luxury dark text */
  font-size: 0.7rem;
  font-weight: 500 !important;
  /* Understated medium weight */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Shipping note */
.detail-shipping-note {
  margin: 0;
  font-size: 0.72rem;
  color: #000000;
  opacity: 0.5;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Accordion (Description / Reviews) Ã¢â€â‚¬Ã¢â€â‚¬ */
.detail-accordion {
  border-top: 1px solid rgba(33, 3, 48, 0.12);
}

.detail-accordion:last-child {
  border-bottom: 1px solid rgba(33, 3, 48, 0.12);
}

.detail-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  /* Understated medium weight */
  color: #1a1a1a;
}

.detail-accordion-toggle svg {
  transition: transform 0.25s ease;
  opacity: 0.5;
}

.detail-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.detail-accordion.is-open .detail-accordion-body {
  max-height: 3200px;
}

.detail-accordion.is-open .detail-accordion-toggle svg {
  transform: rotate(180deg);
}

/* Description content inside accordion */
.detail-lead {
  margin: 0 0 0.8rem;
  color: #000000;
  font-size: 0.82rem;
  line-height: 1.6;
}

.detail-feature-list,
.detail-care-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0 0 0.8rem;
  list-style: none;
}

.detail-feature-list li,
.detail-care-list li {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(33, 3, 48, 0.06);
  font-size: 0.75rem;
}

.detail-care-list li {
  border-radius: 10px;
  line-height: 1.5;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.detail-spec-grid article,
.detail-story-card {
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: rgba(33, 3, 48, 0.04);
  border: 1px solid rgba(33, 3, 48, 0.06);
}

.detail-spec-grid span {
  display: block;
  margin-bottom: 0.1rem;
  color: #000000;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-spec-grid strong {
  color: #000000;
  font-size: 0.78rem;
  line-height: 1.3;
}

.detail-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.detail-story-card>p:not(.eyebrow) {
  color: #000000;
  line-height: 1.8;
}

.detail-empty {
  padding: 2rem;
  text-align: center;
}

/* Narrative inside accordion */
.detail-narrative {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}

.narrative-block {
  border: 1px solid rgba(33, 3, 48, 0.06);
  border-radius: 6px;
  overflow: hidden;
}

.narrative-block strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  user-select: none;
  background: rgba(0, 0, 0, 0.02);
}

.narrative-block strong::after {
  content: "+";
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.4;
}

.narrative-block.is-open strong::after {
  content: "Ã¢Ë†â€™";
}

.narrative-block p {
  margin: 0;
  padding: 0 0.6rem;
  max-height: 0;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #000000;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.narrative-block.is-open p {
  max-height: 400px;
  padding: 0.4rem 0.6rem 0.5rem;
}

/* Demand card */
.demand-card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(33, 3, 48, 0.08);
  background: rgba(0, 0, 0, 0.06);
  margin-top: 1rem;
}




.demand-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: #edeae6;
  font-size: 1.2rem;
}

.demand-card-note {
  margin: 0.4rem 0 0.7rem;
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.demand-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demand-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.55rem;
}

.demand-field {
  display: grid;
  gap: 0.35rem;
}

.demand-field-wide {
  grid-column: 1 / -1;
}

.demand-field span,
.demand-field label {
  font-size: 0.82rem;
  color: var(--color-primary);
  font-weight: 600;
  display: block;
}

.demand-field input,
.demand-field select,
.demand-field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(33, 3, 48, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  font: inherit;
  font-size: 0.88rem;
  padding: 0.55rem 0.7rem;
}

.demand-field textarea {
  resize: vertical;
}

.demand-submit {
  align-self: flex-start;
  min-height: 3rem;
  margin-top: 0.25rem;
}

.demand-feedback {
  margin: 0;
  font-size: 0.82rem;
  color: #cc3300;
}

.demand-feedback.is-success {
  color: #1a7a3b;
}

.admin-demand-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.admin-demand-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(33, 3, 48, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-demand-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

.admin-demand-table th,
.admin-demand-table td {
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(33, 3, 48, 0.08);
}

.admin-demand-table th {
  font-size: 0.78rem;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(214, 209, 159, 0.24);
}

.admin-demand-table td {
  color: var(--color-muted);
  line-height: 1.55;
}

.admin-demand-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-demand-table tbody tr {
  transition: background var(--transition-fast) ease;
}

.admin-demand-table tbody tr:hover {
  background: var(--surface-2);
}

/* --- Elegant Admin Dashboard Tabs --- */
.admin-tabs-nav {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0.5rem;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(33, 3, 48, 0.09);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  overflow-x: auto;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  scrollbar-width: none;
  /* Hide scrollbar for clean look */
}

.admin-tabs-nav::-webkit-scrollbar {
  display: none;
}

.admin-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: transparent;
  color: var(--color-primary);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.admin-tab-btn .tab-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.admin-tab-btn:hover {
  background: rgba(214, 209, 159, 0.18);
  color: var(--color-clay);
}

.admin-tab-btn:hover .tab-icon {
  transform: translateY(-1px);
}

.admin-tab-btn.active {
  background: var(--color-primary);
  color: #000000 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 53, 0.25);
}

/* Tab Content Visibility & Smooth Fade In Animation */
.admin-tab-content {
  display: none !important;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-tab-content.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

/* Dark Theme Compatibility */
.dark-theme .admin-tabs-nav {
  background: rgba(10, 25, 47, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dark-theme .admin-tab-btn {
  color: #edeae6;
}

.dark-theme .admin-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #b68863;
}

.dark-theme .admin-tab-btn.active {
  background: #edeae6;
  color: #000035 !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* --- Admin Product Management Table --- */
.admin-product-section {
  margin-top: 2rem;
}

.admin-product-actions {
  display: flex;
  align-items: center;
}

.admin-product-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface-0);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.admin-product-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.admin-product-table th,
.admin-product-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.admin-product-table th {
  background: var(--surface-1);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.admin-product-table tbody tr {
  transition: background var(--transition-fast) ease;
}

.admin-product-table tbody tr:hover {
  background: var(--surface-2);
}

.admin-product-thumbnail {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}

.admin-product-actions-cell {
  display: flex;
  gap: 0.5rem;
}

/* --- Admin Modal (Glassmorphism) --- */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.admin-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 9, 23, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.admin-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--surface-0);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal[aria-hidden="false"] .admin-modal-content {
  transform: scale(1) translateY(0);
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--surface-1);
}

.admin-modal-header h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.admin-modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast) ease;
}

.admin-modal-close:hover {
  color: var(--text-primary);
}

.admin-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

/* --- Admin Product Form --- */
.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-color);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h4 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gallery-item-card {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.gallery-item-card:last-child {
  margin-bottom: 0;
}

.gallery-item-remove {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-dark);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.gallery-item-remove:hover {
  background: #000;
}

.admin-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.admin-modal-actions {
  display: flex;
  gap: 0.75rem;
}

.button-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.7rem, -1rem, 0) scale(1.08);
  }
}

@keyframes pulse-grid {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.04);
  }
}

@keyframes ribbon-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {

  .site-header,
  .site-footer,
  .catalogue-meta,
  .contact-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .landing-showcase,
  .section-heading-split,
  .catalogue-toolbar,
  .collection-grid,
  .craft-grid,
  .collections-shell,
  .directory-grid,
  .login-shell,
  .detail-hero,
  .detail-story-grid,
  .demand-wrapper {
    grid-template-columns: 1fr;
  }

  .catalogue-grid,
  .index-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.25rem !important;
    padding: 1rem !important;
    width: 100% !important;
    margin: 0 !important;
    display: grid !important;
  }

  .catalogue-section {
    padding: 0.5rem !important;
    width: 100% !important;

  }

  .hero h1 {
    max-width: none;
  }

  .directory-list-long,
  .detail-spec-grid {
    grid-template-columns: 1fr;
  }

  .detail-thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-stage-image {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
    max-height: 80vw;
  }

  .demand-row {
    grid-template-columns: 1fr;
  }

  .inline-review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {


  .site-nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero-copy,
  .hero-card,
  .collection-strip,
  .catalogue-section,
  .collections-intro,
  .collections-directory,
  .craft-section,
  .contact-banner {
    border-radius: 26px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

img.detail-stage-image,
img.detail-thumb-image,
img.product-photo {
  color: transparent;
}

/* Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ 
   GLOBAL DARK CHARCOAL THEME
   Applied via body class  .dark-theme  (set on every page)
   Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢ Ã¢â€¢  */

.dark-theme {
  --color-primary: #000035;
  --color-secondary: #666666;
  --color-cream: #edeae6;
  --color-sand: #e4e1dc;
  --color-clay: #b68863;
  --color-moss: #7f8562;
  --color-text: #000000;
  --color-muted: #000000;
  --color-white: #000000;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.1);
  background: #F3E2CF !important;
  color: #000000;
}

/* Subtle grid overlay */
.dark-theme::before {
  background-image:
    linear-gradient(rgba(0, 0, 53, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 53, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 85%);
}

/* Page glow */
.dark-theme .page-glow {
  background: radial-gradient(circle, rgba(120, 120, 120, 0.12), transparent 68%);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Header Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .site-header {
  background: var(--color-primary) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-theme .brand,
.dark-theme .site-nav a {
  color: var(--color-cream) !important;
}

.dark-theme .brand small {
  color: rgba(240, 240, 240, 0.45) !important;
}

.dark-theme .brand-mark {
  background: linear-gradient(145deg, #2a2a2a, #111) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-cream) !important;
}

.dark-theme .site-nav a:hover {
  color: var(--color-sand) !important;
}

.dark-theme .site-nav a.nav-cta,
.dark-theme .nav-cta,
.dark-theme .nav-logout {
  background: var(--color-cream) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #000000 !important;
}

.dark-theme .nav-cta:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

.dark-theme .catalogue-preview-card {
  border-radius: var(--radius-large);
  padding: clamp(30px, 5vw, 60px);
}

.dark-theme p,
.dark-theme li,
.dark-theme .eyebrow,
.dark-theme .section-blurb,
.dark-theme .hero-text {
  color: #000000 !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Cards / panels shared Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .hero-card,
.dark-theme .catalogue-preview-card,
.dark-theme .collection-strip,
.dark-theme .catalogue-intro-block,
.dark-theme .craft-section,
.dark-theme .contact-banner,
.dark-theme .auth-banner,
.dark-theme .login-intro,
.dark-theme .login-panel,
.dark-theme .collections-intro,
.dark-theme .collections-directory,
.dark-theme .detail-story-grid,
.dark-theme .detail-empty {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--color-primary) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--color-cream) !important;
}

.dark-theme .hero-card *,
.dark-theme .catalogue-preview-card *,
.dark-theme .collection-strip *,
.dark-theme .catalogue-intro-block *,
.dark-theme .craft-section *,
.dark-theme .contact-banner *,
.dark-theme .auth-banner *,
.dark-theme .login-intro *,
.dark-theme .login-panel *,
.dark-theme .collections-intro *,
.dark-theme .collections-directory *,
.dark-theme .detail-story-grid *,
.dark-theme .detail-empty * {
  color: var(--color-cream) !important;
}

/* Enforce solid readable black text for inputs, select menus, and options on white form backgrounds */
.dark-theme select,
.dark-theme select option,
.dark-theme input,
.dark-theme textarea {
  color: #000000 !important;
}

/* Enforce readable black text and solid white background for inputs/selects inside dark-theme container blocks */
.dark-theme .catalogue-intro-block select,
.dark-theme .catalogue-intro-block select option,
.dark-theme .catalogue-intro-block input,
.dark-theme .catalogue-intro-block textarea,
.dark-theme .login-panel select,
.dark-theme .login-panel select option,
.dark-theme .login-panel input,
.dark-theme .login-panel textarea,
.dark-theme .contact-banner select,
.dark-theme .contact-banner select option,
.dark-theme .contact-banner input,
.dark-theme .contact-banner textarea {
  color: #000000 !important;
  background-color: #ffffff !important;
}

.dark-theme input::placeholder,
.dark-theme textarea::placeholder {
  color: rgba(0, 0, 0, 0.45) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Hero copy Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .hero-copy {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.dark-theme .hero h1,
.dark-theme .section-heading h2,
.dark-theme .contact-banner h2,
.dark-theme .auth-banner h2,
.dark-theme .collections-intro h1,
.dark-theme .directory-block h2,
.dark-theme .login-intro h1,
.dark-theme .login-panel h2,
.dark-theme .detail-panel h2,
.dark-theme .detail-story-card h2,
.dark-theme .detail-empty h1 {
  color: #1a1a1a;
}

.dark-theme .eyebrow {
  color: rgba(0, 0, 0, 0.45);
}

.dark-theme .hero-text,
.dark-theme .section-blurb,
.dark-theme .login-support-text {
  color: rgba(0, 0, 0, 0.6);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Hero dark card Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .hero-card {
  background: rgba(0, 0, 0, 0.13) !important;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  color: #f0f0f0;
}

.dark-theme .hero-card h2 {
  color: #000000;
}

.dark-theme .hero-card p {
  color: #000000;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Metrics Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .hero-metrics li {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}

.dark-theme .hero-metrics strong {
  color: #fff;
}

.dark-theme .hero-metrics span {
  color: rgba(240, 240, 240, 0.5);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Motion ribbon Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .motion-ribbon {
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.25));
}

.dark-theme .motion-ribbon-track span {
  color: #ccc;
}

.dark-theme .motion-ribbon-track span::before {
  background: #888;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Landing showcase Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .landing-showcase-card {
  background: rgba(0, 0, 0, 0.11) !important;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .landing-showcase-card h2 {
  color: #fff;
}

.dark-theme .landing-showcase-card p:last-child {
  color: rgba(240, 240, 240, 0.65);
}

.dark-theme .landing-showcase-card-dark {
  background: rgba(0, 0, 0, 0.13) !important;
}

.dark-theme .landing-showcase-card-accent {
  background: rgba(0, 0, 0, 0.11) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Collection panels Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .collection-panel,
.dark-theme .craft-card {
  background: rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .collection-panel h3,
.dark-theme .craft-card h3 {
  color: #fff;
}

.dark-theme .panel-index {
  color: rgba(255, 255, 255, 0.2);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Contact banner Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .contact-banner {
  background: rgba(0, 0, 0, 0.13) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Collections directory Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .directory-block {
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .directory-block-highlight {
  background: rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dark-theme .directory-list a,
.dark-theme .directory-link {
  color: #000000;
}

.dark-theme .directory-list a:hover {
  color: #fff;
}

.dark-theme .directory-link-primary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Catalogue Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .catalogue-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

.dark-theme .catalogue-card h3 {
  color: #000000;
}

.dark-theme .product-tags li {
  background: rgba(255, 255, 255, 0.08);
  color: #ccc;
}

.dark-theme .product-specs li {
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
}

.dark-theme .product-price,
.dark-theme .product-compare-price {
  color: #000000 !important;
}

.dark-theme .product-link-row {
  color: #000000 !important;
}

.dark-theme .empty-state {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Search / filter Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .search-field span {
  color: #000000;
}

.dark-theme .search-field input {


  color: #000000;
}

.dark-theme .search-field input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.dark-theme .filter-chip {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
  color: #000000;
}

.dark-theme .filter-chip.is-active {
  background: var(--color-primary);
  color: #fff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Buttons Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .button-primary {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
}

.dark-theme .button-primary:hover {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.dark-theme .button-secondary {
  background: rgb(0, 0, 0);

  color: #f0f0f0;
}

.dark-theme .button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.dark-theme .button:hover,
.dark-theme .button:focus-visible {
  box-shadow: 0 16px 26px rgba(255, 255, 255, 0.08);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Login fields Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .login-field span {
  color: rgba(0, 0, 0, 0);
}

.dark-theme .login-field input {
  color: #1a1a1a;
}

.dark-theme .login-field input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.dark-theme .login-field input:focus-visible {
  outline-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}

.dark-theme .login-company-card {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.dark-theme .login-company-card h2 {
  color: #1a1a1a;
}

.dark-theme .login-company-card p,
.dark-theme .login-company-note {
  color: rgba(0, 0, 0, 0.5);
}

.dark-theme .login-company-card strong {
  color: #555;
}

.dark-theme .login-divider {
  color: rgba(0, 0, 0, 0.3);
}

.dark-theme .login-divider::before,
.dark-theme .login-divider::after {
  background: rgba(0, 0, 0, 0.08);
}

.dark-theme .login-meta {
  border-top-color: rgba(0, 0, 0, 0.07);
}

.dark-theme .login-meta p,
.dark-theme .login-meta a {
  color: rgba(240, 240, 240, 0.4);
}

.dark-theme .login-meta a {
  color: rgba(240, 240, 240, 0.75);
}

.dark-theme .login-feedback {
  color: #f87171;
}

.dark-theme .login-feedback.is-success {
  color: #6ee7b7;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Auth banner Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .auth-banner {
  background: radial-gradient(circle at top right, rgba(182, 136, 99, 0.15), transparent 40%), var(--color-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Product detail (dark) Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .detail-panel {
  color: #000000;
}

.dark-theme .detail-panel .eyebrow {
  color: #000000;
}

.dark-theme .detail-panel h2 {
  color: #000000;
}

.dark-theme .detail-lead {
  color: #000000;
}

.dark-theme .detail-price-row strong {
  color: #000000;
}

.dark-theme .detail-price-row span {
  color: #000000;
}

.dark-theme .detail-compare-price {
  color: #000000;
}

.dark-theme .variant-chip {
  background: #111;
  border-color: #333;
  color: #ddd;
}

.dark-theme .variant-chip:hover {
  border-color: #b68863;
  background: #222;
}

.dark-theme .variant-chip.is-active {
  background: #2a1f17;
  color: #b68863;
}

.dark-theme .detail-discount-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.dark-theme .detail-shipping-note {
  color: #000000;
}

.dark-theme .detail-accordion {
  border-color: rgba(0, 0, 0, 0.12);
}

.dark-theme .detail-accordion-toggle {
  color: #000000;
}

.dark-theme .detail-accordion-toggle svg {
  stroke: #000000;
}

.dark-theme .detail-feature-list li,
.dark-theme .detail-care-list li {
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
}

.dark-theme .detail-spec-grid article,
.dark-theme .detail-story-card {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #000000;
}

.dark-theme .detail-spec-grid span {
  color: #000000;
}

.dark-theme .detail-spec-grid strong {
  color: #000000;
}

.dark-theme .detail-thumb {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}

.dark-theme .detail-thumb:hover,
.dark-theme .detail-thumb.is-active {
  border-color: #000000;
}

.dark-theme .narrative-block {
  border-color: rgba(0, 0, 0, 0.08);
}

.dark-theme .narrative-block strong {
  background: rgba(0, 0, 0, 0.03);
  color: #000000;
}

.dark-theme .narrative-block p {
  color: #000000;
}

.dark-theme .add-to-cart-btn {
  color: #000000 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.dark-theme .add-to-cart-btn:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.4) !important;
}

.dark-theme .detail-stage-copy {
  background: rgba(0, 0, 0, 0.72);
}

.dark-theme .detail-view-label {
  color: #000000;
}

.dark-theme .back-link {
  color: #000000;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Admin tables Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .admin-demand-table-wrap,
.dark-theme .admin-product-table-wrap {
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .admin-demand-table th,
.dark-theme .admin-product-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
}

.dark-theme .admin-demand-table td,
.dark-theme .admin-product-table td {
  color: #000000;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-theme .admin-demand-table tbody tr:hover,
.dark-theme .admin-product-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dark-theme .admin-modal-backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dark-theme .admin-modal-content {
  background: #111;
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .admin-modal-header {
  background: #161616;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .admin-modal-header h3 {
  color: #fff;
}

.dark-theme .demand-field span {
  color: #aaa;
}

.dark-theme .demand-field input,
.dark-theme .demand-field select,
.dark-theme .demand-field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f0f0f0;
}

.dark-theme .demand-field select option {
  background-color: #1a1a1a;
  color: #fff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Ã¢â€â‚¬Ã¢â€â‚¬ */
.dark-theme .site-footer {
  color: rgba(240, 240, 240, 0.32);
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FLOATING GALLERY Ã¢â‚¬â€ scattered decorative images
   Fixed layer between Vanta bg and page content
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

.floating-gallery {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fg-img {
  position: absolute;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  animation: fgFadeUp 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Left side placements Ã¢â€â‚¬Ã¢â€â‚¬ */
.fg-img:nth-child(1) {
  width: clamp(140px, 12vw, 220px);
  aspect-ratio: 3/4;
  top: 5vh;
  left: 0.6vw;
  animation-delay: 0.1s;
}

.fg-img:nth-child(2) {
  width: clamp(130px, 11vw, 200px);
  aspect-ratio: 4/5;
  top: 44vh;
  left: 0.8vw;
  animation-delay: 0.38s;
}

.fg-img:nth-child(3) {
  width: clamp(120px, 10vw, 185px);
  aspect-ratio: 3/4;
  bottom: 4vh;
  left: 0.5vw;
  animation-delay: 0.62s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Right side placements Ã¢â€â‚¬Ã¢â€â‚¬ */
.fg-img:nth-child(4) {
  width: clamp(140px, 12vw, 220px);
  aspect-ratio: 3/4;
  top: 7vh;
  right: 0.6vw;
  animation-delay: 0.22s;
}

.fg-img:nth-child(5) {
  width: clamp(130px, 11vw, 200px);
  aspect-ratio: 4/5;
  top: 40vh;
  right: 0.8vw;
  animation-delay: 0.5s;
}

.fg-img:nth-child(6) {
  width: clamp(120px, 10vw, 185px);
  aspect-ratio: 3/4;
  bottom: 5vh;
  right: 0.5vw;
  animation-delay: 0.74s;
}

@keyframes fgFadeUp {
  0% {
    opacity: 0;
    transform: translateY(70px) scale(0.88);
  }

  60% {
    opacity: 0.28;
  }

  100% {
    opacity: 0.24;
    transform: translateY(0) scale(1);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Vanta canvas Ã¢â‚¬â€ full screen Ã¢â€â‚¬Ã¢â€â‚¬ */
#vanta-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100% !important;
  height: 100% !important;
}

/* Content sits above both Vanta and floating gallery */
.dark-theme .site-header,
.dark-theme main,
.dark-theme .collections-main,
.dark-theme .login-main,
.dark-theme .detail-main,
.dark-theme .site-footer {
  position: relative;
  z-index: 2;
}

/* Override header specifically for dropdown visibility */
.dark-theme .site-header {
  z-index: 2000 !important;
}

/* Hide floating gallery on narrow screens */
@media (max-width: 1000px) {
  .floating-gallery {
    display: none;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-footer {
  background: var(--color-primary) !important;
  color: var(--color-cream) !important;
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
  width: 100%;
  display: block;
  /* Ensure it's not flex by default from other rules */
}

.site-footer p,
.site-footer a,
.footer-column p,
.footer-column p a {
  color: var(--color-cream) !important;
}

.footer-content {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 3rem;
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: #000000 !important;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-brand-col {
  text-align: right;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  max-width: 1800px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom,
.footer-bottom p,
.footer-bottom a,
.footer-bottom p a {
  color: var(--color-cream) !important;
  text-decoration: none;
}

.footer-bottom a {
  margin: 0 0.5rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.footer-bottom a:hover {
  border-bottom-color: var(--color-cream);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.footer-social a {
  color: #ffffff;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #00d084;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Prevent internal images from overflowing */
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s;
}

.chat-widget:hover {
  transform: scale(1.1);
}

.chat-widget img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-widget svg {
  width: 28px;
  height: 28px;
  display: none;
  /* Hide SVG if using IMG */
}

.badge {
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.badge-unread {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.badge-read {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.message-text {
  max-width: 400px;
  white-space: pre-wrap;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  opacity: 0.9;
  color: #000;
}

/* Navbar Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  min-width: 450px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

@media (max-width: 800px) {
  .dropdown-menu {
    min-width: unset;
    width: 90vw;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-column h4 {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream);
  opacity: 0.6;
}

.dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.dropdown-column ul li a {
  color: var(--color-cream) !important;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
  display: block;
  white-space: nowrap;
}

.dropdown-column ul li a:hover {
  opacity: 0.5;
  transform: translateX(5px);
}

.admin-contact-section {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Product Narrative Blocks Ã¢â€â‚¬Ã¢â€â‚¬ */
.detail-narrative {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.narrative-block strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #edeae6;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.narrative-block p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Product Reviews Section Ã¢â€â‚¬Ã¢â€â‚¬ */
.product-reviews-section {
  margin-top: 1.5rem;
}

.product-reviews-section .inline-reviews {
  padding: 2.5rem;
  background: rgba(255, 253, 249, 0.85);
  border-radius: var(--radius-large);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0;
}

.product-reviews-section .section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin: 0;
}

.reviews-meta-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.inline-reviews-count {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.write-review-toggle {
  background: none;
  border: none;
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.compact-form {
  background: #fff !important;
  margin-bottom: 1.5rem;
  padding: 1.2rem !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.compact-input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  background: #fafafa;
  margin-bottom: 0.8rem;
  color: #000;
}

.button-small {
  padding: 0.5rem 1rem !important;
  min-height: auto !important;
  font-size: 0.85rem !important;
}

.inline-review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-login-gate {
  padding: 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 18px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.review-login-gate p {
  margin-bottom: 1.2rem;
  color: var(--color-muted);
  font-weight: 600;
}

.inline-review-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.inline-review-card .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inline-review-card .review-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
}

.inline-review-card .review-date {
  font-size: 0.8rem;
  color: var(--color-muted);
  opacity: 0.6;
}

.inline-review-card .review-comment {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin: 0.4rem 0 0;
}

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  opacity: 0.5;
  font-style: italic;
}

/* Star Rating System */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ddd;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, transform 0.1s;
  line-height: 1;
}

.star-btn:hover,
.star-btn:hover~.star-btn,
.star-btn.is-active,
.star-btn.is-active~.star-btn {
  color: #ffc107;
}

.star-btn:active {
  transform: scale(0.9);
}

.review-stars {
  color: #ffc107 !important;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-delete-btn {
  background: none;
  border: none;
  color: #ff4444;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.review-delete-btn:hover {
  opacity: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Index Preview Section Ã¢â€â‚¬Ã¢â€â‚¬ */
.index-preview-section {
  padding: clamp(40px, 6vw, 80px) clamp(16px, 5vw, 60px);
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.index-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3.5rem);
  margin: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
}

@media (max-width: 1024px) {
  .index-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.catalogue-preview-card {
  border-radius: var(--radius-large);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  border: 1px solid rgba(33, 3, 48, 0.09);
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  margin-bottom: clamp(5rem, 8vw, 8rem);
}



.idx-teaser-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.idx-teaser-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-carousel-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.idx-teaser-visual {
  aspect-ratio: 4 / 3;
  height: auto;
  position: relative;
  overflow: hidden;
}

.idx-teaser-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.idx-teaser-card:hover .idx-teaser-visual img {
  transform: scale(1.04);
}

.idx-teaser-copy {
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.idx-teaser-copy h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.index-browse-wrap {
  text-align: center;
  padding-bottom: 16px;
}

.index-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  border-radius: 100px;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  color: #0d0d0d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.index-browse-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255, 255, 255, 0.2);
  background: #fff;
}

.index-browse-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Newsletter Popup Ã¢â€â‚¬Ã¢â€â‚¬ */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.newsletter-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.newsletter-modal {
  background: #000035;
  /* Mustard/Yellow from screenshot */
  width: 100%;
  max-width: 400px;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-overlay.is-visible .newsletter-modal {
  transform: translateY(0);
}

.newsletter-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-cream);
  opacity: 0.7;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  transition: color 0.2s;
}

.newsletter-close:hover {
  color: var(--color-sand);
}

.newsletter-modal h2 {
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 500;
}

.newsletter-modal p {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: #000;
}

.newsletter-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.newsletter-submit:hover {
  background: #222;
  transform: translateY(-2px);
}

.newsletter-submit:active {
  transform: translateY(0);
}


.size-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.size-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.size-modal-content {
  background: #fff;
  width: 100%;
  max-width: 650px;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.size-modal-overlay.is-visible .size-modal-content {
  transform: translateY(0) scale(1);
}

.size-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1;
  transition: color 0.2s;
}

.size-modal-close:hover {
  color: #000;
}

.size-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 8px;
  color: #222;
}

.size-modal-subtitle {
  color: #666;
  margin-bottom: 32px;
  font-size: 1rem;
}

.modal-quantity-wrapper {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.modal-quantity-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  font-weight: 600;
}

.modal-quantity-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #f8f8f8;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
}

.modal-qty-btn:hover {
  background: #f2c94c;
  border-color: #f2c94c;
  transform: scale(1.1);
}

#modalQtyInput {
  width: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  -moz-appearance: textfield;
}

#modalQtyInput::-webkit-outer-spin-button,
#modalQtyInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
  margin-bottom: 32px;
}

.size-box {
  padding: 20px 10px;
  background: #f8f8f8;
  border: 1.5px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.size-box:hover {
  background: #fff;
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.size-box strong {
  font-size: 1.1rem;
  color: #111;
}

.size-box span {
  font-size: 0.85rem;
  color: #777;
}

.size-modal-footer p {
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 600px) {
  .size-modal-content {
    padding: 30px 20px;
  }

  .size-grid {
    grid-template-columns: repeat(2, 1fr);

    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
  }
}

.newsletter-submit:hover {
  background: #222;
  transform: translateY(-2px);
}

.newsletter-submit:active {
  transform: translateY(0);
}

.add-to-cart-btn:hover {
  background: rgba(242, 201, 76, 0.1) !important;
  transform: translateY(-2px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Sticky Luxury Header Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-header {
  position: sticky !important;
  /* Force sticky positioning to push carousel down below nav bar */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-primary) !important;
  /* Solid brand navy blue background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0.8rem 4rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Restored Carousel & Grid Styles Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-carousel-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
  margin-top: 0;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 100vh;
  /* Large immersive height like example */
  display: block;
  width: 100%;
  background: #1a1a1a !important;
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 100vh;
  }

  .site-header {
    position: relative !important;
    background: var(--color-primary) !important;
    padding: 0.75rem 1.5rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  }

  .hero-carousel-nav {
    bottom: 1.5rem;
    padding: 0.5rem 1.2rem;
    gap: 1rem;
  }

  .hero-carousel-arrow {
    display: none;
    /* Cleaner mobile look */
  }

  .hero-carousel-pause {
    padding-left: 0.8rem;
  }
}

.hero-carousel-track {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 2s ease-in-out !important;
  z-index: 1;
}

.hero-carousel-item.active {
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 2;
}

.hero-carousel-item img,
.hero-carousel-item video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  user-select: none !important;
  z-index: 1 !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Carousel Text Overlays Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-carousel-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  /* Brand Primary Deep Navy with 20% Opacity */
  background: rgba(0, 0, 53, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  z-index: 10 !important;
  /* Force high index over media layer */
  padding: 2rem !important;
  box-sizing: border-box !important;
}

.hero-carousel-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}

.hero-carousel-title {
  font-family: var(--font-heading), serif;
  font-size: clamp(2rem, 5.5vw, 4rem) !important;
  /* 32px mobile, 42px tablet, 64px desktop */
  font-weight: 500 !important;
  /* Medium weight instead of heavy bold */
  color: #ffffff;
  line-height: 1.1 !important;
  /* Elegant tight line-height */
  letter-spacing: -0.015em !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.hero-carousel-subtext {
  font-family: var(--font-body), sans-serif;
  color: #f2eee3;
  /* Soft cream/beige */
  font-size: clamp(1rem, 2vw, 1.125rem);
  /* Refined 16px to 18px body size */
  font-weight: 400;
  /* Regular weight for cleaner typography */
  line-height: 1.7;
  /* Standard luxury line height */
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0.8rem 0 1.5rem 0;
  /* Breathable spacing */
  max-width: 700px;
  /* Luxury reading width limit */
}

.hero-carousel-cta {
  padding: 0.9rem 2.4rem;
  /* High-end expanded horizontal padding */
  font-size: 0.9rem;
  font-weight: 500;
  /* Understated medium weight */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffffff;
  color: #000035;
  border: 1px solid #ffffff;
  border-radius: 100px;
  cursor: pointer;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  display: inline-block;
}

.hero-carousel-cta:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero-carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  /* Darker pill like example */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-carousel-arrow {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.2rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-arrow:hover {
  opacity: 1;
  transform: scale(1.2);
}

.hero-carousel-dots {
  display: flex;
  gap: 1rem;
}

.hero-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel-dots .dot.active {
  background: white;
  border-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero-carousel-pause {
  background: none;
  border: none;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0.6;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: opacity 0.3s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Catalogue Preview Grid Ã¢â€â‚¬Ã¢â€â‚¬ */
.index-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.idx-teaser-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  /* Uniform square shape */
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.idx-teaser-card:hover {
  transform: translateY(-8px);
}

.idx-teaser-visual {
  width: 100%;
  height: 100%;
}

.idx-teaser-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idx-teaser-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.idx-teaser-copy h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.index-browse-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.index-browse-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.index-browse-btn:hover {
  transform: scale(1.05);
  background: var(--color-primary);
}

.index-browse-btn svg {
  width: 20px;
  height: 20px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FINAL MOBILE OVERRIDES (Priority)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 768px) {

  /* Remove text links from header */
  .site-nav {
    display: none !important;
  }

  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex !important;
    order: 3;
  }

  /* Make header float on mobile too */
  .site-header {
    position: relative !important;
    /* Changed from absolute to push content down */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: var(--color-primary) !important;
    /* Match your green theme */
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 0.75rem 1rem !important;
    z-index: 1000 !important;
    display: flex !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    align-items: center !important;
    border-radius: 0 !important;
  }

  .brand {
    order: 1 !important;
  }

  .nav-actions {
    order: 2 !important;
    margin-left: auto !important;
    margin-right: 1rem !important;
  }

  /* FIX CROPPING: Lock height to exact 16:9 aspect-ratio to fit wide rug/video content perfectly */
  .hero-carousel {
    height: 56.25vw !important;
    aspect-ratio: 16 / 9 !important;
    background: #111111 !important;
  }

  .hero-carousel-item img,
  .hero-carousel-item video {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Mobile Carousel Overlay Scaling & Layout */
  .hero-carousel-overlay {
    padding: 1rem !important;
  }

  .hero-carousel-content {
    gap: 0.6rem !important;
    padding: 0.5rem !important;
    max-width: 100% !important;
  }

  .hero-carousel-title {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
  }

  .hero-carousel-subtext {
    font-size: 0.72rem !important;
    line-height: 1.5 !important;
    margin: 0.2rem 0 0.5rem 0 !important;
    letter-spacing: 0.02em !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4) !important;
  }

  .hero-carousel-cta {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.75rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  }

  /* Compact navigation for mobile */
  .hero-carousel-nav {
    bottom: 0.5rem !important;
    padding: 0.4rem 1rem !important;
    gap: 0.8rem !important;
    background: rgba(0, 0, 0, 0.4) !important;
  }

  .hero-carousel-arrow {
    display: none !important;
  }

  /* Compact products for 2-column view */
  .catalogue-grid .catalogue-card,
  .index-preview-grid .idx-teaser-card {
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-copy {
    padding: 0.5rem 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
  }

  .catalogue-card .product-card-title {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    margin-bottom: 0.3rem !important;
  }

  .catalogue-card .product-card-price {
    font-size: 0.85rem !important;
    margin-bottom: 0.6rem !important;
  }

  .catalogue-card .product-card-btn {
    font-size: 0.76rem !important;
    padding: 0.55rem 0.7rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-header p {
    font-size: 0.75rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.2rem !important;
  }

  .product-price {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    margin-top: 0.2rem;
  }

  .catalogue-card,
  .idx-teaser-card {
    min-width: 0 !important;
    /* Force grid compliance */
    max-width: 100% !important;
    width: auto !important;
  }

  .idx-teaser-copy {
    padding: 0.6rem !important;
  }

  .idx-teaser-copy h3 {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .product-visual img {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
  }
}

/* â”€â”€ Centered Header Content (Desktop) â”€â”€ */
@media (min-width: 769px) {
  .site-header {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 3.5rem !important;
  }

  .site-header::after {
    display: none !important;
  }

  .brand {
    margin: 0 !important;
  }

  .site-nav {
    margin: 0 !important;
  }

  .nav-actions {
    margin: 0 !important;
  }
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.pagination button,
.pagination span {
  background: none;
  border: none;
  color: currentColor;
  padding: 0.5rem;
  min-width: 2rem;
  text-align: center;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.pagination .page-number.active {
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.pagination button:disabled,
.pagination .ellipsis {
  cursor: default;
  opacity: 0.5;
}

.pagination button:hover:not(:disabled):not(.active):not(.ellipsis) {
  opacity: 0.7;
}

.pagination .nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Global Cursor Override */


/* Custom Cursor Styles */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background-image: url("assets/magic-carpet.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 9999;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.4));
  transition: width 0.3s cubic-bezier(0.2, 1, 0.2, 1), height 0.3s cubic-bezier(0.2, 1, 0.2, 1), filter 0.3s ease;
}

.custom-cursor.cursor-hover {
  width: 64px;
  height: 64px;
  background-image: url("assets/genie.png");
  filter: drop-shadow(4px 8px 8px rgba(0, 0, 0, 0.6));
}

/* 2. Glassmorphic Sticky Header */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.6) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, padding 0.3s ease;
}

/* 3. Dropdown Glassmorphism */
.dropdown-menu {
  background: rgba(15, 15, 15, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.2, 1, 0.2, 1), transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
  pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 4. Luxury Button Hover (Sweep/Shine) */
.hero-carousel-cta,
.index-browse-btn,
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.hero-carousel-cta::after,
.index-browse-btn::after,
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: -1;
  transition: left 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.hero-carousel-cta:hover::after,
.index-browse-btn:hover::after,
.btn-primary:hover::after {
  left: 100%;
}

/* 5. Teaser Cards Hover & Scale */
.idx-teaser-card {
  overflow: hidden;
  position: relative;
}

.idx-teaser-visual img {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.idx-teaser-card:hover .idx-teaser-visual img {
  transform: scale(1.08);
}

.idx-teaser-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.idx-teaser-card:hover::after {
  opacity: 1;
}

/* 6. Parallax Hero */
.hero-carousel-item img,
.hero-carousel-item video {
  /* Using background-attachment: fixed doesn't work well on mobile, we will just use a subtle CSS scale approach for a faux-parallax feel during transition */
}

/* 7. Draggable Chat Widget Cursor Fix */
.chat-widget {
  cursor: grab;
}

.chat-widget:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 0.5rem !important;
  }

  .nav-action-link img {
    width: 28px !important;
    height: 28px !important;
  }

  .brand-logo {
    height: 38px !important;
    width: auto !important;
  }

  .site-header {
    padding: 0.5rem 0.8rem !important;
  }
}

.dark-theme .mobile-menu-toggle .bar {
  background: var(--color-cream) !important;
}

@media (max-width: 768px) {

  body,
  a,
  button,
  .idx-teaser-card,
  .hero-carousel-arrow,
  .carousel-video {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none !important;
  }
}

/* Fix for text color on white sections */
.contact-info p,
.contact-info li,
.contact-info h3 span {
  color: #222 !important;
}

.dark-theme .hero-card p,
.dark-theme .catalogue-preview-card p,
.dark-theme .collection-strip p,
.dark-theme .contact-banner p {
  color: #ffffff !important;
}

/* --- GLOBAL CONTRAST FIXES --- */
/* Elements on Dark Backgrounds -> White Text */
.site-header a,
.site-header p,
.site-header h1,
.site-header h2,
.site-header h3,
.site-header span,
.site-header div,
.site-header li,
.site-footer a,
.site-footer p,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer span,
.site-footer div,
.site-footer li,
.hero-carousel-section p,
.hero-carousel-section h1,
.hero-carousel-section h2,
.hero-carousel-section h3,
.hero-carousel-section span,
.contact-hero p,
.contact-hero h1,
.contact-hero h2,
.contact-hero h3,
.contact-hero span,
.idx-teaser-copy p,
.idx-teaser-copy h1,
.idx-teaser-copy h2,
.idx-teaser-copy h3,
.idx-teaser-copy span,
.dark-theme .admin-sidebar,
.dark-theme .admin-sidebar a,
.dark-theme .admin-sidebar h2,
.dark-theme .admin-sidebar h3,
.dark-theme .chat-widget,
.dark-theme .chat-widget p,
.dark-theme .chat-widget span,
.dark-theme .chat-widget h1,
.dark-theme .chat-widget h2,
.dark-theme .chat-widget h3 {
  color: #ffffff !important;
}

/* Specific Dark Theme Fixes for Cards */
.dark-theme .hero-card h1,
.dark-theme .hero-card h2,
.dark-theme .hero-card h3,
.dark-theme .hero-card span,
.dark-theme .hero-card li,
.dark-theme .catalogue-preview-card h1,
.dark-theme .catalogue-preview-card h2,
.dark-theme .catalogue-preview-card h3,
.dark-theme .catalogue-preview-card span,
.dark-theme .catalogue-preview-card li,
.dark-theme .collection-strip h1,
.dark-theme .collection-strip h2,
.dark-theme .collection-strip h3,
.dark-theme .collection-strip span,
.dark-theme .collection-strip li,
.dark-theme .contact-banner h1,
.dark-theme .contact-banner h2,
.dark-theme .contact-banner h3,
.dark-theme .contact-banner span,
.dark-theme .contact-banner li,
.dark-theme .collection-panel p,
.dark-theme .collection-panel h1,
.dark-theme .collection-panel h2,
.dark-theme .collection-panel h3,
.dark-theme .collection-panel span,
.dark-theme .collection-panel li {
  color: #ffffff !important;
}

/* Elements on White Backgrounds -> Black Text */
.contact-container p,
.contact-container h1,
.contact-container h2,
.contact-container h3,
.contact-container span,
.contact-container li,
.hero-card p,
.hero-card h1,
.hero-card h2,
.hero-card h3,
.hero-card span,
.hero-card li,
.catalogue-preview-card p,
.catalogue-preview-card h1,
.catalogue-preview-card h2,
.catalogue-preview-card h3,
.catalogue-preview-card span,
.catalogue-preview-card li,
.collection-strip p,
.collection-strip h1,
.collection-strip h2,
.collection-strip h3,
.collection-strip span,
.collection-strip li,
.contact-banner p,
.contact-banner h1,
.contact-banner h2,
.contact-banner h3,
.contact-banner span,
.contact-banner li,
.home-brand-quote p,
.home-brand-quote h1,
.home-brand-quote h2,
.home-brand-quote h3,
.home-brand-quote span,
.home-brand-quote li {
  color: #000000 !important;
}

.detail-stage:hover .detail-stage-image {
  transform: scale(1.6);
  cursor: crosshair !important;
}

/* --- Visualizer Modal --- */
.visualizer-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.visualizer-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.visualizer-modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.dark-theme .visualizer-modal-content {
  background: #111111;
  color: #fff;
}

.visualizer-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: inherit;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.visualizer-layout {
  display: flex;
  flex: 1;
  flex-direction: row;
}

@media (max-width: 768px) {
  .visualizer-layout {
    flex-direction: column;
  }
}

.visualizer-controls {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-theme .visualizer-controls {
  border-right-color: rgba(255, 255, 255, 0.1);
}

.visualizer-controls h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.visualizer-inputs {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.visualizer-inputs .input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.visualizer-inputs input {
  padding: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.03);
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.visualizer-inputs input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: transparent;
}

.dark-theme .visualizer-inputs input {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.dark-theme .visualizer-inputs input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.vis-hint {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* 3D Stage */
.visualizer-stage {
  flex: 1.5;
  background: radial-gradient(circle at center, #ffffff 0%, #f4f4f4 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
}

.dark-theme .visualizer-stage {
  background: radial-gradient(circle at center, #2a2a2a 0%, #151515 100%);
}

.vis-room-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10%;
  transform-style: preserve-3d;
}

.vis-sofa {
  width: 250px;
  height: 80px;
  background: linear-gradient(to bottom, #d0d0d0, #b0b0b0);
  border-radius: 12px 12px 0 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dark-theme .vis-sofa {
  background: linear-gradient(to bottom, #555555, #3d3d3d);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.vis-sofa::after {
  content: '';
  position: absolute;
  inset: 10px 20px 0 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0 0;
}

.vis-rug-container {
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 800px;
  margin-top: -20px;
  /* Slide under sofa */
  z-index: 1;
}

.vis-rug {
  /* Default 5x8 ratio */
  width: 178px;
  height: 285px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eee;
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.4);

  /* 3D floor projection */
  transform-origin: top center;
  transform: rotateX(60deg) translateZ(-50px);
  transition: width 0.4s ease, height 0.4s ease;
  border-radius: 4px;
}

/* --- Wishlist Button --- */
.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(4px);
  color: #333;
}

.wishlist-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.wishlist-btn.is-active svg {
  fill: #e74c3c;
  stroke: #e74c3c;
}

.dark-theme .wishlist-btn {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.dark-theme .wishlist-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.dark-theme .wishlist-btn.is-active svg {
  fill: #ff6b6b;
  stroke: #ff6b6b;
}

/* Nav Wishlist Icon */
.nav-wishlist-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  margin-left: 0.5rem;
  position: relative;
}

.nav-wishlist-icon svg {
  width: 18px;
  height: 18px;
}

.nav-wishlist-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* --- Mega Menu --- */
.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-theme .mega-menu {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.mega-menu-grid {
  display: flex;
  gap: 2rem;
}

.mega-menu-col {
  flex: 1;
}

.mega-menu-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.dark-theme .mega-menu-col h4 {
  color: #fff;
}

.mega-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-col li {
  margin-bottom: 0.5rem;
}

.mega-menu-col a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.dark-theme .mega-menu-col a {
  color: rgba(255, 255, 255, 0.8);
}

.mega-menu-col a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.dark-theme .mega-menu-col a:hover {
  color: #fff;
}

.mega-menu-featured {
  flex: 1.5;
  display: flex;
  gap: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 2rem;
}

.dark-theme .mega-menu-featured {
  border-left-color: rgba(255, 255, 255, 0.1);
}

.mega-menu-card {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  height: 180px;
}

.mega-menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mega-menu-card:hover img {
  transform: scale(1.05);
}

.mega-menu-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- GLOBAL TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: #1a1a1a;
  color: #f7f5f0;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 300px;
  max-width: 400px;
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  border-left: 4px solid #f2c94c;
}

.toast.toast-success {
  border-left-color: #4caf50;
}

.toast.toast-error {
  border-left-color: #f44336;
}

.toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-message {
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.toast-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.toast-close:hover {
  color: #f7f5f0;
}

/* Global Cursor Override */
body,
a,
button,
input,
select,
textarea,
.nav-item,
.button,
.admin-tab-btn {
  cursor: none !important;
}

/* --- Trust Strip --- */
.trust-strip {
  padding: clamp(3rem, 5vw, 4rem) 2rem;
  background-color: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 6rem auto;
  max-width: 1400px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  font-size: 2rem;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all 0.8s ease;
}

.trust-item:hover .trust-icon {
  filter: grayscale(0%);
  transform: translateY(-5px);
}

.trust-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
  max-width: 25ch;
  line-height: 1.5;
}

.idx-teaser-copy p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  line-height: 1.4;
  font-weight: 300;
  opacity: 0.8;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Craft Card Image Styles */
.craft-card-image {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-small);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
}

.craft-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-card:hover .craft-card-image img {
  transform: scale(1.05);
}

/* --- Manufacturing Excellence Section --- */
.manufacturing-section {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: clamp(1.5rem, 2vw, 2.5rem) 5%;
}

.manufacturing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.manufacturing-section h2,
.manufacturing-section h3,
.manufacturing-section p,
.manufacturing-section .eyebrow,
.manufacturing-section .manufacturing-step {
  color: #ffffff !important;
}


.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
}

.manufacturing-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manufacturing-card-image {
  width: 100%;
  border-radius: var(--radius-small);
  overflow: hidden;
}

.manufacturing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.manufacturing-card:hover .manufacturing-card-image img {
  transform: scale(1.05);
}

.manufacturing-step {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.manufacturing-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.manufacturing-card-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --- Certification Strip --- */
.certification-strip {
  padding: 2rem;
  background-color: var(--color-primary);
  color: var(--color-cream);
  text-align: center;
}

.certification-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}

.cert-item span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}


/* --- About Us Page --- */
.about-hero {
  background: var(--color-primary);
  color: var(--color-cream);
  text-align: center;
}

.about-hero p {
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.about-text p {
  color: var(--color-text);
}

.why-choose-us {
  background: var(--color-sand);
  width: 100%;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.why-card {
  background: #f2eee3;
  padding: 2.5rem;
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-card);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card p {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Contact Us Page --- */
.contact-hero {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: calc(clamp(4rem, 8vw, 8rem) + 80px) 2rem clamp(4rem, 8vw, 8rem);
}

.contact-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-block p {
  color: var(--color-muted);
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.6;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-small);
  font-family: inherit;
  background: #fff;
  transition: border-color 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.submit-btn {
  grid-column: span 2;
  background: var(--color-primary);
  color: #fff;
  padding: 1.2rem;
  border: none;
  border-radius: var(--radius-small);
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover {
  background: var(--color-secondary);
}

.map-section {
  width: 100%;
  height: 500px;
  filter: grayscale(0.2);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}