/* ==========================================================================
   MIKUMANTRA — Design Tokens
   Palette: dusty rose / antique gold on ivory silk, deep plum ink
   Display: Cormorant Garamond · Body: Jost · Eyebrow/Labels: Poppins
   Signature motif: the drawn gold "thread" — a hand-stitched line that
   winds through the page, standing in for the thread that becomes jewelry.
   ========================================================================== */

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

:root {
  --ivory: #FBF4EE;
  --ivory-deep: #F5E9DE;
  --blush: #F3D9DE;
  --blush-deep: #ECC6CD;
  --mauve: #C98A9C;
  --mauve-deep: #A5677B;
  --plum: #4A2536;
  --charcoal: #2E2224;
  --gold: #C6A25D;
  --gold-light: #E4C98A;
  --gold-deep: #9C7A3E;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-eyebrow: 'Poppins', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 10px 40px rgba(74, 37, 54, 0.10);
  --shadow-lift: 0 20px 60px rgba(74, 37, 54, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --fluid-container-width: 1620px;
  --fluid-container-offset: 15px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

.container,
.container-fluid {
  width: 100%;
  margin-inline: auto;
  max-width: calc(var(--fluid-container-width, 1620px) + var(--fluid-container-offset) * 2);
}

.container {
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.container-fluid {
  padding-inline: 15px;
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: .75rem 1.25rem;
  background: var(--plum);
  color: var(--ivory);
  font-family: var(--font-eyebrow);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

/* --------------------------------------------------------------------
   Page load animation
   -------------------------------------------------------------------- */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

.page-veil .veil-logo {
  width: clamp(140px, 28vw, 220px);
  height: auto;
  border-radius: 12px;
  opacity: 0;
  transform: scale(.92);
  animation: veil-in .8s var(--ease) forwards .15s;
}

@keyframes veil-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.page-veil.hide {
  opacity: 0;
  visibility: hidden;
}

body.loaded .reveal-on-load {
  animation: fade-up .9s var(--ease) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view>* {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* --------------------------------------------------------------------
   The Gold Thread — signature divider
   -------------------------------------------------------------------- */
.thread {
  width: 100%;
  display: block;
  overflow: visible;
}

.thread path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.6s var(--ease);
}

.thread.in-view path {
  stroke-dashoffset: 0;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 244, 238, 0.85);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(198, 162, 93, 0.25);
  transition: box-shadow .4s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: clamp(36px, 5vw, 46px);
  width: auto;
  border-radius: 8px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.brand-logo--footer {
  height: 42px;
}

.nav-links {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.6rem);
  font-family: var(--font-eyebrow);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-block: .3rem;
  color: var(--charcoal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--mauve-deep);
}

.nav-cta {
  display: none;
}

@media (min-width: 760px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-eyebrow);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--plum);
    color: var(--ivory);
    padding: .7rem 1.4rem;
    border-radius: 999px;
    transition: transform .35s var(--ease), background .35s var(--ease);
  }

  .nav-cta:hover {
    background: var(--mauve-deep);
    transform: translateY(-2px);
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: .4rem;
  z-index: 60;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--plum);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--ivory-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--plum);
}

.mobile-menu .ig-line {
  font-family: var(--font-eyebrow);
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--mauve-deep);
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

@media (max-width: 899px) {
  .nav-links {
    display: none;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-eyebrow);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .95rem 2.1rem;
  border-radius: 999px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(198, 162, 93, 0.4);
}

.btn-outline {
  border: 1px solid var(--plum);
  color: var(--plum);
}

.btn-outline:hover {
  background: var(--plum);
  color: var(--ivory);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--plum);
  color: var(--ivory);
}

.btn-whatsapp:hover {
  background: var(--mauve-deep);
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold-deep);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--plum);
}

.hero h1 em {
  font-style: italic;
  color: var(--mauve-deep);
  font-weight: 500;
}

.hero p.lead {
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: 1.05rem;
  color: #5a4249;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  margin-top: 2.6rem;
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.8rem);
}

.hero-stats dt strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--plum);
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dd {
  font-family: var(--font-eyebrow);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mauve-deep);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--blush) 0%, var(--blush-deep) 55%, transparent 78%);
  border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%;
  animation: blob-morph 12s ease-in-out infinite;
}

@keyframes blob-morph {

  0%,
  100% {
    border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%;
  }

  50% {
    border-radius: 42% 58% 40% 60% / 55% 40% 60% 45%;
  }
}

.hero-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual .ring-1 {
  animation: float-y 6s ease-in-out infinite;
}

.hero-visual .ring-2 {
  animation: float-y 7s ease-in-out infinite 1s;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.4rem, 6vw, 3.6rem);
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin-bottom: .8rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-deep);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--plum);
}

.section-head p {
  margin-top: .9rem;
  color: #5a4249;
}

.section-alt {
  background: var(--ivory-deep);
}

/* ==========================================================================
   PRODUCTS GRID
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
  margin-inline: auto;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(.95rem, 2.6vw, 1.2rem);
  }
}

@media (max-width: 680px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: 0;
  height: 100%;
}

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

.product-media {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-media svg {
  width: 46%;
  height: 46%;
  transition: transform .6s var(--ease);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
}

.product-media .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card:hover .product-media svg {
  transform: scale(1.12) rotate(-3deg);
}

.product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0);
  background: linear-gradient(160deg, rgba(255, 255, 255, .35), transparent 55%);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-eyebrow);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--plum);
  color: var(--ivory);
  padding: .3rem .7rem;
  border-radius: 999px;
  z-index: 2;
  display: none;
}

.product-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}

.product-body {
  align-items: center;
  text-align: center;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--plum);
}

.product-price {
  font-family: var(--font-eyebrow);
  font-size: .95rem;
  color: var(--gold-deep);
  font-weight: 600;
}

/* Larger, centered price box for clearer pricing */
.product-price-row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .4rem;
  margin: .35rem auto 0;
}

.product-price--sale {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.product-price--compare {
  font-size: .9rem;
  color: #8f8f8f;
  opacity: .92;
  margin-left: .45rem;
}

.product-price--compare s {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
  color: inherit;
}

.product-price-note {
  display: block;
  font-size: .85rem;
  color: #846b75;
  margin-top: .4rem;
  text-align: center;
}

.product-desc {
  font-size: .88rem;
  color: #6b5a5f;
  line-height: 1.5;
  flex: 1;
}

.product-view {
  margin-top: .6rem;
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.product-view svg {
  width: 14px;
  height: 14px;
  transition: transform .35s var(--ease);
}

.product-card:hover .product-view svg {
  transform: translateX(4px);
}

/* Palette variants per media background */
.bg-blush {
  background: linear-gradient(150deg, var(--blush), var(--ivory-deep));
}

.bg-gold {
  background: linear-gradient(150deg, #F3E4C4, var(--ivory-deep));
}

.bg-mauve {
  background: linear-gradient(150deg, #E8C7CF, var(--blush));
}

.bg-plum {
  background: linear-gradient(150deg, #D9C2CB, #EFE0E4);
}

.section-cta {
  text-align: center;
  margin-top: clamp(2.4rem, 6vw, 3.2rem);
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(46, 34, 36, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  transform: scale(.85) translateY(30px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

@media (min-width: 700px) {
  .modal {
    grid-template-columns: 1fr 1fr;
    max-height: 82vh;
  }
}

.modal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  max-height: 520px;
  overflow: visible;
  position: relative;
}

.modal-media svg {
  width: 48%;
  height: 48%;
}

.modal-media-image,
.modal-zoom-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease-out;
}

.modal-zoom-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: crosshair;
  position: relative;
}

.modal-zoom-stage img.is-zoomed {
  transform: none;
}

.modal-zoom-result {
  position: absolute;
  top: 0 !important;
  width: 500px !important;
  height: 500px !important;
  border-radius: var(--radius-md, 18px);
  border: 1px solid rgba(198, 162, 93, 0.35);
  background: var(--white, #ffffff);
  box-shadow: 0 20px 50px rgba(74, 37, 54, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
  z-index: 50;
  pointer-events: none;
}

.modal-zoom-stage:hover .modal-zoom-result.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-zoom-result img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  max-width: none !important;
  max-height: none !important;
  object-fit: fill;
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: transform;
  pointer-events: none;
}

.modal-zoom-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border: 1.5px solid rgba(198, 162, 93, 0.9);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(1px);
  box-shadow: 0 8px 24px rgba(74, 37, 54, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
  z-index: 40;
}

.modal-zoom-cursor::before,
.modal-zoom-cursor::after {
  content: '';
  position: absolute;
  background: rgba(198, 162, 93, 0.85);
  border-radius: 1px;
}

.modal-zoom-cursor::before {
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 1px;
  transform: translateX(-50%);
}

.modal-zoom-cursor::after {
  top: 50%;
  left: 12px;
  right: 12px;
  height: 1px;
  transform: translateY(-50%);
}

.modal-zoom-stage:hover .modal-zoom-cursor.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {

  .modal-zoom-result,
  .modal-zoom-cursor,
  .badge-zoom-floating {
    display: none !important;
  }
}

.modal-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.modal-gallery__viewport {
  flex: 1;
  min-height: 280px;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  overflow: visible;
  position: relative;
}

.modal-gallery__slide {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 280px;
  opacity: 0;
  transform: translate3d(16px, 0, 0) scale(0.965);
  filter: blur(2px);
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1), transform .45s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.modal-gallery__slide.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.modal-gallery__thumbs {
  display: flex;
  gap: .6rem;
  padding: .8rem 1rem 0;
  overflow-x: auto;
}

.modal-gallery__thumb {
  flex: 0 0 56px;
  height: 56px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), border-color .24s ease, box-shadow .24s ease;
}

.modal-gallery__thumb:hover,
.modal-gallery__thumb:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 22px rgba(74, 37, 54, 0.16);
}

.modal-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-gallery__thumb.is-active {
  border-color: var(--gold-deep);
}

.modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal-body {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
}

.text {
  height: 100%;
  max-height: 250px;
  overflow: auto;
  display: block;
}


.modal-body .eyebrow {
  justify-content: flex-start;
  margin-bottom: .6rem;
}

.modal-body .eyebrow::after {
  display: none;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 30px;
  padding-bottom: 15px;
  color: var(--plum);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.modal-price {
  font-family: var(--font-eyebrow);
  font-size: 1.1rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: .4rem;
}

.modal-price--sale {
  font-family: var(--font-eyebrow);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.25rem;
  margin-right: .6rem;
}

.modal-price--compare {
  font-family: var(--font-body);
  color: #8f8f8f;
  font-size: .95rem;
  vertical-align: baseline;
}

.modal-price--compare s {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

.modal-desc {
  margin-top: 1rem;
  color: #5a4249;
  font-size: .96rem;
  line-height: 1.7;
}

.modal-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-family: var(--font-eyebrow);
  font-size: .78rem;
  color: var(--mauve-deep);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.modal-meta li {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.modal-meta li::before {
  content: '✦';
  color: var(--gold-deep);
  font-size: .7rem;
}

.modal-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.modal-close:hover {
  background: var(--white);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   ABOUT PREVIEW / SPLIT SECTIONS
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split.reverse .split-media {
  order: 2;
}

@media (min-width: 860px) {
  .split.reverse .split-text {
    order: 1;
  }

  .split.reverse .split-media {
    order: 2;
  }
}

.split-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--blush), var(--ivory-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-media svg {
  width: 55%;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media .frame-note,
.split-media figcaption.frame-note {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, .75);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  letter-spacing: .05em;
  color: var(--plum);
}

.split-text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  color: var(--plum);
  margin-bottom: 1rem;
}

.split-text p {
  color: #5a4249;
  margin-bottom: 1rem;
}

.split-text p:last-of-type {
  margin-bottom: 1.6rem;
}

/* ==========================================================================
   INSTAGRAM STRIP
   ========================================================================== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 620px) {
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   WATCH AND SHOP VIDEOS
   ========================================================================== */
.watch-shop-item {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: transform .5s var(--ease);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.watch-shop-item:hover {
  transform: translateY(-6px);
}

.watch-shop-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.watch-shop-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(46, 34, 36, 0.3) 100%);
  z-index: 1;
}

.watch-shop-item__label {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(74, 37, 54, 0.72);
  padding: .4rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.watch-shop-item__price {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  background: rgba(46, 34, 36, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  padding: .8rem 1rem;
  font-family: var(--font-eyebrow);
  font-size: .78rem;
  letter-spacing: .08em;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.watch-shop-item:hover .watch-shop-item__price {
  opacity: 1;
  transform: translateY(0);
}

.watch-shop-item__price-title {
  display: block;
  font-size: .68rem;
  opacity: .8;
  margin-bottom: .3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-shop-item__price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .4rem;
  font-weight: 600;
}

.watch-shop-item__price-sale {
  color: var(--gold-light);
  font-size: .85rem;
}

.watch-shop-item__price-compare {
  color: #999;
  font-size: .7rem;
  text-decoration: line-through;
}

/* ==========================================================================
   INSTAGRAM TILES
   ========================================================================== */
.insta-tile {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease);
}

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

.insta-tile svg {
  width: 34%;
  opacity: .85;
}

.insta-tile .insta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insta-tile .insta-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(74, 37, 54, 0.72);
  padding: .42rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.insta-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(255, 255, 255, .25), transparent 60%);
}

.insta-cta {
  text-align: center;
  margin-top: 2.2rem;
}

.insta-handle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--mauve-deep);
}

/* ==========================================================================
   CONTACT CTA (home) + CONTACT PAGE
   ========================================================================== */
.contact-cta {
  background: var(--plum);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.contact-cta p {
  margin-top: .8rem;
  opacity: .85;
  max-width: 50ch;
  margin-inline: auto;
}

.contact-cta .hero-actions {
  justify-content: center;
  margin-top: 1.8rem;
}

.contact-cta .btn-outline {
  border-color: var(--gold-light);
  color: var(--ivory);
}

.contact-cta .btn-outline:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-wrap {
    grid-template-columns: 1fr 0.85fr;
  }
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: 1.3rem;
}

.field label {
  display: block;
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin-bottom: .5rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid rgba(74, 37, 54, 0.18);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-size: .95rem;
  color: var(--charcoal);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(198, 162, 93, 0.15);
  outline: none;
}

.form-note {
  font-size: .8rem;
  color: #8a7278;
  margin-top: -.4rem;
  margin-bottom: 1.3rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-tile {
  background: var(--ivory-deep);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .4s var(--ease), background .4s var(--ease);
}

.contact-tile:hover {
  transform: translateX(6px);
  background: var(--blush);
}

.contact-tile .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-tile .icon-circle svg {
  width: 20px;
  height: 20px;
}

.contact-tile h3,
.contact-tile h4 {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: 1.1rem;
}

.contact-tile p {
  font-size: .85rem;
  color: #6b5a5f;
}

/* ==========================================================================
   ABOUT PAGE EXTRAS
   ========================================================================== */
.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--mauve-deep);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  padding: 0 1rem;
}

.story-quote::before,
.story-quote::after {
  content: '"';
  color: var(--gold);
  font-size: 2rem;
  vertical-align: middle;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.6rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.value-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: .9rem;
}

.value-card h3,
.value-card h4 {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: 1.15rem;
  margin-bottom: .4rem;
}

.value-card p {
  font-size: .85rem;
  color: #6b5a5f;
}

/* ==========================================================================
   TERMS PAGE
   ========================================================================== */
.terms-wrap {
  max-width: 820px;
  margin-inline: auto;
}

.terms-block {
  margin-bottom: 2.2rem;
}

.terms-block h2,
.terms-block h3 {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: 1.4rem;
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.terms-block h2::before,
.terms-block h3::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.terms-block p,
.terms-block li {
  color: #5a4249;
  font-size: .95rem;
  margin-bottom: .5rem;
}

.terms-block ul {
  padding-left: 1.2rem;
}

.terms-block li {
  list-style: disc;
  margin-left: .3rem;
}

.terms-updated {
  text-align: center;
  font-family: var(--font-eyebrow);
  font-size: .78rem;
  color: var(--mauve-deep);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2.4rem;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  padding-block: clamp(3rem, 7vw, 4.5rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  color: var(--plum);
}

.page-hero p {
  margin-top: 1rem;
  max-width: 56ch;
  margin-inline: auto;
  color: #5a4249;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--plum);
  color: var(--ivory);
  padding-top: clamp(3rem, 6vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 1rem;
  opacity: .75;
  max-width: 32ch;
  font-size: .9rem;
}

.footer-social {
  display: flex;
  gap: .9rem;
  margin-top: 1.3rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251, 244, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s var(--ease), transform .35s var(--ease);
}

.footer-social a:hover {
  background: var(--gold-deep);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  font-family: var(--font-eyebrow);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: .9rem;
  opacity: .8;
  margin-bottom: .7rem;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 244, 238, 0.15);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  opacity: .65;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  animation: pulse-wa 2.6s ease-in-out infinite;
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

.wa-float:hover {
  background: var(--mauve-deep);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 37, 54, 0.35), var(--shadow-lift);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(74, 37, 54, 0), var(--shadow-lift);
  }
}

address.footer-col {
  font-style: normal;
}

address.footer-col a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   PRODUCT PAGE REDESIGNED LAYOUT & COMPONENTS
   ========================================================================== */

/* Top Promo Bar */
.product-promo-bar {
  background: #FDF4F5;
  color: #6E3C38;
  border-bottom: 1px solid rgba(198, 162, 93, 0.15);
  text-align: center;
  font-family: var(--font-eyebrow);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
  font-weight: 500;
}

/* Header Adjustments for Cart and Menu */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-icon-link {
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  position: relative;
}

.nav-icon-link:hover {
  color: var(--gold-deep);
}

.nav-icon-link svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #E06C75;
  /* Soft red badge */
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breadcrumbs Styling */
.breadcrumbs-container {
  padding: 1.5rem 1rem 1rem;
  font-family: var(--font-eyebrow);
  font-size: 0.85rem;
}

.breadcrumbs-container a {
  color: #8c7a80;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumbs-container a:hover {
  color: var(--plum);
}

.breadcrumbs-separator {
  color: #c0b2b6;
  margin: 0 0.5rem;
}

.breadcrumbs-current {
  color: var(--charcoal);
  font-weight: 500;
}

/* Redesigned Product Grid Container */
.product-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .product-grid-layout {
    grid-template-columns: 580px 1fr;
    gap: 4.5rem;
    align-items: start;
  }
}

/* Vertical Gallery Layout styles */
.gallery-vertical-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  height: auto;
}

@media (min-width: 576px) {
  .gallery-vertical-wrapper {
    flex-direction: row;
  }
}

.vertical-thumbnails-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: 100%;
  position: relative;
  justify-content: center;
}

@media (min-width: 576px) {
  .vertical-thumbnails-container {
    flex-direction: column;
    width: 80px;
    justify-content: flex-start;
  }
}

.vertical-thumbnails-scroll {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  max-height: none;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Hide standard scrollbar Firefox */
  padding: 4px 0;
  justify-content: center;
}

.vertical-thumbnails-scroll::-webkit-scrollbar {
  display: none;
  /* Hide Webkit scrollbars */
}

@media (min-width: 576px) {
  .vertical-thumbnails-scroll {
    flex-direction: column;
    max-height: 420px;
    max-width: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    justify-content: flex-start;
  }
}

.thumbnail-item {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }
}

.thumbnail-item:hover {
  transform: translateY(-2px);
}

.thumbnail-item.active {
  border-color: #E57D90;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-scroll-down-btn {
  display: none !important;
}

@media (min-width: 576px) {
  .thumbnail-scroll-down-btn {
    display: flex;
    background: var(--white);
    border: 1px solid var(--ivory-deep);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0.5rem auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: var(--plum);
    transition: background-color 0.25s ease;
  }

  .thumbnail-scroll-down-btn:hover {
    background-color: var(--ivory-deep);
  }
}

.thumbnail-scroll-down-btn svg {
  width: 14px;
  height: 14px;
}

/* Main Display Image styles */
.main-view-container {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(198, 162, 93, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  /* Keep it square by default on mobile */
  width: 100%;
  height: auto;
  z-index: 5;
  transition: z-index 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.main-view-container:hover {
  z-index: 15;
}

@media (min-width: 576px) {
  .main-view-container {
    aspect-ratio: 4 / 5;
    /* Elegant vertical aspect-ratio on desktop */
    height: auto;
    max-height: none;
  }
}

.main-view-container img {
  width: 100%;
  height: 100%;
  /* Force image to fill aspect ratio box */
  object-fit: cover;
  /* Cover container edge-to-edge, removing sidebars */
  display: block;
  border-radius: 20px;
}

/* Gallery Badges */
.badge-discount-circular {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #D63B5D;
  /* Rose-red */
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 4px 12px rgba(214, 59, 93, 0.2);
  z-index: 10;
  text-transform: uppercase;
}

.badge-zoom-floating {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease;
  pointer-events: none;
  /* Let clicks pass through to zoom wrapper */
}

.badge-zoom-floating svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8px;
}

/* Right Details Column elements */
.product-right-details {
  display: flex;
  flex-direction: column;
  max-width: 540px;
}

.bestseller-tag {
  color: #D63B5D;
  font-family: var(--font-eyebrow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-serif-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.ratings-reviews-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-eyebrow);
  font-size: 0.85rem;
  color: #6e6467;
  margin-bottom: 1.2rem;
}

.stars-row {
  color: #F8B133;
  /* Aesthetic gold color for stars */
  display: flex;
  gap: 0.1rem;
}

.stars-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating-number {
  font-weight: 600;
  color: var(--charcoal);
}

/* Price Section styling */
.redesigned-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.price-main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #D63B5D;
  /* Theme Rose-pink */
}

.price-compare {
  font-family: var(--font-body);
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #8c8083;
}

.discount-badge-inline {
  background: #FDF0F2;
  color: #D63B5D;
  font-family: var(--font-eyebrow);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: none;
  align-self: center;
}

.taxes-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #8c8083;
  margin-bottom: 1.5rem;
}

.product-description-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4e4446;
  margin-bottom: 2rem;
}

/* Highlights Badges Row Redesign */
.highlights-badges-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  border-top: 1px solid #ECE7E5;
  border-bottom: 1px solid #ECE7E5;
  padding: 1.2rem 0;
  margin: 1.5rem 0 2rem;
  background: transparent;
}

@media (min-width: 576px) {
  .highlights-badges-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.badge-highlight-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}

@media (min-width: 576px) {
  .badge-highlight-col {
    padding: 0 0.5rem;
  }

  .badge-highlight-col:not(:last-child) {
    border-right: 1px solid #ECE7E5;
  }
}

.badge-highlight-icon {
  color: #BFA370;
  /* Jewelry gold/bronze outline */
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.badge-highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.2px;
  /* Fine line art weight */
}

.badge-highlight-col span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

/* WhatsApp Order Button Redesign */
.whatsapp-order-cta-btn {
  background: #38B865;
  /* Vibrant WhatsApp Green */
  color: var(--white);
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(56, 184, 101, 0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s ease;
  margin-bottom: 1rem;
}

.whatsapp-order-cta-btn:hover {
  background-color: #2FA356;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(56, 184, 101, 0.3);
  color: var(--white);
}

.whatsapp-order-cta-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.trust-notes-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  color: #8c8083;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
}

.trust-note-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-note-item svg {
  width: 16px;
  height: 16px;
}

.trust-separator {
  color: #8c8083;
  font-size: 0.8rem;
}

/* Detail Tabs Section Layout */
.product-tabs-section {
  border-top: 1px solid var(--ivory-deep);
  padding: 3rem 0;
}

.tabs-headers-flex {
  display: flex;
  border-bottom: 1px solid var(--ivory-deep);
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-headers-flex::-webkit-scrollbar {
  display: none;
}

.tab-header-btn {
  font-family: var(--font-eyebrow);
  font-size: 0.95rem;
  font-weight: 500;
  color: #8c8083;
  background: none;
  border: none;
  padding: 0.8rem 0;
  cursor: pointer;
  transition: color 0.25s ease;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-header-btn svg {
  width: 16px;
  height: 16px;
}

.tab-header-btn:hover {
  color: var(--plum);
}

.tab-header-btn.active {
  color: var(--plum);
  font-weight: 600;
}

.tab-header-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--plum);
}

.tabs-panes-wrapper {
  padding: 2rem 0 1rem;
}

.tab-pane-content {
  display: none;
}

.tab-pane-content.active {
  display: block;
}

.specs-tab-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .specs-tab-grid-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.specs-attributes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 480px) {
  .specs-attributes-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 1.2rem 2.5rem;
  }
}

.spec-attr-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.5rem 0;
}

.spec-attr-icon {
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-attr-icon svg {
  width: 18px;
  height: 18px;
}

.spec-attr-label {
  font-weight: 600;
  color: #6e6467;
  margin-right: 0.2rem;
}

.pink-summary-highlight-card {
  background: #FFF8F9;
  border-radius: 14px;
  padding: 1.8rem;
  border: 1.5px dashed #ECC6CD;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.pink-summary-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-eyebrow);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum);
}

.pink-summary-row svg {
  width: 18px;
  height: 18px;
  color: var(--mauve-deep);
}

.desc-tab-pane p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4e4446;
  margin-bottom: 1rem;
}

.info-bullet-list {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4e4446;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.info-bullet-list li {
  margin-bottom: 0.5rem;
}

/* You Might Also Love Carousel section */
.related-carousel-section {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--ivory-deep);
}

.related-section-title-wrap {
  text-align: center;
  margin-bottom: 2.2rem;
}

.related-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--plum);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.slider-track-overflow-hidden {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;
}

.slider-track-flex {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.4s var(--ease);
}

.related-product-card-wrap {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 480px) {
  .related-product-card-wrap {
    flex: 0 0 calc((100% - 1.2rem) / 2);
    max-width: calc((100% - 1.2rem) / 2);
  }
}

@media (min-width: 768px) {
  .related-product-card-wrap {
    flex: 0 0 calc((100% - 3.6rem) / 4);
    max-width: calc((100% - 3.6rem) / 4);
  }
}

.card-related {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(198, 162, 93, 0.1);
  box-shadow: 0 6px 15px rgba(74, 37, 54, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card-related:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(74, 37, 54, 0.08);
}

.card-related-media {
  background: var(--ivory);
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-wishlist-float-btn {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  color: #8c8083;
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 5;
}

.card-wishlist-float-btn:hover {
  color: #E06C75;
  transform: scale(1.1);
}

.card-wishlist-float-btn svg {
  width: 16px;
  height: 16px;
}

.card-related-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.card-related-body h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
  /* Avoid overlap with cart btn */
}

.card-related-prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.card-related-price-sale {
  font-family: var(--font-eyebrow);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--plum);
}

.card-related-price-compare {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #8c8083;
}

.card-cart-action-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  color: var(--plum);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.card-cart-action-btn:hover {
  background-color: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.card-cart-action-btn svg {
  width: 16px;
  height: 16px;
}

/* Slider Controls */
.slider-navigation-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(74, 37, 54, 0.08);
  color: var(--plum);
  z-index: 10;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.slider-navigation-arrow:hover {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.slider-navigation-arrow--prev {
  left: -15px;
}

.slider-navigation-arrow--next {
  right: -15px;
}

@media (max-width: 992px) {
  .slider-navigation-arrow {
    display: flex;
  }

  .slider-navigation-arrow--prev {
    left: 5px;
  }

  .slider-navigation-arrow--next {
    right: 5px;
  }
}

.slider-navigation-arrow svg {
  width: 16px;
  height: 16px;
}

.slider-indicators-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory-deep);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.slider-indicator-dot.active {
  background: var(--mauve-deep);
  width: 20px;
  border-radius: 4px;
}

/* Footer Trust Badges Strip */
.footer-trust-strip-container {
  background: #FDFCFB;
  border-top: 1px solid var(--ivory-deep);
  border-bottom: 1px solid var(--ivory-deep);
  padding: 2.2rem 0;
}

.footer-trust-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-trust-flex {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-badge-icon {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 28px;
  height: 28px;
}

.trust-badge-text h5 {
  font-family: var(--font-eyebrow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.trust-badge-text p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #8c8083;
}

/* Newsletter Input bar redesign */
.newsletter-form-row {
  display: flex;
  width: 100%;
  margin-top: 0.8rem;
  border-bottom: 1.5px solid rgba(251, 244, 238, 0.3);
  padding-bottom: 0.3rem;
}

.newsletter-input-field {
  flex: 1;
  border: none;
  background: none;
  padding: 0.5rem 0.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ivory);
  outline: none;
}

.newsletter-input-field::placeholder {
  color: #c0b2b6;
}

.newsletter-submit-btn {
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.newsletter-submit-btn:hover {
  transform: translateX(3px);
}

.newsletter-submit-btn svg {
  width: 16px;
  height: 16px;
}

/* 4-column Footer Grid layout */
.footer-grid--four-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .footer-grid--four-cols {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

/* Standard Promo Bar for all subpages */
.promo-bar {
  background: var(--plum);
  color: var(--ivory);
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(.72rem, 1.8vw, .82rem);
  font-weight: 500;
  letter-spacing: .06em;
  padding: .65rem 1rem;
}

.promo-bar strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ==========================================================================
   PRODUCT DETAILS RESPONSIVE SIZING & PADDING OVERRIDES
   ========================================================================== */
.product-page-container {
  padding-inline: 15px;
}

@media (min-width: 992px) {
  .product-page-container {
    padding-inline: 0;
  }
}

@media (max-width: 576px) {
  .product-serif-title {
    font-size: 1.65rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .whatsapp-order-cta-btn {
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
  }

  .wa-float {
    width: 42px;
    height: 42px;
    right: 1rem;
    bottom: 1rem;
  }

  .wa-float svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .whatsapp-order-cta-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 1.1rem;
    font-size: 1.05rem;
  }

  .product-page .wa-float {
    bottom: 80px;
  }

  body.product-page {
    padding-bottom: 70px;
  }
}