/* ============================================================
   NUE — We don't sell, but lifestyle.
   Premium Minimal Fashion Website CSS
   ============================================================ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory: #F8F6F2;
  --beige: #EAE6DF;
  --charcoal: #2A2A2A;
  --text: #111111;
  --text-muted: #888;
  --olive: #787B6C;
  --stone: #9B9589;
  --white: #FFFFFF;
  --border: rgba(42, 42, 42, 0.1);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-slow: 1.2s;
  --duration-med: 0.6s;
  --duration-fast: 0.3s;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  font-weight: 300;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  cursor: none;
  font-family: var(--font-sans);
  border: none;
  background: none;
}

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--stone);
  border-radius: 2px;
}

/* ─── Custom Cursor ─────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--charcoal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0) translate(-50%, -50%);
  transition: background 0.1s, scale 0.1s var(--ease-out);
  mix-blend-mode: difference;
  scale: 1;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(42, 42, 42, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(var(--follower-x, -100px), var(--follower-y, -100px), 0) translate(-50%, -50%);
  transition: width 0.12s var(--ease-out), height 0.12s var(--ease-out),
    border-color 0.12s, scale 0.12s var(--ease-out);
  scale: 1;
}

.cursor.is-hovering {
  scale: 2.5;
}

.cursor-follower.is-hovering {
  width: 56px;
  height: 56px;
  border-color: var(--charcoal);
}

.cursor.is-clicking {
  scale: 0.6;
}

/* ─── Loader ─────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  gap: 2rem;
  transition: opacity 1.2s var(--ease-out), visibility 1.2s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--charcoal);
  animation: line-grow 1.2s var(--ease-out) 0.3s forwards;
}

@keyframes line-grow {
  to {
    width: 120px;
  }
}

.loader-brand {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--charcoal);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.2s forwards;
}

.loader-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 2s forwards;
}

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

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

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  transition: padding 0.5s var(--ease-out), background 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled {
  padding: 1.2rem 3rem;
  background: rgba(248, 246, 242, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--charcoal);
  transition: opacity 0.3s;
}

.nav-logo a:hover {
  opacity: 0.6;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: opacity 0.15s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--charcoal);
  transition: width 0.2s var(--ease-out);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
}

.nav-icon-btn:hover {
  opacity: 0.6;
  transform: scale(1.05);
}


.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.55rem;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.lifestyle-mode-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lifestyle-mode-btn:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.lifestyle-dot {
  width: 6px;
  height: 6px;
  background: var(--olive);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.nav-toggle.open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
}

.mobile-menu-inner ul {
  list-style: none;
}

.mobile-menu-inner ul li {
  margin: 2rem 0;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  transition: opacity 0.3s;
}

.mobile-nav-link:hover {
  opacity: 0.5;
}

.mobile-menu-footer {
  margin-top: 4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 2;
}

/* ─── Search Overlay ─────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

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

.search-inner {
  width: min(600px, 90vw);
  text-align: center;
}

.search-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--charcoal);
  padding: 1rem 0;
  outline: none;
  text-align: center;
  letter-spacing: 0.05em;
}

.search-input::placeholder {
  color: var(--beige);
}

.search-results {
  margin-top: 2rem;
  max-height: 300px;
  overflow-y: auto;
}

.overlay-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 1.2rem;
  color: var(--charcoal);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.overlay-close:hover {
  opacity: 1;
}

/* ─── Cart Sidebar ─────────────────────────────────────────── */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--ivory);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cart-close {
  font-size: 1.1rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.cart-close:hover {
  opacity: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.75rem;
  text-align: center;
}

.cart-empty p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--charcoal);
}

.cart-empty span {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.15em;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  animation: fade-up 0.4s var(--ease-out);
}

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--stone);
}

.cart-item-remove {
  font-size: 0.7rem;
  color: var(--stone);
  margin-top: 0.75rem;
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--charcoal);
}

.cart-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cart-note {
  font-size: 0.65rem;
  color: var(--stone);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.2);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(4px);
  transition: opacity 0.4s, visibility 0.4s;
}

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

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--charcoal);
  border-radius: 1px;
  transition: background 0.2s, color 0.2s, transform 0.15s var(--ease-out), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ivory);
  transform: translateX(-101%);
  transition: transform 0.2s var(--ease-out);
}

.btn-primary:hover {
  color: var(--charcoal);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary.full-width {
  width: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--charcoal);
  transition: opacity 0.3s;
}

.btn-secondary:hover {
  opacity: 0.6;
}

/* ─── Reveal Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Section Common ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--stone);
  margin-top: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: scale(1.1);
  transition: transform 0.1s linear;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(248, 246, 242, 0.15) 0%,
      rgba(17, 17, 17, 0.45) 60%,
      rgba(17, 17, 17, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: hero-reveal 1.5s var(--ease-out) 3.2s forwards;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-brand-mark {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  line-height: 1;
  color: var(--ivory);
}

.hero-brand-mark h1 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(248, 246, 242, 0.5);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.6vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.85);
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(248, 246, 242, 0.4);
  padding: 0.9rem 2rem;
  margin-top: 1rem;
  border-radius: 1px;
  transition: background 0.4s, border-color 0.4s;
}

.hero-cta:hover {
  background: rgba(248, 246, 242, 0.1);
  border-color: rgba(248, 246, 242, 0.8);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(248, 246, 242, 0.6);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: hero-reveal 1s var(--ease-out) 4s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(248, 246, 242, 0.6));
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}

/* ─── Marquee ──────────────────────────────────────────────── */
.marquee-section {
  background: var(--charcoal);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
  flex-shrink: 0;
}

.marquee-inner span {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.6);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── Collection ──────────────────────────────────────────── */
.collection-section {
  padding: 12rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
  background: var(--ivory);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12rem 4rem;
  align-items: start;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: none;
  transition: transform 0.4s var(--ease-out);
}

/* Asymmetrical Editorial Offsets & Widths */
.product-card:nth-child(1) {
  grid-column: 1 / 7;
}

.product-card:nth-child(2) {
  grid-column: 8 / 13;
  margin-top: 14rem;
}

.product-card:nth-child(3) {
  grid-column: 2 / 7;
  margin-top: -6rem;
}

.product-card:nth-child(4) {
  grid-column: 8 / 12;
  margin-top: 8rem;
}

.product-card:nth-child(5) {
  grid-column: 1 / 7;
  margin-top: -4rem;
}

.product-card:nth-child(6) {
  grid-column: 8 / 13;
  margin-top: 12rem;
}

.product-card:nth-child(7) {
  grid-column: 2 / 7;
  margin-top: -5rem;
}

.product-card:nth-child(8) {
  grid-column: 8 / 12;
  margin-top: 6rem;
}

.product-card:nth-child(9) {
  grid-column: 1 / 7;
  margin-top: -4rem;
}

.product-card:nth-child(10) {
  grid-column: 8 / 13;
  margin-top: 12rem;
}

.product-card:nth-child(11) {
  grid-column: 2 / 7;
  margin-top: -5rem;
}

.product-card:nth-child(12) {
  grid-column: 8 / 12;
  margin-top: 6rem;
}

.product-card:nth-child(13) {
  grid-column: 1 / 7;
  margin-top: -4rem;
}

.product-card:nth-child(14) {
  grid-column: 8 / 13;
  margin-top: 12rem;
}

.product-card:nth-child(15) {
  grid-column: 2 / 7;
  margin-top: -5rem;
}

.product-card:nth-child(16) {
  grid-column: 8 / 12;
  margin-top: 6rem;
}

.product-card:nth-child(17) {
  grid-column: 1 / 7;
  margin-top: -4rem;
}

/* Custom Editorial Aspect Ratios */
.product-card:nth-child(1) .product-image-wrap {
  aspect-ratio: 3/4.2;
}

.product-card:nth-child(2) .product-image-wrap {
  aspect-ratio: 4/5;
}

.product-card:nth-child(3) .product-image-wrap {
  aspect-ratio: 3/4;
}

.product-card:nth-child(4) .product-image-wrap {
  aspect-ratio: 3/4.5;
}

.product-card:nth-child(5) .product-image-wrap {
  aspect-ratio: 3/4.2;
}

.product-card:nth-child(6) .product-image-wrap {
  aspect-ratio: 4/5;
}

.product-card:nth-child(7) .product-image-wrap {
  aspect-ratio: 3/4;
}

.product-card:nth-child(8) .product-image-wrap {
  aspect-ratio: 3/4.5;
}

.product-card:nth-child(9) .product-image-wrap {
  aspect-ratio: 3/4.2;
}

.product-card:nth-child(10) .product-image-wrap {
  aspect-ratio: 4/5;
}

.product-card:nth-child(11) .product-image-wrap {
  aspect-ratio: 3/4;
}

.product-card:nth-child(12) .product-image-wrap {
  aspect-ratio: 3/4.5;
}

.product-card:nth-child(13) .product-image-wrap {
  aspect-ratio: 3/4.2;
}

.product-card:nth-child(14) .product-image-wrap {
  aspect-ratio: 4/5;
}

.product-card:nth-child(15) .product-image-wrap {
  aspect-ratio: 3/4;
}

.product-card:nth-child(16) .product-image-wrap {
  aspect-ratio: 3/4.5;
}

.product-card:nth-child(17) .product-image-wrap {
  aspect-ratio: 3/4.2;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--beige);
}

.product-card:nth-child(2) .product-image-wrap {
  aspect-ratio: 3/5;
  height: 100%;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out), filter 0.2s;
  filter: grayscale(10%);
}

.product-card:hover .product-img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(248, 246, 242, 0.15);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn,
.view-product-btn {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  width: 170px;
  padding: 0.75rem 0;
  text-align: center;
  border-radius: 1px;
  transition: all 0.15s var(--ease-out);
}

.quick-view-btn {
  color: var(--ivory);
  border: 1px solid rgba(248, 246, 242, 0.6);
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(8px);
}

.quick-view-btn:hover {
  background: rgba(17, 17, 17, 0.8);
  border-color: var(--ivory);
}

.view-product-btn {
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  background: var(--ivory);
}

.view-product-btn:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.wishlist-btn-card {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(248, 246, 242, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  color: var(--charcoal);
}

.product-card:hover .wishlist-btn-card {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-btn-card.wishlisted svg {
  fill: var(--charcoal);
}

.wishlist-btn-card:hover {
  background: var(--ivory);
}

.product-info {
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.product-desc {
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(42, 42, 42, 0.06);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal);
}

.add-to-cart {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: opacity 0.3s, letter-spacing 0.3s;
  cursor: none;
}

.add-to-cart:hover {
  opacity: 0.6;
  letter-spacing: 0.35em;
}

/* ─── Statement Section ───────────────────────────────────── */
.statement-section {
  padding: 10rem 3rem;
  text-align: center;
  background: var(--charcoal);
  overflow: hidden;
}

.statement-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.statement-word {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.statement-word--italic {
  font-style: italic;
  color: rgba(248, 246, 242, 0.7);
}

.statement-word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── About Section ───────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.about-section {
  padding: 14rem 3rem;
  background: var(--ivory);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8rem;
  align-items: center;
}

.about-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

.manifesto-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.manifesto-line-container {
  overflow: hidden;
  line-height: 1.25;
}

.manifesto-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 300;
  color: var(--charcoal);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.6s var(--ease-out), opacity 1.6s var(--ease-out);
  letter-spacing: -0.01em;
}

.about-editorial-paragraph {
  max-width: 440px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 2.0;
  color: var(--charcoal);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s var(--ease-out) 0.6s, transform 1.6s var(--ease-out) 0.6s;
  letter-spacing: 0.02em;
}

.about-image-column {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.about-image-inner {
  width: 100%;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96) translateY(40px);
  transition: transform 2s var(--ease-out), opacity 2s var(--ease-out);
}

.about-editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
  filter: grayscale(10%) contrast(1.02);
}

/* Scroll reveal triggers */
.about-section.visible .manifesto-line {
  transform: translateY(0);
  opacity: 1;
}

.about-section.visible .manifesto-line-container:nth-child(1) .manifesto-line {
  transition-delay: 0.1s;
}

.about-section.visible .manifesto-line-container:nth-child(2) .manifesto-line {
  transition-delay: 0.4s;
}

.about-section.visible .about-editorial-paragraph {
  opacity: 0.75;
  transform: translateY(0);
}

.about-section.visible .about-image-inner {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ─── Essentials Section ──────────────────────────────────── */
.essentials-section {
  padding: 8rem 3rem;
  background: var(--beige);
}

.essentials-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.essential-item {
  perspective: 1000px;
}

.essential-card {
  position: relative;
  cursor: none;
  transition: transform 0.1s linear;
  transform-style: preserve-3d;
}

.essential-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ivory);
}

.essential-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  filter: grayscale(15%);
}

.essential-card:hover .essential-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.essential-spotlight {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 246, 242, 0.3) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.essential-card:hover .essential-spotlight {
  opacity: 1;
}

.essential-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0;
}

.essential-num {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--stone);
}

.essential-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* ─── Lifestyle Section ───────────────────────────────────── */
.lifestyle-section {
  padding: 8rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.lifestyle-header {
  margin-bottom: 5rem;
}

.lifestyle-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

.lifestyle-title em {
  font-style: italic;
  color: var(--olive);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.lifestyle-block {
  position: relative;
  overflow: hidden;
}

.lifestyle-block--tall {
  grid-row: span 2;
  aspect-ratio: 3/4;
}

.lifestyle-block:not(.lifestyle-block--tall):not(.lifestyle-block--wide) {
  aspect-ratio: 4/3;
}

.lifestyle-block--wide {
  grid-column: span 1;
  aspect-ratio: 16/9;
}

.lifestyle-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  filter: grayscale(15%) contrast(1.05);
}

.lifestyle-block:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(1.0);
}

.lifestyle-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: var(--ivory);
}

.lifestyle-caption span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.lifestyle-statement {
  margin-top: 5rem;
  text-align: center;
}

.lifestyle-statement blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.lifestyle-statement blockquote footer {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ─── Journal Section ────────────────────────────────────── */
.journal-section {
  padding: 8rem 3rem;
  background: var(--charcoal);
}

.journal-section .section-label {
  color: rgba(248, 246, 242, 0.5);
}

.journal-section .section-title {
  color: var(--ivory);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.journal-card {
  cursor: none;
  transition: transform 0.4s var(--ease-out);
}

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

.journal-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
  background: rgba(248, 246, 242, 0.05);
}

.journal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  filter: grayscale(30%);
}

.journal-card:hover .journal-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.journal-date {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.4);
  margin-bottom: 0.75rem;
}

.journal-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.journal-excerpt {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(248, 246, 242, 0.55);
  margin-bottom: 1.25rem;
}

.journal-link {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.6);
  border-bottom: 1px solid rgba(248, 246, 242, 0.2);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.journal-link:hover {
  color: var(--ivory);
  border-color: rgba(248, 246, 242, 0.6);
}

/* ─── Social Wall ─────────────────────────────────────────── */
.social-section {
  padding: 8rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.social-header {
  margin-bottom: 4rem;
}

.social-wall {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.social-wall-track {
  display: flex;
  gap: 1.5rem;
  animation: social-scroll 25s linear infinite;
  will-change: transform;
}

@keyframes social-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.social-item {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: none;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: grayscale(30%);
}

.social-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.social-item:hover .social-overlay {
  opacity: 1;
}

.social-overlay span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--ivory);
  font-weight: 300;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 10rem 3rem 4rem;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(248, 246, 242, 0.08);
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--ivory);
  line-height: 1;
}

.footer-statement-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-statement-line {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 246, 242, 0.6);
  line-height: 1.4;
}

.footer-journal-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 440px;
}

.footer-journal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
}

.footer-newsletter-form {
  width: 100%;
}

.footer-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(248, 246, 242, 0.3);
  padding: 0.5rem 0;
  transition: border-color 0.4s var(--ease-out);
}

.footer-input-wrap:focus-within {
  border-color: var(--ivory);
}

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

.footer-newsletter-input::placeholder {
  color: rgba(248, 246, 242, 0.35);
}

.footer-newsletter-submit {
  background: none;
  border: none;
  color: rgba(248, 246, 242, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  padding: 0.5rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-newsletter-submit:hover {
  color: var(--ivory);
  transform: translateX(3px);
}

.footer-newsletter-note {
  font-size: 0.65rem;
  color: rgba(248, 246, 242, 0.4);
  letter-spacing: 0.1em;
}

.footer-bottom-bar {
  max-width: 1300px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.5);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--ivory);
}

.footer-social-links {
  display: flex;
  gap: 2rem;
}

.footer-social-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.5);
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: var(--ivory);
}

.footer-copyright {
  font-size: 0.65rem;
  color: rgba(248, 246, 242, 0.3);
  letter-spacing: 0.05em;
}

/* ─── Quick View Modal ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(8px);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

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

.quickview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  width: min(900px, 92vw);
  max-height: 85vh;
  background: var(--ivory);
  z-index: 401;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.4s;
  overflow: hidden;
  border-radius: 2px;
}

.quickview-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.5;
  transition: opacity 0.3s;
  z-index: 10;
}

.modal-close:hover {
  opacity: 1;
}

.quickview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.quickview-gallery {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--beige);
}

.quickview-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-details {
  padding: 3rem 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.qv-category {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

.qv-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}

.qv-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
}

.qv-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--charcoal);
  opacity: 0.7;
}

.qv-sizes {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.size-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: none;
}

.size-btn:hover,
.size-btn.active {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.qv-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.qv-material {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--stone);
}

/* ─── Lifestyle Mode ──────────────────────────────────────── */
.lifestyle-mode-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #0a0a0a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

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

.lm-close-area {
  position: absolute;
  top: 2rem;
  right: 3rem;
  z-index: 10;
}

.lm-exit {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.5);
  border: 1px solid rgba(248, 246, 242, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 1px;
  transition: color 0.3s, border-color 0.3s;
  cursor: none;
}

.lm-exit:hover {
  color: var(--ivory);
  border-color: rgba(248, 246, 242, 0.5);
}

.lm-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  pointer-events: none;
}

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

.lm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) grayscale(20%);
}

.lm-text {
  position: absolute;
  bottom: 15%;
  left: 10%;
  color: var(--ivory);
}

.lm-text p {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out) 0.3s, transform 1s var(--ease-out) 0.3s;
}

.lm-slide.active .lm-text p {
  opacity: 1;
  transform: translateY(0);
}

.lm-text span {
  display: block;
  margin-top: 1rem;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.6);
  opacity: 0;
  transition: opacity 1s var(--ease-out) 0.6s;
}

.lm-slide.active .lm-text span {
  opacity: 1;
}

.lm-nav {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

.lm-prev,
.lm-next {
  color: rgba(248, 246, 242, 0.5);
  font-size: 1.2rem;
  transition: color 0.3s;
  cursor: none;
}

.lm-prev:hover,
.lm-next:hover {
  color: var(--ivory);
}

.lm-dots {
  display: flex;
  gap: 0.75rem;
}

.lm-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(248, 246, 242, 0.25);
  cursor: none;
  transition: background 0.3s, transform 0.3s;
}

.lm-dot.active {
  background: var(--ivory);
  transform: scale(1.3);
}

/* ─── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Lifestyle Mode Active ───────────────────────────────── */
body.lifestyle-active .hero-content {
  mix-blend-mode: difference;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:nth-child(1) {
    grid-column: 1/2;
  }

  .product-card:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .product-card:nth-child(3) {
    grid-column: 1/2;
  }

  .product-card:nth-child(4) {
    grid-column: 1/2;
  }

  .product-card:nth-child(2) .product-image-wrap {
    aspect-ratio: 3/4;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .essentials-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-card:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }

  button,
  a {
    cursor: pointer;
  }

  .nav {
    padding: 1.5rem 1.5rem;
  }

  .nav.scrolled {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .lifestyle-mode-btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-brand-mark {
    letter-spacing: 0.2em;
  }

  .collection-section {
    padding: 5rem 1.5rem;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .product-card:nth-child(n) {
    grid-column: span 1 !important;
    margin-top: 0 !important;
  }

  .product-card:nth-child(even) {
    margin-top: 3rem !important;
  }

  .product-card:nth-child(n) .product-image-wrap {
    aspect-ratio: 3/4 !important;
    height: auto !important;
  }

  .about-section,
  .essentials-section,
  .lifestyle-section,
  .journal-section,
  .social-section,
  .newsletter-section {
    padding: 5rem 1.5rem;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text-column {
    gap: 2.5rem;
  }

  .essentials-showcase {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-block--tall {
    aspect-ratio: 4/3;
    grid-row: span 1;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .quickview-inner {
    grid-template-columns: 1fr;
  }

  .quickview-gallery {
    aspect-ratio: 16/9;
  }

  .footer {
    padding: 6rem 1.5rem 2rem;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
  }

  .footer-links,
  .footer-social-links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .lm-text {
    left: 5%;
    right: 5%;
  }

  .statement-section {
    padding: 6rem 1.5rem;
  }

  .statement-container {
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1.25rem;
  }

  .nav-actions {
    gap: 1rem;
  }

  .lifestyle-mode-btn {
    display: none;
  }

  .hero-brand-mark {
    letter-spacing: 0.1em;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(n) {
    grid-column: span 1;
  }

  .social-item {
    width: 160px;
  }
}

/* ─── Smooth Scroll for Firefox ───────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

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

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

/* ─── Product Detail Page ─── */
.product-detail-section {
  padding: 10rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-bottom: 8rem;
}

.product-detail-gallery {
  position: sticky;
  top: 8rem;
  height: calc(100vh - 12rem);
  min-height: 500px;
  background: var(--beige);
  overflow: hidden;
}

.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-detail-img:hover {
  transform: scale(1.03);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.p-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 1rem;
}

.p-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.p-price {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.p-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}

.p-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.p-sizes-selector {
  margin-bottom: 2.5rem;
}

.p-sizes-grid {
  display: flex;
  gap: 0.8rem;
}

.p-sizes-grid .size-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: none;
}

.p-sizes-grid .size-btn:hover {
  border-color: var(--charcoal);
}

.p-sizes-grid .size-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.p-material-info {
  margin-bottom: 3rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--stone);
}

.p-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.p-add-button {
  flex: 1;
}

.p-wishlist-button {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: none;
}

.p-wishlist-button:hover {
  border-color: var(--charcoal);
}

.p-wishlist-button.wishlisted {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* Related Products Grid */
.related-products-section {
  border-top: 1px solid var(--border);
  padding-top: 6rem;
}

.related-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-detail-gallery {
    position: relative;
    top: 0;
    height: 60vh;
    min-height: 400px;
  }

  .product-detail-info {
    padding-right: 0;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .p-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .p-wishlist-button {
    width: 100%;
  }
}

/* ─── Collection Navigation / Filter Bar ─── */
.collection-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.col-nav-btn {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.col-nav-btn:hover,
.col-nav-btn.active {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* For filtering animations */
.product-card {
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.product-card.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* ─── Continue Shopping Link ─── */
.continue-shopping-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.continue-shopping-btn:hover {
  color: var(--charcoal);
}

/* ─── Cart Page, Checkout Page, Success & Inquiries Dashboard (Phase 3) ─── */

/* Quantity Adjuster elements */
.cart-item-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  width: 100%;
}

.qty-adjuster {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--ivory);
  height: 28px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--charcoal);
  width: 28px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 300;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--beige);
}

.qty-val {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  width: 24px;
  text-align: center;
  color: var(--charcoal);
}

/* Double buttons in cart drawer footer */
.cart-drawer-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Cart Page Styles */
.cart-page-section,
.checkout-page-section,
.success-page-section,
.inquiries-page-section {
  padding: 10rem 3rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 70vh;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 3fr 1.2fr 1fr;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.cart-page-items {
  display: flex;
  flex-direction: column;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 3fr 1.2fr 1fr;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-page-item-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-page-item-img {
  width: 75px;
  height: 98px;
  object-fit: cover;
  background: var(--beige);
}

.cart-page-item-meta .item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.cart-page-item-meta .item-category {
  font-size: 0.72rem;
  color: var(--stone);
}

.cart-page-item-meta .item-remove-link {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.cart-page-item-meta .item-remove-link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.cart-page-item-price {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--charcoal);
}

/* Summary Cards */
.order-summary-card {
  background: var(--beige);
  padding: 2.5rem;
  border-radius: 1px;
  align-self: start;
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 1rem;
}

.summary-row.total-row {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 2rem;
}

/* Checkout Form Styles */
.checkout-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-input,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--charcoal);
  border-radius: 1px;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--charcoal);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Order Summary Items (Checkout) */
.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border);
}

.checkout-item-name {
  color: var(--charcoal);
}

.checkout-item-qty {
  color: var(--stone);
  margin-left: 0.5rem;
}

.checkout-item-price {
  font-weight: 500;
}

/* Success Screen Styles */
.success-card {
  text-align: center;
  max-width: 600px;
  margin: 4rem auto 0;
  padding: 4rem;
  background: var(--beige);
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.success-icon {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.success-message {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 2.5rem;
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Inquiries Dashboard Table */
.inquiries-table-container {
  overflow-x: auto;
  margin-top: 3rem;
  border: 1px solid var(--border);
  background: var(--ivory);
}

.inquiries-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  text-align: left;
}

.inquiries-table th,
.inquiries-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.inquiries-table th {
  background: var(--beige);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

.inquiries-table tr:last-child td {
  border-bottom: none;
}

.inquiries-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--stone);
}

.inquiries-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.inquiry-details-list {
  padding-left: 1rem;
  margin: 0.5rem 0;
  font-size: 0.75rem;
}

/* Responsive Overrides (Phase 3) */
@media (max-width: 900px) {

  .cart-page-grid,
  .checkout-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cart-page-section,
  .checkout-page-section,
  .success-page-section,
  .inquiries-page-section {
    padding: 8rem 1.5rem 4rem;
  }

  .success-card {
    padding: 2.5rem;
  }
}

@media (max-width: 600px) {
  .cart-table-header {
    display: none;
  }

  .cart-page-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .success-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .success-buttons .btn-primary,
  .success-buttons .continue-shopping-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Cardniti Partner Interlink ─── */
.partner-interlink {
  margin-top: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.partner-interlink a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s, opacity 0.15s;
  opacity: 0.85;
}

.partner-interlink a:hover {
  color: var(--charcoal);
  opacity: 1;
}

/* ==========================================================================
   PHASE 4: ADDITIONAL OPTIMIZATION & BRAND SYSTEM STYLES
   ========================================================================== */

/* ─── UGC Section ─── */
.ugc-section {
  padding: 8rem 3rem;
  background: var(--ivory);
  max-width: 1400px;
  margin: 0 auto;
}

.ugc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.ugc-sub-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  padding-bottom: 1rem;
}

.ugc-sub-title.text-center {
  text-align: center;
}

.ugc-stories, .ugc-journal {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ugc-story-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ugc-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 300;
}

.ugc-author {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.ugc-journal-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ugc-journal-date {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

.ugc-journal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--charcoal);
}

.ugc-journal-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--stone);
}

.ugc-community {
  margin-top: 4rem;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ugc-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.ugc-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: grayscale(20%) contrast(1.05);
}

.ugc-grid-item:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(1.0);
}

.ugc-grid-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.ugc-grid-item:hover .ugc-grid-caption {
  opacity: 1;
}

.ugc-grid-caption span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(17, 17, 17, 0.6);
  padding: 0.4rem 0.8rem;
  backdrop-filter: blur(4px);
}

/* ─── SEO Content Section ─── */
.seo-content-section {
  padding: 6rem 3rem;
  background: var(--beige);
  border-top: 1px solid rgba(42, 42, 42, 0.05);
  border-bottom: 1px solid rgba(42, 42, 42, 0.05);
}

.seo-container {
  max-width: 1300px;
  margin: 0 auto;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.seo-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.seo-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}

.seo-text {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--stone);
}

.seo-text strong {
  color: var(--charcoal);
  font-weight: 400;
}

/* ─── Collections Labels & Details ─── */
.product-card-collection {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.25rem;
  display: block;
}

.p-collection-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
  display: inline-block;
  border: 1px solid rgba(42, 42, 42, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 1px;
}

.p-lifestyle-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42, 42, 42, 0.06);
}

.p-lifestyle-info {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--stone);
}

/* ─── Checkout Trust Badges ─── */
.checkout-trust-badges {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  padding: 1.25rem;
  background: var(--beige);
  border-radius: 1px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.badge-check {
  color: var(--olive);
  font-weight: bold;
}

/* ─── Mobile Responsiveness for UGC & SEO ─── */
@media (max-width: 1024px) {
  .ugc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ugc-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ugc-section, .seo-content-section {
    padding: 6rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .ugc-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-trust-badges {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ─── Custom Cursor Lag Mitigation (Touch Screen Optimization) ─── */
@media (max-width: 1024px) {
  #cursor, #cursor-follower {
    display: none !important;
  }
  
  body, a, button, [data-tilt], .product-card, .journal-card, .lifestyle-block, .social-item {
    cursor: auto !important;
  }
}

/* ─── Cardniti Cart Partner Link ──────────────────────────────── */
.cardniti-cart-link-wrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cardniti-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.cardniti-cart-link:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}

.cardniti-brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: inherit;
}