/**
 * Heartlume Theme - Base CSS
 * Static stylesheet replacing Tailwind CDN for LCP optimization
 * 
 * ⚠️ IMPORTANT: This file replaces runtime Tailwind CSS
 * All utility classes are compiled to static CSS for performance
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Heartlume accents */
  --hl-gold: #9A6610;
  --hl-frost-bg: rgba(253, 252, 248, 0.38);
  --hl-frost-bg-strong: rgba(253, 252, 248, 0.55);
  --hl-frost-blur: 22px;
  --hl-radius-nav-img: 24px;

  /* Colors */
  --color-cream: #Fdfcf8;
  --color-charcoal: #1A1A1A;
  --color-deep-red: #4A0404;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-900: #111827;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography - Prada-style Luxury */
  --font-serif: "Prata", "Canela", "Didot", "Bodoni Moda", Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, "Questrial", sans-serif;
  --font-mono: "Questrial", sans-serif;

  /* Luxury Typography Colors */
  --color-heading: #000000;
  --color-body: #333333;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-48: 12rem;

  /* Font Sizes */
  --text-xxs: 0.65rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  --text-9xl: 8rem;

  /* Glassmorphism */
  --glass-bg: rgba(253, 252, 248, 0.85);
  --glass-border: rgba(26, 26, 26, 0.06);

  /* Header Heights */
  --header-height: 58px;
  --header-height-mobile: 52px;

  /* Easing Functions */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-body, #333333);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  letter-spacing: 0.01em;
}

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

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

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* ===== LUXURY HEADINGS - Prada Style ===== */
h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.hl-heading {
  font-family: var(--font-serif);
  color: var(--color-heading, #000000);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

h1,
.h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

h2,
.h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

h3,
.h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

h4,
.h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

h5,
.h5 {
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

h6,
.h6 {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

/* ===== LUXURY NAVIGATION & BUTTONS ===== */
nav,
.nav,
.hl-header__link,
.hl-header__menu,
.mega-menu__link,
.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-heading, #000000);
}

/* Button styling - luxury aesthetic */
button,
.btn,
.button,
[type="button"],
[type="submit"],
.hl-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

/* Primary buttons */
.btn-primary,
.hl-btn--primary {
  background-color: var(--color-heading, #000000);
  color: var(--color-cream);
  border: 1px solid var(--color-heading, #000000);
}

.btn-primary:hover,
.hl-btn--primary:hover {
  background-color: transparent;
  color: var(--color-heading, #000000);
}

/* Secondary/outline buttons */
.btn-secondary,
.btn-outline,
.hl-btn--secondary {
  background-color: transparent;
  color: var(--color-heading, #000000);
  border: 1px solid var(--color-heading, #000000);
}

.btn-secondary:hover,
.btn-outline:hover,
.hl-btn--secondary:hover {
  background-color: var(--color-heading, #000000);
  color: var(--color-cream);
}

/* ===== PARAGRAPH & BODY TEXT ===== */
p,
.body-text {
  font-family: var(--font-sans);
  color: var(--color-body, #333333);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Last paragraph in a container - remove margin */
p:last-child {
  margin-bottom: 0;
}

/* ===== LUXURY WHITESPACE UTILITIES ===== */
.section-spacing {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-spacing-lg {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-spacing-xl {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-spacing-lg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-spacing-xl {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ===== TYPOGRAPHY ===== */
.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.font-mono {
  font-family: var(--font-mono);
}

.text-xxs {
  font-size: var(--text-xxs);
  line-height: 1rem;
}

.text-xs {
  font-size: var(--text-xs);
  line-height: 1rem;
}

.text-sm {
  font-size: var(--text-sm);
  line-height: 1.25rem;
}

.text-base {
  font-size: var(--text-base);
  line-height: 1.5rem;
}

.text-lg {
  font-size: var(--text-lg);
  line-height: 1.75rem;
}

.text-xl {
  font-size: var(--text-xl);
  line-height: 1.75rem;
}

.text-2xl {
  font-size: var(--text-2xl);
  line-height: 2rem;
}

.text-3xl {
  font-size: var(--text-3xl);
  line-height: 2.25rem;
}

.text-4xl {
  font-size: var(--text-4xl);
  line-height: 2.5rem;
}

.text-5xl {
  font-size: var(--text-5xl);
  line-height: 1;
}

.text-6xl {
  font-size: var(--text-6xl);
  line-height: 1;
}

.text-7xl {
  font-size: var(--text-7xl);
  line-height: 1;
}

.text-8xl {
  font-size: var(--text-8xl);
  line-height: 1;
}

.text-9xl {
  font-size: var(--text-9xl);
  line-height: 1;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-ultra {
  letter-spacing: 0.25em;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

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

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

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

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

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.no-underline {
  text-decoration: none;
}

/* ===== COLORS ===== */
.bg-prada-cream {
  background-color: var(--color-cream);
}

.bg-charcoal {
  background-color: var(--color-charcoal);
}

.bg-deep-red {
  background-color: var(--color-deep-red);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-black {
  background-color: var(--color-black);
}

.bg-gray-100 {
  background-color: var(--color-gray-100);
}

.bg-gray-900 {
  background-color: var(--color-gray-900);
}

.bg-transparent {
  background-color: transparent;
}

.text-charcoal {
  color: var(--color-charcoal);
}

.text-prada-cream {
  color: var(--color-cream);
}

.text-deep-red {
  color: var(--color-deep-red);
}

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black);
}

.text-gray-200 {
  color: var(--color-gray-200);
}

.text-gray-300 {
  color: var(--color-gray-300);
}

.text-gray-400 {
  color: var(--color-gray-400);
}

.text-gray-500 {
  color: var(--color-gray-500);
}

.border-charcoal {
  border-color: var(--color-charcoal);
}

.border-white {
  border-color: var(--color-white);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.max-w-screen-2xl {
  max-width: 1536px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-screen {
  width: 100vw;
}

.w-20 {
  width: 5rem;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-screen {
  height: 100vh;
}

.h-8 {
  height: 2rem;
}

.h-20 {
  height: 5rem;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-\[2rem\] {
  min-height: 2rem;
}

/* ===== FLEXBOX ===== */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-24 {
  gap: 6rem;
}

.gap-32 {
  gap: 8rem;
}

/* ===== GRID ===== */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ===== SPACING ===== */
.p-0 {
  padding: 0;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

/* ===== POSITIONING ===== */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-1\/2 {
  top: 50%;
}

.left-1\/2 {
  left: 50%;
}

.bottom-12 {
  bottom: 3rem;
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.-bottom-6 {
  bottom: -1.5rem;
}

.-left-6 {
  left: -1.5rem;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-\[9999\] {
  z-index: 9999;
}

/* ===== DISPLAY ===== */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.hidden {
  display: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* ===== BORDERS ===== */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-0 {
  border-width: 0;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-l {
  border-left-width: 1px;
  border-left-style: solid;
}

.border-r {
  border-right-width: 1px;
  border-right-style: solid;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-charcoal\/10 {
  border-color: rgba(26, 26, 26, 0.1);
}

.border-charcoal\/20 {
  border-color: rgba(26, 26, 26, 0.2);
}

.border-charcoal\/40 {
  border-color: rgba(26, 26, 26, 0.4);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/40 {
  border-color: rgba(255, 255, 255, 0.4);
}

.border-black\/5 {
  border-color: rgba(0, 0, 0, 0.05);
}

/* ===== IMAGES & OBJECTS ===== */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-center {
  object-position: center;
}

.aspect-\[4\/5\] {
  aspect-ratio: 4 / 5;
}

.aspect-\[3\/4\] {
  aspect-ratio: 3 / 4;
}

.aspect-\[16\/9\] {
  aspect-ratio: 16 / 9;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* ===== OVERFLOW ===== */
.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-visible {
  overflow: visible;
}

/* Hide scrollbar */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== EFFECTS ===== */
.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-100 {
  opacity: 1;
}

.bg-black\/10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.grayscale {
  filter: grayscale(100%);
}

.grayscale-0 {
  filter: grayscale(0%);
}

.grayscale-\[10\%\] {
  filter: grayscale(10%);
}

.mix-blend-overlay {
  mix-blend-mode: overlay;
}

.mix-blend-difference {
  mix-blend-mode: difference;
}

.mix-blend-exclusion {
  mix-blend-mode: exclusion;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.backdrop-blur {
  backdrop-filter: blur(8px);
}

/* ===== TRANSFORMS ===== */
.scale-100 {
  transform: scale(1);
}

.scale-105 {
  transform: scale(1.05);
}

.scale-110 {
  transform: scale(1.1);
}

.translate-y-0 {
  transform: translateY(0);
}

.translate-y-full {
  transform: translateY(100%);
}

.will-change-transform {
  will-change: transform;
}

/* ===== TRANSITIONS ===== */
.transition {
  transition-property: color, background-color, border-color, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.duration-1000 {
  transition-duration: 1000ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HOVER STATES ===== */
.hover\:opacity-60:hover {
  opacity: 0.6;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:text-white:hover {
  color: var(--color-white);
}

.hover\:text-black:hover {
  color: var(--color-black);
}

.hover\:text-charcoal:hover {
  color: var(--color-charcoal);
}

.hover\:text-white\/70:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hover\:bg-black:hover {
  background-color: var(--color-black);
}

.hover\:bg-charcoal:hover {
  background-color: var(--color-charcoal);
}

.hover\:border-charcoal:hover {
  border-color: var(--color-charcoal);
}

.hover\:border-charcoal\/40:hover {
  border-color: rgba(26, 26, 26, 0.4);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:underline:hover {
  text-decoration: underline;
}

.hover\:grayscale-0:hover {
  filter: grayscale(0%);
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:underline {
  text-decoration: underline;
}

/* ===== FOCUS STATES ===== */
.focus\:outline-none:focus {
  outline: none;
}

.focus\:border-charcoal:focus {
  border-color: var(--color-charcoal);
}

.focus\:ring-0:focus {
  box-shadow: none;
}

/* ===== DISABLED STATES ===== */
.disabled\:bg-gray-300:disabled {
  background-color: var(--color-gray-300);
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

/* ===== CURSORS ===== */
.cursor-pointer {
  cursor: pointer;
}

.cursor-grab {
  cursor: grab;
}

.cursor-none {
  cursor: none;
}

.active\:cursor-grabbing:active {
  cursor: grabbing;
}

/* ===== ANTI-ALIASING ===== */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-24 {
    gap: 6rem;
  }

  .md\:gap-32 {
    gap: 8rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .md\:text-4xl {
    font-size: var(--text-4xl);
  }

  .md\:text-5xl {
    font-size: var(--text-5xl);
  }

  .md\:text-6xl {
    font-size: var(--text-6xl);
  }

  .md\:text-7xl {
    font-size: var(--text-7xl);
  }

  .md\:text-8xl {
    font-size: var(--text-8xl);
  }

  .md\:text-sm {
    font-size: var(--text-sm);
  }

  .md\:w-5\/12 {
    width: 41.666667%;
  }

  .md\:w-6\/12 {
    width: 50%;
  }

  .md\:min-w-\[30vw\] {
    min-width: 30vw;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  /* Custom cursor disabled - use native cursor */
}

@media (max-width: 768px) {
  /* Native cursor on all devices */
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:text-9xl {
    font-size: var(--text-9xl);
  }
}

/* ===== CUSTOM COMPONENT STYLES ===== */

/* Film Grain Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Image Reveal Animation */
.reveal-img-container {
  overflow: hidden;
}

.reveal-img {
  transform: scale(1.1);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.reveal-img.active {
  transform: scale(1);
}

/* Custom Cursor - Disabled for better UX */
/*
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--color-charcoal);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: exclusion;
}

.custom-cursor.hovered {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
}
*/

/* Hero Text Animation */
.hero-text {
  transform: translateY(100%);
  opacity: 0;
}

.hero-text.animated {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Premium Email Input Button */
.email-subscribe-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.15);
}

.email-subscribe-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
}

.email-subscribe-form input[type="email"]::placeholder {
  color: var(--color-gray-400);
}

.email-subscribe-form button {
  padding: 1rem 1.5rem;
  background: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-mono);
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.email-subscribe-form button:hover {
  background: var(--color-black);
}

/* Product Card */
.product-card {
  display: block;
}

.product-card__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-gray-100);
  margin-bottom: 1rem;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-charcoal);
}

.product-card:hover .product-card__title {
  text-decoration: underline;
}

.product-card__price {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  margin-top: 0.25rem;
}

/* Badge Styles */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
}

.badge--sale {
  background: var(--color-deep-red);
  color: var(--color-white);
}

.badge--soldout {
  background: var(--color-gray-400);
  color: var(--color-white);
}

/* Section Labels */
.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-xxs);
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Premium Button Styles */
.btn-primary {
  display: inline-block;
  background: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-mono);
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-charcoal);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-cream);
}

/* Minimal Width for Collection Gallery Items */
.min-w-\[85vw\] {
  min-width: 85vw;
}

.min-w-\[30vw\] {
  min-width: 30vw;
}

/* Special Text Sizes */
.text-\[9px\] {
  font-size: 9px;
}

.text-\[10px\] {
  font-size: 10px;
}

/* Border Widths */
.w-\[1px\] {
  width: 1px;
}

/* Resize None for Textareas */
.resize-none {
  resize: none;
}

/* Content Order */
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

/* Additional z-index */
.z-\[9999\] {
  z-index: 9999;
}

/* Special Colors */
.\[\#0a0a0a\] {
  background-color: #0a0a0a;
}

.bg-\[\#0a0a0a\] {
  background-color: #0a0a0a;
}

/* =====================================================================
   PATCH: Missing utilities referenced by templates/sections
   Goal: Fix layout issues caused by incomplete Tailwind-to-static build
   NOTE: Only adds missing classes; does not change existing design rules
   ===================================================================== */

/* Pointer events */
.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

/* Scroll behavior */
.scroll-smooth {
  scroll-behavior: smooth;
}

/* Width/Height utilities (missing) */
.w-fit {
  width: fit-content;
}

.w-4 {
  width: 1rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.h-4 {
  height: 1rem;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-32 {
  height: 8rem;
}

.h-1\/2 {
  height: 50%;
}

.h-\[1px\] {
  height: 1px;
}

/* Spacing utilities (missing) */
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-12 {
  padding-right: 3rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

/* Position utilities (missing) */
.top-3 {
  top: 0.75rem;
}

.top-6 {
  top: 1.5rem;
}

.right-6 {
  right: 1.5rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.left-3 {
  left: 0.75rem;
}

.-bottom-10 {
  bottom: -2.5rem;
}

/* Aspect ratio utilities (missing) */
.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

/* Grid utilities (missing) */
.col-span-2 {
  grid-column: span 2 / span 2;
}

/* Max width utilities (missing) */
.max-w-none {
  max-width: none;
}

.max-w-screen-md {
  max-width: 768px;
}

.max-w-screen-lg {
  max-width: 1024px;
}

.max-w-\[200px\] {
  max-width: 200px;
}

/* List utilities (missing) */
.list-none {
  list-style: none;
}

/* Line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

/* Typography utilities (missing) */
.not-italic {
  font-style: normal;
}

.leading-8 {
  line-height: 2rem;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

/* Space between children (missing) */
.space-y-0> :not([hidden])~ :not([hidden]) {
  margin-top: 0;
}

.space-y-1> :not([hidden])~ :not([hidden]) {
  margin-top: 0.25rem;
}

.space-y-4> :not([hidden])~ :not([hidden]) {
  margin-top: 1rem;
}

.space-y-6> :not([hidden])~ :not([hidden]) {
  margin-top: 1.5rem;
}

.space-y-8> :not([hidden])~ :not([hidden]) {
  margin-top: 2rem;
}

/* Colors (missing) */
.bg-gray-200 {
  background-color: var(--color-gray-200);
}

.bg-gray-400 {
  background-color: var(--color-gray-400);
}

.bg-gray-800 {
  background-color: #1f2937;
}

.bg-black\/30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-charcoal\/20 {
  background-color: rgba(26, 26, 26, 0.2);
}

.bg-white\/40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.text-gray-600 {
  color: #4b5563;
}

.text-white\/40 {
  color: rgba(255, 255, 255, 0.4);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.border-charcoal\/30 {
  border-color: rgba(26, 26, 26, 0.3);
}

/* Border widths (missing) */
.border-b-\[0\.5px\] {
  border-bottom-width: 0.5px;
  border-bottom-style: solid;
}

/* Placeholder & focus variants */
.placeholder\:text-white\/40::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.focus\:border-white:focus {
  border-color: var(--color-white);
}

/* Hover variants (missing) */
.hover\:bg-white\/10:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hover\:bg-charcoal\/10:hover {
  background-color: rgba(26, 26, 26, 0.1);
}

.hover\:italic:hover {
  font-style: italic;
}

.hover\:text-gray-500:hover {
  color: var(--color-gray-500);
}

.hover\:text-prada-cream:hover {
  color: var(--color-cream);
}

.hover\:text-deep-red:hover {
  color: var(--color-deep-red);
}

/* Group variants (missing) */
.group:hover .group-hover\:opacity-0 {
  opacity: 0;
}

.group:hover .group-hover\:opacity-70 {
  opacity: 0.7;
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:text-gray-300 {
  color: var(--color-gray-300);
}

.group:hover .group-hover\:line-through {
  text-decoration: line-through;
}

.group:focus-within .group-focus-within\:opacity-100 {
  opacity: 1;
}

/* Details <summary> open state variants */
.group[open] .group-open\:rotate-45 {
  transform: rotate(45deg);
}

.group[open] .group-open\:font-medium {
  font-weight: 500;
}

/* Typography helpers (minimal Tailwind "prose" subset) */
.prose {
  color: var(--color-charcoal);
  max-width: 65ch;
  line-height: 1.75;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.prose :where(p) {
  margin: 1.25em 0;
}

.prose :where(h1, h2, h3, h4) {
  font-family: var(--font-serif);
  font-weight: 400;
}

.prose :where(a) {
  text-decoration: underline;
}

.prose :where(ul, ol) {
  padding-left: 1.25em;
}

.prose :where(li) {
  margin: 0.5em 0;
}

/* ===== RESPONSIVE UTILITIES (ADDITIONAL) ===== */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:gap-3 {
    gap: 0.75rem;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:bottom-10 {
    bottom: 2.5rem;
  }

  .md\:right-10 {
    right: 2.5rem;
  }

  .md\:top-10 {
    top: 2.5rem;
  }

  .md\:text-2xl {
    font-size: var(--text-2xl);
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: var(--text-3xl);
    line-height: 2.25rem;
  }

  .md\:text-base {
    font-size: var(--text-base);
    line-height: 1.5rem;
  }

  .md\:text-9xl {
    font-size: var(--text-9xl);
    line-height: 1;
  }

  .md\:w-1\/2 {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:text-5xl {
    font-size: var(--text-5xl);
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: var(--text-6xl);
    line-height: 1;
  }
}

/* =====================================================================
   GLASSMORPHISM HEADER SYSTEM
   Prada-style navigation with mega menu and iOS drawer
   ===================================================================== */

/* ----- CSS Variables ----- */
:root {
  /* Glassmorphism */
  --glass-bg: rgba(253, 252, 248, 0.72);
  --glass-bg-dark: rgba(26, 26, 26, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: 16px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* Header Sizing */
  --header-height: 58px;
  --header-height-mobile: 52px;

  /* Animations */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Proportions & rhythm (Jobs-style whitespace) */
  --hl-after-header-gap-mobile: 12px;
  --hl-after-header-gap: 18px;
  --hl-section-stack-gap-mobile: 56px;
  --hl-section-stack-gap: 80px;
  --hl-card-padding-mobile: 18px;
  --hl-card-padding: 24px;
  --hl-btn-min-height: 44px;
  --hl-footer-pad-y-mobile: 64px;
  --hl-footer-pad-y: 88px;

}

/* Header always fixed to viewport */
.hl-header{position:fixed !important; top:0; left:0; right:0;}

/* ----- Main Header - FROSTED (transparent + blur) ----- */
.hl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--header-height-mobile);

  /* transparent glass */
  background: var(--hl-frost-bg);
  -webkit-backdrop-filter: blur(var(--hl-frost-blur)) saturate(160%);
  backdrop-filter: blur(var(--hl-frost-blur)) saturate(160%);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

@media (min-width: 990px) {
  .hl-header {
    height: var(--header-height);
  }
}

.hl-header.is-scrolled {
  background: var(--hl-frost-bg-strong);
  -webkit-backdrop-filter: blur(var(--hl-frost-blur)) saturate(170%);
  backdrop-filter: blur(var(--hl-frost-blur)) saturate(170%);
  border-bottom-color: rgba(26, 26, 26, 0.10);
}


.hl-header.is-hidden {
  transform: none !important;
}

.hl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 990px) {
  .hl-header__inner {
    padding: 0 2.5rem;
  }
}

/* ----- Brand Logo ----- */
.hl-header__brand {
  flex-shrink: 0;
}

.hl-header__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (min-width: 990px) {
  .hl-header__logo {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.hl-header__logo:hover {
  opacity: 0.7;
}

/* ----- Desktop Navigation ----- */
.hl-header__nav {
  display: none;
  flex: 1;
  justify-content: center;
}

@media (min-width: 990px) {
  .hl-header__nav {
    display: flex;
  }
}

.hl-header__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1200px) {
  .hl-header__menu {
    gap: 2.5rem;
  }
}

.hl-header__menu-item {
  position: relative;
}

.hl-header__menu-link {
  display: inline-flex;
  align-items: center;
  /* Match the editorial quote serif */
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 10.56px; /* reduced 20% again */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--hl-gold);
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: opacity 0.25s ease, color 0.25s ease;
  transform: translateY(2px);
}

.hl-header__menu-link:hover,
.hl-header__menu-link:focus {
  opacity: 0.78;
}

@media (max-width: 989px) {
  .hl-header__menu-link {
    font-size: 8.96px;
    letter-spacing: 0.144em;
  }
}

.hl-header__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  /* +20% size + slightly bolder for top navigation legibility */
  /* Increase navigation link size and weight for improved legibility */
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hl-gold);
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hl-header__link:hover,
.hl-header__link:focus {
  opacity: 0.6;
}

.hl-header__link[aria-expanded="true"] {
  opacity: 0.6;
}

.hl-header__link:focus-visible {
  outline: 2px solid var(--color-charcoal);
  outline-offset: 4px;
}

/* ----- Header Action Icons ----- */
.hl-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 990px) {
  .hl-header__actions {
    gap: 1.25rem;
  }
}

.hl-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-charcoal);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring);
}

.hl-header__icon:hover {
  opacity: 0.6;
  transform: scale(1.05);
}

.hl-header__icon:focus-visible {
  outline: 2px solid var(--color-charcoal);
  outline-offset: 2px;
  border-radius: 50%;
}

.hl-header__icon--desktop {
  display: none;
}

@media (min-width: 990px) {
  .hl-header__icon--desktop {
    display: flex;
  }
}

/* Cart with count badge */
.hl-header__cart {
  position: relative;
}

.hl-header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  border-radius: 50%;
  padding: 0 4px;
}

/* Mobile menu toggle */
.hl-header__menu-toggle {
  display: flex;
}

@media (min-width: 990px) {
  .hl-header__menu-toggle {
    display: none;
  }
}

/* =====================================================================
   MEGA MENU (Desktop)
   ===================================================================== */

.hl-header__menu-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: 50%;
  z-index: 80;
  width: min(920px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(8px);
  background: rgba(253, 252, 248, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s var(--ease-out-expo);
}

.mega-menu.is-open,
.hl-header__menu-item:hover > .mega-menu,
.hl-header__menu-item:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__inner {
  width: 100%;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(260px, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.mega-menu__columns--2 {
  grid-template-columns: minmax(160px, 0.7fr) minmax(180px, 0.8fr) minmax(260px, 1.2fr);
}

.mega-menu__column-title {
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(26, 26, 26, 0.42);
  margin: 0 0 1rem;
}

.mega-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.mega-menu__link {
  display: inline-flex;
  width: fit-content;
  color: var(--color-charcoal);
  text-decoration: none;
}

.mega-menu__link:hover,
.mega-menu__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mega-menu__promo {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 0.75rem;
}

.mega-menu__promo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eee;
}

.mega-menu__promo-title {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0.35rem 0 0;
}

.mega-menu__promo-btn {
  width: fit-content;
  color: var(--color-charcoal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 989px) {
  .mega-menu {
    display: none;
  }
}

.hl-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 600px;
  max-width: 1000px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s var(--ease-out-expo);
  pointer-events: none;
}

.hl-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.hl-mega-menu__inner {
  display: flex;
  gap: 3rem;
}

.hl-mega-menu__content {
  flex: 1;
}

.hl-mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}

.hl-mega-menu__column {
  min-width: 140px;
}

.hl-mega-menu__heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gray-400);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.hl-mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hl-mega-menu__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hl-mega-menu__link:hover {
  opacity: 0.6;
}

.hl-mega-menu__link:focus-visible {
  outline: 2px solid var(--color-charcoal);
  outline-offset: 2px;
}

.hl-mega-menu__link--primary {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

/* Featured products in mega menu */
.hl-mega-menu__featured {
  flex-shrink: 0;
  width: 300px;
  padding-left: 2rem;
  border-left: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-mega-menu__featured-products {
  display: flex;
  gap: 1rem;
}

.hl-mega-menu__product {
  display: block;
  text-decoration: none;
  flex: 1;
}

.hl-mega-menu__product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 0.5rem;
  transition: transform 0.5s var(--ease-out-expo);
}

.hl-mega-menu__product:hover img {
  transform: scale(1.03);
}

.hl-mega-menu__product-title {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-charcoal);
}

/* =====================================================================
   MOBILE DRAWER (iOS Style)
   ===================================================================== */

.hl-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1001;
}

.hl-drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.hl-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hl-drawer.is-open {
  transform: translateX(0);
}

.hl-drawer__header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring);
}

.hl-drawer__close:hover {
  opacity: 0.6;
  transform: rotate(90deg);
}

.hl-drawer__close:focus-visible {
  outline: 2px solid var(--color-charcoal);
  outline-offset: 2px;
  border-radius: 50%;
}

/* Search bar */
.hl-drawer__search {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-drawer__search-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(26, 26, 26, 0.04);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 8px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.hl-drawer__search-wrapper:focus-within {
  border-color: rgba(26, 26, 26, 0.2);
  background: rgba(255, 255, 255, 0.6);
}

.hl-drawer__search-wrapper svg {
  flex-shrink: 0;
  color: var(--color-gray-400);
}

.hl-drawer__search-input {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
}

.hl-drawer__search-input::placeholder {
  color: var(--color-gray-400);
}

/* Navigation */
.hl-drawer__nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem 0;
}

.hl-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hl-drawer__item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.04);
}

.hl-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-charcoal);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.hl-drawer__link:hover,
.hl-drawer__link:focus {
  background: rgba(26, 26, 26, 0.02);
}

.hl-drawer__link:focus-visible {
  outline: 2px solid var(--color-charcoal);
  outline-offset: -2px;
}

.hl-drawer__link--parent {
  font-weight: 400;
}

.hl-drawer__link--child {
  font-size: 0.9375rem;
  font-style: normal;
  padding-left: 2rem;
}

.hl-drawer__link--accent {
  color: var(--hl-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hl-drawer__link--leaf {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  padding-left: 3rem;
}

.hl-drawer__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out-expo);
}

.hl-drawer__link[aria-expanded="true"] .hl-drawer__chevron {
  transform: rotate(180deg);
}

/* Accordion submenu */
.hl-drawer__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
  background: rgba(26, 26, 26, 0.02);
}

.hl-drawer__submenu--nested {
  background: rgba(26, 26, 26, 0.03);
}

/* Footer */
.hl-drawer__footer {
  display: flex;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
  padding: 1rem;
  gap: 0.5rem;
}

.hl-drawer__footer-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  text-decoration: none;
  background: rgba(26, 26, 26, 0.03);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.hl-drawer__footer-link:hover {
  background: rgba(26, 26, 26, 0.06);
}

.hl-drawer__footer-link:focus-visible {
  outline: 2px solid var(--color-charcoal);
  outline-offset: 2px;
}


/* Account badge */
.hl-drawer__account-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-charcoal);
  text-decoration: none;
  background: rgba(26, 26, 26, 0.04);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.hl-drawer__account-badge:hover {
  background: rgba(26, 26, 26, 0.08);
}

/* Auth section (Google login) */
.hl-drawer__auth {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-drawer__google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.hl-drawer__google-btn:hover {
  background: #f8f8f8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.hl-drawer__google-btn svg {
  flex-shrink: 0;
}

/* My Link section */
.hl-drawer__mylink {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-drawer__mylink-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.03) 0%, rgba(26, 26, 26, 0.06) 100%);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hl-drawer__mylink-btn:hover {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.06) 0%, rgba(26, 26, 26, 0.1) 100%);
  transform: translateY(-1px);
}

.hl-drawer__mylink-btn span {
  flex: 1;
  text-align: left;
}

/* CTA section */
.hl-drawer__cta {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-drawer__cta-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--color-cream);
  text-decoration: none;
  background: var(--color-charcoal);
  border: none;
  border-radius: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hl-drawer__cta-btn:hover {
  background: var(--color-black);
  transform: scale(1.01);
}

/* Visually hidden (for screen readers) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header spacer to push content below fixed header (NON-homepage only) */
.hl-header-section+main,
.hl-header-section~#MainContent {
  padding-top: calc(var(--header-height-mobile) + var(--hl-after-header-gap-mobile));
}

/* Page section rhythm (mobile-first) */
.template-page main .shopify-section + .shopify-section {
  margin-top: var(--hl-section-stack-gap-mobile);
}
@media (min-width: 768px) {
  .template-page main .shopify-section + .shopify-section {
    margin-top: var(--hl-section-stack-gap);
  }
}

/* Anchor offset so in-page nav never hides under sticky header */
main [id] {
  scroll-margin-top: calc(var(--header-height-mobile) + var(--hl-after-header-gap-mobile) + 12px);
}
@media (min-width: 768px) {
  main [id] {
    scroll-margin-top: calc(var(--header-height) + var(--hl-after-header-gap) + 12px);
  }
}

@media (min-width: 990px) {

  .hl-header-section+main,
  .hl-header-section~#MainContent {
    padding-top: calc(var(--header-height) + var(--hl-after-header-gap));
  }
}

/* Homepage: no seam between header and hero (offset = header height only) */
body.template-index .hl-header-section+main,
body.template-index .hl-header-section~#MainContent,
body.template-index #MainContent {
  padding-top: var(--header-height-mobile);
}
@media (min-width: 990px) {
  body.template-index .hl-header-section+main,
  body.template-index .hl-header-section~#MainContent,
  body.template-index #MainContent {
    padding-top: var(--header-height);
  }
}

/* =====================================================================
   MY LINK BUTTON (Desktop)
   ===================================================================== */

.hl-header__my-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-cream);
  background: var(--color-charcoal);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s var(--ease-spring);
}

.hl-header__my-link:hover {
  background: var(--color-black);
  transform: scale(1.02);
}

.hl-header__my-link:focus-visible {
  outline: 2px solid var(--color-charcoal);
  outline-offset: 2px;
}

.hl-header__my-link-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-cream);
  background: var(--color-charcoal);
  text-decoration: none;
  white-space: nowrap;
}

.hl-header__hamburger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-charcoal);
  cursor: pointer;
}

.hl-header__hamburger span {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
}

@media (max-width: 479px) {
  .hl-header__account-icon,
  .hl-header__wishlist {
    display: none;
  }

  .hl-header__actions {
    gap: 0.35rem;
  }
}

@media (min-width: 990px) {
  .hl-header__my-link-btn {
    display: inline-flex;
  }

  .hl-header__hamburger {
    display: none;
  }
}

/* =====================================================================
   ACCOUNT POPOVER (Desktop)
   ===================================================================== */

.hl-header__account-wrapper {
  position: relative;
}

.hl-account-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s var(--ease-out-expo);
  z-index: 1001;
}

.hl-account-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hl-account-popover__header {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-account-popover__greeting {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-charcoal);
}

.hl-account-popover__title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.hl-account-popover__desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-gray-500);
  margin: 0;
}

.hl-account-popover__nav {
  padding: 0.75rem 0;
}

.hl-account-popover__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hl-account-popover__link:hover {
  background: rgba(26, 26, 26, 0.03);
}

.hl-account-popover__link svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.hl-account-popover__footer {
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.hl-account-popover__logout {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hl-account-popover__logout:hover {
  color: var(--color-charcoal);
}

.hl-account-popover__actions {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* Google Login Button */
.hl-account-popover__google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.15);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.hl-account-popover__google-btn:hover {
  background: var(--color-gray-100);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hl-account-popover__email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.1);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
  text-decoration: none;
  transition: all 0.2s ease;
}

.hl-account-popover__email-btn:hover {
  border-color: rgba(26, 26, 26, 0.3);
  color: var(--color-charcoal);
}

/* =====================================================================
   DRAWER ENHANCEMENTS (Mobile)
   ===================================================================== */

/* Account badge in drawer header */
.hl-drawer__account-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(26, 26, 26, 0.04);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hl-drawer__account-badge:hover {
  background: rgba(26, 26, 26, 0.08);
}

.hl-drawer__account-badge svg {
  width: 16px;
  height: 16px;
}

/* Google Login in Drawer */
.hl-drawer__auth {
  padding: 0 1.25rem 1rem;
}

.hl-drawer__google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.hl-drawer__google-btn:hover {
  background: var(--color-gray-100);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* My Link Module in Drawer */
.hl-drawer__mylink {
  padding: 0 1.25rem 1rem;
}

.hl-drawer__mylink-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(26, 26, 26, 0.03);
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hl-drawer__mylink-btn:hover {
  background: rgba(26, 26, 26, 0.06);
  border-color: rgba(26, 26, 26, 0.12);
}

.hl-drawer__mylink-btn svg:first-child {
  margin-right: 0.75rem;
}

.hl-drawer__mylink-btn span {
  flex: 1;
  text-align: left;
}

/* Start Customizing CTA in Drawer */
.hl-drawer__cta {
  padding: 0 1.25rem 1.25rem;
}

.hl-drawer__cta-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s var(--ease-spring);
}

.hl-drawer__cta-btn:hover {
  background: var(--color-black);
  transform: scale(1.01);
}

/* Featured Card Enhancements */
.hl-mega-menu__featured-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.hl-mega-menu__featured-image {
  position: relative;
  overflow: hidden;
}

.hl-mega-menu__featured-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.hl-mega-menu__featured-card:hover .hl-mega-menu__featured-image img {
  transform: scale(1.04);
}

.hl-mega-menu__featured-info {
  padding: 0.875rem 0 0;
}

.hl-mega-menu__featured-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
}

.hl-mega-menu__featured-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-charcoal);
}

.hl-mega-menu__product-price {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-gray-500);
  margin-top: 0.25rem;
}


/* =========================
   Custom Design Entry (Scheme A)
   ========================= */
.custom-entry{
  min-height:70vh;
  max-height:80vh;
  display:flex;
  align-items:center;
  background-image: var(--custom-entry-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.custom-entry__inner{
  width:100%;
  max-width:1440px;
  margin:0 auto;
  padding:0 6vw;
}

.custom-entry__content{
  max-width:520px;
}

.custom-entry__title{
  font-family: "Playfair Display", Didot, serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height:1.1;
  letter-spacing:0.02em;
  color:#1c1c1c;
  margin:0 0 20px 0;
}

.custom-entry__subtitle{
  font-size:16px;
  color:#6f6f6f;
  margin:0 0 32px 0;
}

.custom-entry__cta{
  display:inline-block;
  padding:14px 36px;
  border:1px solid rgba(28,28,28,.55);
  border-radius:999px;
  font-size:14px;
  letter-spacing:0.08em;
  text-transform: none;
  color:#1c1c1c;
  text-decoration:none;
  transition: all .25s ease;
  background: transparent;
}

.custom-entry__cta:hover{
  background:#1c1c1c;
  color:#fff;
  border-color:#1c1c1c;
}

.custom-entry__note{
  margin:14px 0 0 0;
  font-size:12px;
  color:#9a9a9a;
}

@media (max-width: 768px){
  .custom-entry{
    background-position:center;
    min-height: 64vh;
  }
  .custom-entry__content{
    max-width:100%;
  }
}

/* Heartlume — CSS Breakout (A, no JS) */
html, body { overflow-x: hidden; }
.hl-breakout{
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

/* Heartlume — ensure unified header is the only header */
/* Some legacy templates still include `hl-navigation` (class: .hl-nav). Hide it to prevent duplicate logos/nav. */
.hl-nav{ display: none !important; }

/* ===== Heartlume · Radius Helpers ===== */
.hl-radius-card { border-radius: 28px; }
.hl-radius-soft { border-radius: 20px; }


/* ===== HL HOME CARDIFY (INDEX ONLY) ===== */
:root {
  --hl-radius-card: 28px;
  --hl-radius-media: 24px;
  --hl-radius-control: 14px;
}

/* Slight contrast so card corners are visible on the homepage */
body.template-index {
  background-color: #F7F4EE;
}

body.template-index .hl-home-card {
  border-radius: var(--hl-radius-card);
  overflow: hidden;
  margin: 24px 16px;
}

@media (min-width: 768px) {
  body.template-index .hl-home-card {
    margin: 28px 24px;
  }
}

@media (min-width: 1200px) {
  body.template-index .hl-home-card {
    margin: 32px 40px;
  }
}

/* Rounded media inside homepage cards */
body.template-index .hl-home-card img,
body.template-index .hl-home-card video {
  border-radius: var(--hl-radius-media);
}
/* Split Banner: edge-to-edge media (no inner rounding to avoid corner gaps) */
body.template-index .hl-split-banner .hl-split-banner__img{
  border-radius: 0 !important;
}


/* Controls inside cards */
body.template-index .hl-home-card input,
body.template-index .hl-home-card select,
body.template-index .hl-home-card textarea,
body.template-index .hl-home-card button {
  border-radius: var(--hl-radius-control);
}

/* Footer dialogue CTA */
.hluf__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  border-radius: var(--hl-radius-control, 14px);
}
.hluf__cta:hover{ border-color: rgba(255,255,255,.75); }


/* Split Banner: media must be flush to card (no inner rounding wedges) */
body.template-index .hl-split-banner .hl-split-banner__img{ border-radius: 0 !important; }

/* ===== HL HERO NO ROUNDING ===== */
body.template-index .hl-hero img,
body.template-index .hl-hero video{
  border-radius: 0 !important;
}


/* Footer card on homepage (keeps Hero square, rounds the rest) */
body.template-index footer.hluf{
  border-radius: var(--hl-radius-card);
  overflow: hidden;
  margin: 24px 16px;
}
@media (min-width: 768px){
  body.template-index footer.hluf{ margin: 28px 24px; }
}
@media (min-width: 1200px){
  body.template-index footer.hluf{ margin: 32px 40px; }
}

/* ===== Shopify homepage parity sections ===== */
.collection-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.collection-gallery__item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.collection-gallery__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 1.25rem;
}

.collection-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.collection-gallery__item:hover .collection-gallery__image img {
  transform: scale(1.03);
}

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

.collection-gallery__title {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0.02em;
}

.collection-gallery__desc {
  display: none;
}

@media (min-width: 640px) {
  .collection-gallery__grid--4col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .collection-gallery__grid--4col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .collection-gallery__image {
    margin-bottom: 1rem;
  }

  .collection-gallery__title {
    font-size: 0.875rem;
  }
}

@media (min-width: 1280px) {
  .collection-gallery__grid--4col {
    gap: 1.5rem;
  }
}

.hl-split-banner {
  width: auto;
  background: transparent;
  padding: 0;
}

.hl-split-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.hl-split-banner__item {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.hl-split-banner__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hl-split-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.hl-split-banner__item:hover .hl-split-banner__img {
  transform: scale(1.05);
}

.hl-split-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0));
  pointer-events: none;
  transition: background 0.4s ease;
}

.hl-split-banner__item:hover .hl-split-banner__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.05));
}

.hl-split-banner__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 20px;
  text-align: center;
}

.hl-split-banner__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

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

  .hl-split-banner__item {
    aspect-ratio: 21 / 9;
  }

  .hl-split-banner__content {
    padding: 24px 28px;
  }

  .hl-split-banner__title {
    font-size: 1.125rem;
  }
}

.custom-entry {
  min-height: 70vh;
  max-height: 80vh;
  display: flex;
  align-items: center;
  background-image: var(--custom-entry-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #f4f0e8;
}

.custom-entry__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6vw;
}

.custom-entry__content {
  max-width: 520px;
}

.custom-entry__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #1c1c1c;
  margin: 0 0 20px;
}

.custom-entry__subtitle {
  font-size: 16px;
  color: #6f6f6f;
  margin: 0 0 32px;
}

.custom-entry__cta {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(28, 28, 28, 0.55);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #1c1c1c;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
}

.custom-entry__cta:hover {
  background: #1c1c1c;
  color: #fff;
  border-color: #1c1c1c;
}

.custom-entry__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: #6f6f6f;
}

.atelier-entry {
  position: relative;
  min-height: clamp(360px, 52vh, 620px);
  overflow: hidden;
  background: #faf8f5;
}

.atelier-entry__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.atelier-entry__img {
  width: 100%;
  height: calc(100% + 48px);
  object-fit: cover;
  object-position: center bottom;
  transform: translateY(-48px);
  display: block;
}

@media (max-width: 767px) {
  .atelier-entry {
    min-height: 300px;
  }

  .atelier-entry__img {
    height: calc(100% + 28px);
    transform: translateY(-28px);
  }
}

@media (max-width: 768px) {
  .custom-entry {
    min-height: 64vh;
    background-position: center;
  }

  .custom-entry__content {
    max-width: 100%;
  }
}

.hl-brand-story {
  padding: 5rem 1.5rem;
  background-color: var(--color-cream);
}

.hl-brand-story__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hl-brand-story__content {
  margin-bottom: 2.5rem;
}

.hl-brand-story__text {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.hl-brand-story__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.hl-brand-story__cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0.5rem 0;
  transition: opacity 0.3s ease;
}

.hl-brand-story__cta:hover {
  opacity: 0.6;
}

@media (min-width: 768px) {
  .hl-brand-story {
    padding: 6rem 3rem;
  }
}

/* ===== Search overlay and wishlist ===== */
.hl-header__icon[type="button"],
.hl-header__icon button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hl-header__wishlist {
  position: relative;
}

.hl-header__wishlist-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-mono);
  font-size: 9px;
  border-radius: 50%;
  padding: 0 4px;
}

.hl-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hl-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hl-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hl-search-overlay__panel {
  position: relative;
  width: min(960px, calc(100vw - 32px));
  margin: 84px auto 0;
  padding: 28px;
  background: rgba(253, 252, 248, 0.98);
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 28px 70px rgba(26, 26, 26, 0.16);
}

.hl-search-overlay__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-charcoal);
  cursor: pointer;
}

.hl-search-overlay__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 40px 0 28px;
}

.hl-search-overlay__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.35);
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 4rem);
  outline: 0;
}

.hl-search-overlay__submit {
  align-self: end;
  border: 1px solid rgba(26, 26, 26, 0.35);
  background: transparent;
  color: var(--color-charcoal);
  padding: 12px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.hl-search-overlay__eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.48);
}

.hl-search-overlay__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hl-search-overlay__product {
  color: inherit;
  text-decoration: none;
}

.hl-search-overlay__product img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #f5f2ec;
  margin-bottom: 10px;
}

.hl-search-overlay__product span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hl-wishlist-toggle {
  width: auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  background: transparent;
  color: var(--color-charcoal);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.hl-wishlist-toggle.is-active {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border-color: var(--color-charcoal);
}

.single-product .hl-wishlist-toggle {
  margin-left: 10px;
  vertical-align: middle;
}

.hl-wishlist-page-wrap {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0 96px;
}

.hl-wishlist-page__empty {
  text-align: center;
  padding: 64px 0;
}

.hl-wishlist-page__empty p {
  margin: 0 0 18px;
  color: rgba(26, 26, 26, 0.62);
}

.hl-wishlist-page__empty a {
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hl-wishlist-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hl-wishlist-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f2ec;
}

.hl-wishlist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hl-wishlist-card__body {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  text-align: center;
  font-size: 0.84rem;
}

.hl-wishlist-card__body a {
  color: inherit;
  text-decoration: none;
}

.hl-wishlist-card__body span {
  color: rgba(26, 26, 26, 0.58);
}

.hl-wishlist-card__body button {
  justify-self: center;
  border: 0;
  background: transparent;
  padding: 4px 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.58);
  cursor: pointer;
}

@media (max-width: 767px) {
  .hl-search-overlay__panel {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 24px 18px;
  }

  .hl-search-overlay__form {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .hl-search-overlay__grid,
  .hl-wishlist-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .single-product .hl-wishlist-toggle {
    margin-left: 0;
    margin-top: 10px;
  }
}
