/** Shopify CDN: Minification failed

Line 6:6 Unexpected "}"

**/
html, }
body,
#MainContent,
.shopify-section {
  background: #080808 !important;
}
body {
  background: #080808 !important;
}
:root {
  --black: #080808;
  --off-black: #111111;
  --charcoal: #1A1A1A;
  --graphite: #2C2C2C;
  --mid: #4A4A4A;
  --muted: #888888;
  --silver: #B8BFC4;
  --cream: #F2EDE4;
  --white: #FAF8F4;
  --gold: #C4A46E;
  --gold-light: #D4B88A;
  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,164,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s var(--ease),
    width 0.4s var(--ease),
    height 0.4s var(--ease),
    opacity 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 16px;
  height: 16px;
}

/* REVEAL */

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* HERO */

#hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.2) 0%,
      rgba(8,8,8,0.5) 60%,
      rgba(8,8,8,0.95) 100%),
    linear-gradient(105deg,
      #0E0E0E 0%,
      #1A1A18 40%,
      #0A0908 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 40%,
      rgba(100,90,70,0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 70%,
      rgba(196,164,110,0.06) 0%,
      transparent 60%
    );
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  opacity: 0.35;
}

.hero-ring-art {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(196,164,110,0.4);
  position: relative;
}

.hero-ring-art::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(196,164,110,0.2);
}

.hero-ring-art::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(196,164,110,0.15) 0%,
      transparent 70%
    );
  border: 0.5px solid rgba(196,164,110,0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 100px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--silver);
  margin-bottom: 48px;
  max-width: 320px;
  line-height: 1.9;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.4s,
    transform 0.3s var(--ease);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,191,196,0.3);
  padding-bottom: 2px;
}

.btn-secondary:hover {
  color: var(--white);
}
/* BRAND STATEMENT */

#statement {
  padding: 160px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid rgba(196,164,110,0.08);
  background: var(--black);
}

.statement-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.statement-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 40px;
}

.statement-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.statement-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(242,237,228,0.65);
  max-width: 480px;
  margin-bottom: 48px;
}

.statement-visual {
  position: relative;
  height: 520px;
  background: var(--charcoal);
  overflow: hidden;
}

.statement-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(196,164,110,0.1) 0%, transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
}

.statement-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jewelry-art {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(196,164,110,0.3);
  border-radius: 50%;
  position: relative;
  animation: slowRotate 20s linear infinite;
}

.jewelry-art::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 0.5px solid rgba(196,164,110,0.12);
  border-radius: 50%;
}

.jewelry-art::after {
  content: '';
  position: absolute;
  inset: 20px;
  background: radial-gradient(ellipse, rgba(196,164,110,0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.jewelry-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  left: -3px;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(196,164,110,0.6);
}

@keyframes slowRotate {
  to {
    transform: rotate(360deg);
  }
}

.statement-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(242,237,228,0.4);
}
.gold-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 32px 0;
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1 !important;
  transform: none !important;
}
/* SECTION HEADER */

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* COLLECTIONS */

#collections {
  padding: 120px 48px;
  background: var(--black);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.collection-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal);
  text-decoration: none;
  color: inherit;
  display: block;
}

.collection-card:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.col-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

.collection-card:hover .col-bg {
  transform: scale(1.06);
}

.col-bg-1 {
  background: linear-gradient(135deg, #1A1714 0%, #2C2820 60%, #141210 100%);
}

.col-bg-2 {
  background: linear-gradient(160deg, #0E1014 0%, #1A1E22 60%, #0A0C0E 100%);
}

.col-bg-3 {
  background: linear-gradient(120deg, #14130E 0%, #201E15 60%, #100F0A 100%);
}

.col-decor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}

.col-ring {
  width: 140px;
  height: 140px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.col-ring::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 0.5px solid rgba(196,164,110,0.5);
  border-radius: 50%;
}

.col-chain {
  width: 80px;
  height: 160px;
  position: relative;
}

.col-chain::before,
.col-chain::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.col-chain::before {
  top: 0;
}

.col-chain::after {
  top: 40px;
}

.col-bar {
  width: 160px;
  height: 16px;
  border: 1px solid var(--gold);
}

.col-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  z-index: 2;
}

.col-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.col-pieces {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--silver);
}

.col-cta {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(242,237,228,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
/* BEST SELLERS */

#bestsellers {
  padding: 120px 48px;
  background: var(--off-black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 20px;
}

.product-real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}

.product-card:hover .product-real-image {
  transform: scale(1.04);
  opacity: 0.88;
}

.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  text-align: center;
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

.quick-add span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-info {
  padding: 0 4px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.product-material {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-price {
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  #bestsellers {
    padding: 80px 24px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
/* HEADER MARZENOS - VERSION FIDÈLE */

.marzenos-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
}

.marzenos-header .nav-logo {
  justify-self: start;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--white);
  text-decoration: none;
}

.marzenos-nav {
  justify-self: center;
  display: flex;
  gap: 36px;
  list-style: none;
}

.marzenos-nav a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.marzenos-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}

.marzenos-nav a:hover {
  color: var(--white);
}

.marzenos-nav a:hover::after {
  right: 0;
}

.nav-icons {
  justify-self: end;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-icons a,
.nav-icons button {
  background: none;
  border: none;
  padding: 0;
  color: var(--silver);
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-icons svg {
  width: 20px;
  height: 20px;
  stroke: var(--silver);
  transition: stroke 0.3s;
}

.nav-icons a:hover svg,
.nav-icons button:hover svg {
  stroke: var(--white);
}

.nav-cart-wrap {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: 0.4s var(--ease);
}

.marzenos-mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .marzenos-header {
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
  }

  .marzenos-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .marzenos-mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  body.menu-open .marzenos-mobile-menu {
    display: flex;
  }

  .marzenos-mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--cream);
    text-decoration: none;
  }
}
.marzenos-header {
 background: #080808 !important;
backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(196,164,110,0.12);
z-index: 9999;
}
/* LIFESTYLE */

#lifestyle {
  height: 88vh;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8,8,8,0.96) 40%,
      rgba(8,8,8,0.4) 100%
    ),
    linear-gradient(
      135deg,
      #0C0B09 0%,
      #1A1712 40%,
      #0E0D0A 100%
    );
}

.lifestyle-art {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  opacity: 0.25;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 50%,
      rgba(196,164,110,0.2) 0%,
      transparent 70%
    ),
    linear-gradient(
      45deg,
      rgba(50,45,35,0.8) 0%,
      rgba(20,18,12,1) 100%
    );
}

.lifestyle-grid-art {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 340px;
  opacity: 0.15;
}

.lg-cell {
  background: rgba(196,164,110,0.1);
  border: 0.5px solid rgba(196,164,110,0.2);
}

.lg-cell:nth-child(1) {
  height: 180px;
}

.lg-cell:nth-child(2) {
  height: 180px;
}

.lg-cell:nth-child(3) {
  height: 120px;
}

.lg-cell:nth-child(4) {
  height: 120px;
}

.lifestyle-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 580px;
}

.lifestyle-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 40px;
}

.lifestyle-quote em {
  color: var(--gold-light);
  font-style: normal;
}

.lifestyle-desc {
  font-size: 13px;
  line-height: 2;
  color: rgba(242,237,228,0.55);
  margin-bottom: 48px;
  max-width: 380px;
}

.lifestyle-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.l-tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(136,136,136,0.2);
  padding: 8px 16px;
}

@media (max-width: 900px) {
  #lifestyle {
    height: auto;
    padding: 80px 0;
  }

  .lifestyle-content {
    padding: 0 24px;
  }

  .lifestyle-art {
    display: none;
  }

  .lifestyle-grid-art {
    display: none;
  }
}
/* QUALITY SECTION */

#quality {
  padding: 140px 48px;
  background: var(--off-black);
  border-top: 1px solid rgba(196,164,110,0.06);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.quality-left .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.quality-left .section-eyebrow::before,
.quality-left .section-eyebrow::after {
  display: none;
}

.quality-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(242,237,228,0.62);
  max-width: 560px;
  margin-bottom: 32px;
}

.quality-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.spec-item {
  padding: 24px;
  border: 1px solid rgba(196,164,110,0.08);
  background: rgba(255,255,255,0.01);
  transition:
    border-color 0.4s,
    transform 0.4s var(--ease);
}

.spec-item:hover {
  border-color: rgba(196,164,110,0.24);
  transform: translateY(-4px);
}

.spec-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.spec-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(242,237,228,0.55);
}

.quality-right {
  display: flex;
  justify-content: center;
}

.quality-visual {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  position: relative;
  background:
    radial-gradient(
      ellipse at center,
      rgba(196,164,110,0.12) 0%,
      transparent 70%
    ),
    linear-gradient(
      145deg,
      #171512 0%,
      #0D0C0A 100%
    );

  border: 1px solid rgba(196,164,110,0.08);
  overflow: hidden;
}

.quality-art-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-outer,
.qa-mid,
.qa-inner {
  position: absolute;
  border-radius: 50%;
}

.qa-outer {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(196,164,110,0.24);
}

.qa-mid {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(196,164,110,0.18);
}

.qa-inner {
  width: 80px;
  height: 80px;
  background: radial-gradient(
    ellipse,
    rgba(196,164,110,0.45) 0%,
    rgba(196,164,110,0.05) 70%
  );
  box-shadow: 0 0 60px rgba(196,164,110,0.2);
}

.quality-label {
  position: absolute;
  bottom: 28px;
  left: 28px;

  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.4);
}

@media (max-width: 900px) {
  #quality {
    padding: 90px 24px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .quality-specs {
    grid-template-columns: 1fr;
  }
}
/* REVIEWS */

#reviews {
  padding: 140px 48px;
  background: var(--black);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.review-card {
  background: var(--charcoal);
  padding: 48px 40px;
  position: relative;
  transition: background 0.4s, transform 0.4s var(--ease);
}

.review-card:hover {
  background: rgba(26,26,26,0.8);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 32px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--graphite);
  border: 1px solid rgba(196,164,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.review-name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.review-location {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.review-quote-mark {
  position: absolute;
  top: 32px;
  right: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(196,164,110,0.08);
  line-height: 1;
}

@media (max-width: 900px) {
  #reviews {
    padding: 80px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
/* NEWSLETTER */

#newsletter-marzenos {
  padding: 140px 48px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(196,164,110,0.08) 0%,
      transparent 70%
    ),
    var(--off-black);

  border-top: 1px solid rgba(196,164,110,0.06);
  text-align: center;
}

.newsletter-inner {
  max-width: 760px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 32px 0;
}

.newsletter-title em {
  color: var(--gold-light);
  font-style: italic;
}

.newsletter-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(242,237,228,0.58);
  max-width: 480px;
  margin: 0 auto 48px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  height: 56px;
  padding: 0 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,164,110,0.12);
  color: var(--white);
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(242,237,228,0.35);
}

.newsletter-form button {
  height: 56px;
  padding: 0 32px;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;

  transition:
    background 0.3s,
    transform 0.3s var(--ease);
}

.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* FOOTER */

#footer-marzenos {
  padding: 80px 48px 32px;
  background: var(--black);
  border-top: 1px solid rgba(196,164,110,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-desc {
  max-width: 340px;
  font-size: 13px;
  line-height: 2;
  color: rgba(242,237,228,0.52);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column a {
  font-size: 13px;
  color: rgba(242,237,228,0.52);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(196,164,110,0.06);
  padding-top: 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(242,237,228,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(242,237,228,0.35);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  #newsletter-marzenos,
  #footer-marzenos {
    padding-left: 24px;
    padding-right: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
body {
  cursor: none !important;
}

.cursor {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #C4A46E;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999999 !important;
  transform: translate(-50%, -50%);
  display: block !important;
}

.cursor-ring {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,164,110,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999998 !important;
  transform: translate(-50%, -50%);
  display: block !important;
}

.cursor.cursor-hover {
  width: 16px;
  height: 16px;
}

.cursor-ring.cursor-hover {
  width: 52px;
  height: 52px;
}
/* HEADER SCROLL EFFECT */

.marzenos-header.scrolled {
  background: rgba(8,8,8,0.92) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196,164,110,0.12);
}
/* MOBILE MENU PREMIUM */

.mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.mobile-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
}

.mobile-toggle span:first-child {
  top: 11px;
}

.mobile-toggle span:last-child {
  bottom: 11px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);

  backdrop-filter: blur(18px);

  z-index: 99999;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.4s,
    visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.22em;
  color: var(--white);
}

.mobile-close {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-links {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.mobile-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 54px);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.5s,
    transform 0.5s;
}

.mobile-menu.active .mobile-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-links a:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-links a:nth-child(2) {
  transition-delay: 0.16s;
}

.mobile-links a:nth-child(3) {
  transition-delay: 0.24s;
}

.mobile-links a:nth-child(4) {
  transition-delay: 0.32s;
}

.mobile-links a:hover {
  color: var(--gold-light);
}

@media (max-width: 900px) {

  .marzenos-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

}
/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(60px);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* REVEAL PREMIUM */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0 !important;
  filter: blur(10px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.16,1,.3,1),
    filter 1.2s ease !important;
  will-change: opacity, transform, filter;
}

.reveal {
  transform: translateY(42px) !important;
}

.reveal-left {
  transform: translateX(-42px) !important;
}

.reveal-right {
  transform: translateX(42px) !important;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
  filter: blur(0);
}
/* PREMIUM HOVERS */

/* Collections */
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.06) 45%,
      transparent 70%
    );
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
  z-index: 1;
  pointer-events: none;
}

.collection-card:hover::after {
  transform: translateX(120%);
}

.collection-card:hover .col-name {
  color: var(--gold-light);
}

.collection-card:hover .col-content {
  transform: translateY(-6px);
}

/* Products */
.product-card {
  transition:
    transform 0.45s var(--ease),
    opacity 0.45s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(196,164,110,0.12) 0%,
      transparent 70%
    );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.product-card:hover .product-img::after {
  opacity: 1;
}

.product-card:hover .product-name {
  color: var(--gold-light);
}

.product-price {
  transition: color 0.3s ease;
}

.product-card:hover .product-price {
  color: var(--gold);
}

/* Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.22);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}
/* PRODUCT PAGE MARZENOS */

#product-page-marzenos {
  position: relative;
  overflow: hidden;
  padding: 140px 48px 120px;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(196,164,110,0.08) 0%,
      transparent 60%
    ),
    var(--black);
}

.product-ambient {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(196,164,110,0.06);
  filter: blur(120px);
  pointer-events: none;
}

.product-page-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}

.product-gallery-marzenos {
  position: relative;
}

.product-main-image {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #171411 0%,
      #0A0A0A 100%
    );

  border: 1px solid rgba(196,164,110,0.08);
}

.product-main-image::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.06) 45%,
      transparent 70%
    );

  transform: translateX(-120%);
  transition: transform 1.4s var(--ease);
}

.product-main-image:hover::after {
  transform: translateX(120%);
}

.product-main-image img {
  width: 100%;
  display: block;
  object-fit: cover;

  transition:
    transform 1.2s var(--ease),
    opacity 0.6s ease;
}

.product-main-image:hover img {
  transform: scale(1.035);
  opacity: 0.94;
}

.product-gallery-note {
  margin-top: 18px;

  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(242,237,228,0.32);
}

.product-infos {
  max-width: 520px;
}

.product-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 22px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.95;

  color: var(--white);

  margin-bottom: 32px;
}

.product-price-big {
  font-size: 18px;
  letter-spacing: 0.16em;

  color: rgba(242,237,228,0.78);

  margin-bottom: 40px;
}

.product-description {
  font-size: 14px;
  line-height: 2;

  color: rgba(242,237,228,0.56);

  margin-bottom: 52px;
}

.product-add {
  width: 100%;
  height: 64px;

  border: none;

  background: var(--gold);

  color: var(--black);

  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.4s var(--ease),
    background 0.4s;
}

.product-add:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.product-assurance {
  margin-top: 52px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.assurance-line {
  display: flex;
  gap: 20px;
  align-items: flex-start;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(196,164,110,0.08);
}

.assurance-line span {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.assurance-line p {
  font-size: 13px;
  line-height: 1.8;

  color: rgba(242,237,228,0.48);
}

@media (max-width: 980px) {

  #product-page-marzenos {
    padding: 120px 24px 80px;
  }

  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .product-title {
    font-size: 58px;
  }

}
/* ADD TO CART FEEDBACK */

.product-add.added {
  background: #d6b47c !important;
  transform: scale(0.98);
  letter-spacing: 0.18em;
}
/* COLLECTION PAGE MARZENOS */

#collection-marzenos {
  position: relative;
  overflow: hidden;

  padding: 160px 48px 120px;

  background:
    radial-gradient(
      ellipse at top right,
      rgba(196,164,110,0.06) 0%,
      transparent 60%
    ),
    var(--black);
}

.collection-hero {
  text-align: center;
  margin-bottom: 90px;
}

.collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.95;

  color: var(--white);

  margin: 24px 0;
}

.collection-description {
  max-width: 620px;
  margin: 0 auto;

  font-size: 14px;
  line-height: 2;

  color: rgba(242,237,228,0.54);
}

.collection-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.collection-product-card {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #151311 0%,
      #090909 100%
    );

  text-decoration: none;

  transition:
    transform 0.5s var(--ease),
    background 0.5s;
}

.collection-product-card:hover {
  transform: translateY(-6px);
}

.collection-product-card::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.06) 45%,
      transparent 70%
    );

  transform: translateX(-120%);
  transition: transform 1s var(--ease);

  pointer-events: none;
}

.collection-product-card:hover::after {
  transform: translateX(120%);
}

.collection-product-image {
  aspect-ratio: 0.9;
  overflow: hidden;
}

.collection-product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s var(--ease),
    opacity 0.6s ease;
}

.collection-product-card:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.collection-product-info {
  padding: 28px;
}

.collection-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;

  color: var(--white);

  margin-bottom: 12px;

  transition: color 0.35s ease;
}

.collection-product-card:hover .collection-product-name {
  color: var(--gold-light);
}

.collection-product-price {
  font-size: 12px;
  letter-spacing: 0.14em;

  color: rgba(242,237,228,0.48);
}

.collection-empty {
  grid-column: 1/-1;

  text-align: center;

  font-size: 14px;
  color: rgba(242,237,228,0.42);
}

@media (max-width: 980px) {

  #collection-marzenos {
    padding: 120px 24px 80px;
  }

  .collection-products-grid {
    grid-template-columns: 1fr;
  }

  .collection-title {
    font-size: 64px;
  }

}/* COLLECTION PAGE MARZENOS */

#collection-marzenos {
  position: relative;
  overflow: hidden;

  padding: 160px 48px 120px;

  background:
    radial-gradient(
      ellipse at top right,
      rgba(196,164,110,0.06) 0%,
      transparent 60%
    ),
    var(--black);
}

.collection-hero {
  text-align: center;
  margin-bottom: 90px;
}

.collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.95;

  color: var(--white);

  margin: 24px 0;
}

.collection-description {
  max-width: 620px;
  margin: 0 auto;

  font-size: 14px;
  line-height: 2;

  color: rgba(242,237,228,0.54);
}

.collection-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.collection-product-card {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #151311 0%,
      #090909 100%
    );

  text-decoration: none;

  transition:
    transform 0.5s var(--ease),
    background 0.5s;
}

.collection-product-card:hover {
  transform: translateY(-6px);
}

.collection-product-card::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.06) 45%,
      transparent 70%
    );

  transform: translateX(-120%);
  transition: transform 1s var(--ease);

  pointer-events: none;
}

.collection-product-card:hover::after {
  transform: translateX(120%);
}

.collection-product-image {
  aspect-ratio: 0.9;
  overflow: hidden;
}

.collection-product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s var(--ease),
    opacity 0.6s ease;
}

.collection-product-card:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.collection-product-info {
  padding: 28px;
}

.collection-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;

  color: var(--white);

  margin-bottom: 12px;

  transition: color 0.35s ease;
}

.collection-product-card:hover .collection-product-name {
  color: var(--gold-light);
}

.collection-product-price {
  font-size: 12px;
  letter-spacing: 0.14em;

  color: rgba(242,237,228,0.48);
}

.collection-empty {
  grid-column: 1/-1;

  text-align: center;

  font-size: 14px;
  color: rgba(242,237,228,0.42);
}

@media (max-width: 980px) {

  #collection-marzenos {
    padding: 120px 24px 80px;
  }

  .collection-products-grid {
    grid-template-columns: 1fr;
  }

  .collection-title {
    font-size: 64px;
  }

}
/* MARZENOS LOADER */

#marzenos-loader {
  position: fixed;
  inset: 0;
  background: #050505;

  z-index: 999999999;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  transition:
    transform 1.4s cubic-bezier(.16,1,.3,1),
    opacity 1s ease;
}

#marzenos-loader.hidden {
  pointer-events: none;
  animation: loaderExit 1.4s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes loaderExit {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 300;
  letter-spacing: 0.28em;

  color: var(--white);

  opacity: 0;
  transform: translateY(12px);

  animation: loaderFadeUp 1.2s ease forwards;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.loader-line {
  width: 0;
  height: 1px;

  margin-top: 28px;

  background: rgba(196,164,110,0.5);

  animation: loaderLine 1.4s cubic-bezier(.16,1,.3,1) forwards;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

#marzenos-loader.hidden .loader-logo,
#marzenos-loader.hidden .loader-line {
  opacity: 0;
  transform: translateY(-18px);
}

@keyframes loaderFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderLine {
  to {
    width: 180px;
  }
}
/* HEADER PREMIUM V2 */

.marzenos-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;

  padding: 24px 42px;

  background: rgba(8,8,8,0.42);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(196,164,110,0.04);

  transition:
    background 0.5s ease,
    border-color 0.5s ease,
    padding 0.5s ease,
    box-shadow 0.5s ease;
}

.marzenos-header.scrolled {
  background: rgba(5,5,5,0.82);

  border-bottom: 1px solid rgba(196,164,110,0.08);

  box-shadow:
    0 12px 40px rgba(0,0,0,0.28);
}

.marzenos-header::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(196,164,110,0.03) 50%,
      transparent 100%
    );

  pointer-events: none;
}

.nav-logo {
  position: relative;

  transition:
    letter-spacing 0.4s ease,
    color 0.4s ease;
}

.nav-logo:hover {
  letter-spacing: 0.32em;
  color: var(--gold-light);
}

.marzenos-nav a {
  position: relative;
}

.marzenos-nav a::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.4s var(--ease);
}

.marzenos-nav a:hover::after {
  width: 100%;
}

.nav-icons a,
.nav-icons button {
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s ease;
}

.nav-icons a:hover,
.nav-icons button:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.nav-icons svg {
  transition:
    stroke 0.35s ease,
    transform 0.35s ease;
}

.nav-icons a:hover svg {
  stroke: var(--gold-light);
  transform: scale(1.04);
}
/* PAGE TRANSITION */

#marzenos-page-transition {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 999999998;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(.16,1,.3,1);
}

#marzenos-page-transition.active {
  transform: translateY(0);
}
/* STICKY ADD TO CART MOBILE */

.sticky-add-mobile {
  display: none;
}

@media (max-width: 900px) {
  .sticky-add-mobile {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 14px;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(196,164,110,0.14);
  }

  .sticky-add-mobile span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--white);
  }

  .sticky-add-mobile strong {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 300;
  }

  .sticky-add-mobile form {
    flex-shrink: 0;
  }

  .sticky-add-mobile button {
    height: 44px;
    padding: 0 18px;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
}
/* MOBILE GLOBAL POLISH */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .marzenos-header {
    height: 68px;
    padding: 0 20px;
  }

  .nav-logo {
    font-size: 19px !important;
    letter-spacing: 0.2em !important;
  }

  .nav-icons {
    gap: 16px;
  }

  .nav-icons a:not(.nav-cart-wrap) {
    display: none;
  }

  #hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 24px 90px;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-subtitle {
    font-size: 12px;
    max-width: 300px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 17px 22px;
  }

  #statement,
  #collections,
  #bestsellers,
  #quality,
  #reviews,
  #newsletter-marzenos {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .section-title,
  .statement-heading,
  .newsletter-title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .collections-grid,
  .products-grid,
  .reviews-grid,
  .quality-specs,
  .collection-products-grid {
    grid-template-columns: 1fr !important;
  }

  .product-page-grid {
    grid-template-columns: 1fr !important;
    gap: 44px;
  }

  .product-title,
  .collection-title {
    font-size: clamp(48px, 14vw, 70px);
  }

  .footer-links,
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    gap: 18px;
  }
}
/* PRODUCT IMAGE PREMIUM DEPTH */

.product-main-image,
.collection-product-image,
.product-img {
  position: relative;
  overflow: hidden;
}

.product-main-image img,
.collection-product-image img,
.product-real-image {
  transform-origin: center;
  transition:
    transform 1.4s cubic-bezier(.16,1,.3,1),
    filter 1.2s ease,
    opacity 0.8s ease;
}

.product-main-image:hover img,
.collection-product-card:hover img,
.product-card:hover .product-real-image {
  transform: scale(1.06);
  filter: contrast(1.06) brightness(0.92);
}

.product-main-image::before,
.collection-product-image::before,
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(196,164,110,0.10) 0%,
      transparent 68%
    );
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.product-main-image:hover::before,
.collection-product-card:hover .collection-product-image::before,
.product-card:hover .product-img::before {
  opacity: 1;
}
/* MARZENOS TOAST */

.marzenos-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999999;

  min-width: 280px;
  padding: 22px 24px;

  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(196,164,110,0.18);

  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(.16,1,.3,1);
}

.marzenos-toast.active {
  opacity: 1;
  transform: translateY(0);
}

.marzenos-toast span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.marzenos-toast small {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(242,237,228,0.5);
}

@media (max-width: 768px) {
  .marzenos-toast {
    left: 16px;
    right: 16px;
    bottom: 92px;
  }
}
/* ABOUT MARZENOS */

#about-marzenos {
  padding: 170px 48px 130px;
  background:
    radial-gradient(
      ellipse at top,
      rgba(196,164,110,0.07) 0%,
      transparent 60%
    ),
    var(--black);
}

.about-intro {
  max-width: 860px;
  margin: 0 auto 110px;
  text-align: center;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin: 28px 0 34px;
}

.about-lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: rgba(242,237,228,0.58);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.about-block {
  padding: 54px 44px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(196,164,110,0.07);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s,
    background 0.45s;
}

.about-block:hover {
  transform: translateY(-6px);
  border-color: rgba(196,164,110,0.18);
  background: rgba(196,164,110,0.025);
}

.about-number {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 34px;
}

.about-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 22px;
}

.about-block p {
  font-size: 13px;
  line-height: 2;
  color: rgba(242,237,228,0.52);
}

@media (max-width: 900px) {
  #about-marzenos {
    padding: 130px 24px 90px;
  }

  .about-intro {
    margin-bottom: 70px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-block {
    padding: 42px 28px;
  }
}
#collection-marzenos {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
/* PRODUCT GALLERY STACK */

.product-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-gallery-stack .product-main-image {
  min-height: 720px;
}

.product-gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {

  .product-gallery-stack .product-main-image {
    min-height: auto;
  }

}
.marzenos-trust {
  margin-top: 24px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  font-size: 12px;
  letter-spacing: 0.06em;

  color: rgba(242,237,228,0.55);
}

.marzenos-trust div {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* PRODUCT BACK LINK */

.product-back-link {
  position: relative;
  z-index: 3;
  margin-bottom: 42px;
}

.product-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;

  color: rgba(242,237,228,0.45);

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.product-back-link a:hover {
  color: var(--gold-light);
  transform: translateX(-4px);
}
/* PRODUCT ACCORDIONS */

.marzenos-accordions {
  margin-top: 42px;
  border-top: 1px solid rgba(196,164,110,0.08);
}

.marzenos-accordions details {
  border-bottom: 1px solid rgba(196,164,110,0.08);
}

.marzenos-accordions summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;

  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--white);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.marzenos-accordions summary::-webkit-details-marker {
  display: none;
}

.marzenos-accordions summary::after {
  content: '+';
  color: var(--gold);
  font-size: 18px;
}

.marzenos-accordions details[open] summary::after {
  content: '−';
}

.marzenos-accordions p {
  padding: 0 0 22px;
  line-height: 1.9;
  font-size: 13px;

  color: rgba(242,237,228,0.55);
}
/* PRODUCT RECOMMENDATIONS */

.marzenos-recommendations {
  margin-top: 140px;
  padding-top: 120px;

  border-top: 1px solid rgba(196,164,110,0.08);
}

.recommendations-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;

  color: var(--white);

  margin: 18px 0 60px;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.recommendation-card {
  text-decoration: none;
  background: rgba(255,255,255,0.015);

  transition:
    transform 0.5s var(--ease),
    background 0.5s ease;
}

.recommendation-card:hover {
  transform: translateY(-6px);
  background: rgba(196,164,110,0.025);
}

.recommendation-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 1.2s var(--ease);
}

.recommendation-card:hover img {
  transform: scale(1.05);
}

.recommendation-info {
  padding: 24px;
}

.recommendation-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;

  color: var(--white);

  margin-bottom: 10px;
}

.recommendation-price {
  font-size: 12px;
  letter-spacing: 0.12em;

  color: rgba(242,237,228,0.55);
}

@media (max-width: 900px) {
  .recommendations-grid {
    grid-template-columns: 1fr;
  }
}
/* CONTACT MARZENOS */

#contact-marzenos {
  padding: 170px 48px 120px;
}

.contact-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7vw, 110px);
  font-weight: 300;
  color: var(--white);

  margin: 24px 0;
}

.contact-lead {
  max-width: 560px;
  margin: 0 auto;

  line-height: 2;
  color: rgba(242,237,228,0.55);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
}

.contact-block {
  margin-bottom: 36px;
}

.contact-block span {
  display: block;

  margin-bottom: 10px;

  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--gold);
}

.contact-block p {
  color: var(--white);
}

.contact-field {
  margin-bottom: 18px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;

  padding: 18px 22px;

  background: rgba(255,255,255,0.02);

  border: 1px solid rgba(196,164,110,0.08);

  color: var(--white);
}

.contact-submit {
  margin-top: 18px;

  padding: 18px 34px;

  border: none;

  background: var(--gold);

  color: var(--black);

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 900px) {

  #contact-marzenos {
    padding: 120px 24px 80px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}
/* LIVRAISON MARZENOS */

#livraison-marzenos {
  padding: 170px 48px 120px;
}

.shipping-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px;
}

.shipping-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.95;

  color: var(--white);

  margin: 24px 0;
}

.shipping-lead {
  max-width: 620px;
  margin: 0 auto;

  line-height: 2;

  color: rgba(242,237,228,0.55);
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.shipping-block {
  padding: 54px 42px;

  background: rgba(255,255,255,0.015);

  border: 1px solid rgba(196,164,110,0.08);
}

.shipping-block span {
  display: block;

  margin-bottom: 28px;

  color: var(--gold);

  font-size: 10px;
  letter-spacing: 0.24em;
}

.shipping-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;

  color: var(--white);

  margin-bottom: 18px;
}

.shipping-block p {
  line-height: 1.9;

  color: rgba(242,237,228,0.55);
}

@media (max-width: 900px) {

  #livraison-marzenos {
    padding: 120px 24px 80px;
  }

  .shipping-grid {
    grid-template-columns: 1fr;
  }

}
/* RETOURS MARZENOS */

#retours-marzenos {
  padding: 170px 48px 120px;
}

.returns-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px;
}

.returns-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.95;

  color: var(--white);

  margin: 24px 0;
}

.returns-lead {
  max-width: 620px;
  margin: 0 auto;

  line-height: 2;

  color: rgba(242,237,228,0.55);
}

.returns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.returns-block {
  padding: 54px 42px;

  background: rgba(255,255,255,0.015);

  border: 1px solid rgba(196,164,110,0.08);
}

.returns-block span {
  display: block;

  margin-bottom: 28px;

  color: var(--gold);

  font-size: 10px;
  letter-spacing: 0.24em;
}

.returns-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;

  color: var(--white);

  margin-bottom: 18px;
}

.returns-block p {
  line-height: 1.9;

  color: rgba(242,237,228,0.55);
}

@media (max-width: 900px) {

  #retours-marzenos {
    padding: 120px 24px 80px;
  }

  .returns-grid {
    grid-template-columns: 1fr;
  }

}
/* FAQ MARZENOS */

#faq-marzenos {
  padding: 170px 48px 120px;
}

.faq-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px;
}

.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7vw, 110px);
  font-weight: 300;
  color: var(--white);
  margin: 24px 0;
}

.faq-lead {
  max-width: 620px;
  margin: 0 auto;
  line-height: 2;
  color: rgba(242,237,228,0.55);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(196,164,110,0.08);
}

.faq-list details {
  border-bottom: 1px solid rgba(196,164,110,0.08);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  color: var(--gold);
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list p {
  padding: 0 0 26px;
  line-height: 1.9;
  font-size: 13px;
  color: rgba(242,237,228,0.55);
}

@media (max-width: 900px) {
  #faq-marzenos {
    padding: 120px 24px 80px;
  }
}
html {
  scroll-behavior: smooth;
}
/* PRODUCT PAGE FIX - MARZENOS */

.product-page-grid {
  max-width: 1380px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.product-gallery-marzenos {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-gallery-stack .product-main-image {
  min-height: auto !important;
  aspect-ratio: 1 / 1 !important;
}

.product-main-image {
  background: transparent !important;
  border: none !important;
  min-height: auto !important;
  overflow: visible !important;
}

.product-main-image::before,
.product-main-image::after {
  display: none !important;
}

.product-main-image img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  transform: scale(1);
  transform-origin: center;
  display: block;
}

.product-infos {
  max-width: 560px;
  padding-top: 0;
}

.product-title {
  font-size: clamp(46px, 5vw, 76px);
}

.product-description {
  margin-bottom: 36px;
}

.product-price-big {
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery-stack .product-main-image {
    aspect-ratio: 1 / 1.15 !important;
  }

  .product-main-image img {
    width: 110% !important;
  }

  .product-infos {
    padding-top: 0;
  }
}