/* ================================================================
   CULINARY CINEMA - Chef Paul Syms
   A bold, immersive web experience
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================================ */
:root {
  /* Colors - Dark, dramatic palette with food accent */
  --color-bg-dark: #0a0a0a;
  --color-bg-darker: #000000;
  --color-bg-light: #1a1a1a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #b0b0b0;
  --color-text-muted: #666666;

  /* Accent colors inspired by food */
  --color-accent-saffron: #f4a259;
  --color-accent-herb: #7cb342;
  --color-accent-wine: #8b1538;
  --color-accent-gold: #d4af37;

  /* Spacing scale */
  --space-xs: clamp(0.5rem, 2vw, 0.75rem);
  --space-sm: clamp(1rem, 3vw, 1.5rem);
  --space-md: clamp(2rem, 5vw, 3rem);
  --space-lg: clamp(3rem, 8vw, 5rem);
  --space-xl: clamp(5rem, 12vw, 8rem);
  --space-2xl: clamp(8rem, 15vw, 12rem);

  /* Fluid typography */
  --font-size-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 2vw, 1rem);
  --font-size-base: clamp(1rem, 2.5vw, 1.125rem);
  --font-size-lg: clamp(1.25rem, 3vw, 1.5rem);
  --font-size-xl: clamp(1.5rem, 4vw, 2rem);
  --font-size-2xl: clamp(2rem, 5vw, 3rem);
  --font-size-3xl: clamp(3rem, 8vw, 5rem);
  --font-size-4xl: clamp(4rem, 12vw, 8rem);
  --font-size-hero: clamp(5rem, 15vw, 12rem);

  /* Typography */
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', monospace;

  /* Line heights */
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Layout */
  --max-width-prose: 65ch;
  --max-width-content: 1400px;
  --nav-height: 80px;

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-nav: 500;
  --z-modal: 1000;
}

/* ================================================================
   2. MODERN CSS RESET
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}

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

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

/* ================================================================
   3. TYPOGRAPHY SYSTEM
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

.text-hero {
  font-size: var(--font-size-hero);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.text-4xl { font-size: var(--font-size-4xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-xl { font-size: var(--font-size-xl); }
.text-lg { font-size: var(--font-size-lg); }
.text-base { font-size: var(--font-size-base); }
.text-sm { font-size: var(--font-size-sm); }

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

.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.05em; }
.tracking-wide { letter-spacing: 0.05em; }

/* ================================================================
   4. LAYOUT UTILITIES
   ================================================================ */
.container {
  max-width: var(--max-width-content);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--space-xl);
}

.section-half {
  min-height: 50vh;
  min-height: 50dvh;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-sm);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   5. NAVIGATION - Minimal & Mobile-First
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: blur(10px);
  transition: background var(--transition-base);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--space-md);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: clamp(1.5625rem, 4.375vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: calc(var(--z-nav) + 1);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg-darker);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow), color var(--transition-fast);
}

.nav-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-link:nth-child(1) { transition-delay: 0.1s; }
.nav-link:nth-child(2) { transition-delay: 0.2s; }
.nav-link:nth-child(3) { transition-delay: 0.3s; }
.nav-link:nth-child(4) { transition-delay: 0.4s; }

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

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    gap: var(--space-md);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   6. HERO SECTION - Full-Screen Immersive
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-darker);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-md);
  max-width: 1200px;
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  animation: fadeInUp 1s var(--transition-base) both;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  animation: fadeInUp 1s 0.2s var(--transition-base) both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-xs);
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-primary);
  border-radius: 20px;
  position: relative;
  margin-inline: auto;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-text-primary);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

/* ================================================================
   7. ASYMMETRIC GALLERY - Food Photography Showcase
   ================================================================ */
.gallery {
  padding-block: var(--space-2xl);
  background: var(--color-bg-darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

/* Asymmetric layout patterns */
.gallery-item:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 16/9;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: 3/4;
}

.gallery-item:nth-child(3) {
  grid-column: span 5;
}

.gallery-item:nth-child(4) {
  grid-column: span 7;
}

.gallery-item:nth-child(5) {
  grid-column: span 6;
  aspect-ratio: 1/1;
}

.gallery-item:nth-child(6) {
  grid-column: span 6;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xs);
}

.gallery-item-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* Mobile gallery - simpler grid */
@media (max-width: 767px) {
  .gallery-item {
    grid-column: span 12 !important;
    grid-row: auto !important;
    aspect-ratio: 4/5 !important;
  }

  .gallery-item:nth-child(odd) {
    aspect-ratio: 16/9 !important;
  }
}

/* ================================================================
   8. VIDEO SHOWCASE - Cinematic Presentation
   ================================================================ */
.video-showcase {
  padding-block: var(--space-2xl);
  background: var(--color-bg-dark);
}

.video-grid {
  display: grid;
  gap: var(--space-xl);
}

.video-block {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-bg-darker);
  overflow: hidden;
}

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

.video-block-large {
  aspect-ratio: 21/9;
}

.video-caption {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-sm);
}

.video-caption h3 {
  font-size: var(--font-size-2xl);
}

.video-caption p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  max-width: var(--max-width-prose);
}

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

/* ================================================================
   9. ANIMATIONS & SCROLL EFFECTS
   ================================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   10. UTILITY CLASSES
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.accent-gold { color: var(--color-accent-gold); }
.accent-saffron { color: var(--color-accent-saffron); }
.accent-herb { color: var(--color-accent-herb); }
.accent-wine { color: var(--color-accent-wine); }

/* ================================================================
   11. HOMEPAGE LOGO
   ================================================================ */
.home-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 100;
  height: clamp(62.5px, 12.5vw, 125px);
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.9));
  transition: opacity var(--transition-base), filter var(--transition-base);
  pointer-events: none;
}

/* ================================================================
   12. ARTISTIC GRID - Homepage
   ================================================================ */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 0;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  width: 100vw;
  overflow-x: hidden;
}

.grid-2x2-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

/* Desktop Artistic Layout - Symmetric Central Portrait */
@media (min-width: 768px) {
  /* Make grid proportionally scale with viewport */
  .grid-2x2 {
    height: 100vh;
    height: 100dvh;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-rows: unset;
  }

  /* Item 1 - CENTRAL TALL PORTRAIT (top middle to middle of screen) */
  .grid-2x2-item:nth-child(1) {
    grid-column: 5 / 9;
    grid-row: 1 / 5;
  }

  /* Item 2 - Top left (equal width) */
  .grid-2x2-item:nth-child(2) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  /* Item 3 - Top right (equal width) */
  .grid-2x2-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
  }

  /* Item 4 - Middle left (equal width) */
  .grid-2x2-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
  }

  /* Item 5 - Middle right (equal width) */
  .grid-2x2-item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 3 / 5;
  }

  /* Bottom Row - 3 EQUAL ITEMS */
  /* Item 6 - Bottom left third */
  .grid-2x2-item:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 5 / 7;
  }

  /* Item 7 - Bottom middle third */
  .grid-2x2-item:nth-child(7) {
    grid-column: 5 / 9;
    grid-row: 5 / 7;
  }

  /* Item 8 - Bottom right third */
  .grid-2x2-item:nth-child(8) {
    grid-column: 9 / 13;
    grid-row: 5 / 7;
  }

  /* Hide bottom 3 items on desktop */
  .grid-2x2-item:nth-child(6),
  .grid-2x2-item:nth-child(7),
  .grid-2x2-item:nth-child(8) {
    display: none;
  }
}

.grid-2x2-item:hover {
  z-index: 10;
}

/* Grid item image and video styling */
.grid-item-image,
.grid-item-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* For hover-video items: hide video by default */
[data-hover-video="true"] .grid-item-video {
  opacity: 0;
  pointer-events: none;
}

[data-hover-video="true"] .grid-item-image {
  opacity: 1;
}

/* Auto-playing state (controlled by JavaScript) */
[data-hover-video="true"].auto-playing .grid-item-video {
  opacity: 1;
}

[data-hover-video="true"].auto-playing .grid-item-image {
  opacity: 0;
}

/* On hover: show video, hide image (takes priority over auto-playing) */
[data-hover-video="true"]:hover .grid-item-video {
  opacity: 1 !important;
}

[data-hover-video="true"]:hover .grid-item-image {
  opacity: 0 !important;
}

/* On touch-active (mobile): show video, hide image */
[data-hover-video="true"].touch-active .grid-item-video {
  opacity: 1 !important;
}

[data-hover-video="true"].touch-active .grid-item-image {
  opacity: 0 !important;
}

/* For always-video items: video is always visible */
[data-always-video="true"] .grid-item-video {
  opacity: 1;
}

/* Smooth zoom effect on hover for all media */
.grid-2x2-item:hover .grid-item-image,
.grid-2x2-item:hover .grid-item-video {
  transform: scale(1.08);
}

/* Smooth zoom effect on touch-active (mobile) */
.grid-2x2-item.touch-active .grid-item-image,
.grid-2x2-item.touch-active .grid-item-video {
  transform: scale(1.08);
}

/* Fallback for old video selector */
.grid-2x2-item img:not(.grid-item-image),
.grid-2x2-item video:not(.grid-item-video) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.grid-2x2-item:hover img:not(.grid-item-image),
.grid-2x2-item:hover video:not(.grid-item-video) {
  transform: scale(1.1);
}

.grid-2x2-item-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  pointer-events: none;
}

.grid-2x2-item:hover .grid-2x2-item-content {
  opacity: 1;
}

/* Mobile touch-active state - shows overlay on first tap */
.grid-2x2-item.touch-active .grid-2x2-item-content {
  opacity: 1;
}

.grid-2x2-item-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.grid-2x2-item-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Mobile - Portrait on top, 2x2 grid below */
@media (max-width: 767px) {
  body {
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    position: relative;
  }

  .grid-2x2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100vh;
    grid-auto-rows: 50vh;
    min-height: 100vh;
    height: auto;
    position: relative;
  }

  /* Reset all items to default on mobile - no custom spans */
  .grid-2x2-item {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }

  /* Grid Item 1 - Portrait on top, full width, 100vh tall */
  .grid-2x2-item:nth-child(1) {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
  }

  /* Grid Items 2 & 3 - Row 2 */
  .grid-2x2-item:nth-child(2) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .grid-2x2-item:nth-child(3) {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  /* Grid Items 4 & 5 - Row 3 */
  .grid-2x2-item:nth-child(4) {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .grid-2x2-item:nth-child(5) {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }

  /* Hide items 6, 7, and 8 on mobile */
  .grid-2x2-item:nth-child(6),
  .grid-2x2-item:nth-child(7),
  .grid-2x2-item:nth-child(8) {
    display: none;
  }

  /* Safari/iOS specific fixes */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* Force drawer to stay at viewport bottom */
  .drawer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: translate3d(0, calc(100% - 44px), 0) !important;
    -webkit-transform: translate3d(0, calc(100% - 44px), 0) !important;
    transition: transform var(--transition-slow) !important;
    -webkit-transition: -webkit-transform var(--transition-slow) !important;
    max-height: 80vh !important;
  }

  .drawer.active {
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
  }
}

/* ================================================================
   13. DRAWER NAVIGATION - Bottom App-Style
   ================================================================ */
.drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  transform: translate3d(0, calc(100% - 44px), 0);
  -webkit-transform: translate3d(0, calc(100% - 44px), 0);
  transition: transform var(--transition-slow);
  -webkit-transition: -webkit-transform var(--transition-slow);
  max-height: 80vh;
  max-height: 80dvh;
  padding: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.drawer.active {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.drawer-trigger {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;

  /* Black tab styling */
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.625rem 2.5rem;
  min-width: 100px;

  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tab shadow */
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.drawer-trigger:hover {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.4);
}

.drawer-arrow {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer.active .drawer-arrow {
  transform: rotate(180deg);
}

.drawer-content {
  background: var(--color-bg-darker);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(80vh - 44px);
  max-height: calc(80dvh - 44px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.drawer.active .drawer-content {
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.drawer-handle {
  display: none;
}

.drawer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0;
  flex: 1;
  height: 100%;
}

.drawer-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  background: #000000;
  border: none;
  border-radius: 0;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  position: relative;
}

.drawer-nav-link:hover {
  background: #000000;
  color: #4A90E2;
  transform: scale(1.01);
}

/* Active page indicator */
.drawer-nav-link.active {
  color: #fff;
}

.drawer-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(3rem, 8vw, 5rem);
  height: 2px;
  background: #fff;
}

/* Non-Home Page Drawer Styling - Keep white trigger tab */
body:not(.home-page) .drawer-trigger {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

body:not(.home-page) .drawer-trigger:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.2);
}

body:not(.home-page) .drawer-arrow {
  color: rgba(0, 0, 0, 0.9);
}

/* Desktop: 1x4 grid (single row, 4 columns) */
@media (min-width: 768px) {
  .drawer {
    max-height: 40vh;
    max-height: 40dvh;
  }

  .drawer-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .drawer-content {
    max-height: calc(40vh - 44px);
    max-height: calc(40dvh - 44px);
  }
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Page Logo - For non-home pages */
.page-logo {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
  transition: opacity var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 100;
}

.page-logo img {
  height: clamp(70px, 14vw, 112px);
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.page-logo:hover {
  opacity: 0.9;
}

.page-logo:hover img {
  transform: scale(1.05);
}

/* Hide page logo on homepage (homepage has fixed centered logo) */
.home-page .page-logo {
  display: none;
}


/* Hide traditional nav on all pages */
.nav {
  display: none;
}

/* ================================================================
   14. HORIZONTAL SCROLL GALLERY
   ================================================================ */

/* Main Container - Fixed Height */
.horizontal-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Gallery Track Container */
.gallery-track-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 55vh;
  transform: translateY(-50%);
  overflow: visible;
  display: flex;
  align-items: center;
}

/* Increase height for video and recipe galleries to accommodate titles above cards */
.gallery-track-container:has(.video-card),
.gallery-track-container:has(.recipe-card) {
  height: 70vh;
  overflow: visible;
}

/* Gallery Track - Horizontal */
.gallery-track {
  display: flex;
  gap: clamp(25px, 4vw, 50px);
  padding: 0 calc(50vw - clamp(140px, 20vw, 250px));
  height: 100%;
  align-items: center;
  will-change: transform;
}

/* Glass Card - Horizontal Layout */
.glass-card {
  flex-shrink: 0;
  width: clamp(280px, 40vw, 500px);
  height: clamp(380px, 48vh, 600px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  overflow: visible;
  contain: layout style paint;
  content-visibility: auto;
  outline: none;
  will-change: transform;
}

/* Large screens (1440px and up) - 15% larger gallery */
@media (min-width: 1440px) {
  .glass-card {
    width: clamp(320px, 40vw, 575px);
    height: clamp(440px, 48vh, 690px);
  }

  .gallery-track {
    gap: clamp(30px, 4vw, 58px);
    padding: 0 calc(50vw - clamp(160px, 20vw, 288px));
  }
}

/* Focus states for keyboard navigation */
.glass-card:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.8);
  outline-offset: 4px;
  opacity: 1 !important;
  transform: scale(1.02) !important;
  z-index: 100;
}

.glass-card-inner {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.6),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Image - Cover entire card */
.glass-card-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* Gallery Navigation Arrows */
.gallery-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(160, 160, 160, 0.4);
  color: rgba(200, 200, 200, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav-arrow:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.8);
  outline-offset: 4px;
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(212, 175, 55, 0.6);
  color: rgba(212, 175, 55, 1);
}

.gallery-nav-arrow-left {
  left: 40px;
}

.gallery-nav-arrow-right {
  right: 40px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .gallery-nav-arrow {
    display: none;
  }
}

/* Short viewport height adjustments (like 1280x618) */
@media (max-height: 700px) {
  .glass-card {
    height: clamp(300px, 42vh, 450px);
  }

  .gallery-track-container {
    height: 50vh;
    top: 50%;
  }

  .gallery-nav-arrow {
    top: 50%;
  }
}

/* Living Lightbox Effect - Overlay */
.glassmorphic-gallery::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* When hovering any card, activate the overlay */
.glass-card:hover ~ .glassmorphic-gallery::before,
.glassmorphic-gallery:has(.glass-card:hover)::before {
  background: rgba(0, 0, 0, 0.7);
}

/* Dim all cards by default when any card is hovered */
.glassmorphic-gallery:has(.glass-card:hover) .glass-card {
  opacity: 0.4;
  transform: scale(0.98);
}

/* Brighten and elevate the hovered card */
.glass-card:hover {
  opacity: 1 !important;
  transform: scale(1.02) translateY(-8px) !important;
  z-index: 100;
}

.glass-card:hover .glass-card-inner {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 20px 60px 0 rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.glass-card:hover .glass-card-image {
  transform: scale(1.05);
}

/* Add cursor pointer to clickable images */
.glass-card-image {
  cursor: pointer;
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s 0s;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 24px;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.1);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .glass-card {
    width: clamp(320px, 45vw, 400px);
    height: clamp(380px, 50vh, 500px);
  }

  .gallery-track {
    gap: clamp(30px, 5vw, 40px);
    padding: 0 calc(50vw - clamp(160px, 22.5vw, 200px));
  }

  .gallery-track-container {
    top: 50%;
  }

  .gallery-nav-arrow {
    top: 50%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .glass-card {
    width: clamp(320px, 85vw, 370px);
    height: clamp(400px, 55vh, 490px);
  }

  .gallery-track {
    gap: clamp(28px, 6vw, 35px);
    padding: 0 calc(50vw - clamp(160px, 42.5vw, 185px));
  }

  .gallery-track-container {
    height: 50vh;
    top: 50%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .glass-card {
    width: clamp(280px, 90vw, 320px);
    height: clamp(350px, 58vh, 440px);
  }

  .gallery-track {
    gap: clamp(24px, 7vw, 28px);
    padding: 0 calc(50vw - clamp(140px, 45vw, 160px));
  }
}

/* ================================================================
   MINIMAL CONTACT FORM
   ================================================================ */
.minimal-contact-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.minimal-form-group {
  margin-bottom: 1.75rem;
  text-align: left;
}

.minimal-form-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.minimal-form-input,
.minimal-form-select,
.minimal-form-textarea {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  transition: all 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.minimal-form-input:focus,
.minimal-form-select:focus,
.minimal-form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

.minimal-form-input::placeholder,
.minimal-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.minimal-form-select {
  /* Remove all default styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Force transparent background */
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;

  /* Padding and cursor */
  padding-right: 2.5rem;
  cursor: pointer;

  /* Safari-specific overrides */
  -webkit-border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-indent: 0;

  /* Remove iOS gradient */
  -webkit-appearance: none;
  background: transparent;
}

/* Placeholder state for select */
.minimal-form-select:invalid {
  color: rgba(255, 255, 255, 0.4);
}

.minimal-form-select option {
  color: rgba(255, 255, 255, 0.9);
  background: #1a1a1a;
}

.minimal-form-select option[disabled] {
  color: rgba(255, 255, 255, 0.4);
}

/* Safari/iOS specific overrides */
.minimal-form-select::-webkit-select-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.minimal-form-select::-webkit-button {
  display: none;
}

.minimal-form-select::-webkit-inner-spin-button,
.minimal-form-select::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.minimal-form-select option {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem;
}

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

.minimal-form-submit {
  width: 100%;
  padding: 0.875rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 1rem;
}

.minimal-form-submit:hover {
  background: rgba(60, 60, 60, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

.minimal-form-submit:active {
  background: rgba(40, 40, 40, 0.4);
}

/* Submit button loading state */
.minimal-form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background: rgba(40, 40, 40, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.minimal-form-submit.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.minimal-form-submit.loading::after {
  content: 'Sending...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Form validation styling */
.minimal-form-input:invalid:not(:placeholder-shown),
.minimal-form-textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 100, 100, 0.6);
}

.minimal-form-input:valid:not(:placeholder-shown),
.minimal-form-select:valid,
.minimal-form-textarea:valid:not(:placeholder-shown) {
  border-color: rgba(100, 200, 100, 0.5);
}

.minimal-form-input:focus:invalid,
.minimal-form-textarea:focus:invalid {
  border-color: rgba(220, 100, 100, 0.7);
  box-shadow: 0 0 0 2px rgba(220, 100, 100, 0.1);
}

/* Select validation only shows on focus to avoid showing invalid state for placeholder */
.minimal-form-select:focus:invalid {
  border-color: rgba(220, 100, 100, 0.7);
  box-shadow: 0 0 0 2px rgba(220, 100, 100, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .minimal-form-group {
    margin-bottom: 1.5rem;
  }

  .minimal-form-label {
    font-size: 0.75rem;
  }

  .minimal-form-input,
  .minimal-form-select,
  .minimal-form-textarea {
    font-size: 0.875rem;
    padding: 0.625rem;
  }

  .minimal-form-submit {
    font-size: 0.75rem;
  }
}

/* Contact Section - Short viewport adjustment */
@media (max-height: 700px) and (min-width: 769px) {
  .contact-section {
    padding-bottom: clamp(6rem, 12vh, 8rem) !important;
  }
}

/* Form Messages - Success/Error States */
.form-message {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.form-message.active {
  opacity: 1;
}

.form-message-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.form-message-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
}

.form-success .form-message-icon svg {
  stroke: rgba(100, 200, 100, 0.9);
}

/* Success checkmark animation */
.form-success.active .form-message-icon {
  animation: iconPop 0.5s ease-out;
}

.form-success.active .form-message-icon svg polyline {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawCheck 0.6s ease-out 0.2s forwards;
}

@keyframes iconPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.form-error .form-message-icon svg {
  stroke: rgba(220, 100, 100, 0.9);
}

/* Error icon animation */
.form-error.active .form-message-icon {
  animation: iconShake 0.5s ease-out;
}

@keyframes iconShake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.form-message-title {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.form-message-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(176, 176, 176, 0.9);
  margin: 0;
  max-width: 400px;
}

.form-message-reset {
  padding: 0.875rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.form-message-reset:hover {
  background: rgba(60, 60, 60, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

.form-message-reset:active {
  background: rgba(40, 40, 40, 0.4);
}

/* Hide form when message is showing */
.minimal-contact-form.hidden {
  display: none;
}

/* Responsive form messages */
@media (max-width: 768px) {
  .form-message {
    padding: 2rem 1.5rem;
    min-height: 400px;
    gap: 1.25rem;
  }

  .form-message-icon {
    width: 56px;
    height: 56px;
  }

  .form-message-icon svg {
    width: 40px;
    height: 40px;
  }

  .form-message-title {
    font-size: 1.25rem;
  }

  .form-message-text {
    font-size: 0.9375rem;
  }

  .form-message-reset {
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
  }
}

/* ================================================================
   CONTACT BUTTON
   ================================================================ */
.contact-button {
  display: inline-block;
  padding: 0.625rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-button:hover {
  background: rgba(60, 60, 60, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

.contact-button:active {
  background: rgba(40, 40, 40, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
  }
}

/* ================================================================
   15. RESPONSIVE TYPOGRAPHY ADJUSTMENTS
   ================================================================ */
@media (max-width: 767px) {
  :root {
    --nav-height: 60px;
  }

  .hero-title {
    line-height: 1;
  }

  .home-logo {
    height: clamp(97.65625px, 19.53125vw, 250px);
  }

  .drawer-trigger {
    padding: 0.625rem 1.875rem;
  }
}

/* ================================================================
   SHOPPING CART
   ================================================================ */

/* Cart Icon */
.cart-icon {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.cart-count.hidden {
  display: none;
}

/* Cart Overlay Backdrop */
.cart-overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

/* Cart Success Toast */
.cart-success-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-success-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-success-toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.cart-success-toast-icon svg {
  width: 100%;
  height: 100%;
  stroke: #4ade80;
}

.cart-success-toast-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .cart-success-toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    padding: 0.875rem 1.25rem;
  }
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1000;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Cart Header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.cart-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

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

.cart-close svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* Cart Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  min-height: 200px;
}

.cart-empty-message {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 3rem 1rem;
  margin: 0;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item-name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-qty-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  transition: all 0.2s ease;
}

.cart-qty-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cart-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cart-qty-value {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: rgba(220, 100, 100, 0.8);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: all 0.2s ease;
}

.cart-item-remove:hover {
  color: rgba(220, 100, 100, 1);
  text-decoration: underline;
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total-label {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.cart-total-amount {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: #fff;
  border: none;
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
  background: #e0e0e0;
}

.cart-checkout-btn:disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

/* ================================================================
   VIDEO PLAYER OVERLAY
   ================================================================ */

/* Video Card Play Overlay */
.video-card {
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  contain: none !important;
  overflow: visible !important;
  will-change: transform;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 0, 0, 0.2);
}

.video-card:focus {
  outline: none;
}

.video-card:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.8);
  outline-offset: 4px;
}

.video-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-card-title {
  opacity: 1;
}

.video-card .glass-card-inner {
  width: clamp(280px, 40vw, 500px);
  height: clamp(380px, 48vh, 600px);
  flex-shrink: 0;
}

/* Responsive video card inner sizes */
@media (min-width: 1440px) {
  .video-card .glass-card-inner {
    width: clamp(320px, 40vw, 575px);
    height: clamp(440px, 48vh, 690px);
  }
}

@media (max-width: 1024px) {
  .video-card .glass-card-inner {
    width: clamp(320px, 45vw, 400px);
    height: clamp(380px, 50vh, 500px);
  }
}

@media (max-width: 768px) {
  .video-card .glass-card-inner {
    width: clamp(320px, 85vw, 370px);
    height: clamp(400px, 55vh, 490px);
  }
}

@media (max-width: 480px) {
  .video-card .glass-card-inner {
    width: clamp(280px, 90vw, 320px);
    height: clamp(350px, 58vh, 440px);
  }
}

/* Video Preview Overlay - Darkens image on hover */
.video-card .glass-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

.video-card:hover .glass-card-inner::after,
.video-card:focus .glass-card-inner::after {
  opacity: 1;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

.video-card:hover .video-play-overlay,
.video-card:focus .video-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

.video-play-icon {
  width: 32px;
  height: 32px;
  color: #fff;
  margin-left: 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Video Preview Info Badge */
.video-card .glass-card-inner::before {
  content: 'Click to Watch';
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}

.video-card:hover .glass-card-inner::before,
.video-card:focus .glass-card-inner::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Video Player Backdrop */
.video-player-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-player-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Video Player Overlay */
.video-player-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1200;
  width: 90%;
  max-width: 1200px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.video-player-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Theater Mode */
.video-player-overlay.theater-mode {
  width: 95%;
  max-width: 1600px;
  height: 90vh;
}

.video-player-overlay.theater-mode .video-player-content {
  height: 100%;
}

.video-player-overlay.theater-mode .video-player-container {
  flex: 1;
  padding-bottom: 0;
  height: calc(100% - 72px);
}

/* Video Player Header */
.video-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-player-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  flex: 1;
}

.video-player-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-player-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.video-player-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.video-player-btn svg {
  width: 20px;
  height: 20px;
}

.video-player-close {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.video-player-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.video-player-close svg {
  width: 24px;
  height: 24px;
}

/* Video Loading Spinner */
.video-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: video-spinner-rotate 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes video-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Video Player Container */
.video-player-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.video-player-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .video-player-overlay {
    width: 95%;
    max-width: none;
  }

  .video-player-header {
    padding: 1rem;
  }

  .video-player-title {
    font-size: 1rem;
  }

  .video-play-overlay {
    width: 60px;
    height: 60px;
  }

  .video-play-icon {
    width: 24px;
    height: 24px;
  }
}

/* Shop Item Container */
.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* Make product images clickable */
.shop-item .glass-card-image {
  cursor: pointer;
}

/* Product Name Above Card */
.shop-item-name {
  font-family: var(--font-sans);
  font-size: clamp(1.264375rem, 2.52875vw, 1.625625rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

/* Product Price Below Card */
.shop-item-price {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
}

/* Shop Item Actions - Two Buttons at Bottom */
.shop-item-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

.glass-card:hover .shop-item-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* View Button (Left Side) */
.shop-view-btn {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-view-btn:hover {
  background: rgba(255, 255, 255, 1);
}

/* Add to Cart Button (Right Side) */
.add-to-cart-btn {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: rgba(255, 255, 255, 1);
}

/* Product Info Overlay Backdrop */
.product-info-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-info-overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Product Info Overlay */
.product-info-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 1000;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-info-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Product Info Content */
.product-info-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Close Button */
.product-info-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.product-info-close:hover {
  background: rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
}

.product-info-close svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

/* Product Info Body */
.product-info-body {
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: hidden;
}

/* Product Info Image Container */
.product-info-image-container {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
}

.product-info-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 500px;
}

/* Product Info Details */
.product-info-details {
  flex: 1;
  min-width: 0;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-y: auto;
}

.product-info-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.product-info-price {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.product-info-description {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  flex: 1;
}

/* Product Info Add to Cart Button */
.product-info-add-to-cart {
  width: 100%;
  padding: 1.125rem 2rem;
  background: #fff;
  border: none;
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.product-info-add-to-cart:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cart-icon {
    width: 48px;
    height: 48px;
    top: 1.5rem;
    right: 1.5rem;
  }

  .cart-icon svg {
    width: 20px;
    height: 20px;
  }

  .cart-overlay {
    width: 95%;
    max-height: 90vh;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }

  .product-info-overlay {
    width: 95%;
    max-height: 90vh;
  }

  .product-info-body {
    flex-direction: column;
  }

  .product-info-image-container {
    max-height: 50vh;
    padding: 1.5rem;
  }

  .product-info-image {
    max-height: 300px;
  }

  .product-info-details {
    padding: 1.5rem;
  }

  .product-info-close {
    width: 40px;
    height: 40px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .product-info-close svg {
    width: 18px;
    height: 18px;
  }
}

/* ================================================================
   PRODUCT PAGE - Minimalist Design
   ================================================================ */

/* Product Navigation Arrows */
.product-nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 800;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.product-nav-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.product-nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(160, 160, 160, 0.4);
  color: rgba(200, 200, 200, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.product-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.product-nav-arrow:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.8);
  outline-offset: 4px;
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(212, 175, 55, 0.6);
  color: rgba(212, 175, 55, 1);
}

.product-nav-arrow-left {
  left: 40px;
}

.product-nav-arrow-right {
  right: 40px;
}

/* Hide arrows on mobile and tablets */
@media (max-width: 1024px) {
  .product-nav-arrow {
    display: none;
  }
}

.product-page {
  min-height: 100vh;
  padding: clamp(2rem, 8vh, 6rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vh, 2.5rem);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInProduct 0.6s ease-out forwards;
}

@keyframes fadeInProduct {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Image Section */
.product-image-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-image-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-main-image-container:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 0, 0, 0.15);
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  transition: opacity 0.3s ease;
}

.product-main-image.fade-out {
  opacity: 0.3;
}

/* Product Thumbnails - 1x4 Grid */
.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  justify-items: center;
}

.product-thumbnails.hidden {
  display: none;
}

.product-thumbnail {
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.product-thumbnail:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-thumbnail.active {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.product-thumbnail.active.keyboard-focused {
  outline: 2px solid rgba(59, 130, 246, 0.8);
  outline-offset: 2px;
  border-color: rgba(59, 130, 246, 0.6);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Section */
.product-info-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.product-page-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.product-page-price {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.product-page-description {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 550px;
  margin-inline: auto;
}

/* Product Page Actions */
.product-page-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Product Options Grid (Size + Quantity) */
.product-options-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

/* When only quantity (no sizes), center it */
.product-options-grid:has(> .product-option-group:only-child) {
  grid-template-columns: 1fr;
  justify-items: center;
}

/* Stack grid on mobile */
@media (max-width: 600px) {
  .product-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Option Groups */
.product-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.product-option-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Size Selector */
.product-size-selector {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-size-btn {
  min-width: 48px;
  padding: 0.75rem 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-size-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.product-size-btn.active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* Quantity Selector */
.product-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  width: 140px;
}

.product-qty-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-qty-minus {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.product-qty-plus {
  border-radius: 0 4px 4px 0;
  border-left: none;
}

.product-qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.product-qty-btn:active {
  transform: scale(0.95);
}

.product-qty-input {
  width: 52px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: none;
  border-right: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}

.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-page-add-to-cart {
  width: 100%;
  padding: 1.25rem 2rem;
  background: #fff;
  border: none;
  color: #000;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-page-add-to-cart:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.product-page-add-to-cart.added {
  background: #4ade80;
  color: #000;
}

@keyframes checkmarkBounce {
  0% {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
  100% {
    transform: translateY(-2px) scale(1);
  }
}

.product-page-add-to-cart.added {
  animation: checkmarkBounce 0.4s ease;
}

.product-page-return {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.product-page-return:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .product-page {
    padding: clamp(1.5rem, 6vh, 4rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 8vh, 5rem);
    gap: clamp(1rem, 3vh, 2rem);
  }

  .product-main-image-container {
    max-width: 100%;
  }

  .product-thumbnails {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    max-width: 100%;
  }

  .product-info-section {
    gap: 0.875rem;
  }

  .product-page-add-to-cart {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }

  .product-page-return {
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
  }
}

/* ================================================================
   RECIPE CARDS (inherit video card styling)
   ================================================================ */

.recipe-card {
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  contain: none !important;
  overflow: visible !important;
  will-change: transform;
  text-decoration: none;
  color: inherit;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  touch-action: pan-x;
}

.recipe-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 0, 0, 0.2);
}

.recipe-card:focus {
  outline: none;
}

.recipe-card:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.8);
  outline-offset: 4px;
}

.recipe-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: clamp(280px, 40vw, 500px);
  margin-bottom: 1rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recipe-card:hover .recipe-card-title,
.recipe-card:focus .recipe-card-title,
.recipe-card:focus-visible .recipe-card-title {
  opacity: 1;
}

.recipe-card .glass-card-inner {
  width: clamp(280px, 40vw, 500px);
  height: clamp(380px, 48vh, 600px);
  flex-shrink: 0;
}

.recipe-card .glass-card-inner img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Responsive recipe card inner sizes */
@media (min-width: 1440px) {
  .recipe-card .glass-card-inner {
    width: clamp(320px, 40vw, 575px);
    height: clamp(440px, 48vh, 690px);
  }

  .recipe-card-title {
    width: clamp(320px, 40vw, 575px);
  }
}

@media (max-width: 1024px) {
  .recipe-card .glass-card-inner {
    width: clamp(320px, 45vw, 400px);
    height: clamp(380px, 50vh, 500px);
  }

  .recipe-card-title {
    width: clamp(320px, 45vw, 400px);
  }
}

@media (max-width: 768px) {
  .recipe-card .glass-card-inner {
    width: clamp(320px, 85vw, 370px);
    height: clamp(400px, 55vh, 490px);
  }

  .recipe-card-title {
    width: clamp(320px, 85vw, 370px);
  }
}

@media (max-width: 480px) {
  .recipe-card .glass-card-inner {
    width: clamp(280px, 90vw, 320px);
    height: clamp(350px, 58vh, 440px);
  }

  .recipe-card-title {
    width: clamp(280px, 90vw, 320px);
  }
}

/* ================================================================
   RECIPE PAGE - Blog Post Layout
   ================================================================ */

.recipe-page {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 8vh, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 10vh, 6rem);
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Lato', sans-serif;
}

/* Recipe Header */
.recipe-header {
  text-align: center;
  margin-bottom: clamp(2rem, 6vh, 3rem);
}

.recipe-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.recipe-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 clamp(1.5rem, 4vh, 2rem) 0;
  font-weight: 300;
}

/* Recipe Meta Info */
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  justify-content: center;
  padding: clamp(1rem, 3vh, 1.5rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.recipe-meta-item svg {
  opacity: 0.7;
}

/* Recipe Hero Image */
.recipe-hero-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: clamp(2rem, 6vh, 3rem);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 0, 0, 0.15);
}

.recipe-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Recipe Content */
.recipe-content {
  margin-bottom: clamp(2rem, 6vh, 3rem);
}

.recipe-section {
  margin-bottom: clamp(2rem, 6vh, 3rem);
}

.recipe-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 clamp(1rem, 3vh, 1.5rem) 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Ingredients List */
.recipe-ingredients-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.recipe-ingredient {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.recipe-ingredient::before {
  content: '•';
  position: absolute;
  left: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

/* Instructions List */
.recipe-instructions-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.recipe-instruction {
  position: relative;
  padding-left: 3rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  counter-increment: step-counter;
}

.recipe-instruction::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Recipe Video Section */
.recipe-video-section {
  margin-top: clamp(2rem, 6vh, 3rem);
}

.recipe-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 0, 0, 0.15);
}

.recipe-video-container iframe,
.recipe-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Recipe Footer */
.recipe-footer {
  text-align: center;
  padding-top: clamp(2rem, 6vh, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recipe-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.recipe-back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

.recipe-back-link svg {
  transition: transform 0.3s ease;
}

.recipe-back-link:hover svg {
  transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .recipe-page {
    padding: clamp(1.5rem, 6vh, 3rem) clamp(1rem, 4vw, 1.5rem) clamp(2rem, 8vh, 4rem);
  }

  .recipe-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .recipe-ingredient,
  .recipe-instruction {
    font-size: 1rem;
  }

  .recipe-instruction::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8125rem;
  }
}
