/*
Theme Name: FAFS - Fallen Angels Forgotten Souls
Theme URI: https://example.com/fafs
Author: Antigravity Assistant
Description: A Brutalist Luxury streetwear theme featuring monochromatic design, clinical typography, and atmospheric contrasts.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: fafs-theme
*/

:root {
  --bg-dark: #ffffff;
  --bg-light: #ffffff;
  --bg-grey: #f4f4f4;
  --border-color: #e0e0e0;
  --text-dark: #0a0a0a;
  --text-light: #0a0a0a;
  --text-grey: #666666;
  --font-main: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

button, a, input, select, .product-card, .hero-dot, .fafs-size-box-clean {
  touch-action: manipulation;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: #0a0a0a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

input {
  font-family: inherit;
}

/* css-protips: Images never overflow their container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* css-protips: Prevent iOS auto-zoom on form focus (font-size must be >= 16px) */
input,
button,
textarea,
select {
  font-size: 1rem;
}

/* css-protips: Accessible focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.4);
  outline-offset: 3px;
}

/* css-protips: Proper pointer-events for disabled/out-of-stock elements */
[disabled],
[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.4;
}


/* Hide old dynamic background glows */
.bg-glow {
  display: none;
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.2rem 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.fafs-logo-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  transition: var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: #0a0a0a;
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.cart-btn {
  color: #0a0a0a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* =========================================
   HERO / SLIDESHOW
   ========================================= */
.hero-section {
  height: 65svh;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #000000;
  position: relative;
  padding: 100px 2rem 0;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease-in-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 170px;
  left: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  pointer-events: none;
}

.hero-logo-large {
  max-width: 120px;
  width: 100%;
  margin-bottom: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.hero-text-block {
  margin-top: 1.5rem;
  color: #fff;
  max-width: 600px;
  pointer-events: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-sub-title {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #0a0a0a;
  padding: 1rem 3rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  pointer-events: auto;
}

.hero-btn:hover {
  background: #e0e0e0;
}

/* Slideshow Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  outline: none;
}

.hero-arrow:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-arrow-prev {
  left: 2rem;
}

.hero-arrow-next {
  right: 2rem;
}

/* Slideshow Dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  outline: none;
}

.hero-dot.active {
  width: 32px;
  border-radius: 12px;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .hero-arrow-prev { left: 1rem; }
  .hero-arrow-next { right: 1rem; }
  .hero-arrow { width: 38px; height: 38px; }
  .hero-dots { bottom: 5rem; }
}

/* =========================================
   FLOATING QUOTE BOX
   ========================================= */
.floating-quote-box {
  position: sticky;
  top: 75px; /* Under the navigation header */
  margin: 0 auto 20px auto;
  width: auto;
  max-width: 90%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  min-height: 44px;
  overflow: hidden;
}

.floating-quote-box::before {
  display: none;
}

.quote-content-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

.quote-content-wrapper.drifting {
  animation: cinematicDrift 6s linear forwards;
}

@keyframes cinematicDrift {
  0% { transform: translateX(30px); opacity: 0; }
  10% { transform: translateX(24px); opacity: 1; }
  90% { transform: translateX(-24px); opacity: 1; }
  100% { transform: translateX(-30px); opacity: 0; }
}

.floating-quote-box .quote-text {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  display: inline;
}

.floating-quote-box .quote-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-grey);
  display: inline-block;
  margin-top: 2px;
  margin-left: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================
   MASCOTS SHOWCASE
   ========================================= */
.mascots-showcase {
  background-color: #ffffff;
  padding: 6rem 2rem;
  color: #0a0a0a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mascots-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mascots-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mascots-subtitle {
  font-size: 0.85rem;
  color: var(--text-grey);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mascots-grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 2rem auto;
}

.mascot-card {
  background: #f4f4f4;
  position: relative;
  overflow: hidden;
}

.mascot-media {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #f4f4f4;
}

.mascot-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.92), transparent);
}

.mascot-info h3 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: #0a0a0a;
}

.mascot-info span {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mascots-full {
  max-width: 1400px;
  margin: 0 auto;
  background: #f4f4f4;
  overflow: hidden;
}

.mascot-media-full {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================================
   SHOP / CLINICAL SHIFT
   ========================================= */
.shop-container {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding-top: 0;
}

.filter-tabs {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.filter-tab {
  color: var(--text-grey);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
}

.filter-tab:hover {
  color: var(--text-dark);
}

.filter-tab.active {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* =========================================
   PRODUCTS GRID
   ========================================= */
.products-grid-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
}

.results-meta {
  display: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 5rem;
}

.product-card {
  cursor: pointer;
}

.product-image-wrapper {
  background: var(--bg-grey);
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform var(--transition-smooth);
}

.product-image.img-back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-image.img-back {
  opacity: 1;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-category {
  font-size: 0.75rem;
  color: var(--text-grey);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 500;
}

/* =========================================
   MODAL / INSIDE BOX
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-light);
  color: var(--text-dark);
  width: 90%;
  max-width: 1200px;
  height: 85vh;
  position: relative;
  display: flex;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  color: var(--text-dark);
}

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

.modal-card {
  display: flex;
  width: 100%;
  height: 100%;
}

.modal-gallery {
  flex: 0 0 50%;
  background: #ffffff;
  /* display: flex; */
  /* flex-direction: column; */
  overflow: hidden;
  padding: 0;
}

.modal-main-image-container {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.modal-main-image-container img {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
  margin-bottom: 0;
  transition: opacity 0.15s ease-in-out;
  mix-blend-mode: darken;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #111;
  color: #111;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.gallery-arrow:hover {
  background: #111;
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.prev-arrow { left: 1rem; }
.next-arrow { right: 1rem; }

.gallery-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.gallery-dot.active {
  background: rgba(0,0,0,0.8);
  transform: scale(1.2);
}

.modal-details {
  flex: 0 0 50%;
  padding: 4rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-details-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modal-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  color: var(--text-grey);
}

.modal-title-clean {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.modal-price-clean {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.modal-desc-clean {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-grey);
  margin-bottom: 2rem;
}

.modal-sizes-section-clean {
  margin-bottom: 2rem;
}

.modal-label-clean {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.fafs-size-selector-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fafs-color-selector {
  gap: 0.75rem;
}

.fafs-color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
  display: inline-block;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  background-clip: padding-box;
}

.fafs-color-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.fafs-color-swatch.active {
  border-color: #111;
  transform: scale(1.1);
  box-shadow: 0 0 0 1px #111, 0 4px 10px rgba(0,0,0,0.15);
}

.fafs-color-swatch.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* For light colors like white, cream, off-white, use a dark checkmark */
.fafs-color-swatch[data-color="White"].active::after,
.fafs-color-swatch[data-color="white"].active::after,
.fafs-color-swatch[data-color="Off-White"].active::after,
.fafs-color-swatch[data-color="Cream"].active::after {
  stroke: #111;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  filter: none;
}

.fafs-size-box-clean {
  width: auto;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.fafs-size-box-clean:hover,
.fafs-size-box-clean.active {
  background: var(--text-dark);
  color: var(--bg-light);
  border-color: var(--text-dark);
}

.btn-clean-black {
  background: var(--text-dark);
  color: var(--bg-light);
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: opacity 0.2s;
}

.btn-clean-black:hover {
  opacity: 0.8;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* =========================================
   OUR MISSION (SINGLE-PAGE SCROLL SECTION)
   ========================================= */
.mission-section {
  background-color: #f9f9f8;
  color: #0a0a0a;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  scroll-margin-top: 75px;
  min-height: calc(100vh - 75px);
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.mission-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.mission-subtitle {
  max-width: 720px;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  font-weight: 400;
}

.mascot-interactive-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.mascot-images {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.mascot-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, filter 0.5s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.mascot-base {
  z-index: 1;
  opacity: 1;
  transition: filter 0.5s ease;
}

.mascot-blend {
  z-index: 2;
  mix-blend-mode: normal;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.blend-1 {
  -webkit-mask-image: radial-gradient(circle 80px at calc(50% - 40px) calc(45% + 20px), black 0%, black 40px, transparent 80px);
  mask-image: radial-gradient(circle 80px at calc(50% - 40px) calc(45% + 20px), black 0%, black 40px, transparent 80px);
}

.blend-2 {
  -webkit-mask-image: radial-gradient(ellipse 400px 100px at calc(50% - 60px) calc(60% + 40px), black 0%, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 400px 100px at calc(50% - 60px) calc(60% + 40px), black 0%, black 60%, transparent 100%);
}

.blend-3 {
  -webkit-mask-image: radial-gradient(ellipse 400px 160px at calc(50% - 20px) calc(20% - 40px), black 0%, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 400px 160px at calc(50% - 20px) calc(20% - 40px), black 0%, black 60%, transparent 100%);
}

.mascot-interactive-wrapper:has(.hotspot:hover) .mascot-base,
.mascot-interactive-wrapper.show-layer-active .mascot-base {
  filter: contrast(1.1) brightness(0.9);
}

@keyframes fafsPulse {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.mascot-interactive-wrapper:has(.hotspot-1:hover) .blend-1,
.mascot-interactive-wrapper.show-layer-1 .blend-1 {
  animation: fafsPulse 2.5s infinite ease-in-out;
}

.mascot-interactive-wrapper:has(.hotspot-2:hover) .blend-2,
.mascot-interactive-wrapper.show-layer-2 .blend-2 {
  animation: fafsPulse 2.5s infinite ease-in-out;
}

.mascot-interactive-wrapper:has(.hotspot-3:hover) .blend-3,
.mascot-interactive-wrapper.show-layer-3 .blend-3 {
  animation: fafsPulse 2.5s infinite ease-in-out;
}

/* Hotspots */
.hotspot {
  position: absolute;
  z-index: 10;
}

.hotspot-1 { top: calc(45% + 20px); left: calc(50% - 40px); transform: translateX(-50%); }
.hotspot-2 { top: calc(60% + 40px); left: calc(50% - 60px); transform: translateX(-50%); }
.hotspot-3 { top: calc(20% - 40px); left: calc(50% - 20px); transform: translateX(-50%); }

.hotspot-marker {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.hotspot:hover .hotspot-marker {
  transform: scale(1.2);
  background: #fff;
  animation: none;
}

.hotspot-tooltip {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%) translateX(20px);
  width: max-content;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 20;
}

.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(30px);
}

.hotspot-tooltip .mission-code { color: #aaa; margin-bottom: 0.5rem; display: block; font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; }
.hotspot-tooltip h3 { font-size: 1.1rem; margin: 0 0 0.5rem 0; color: #fff; text-transform: uppercase; font-weight: 700; letter-spacing: -0.02em; }
.hotspot-tooltip p { font-size: 0.85rem; margin: 0; color: #ddd; line-height: 1.6; }

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 768px) {
  .hotspot {
    display: none !important;
  }
  .mascot-base {
    display: none !important;
  }
  .mascot-images {
    aspect-ratio: 3/4;
  }
}

/* Mobile Mascot Controls */
.mobile-mascot-controls {
  display: none;
}

@media (max-width: 768px) {
  .mobile-mascot-controls {
    display: block;
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  .mobile-mascot-content {
    min-height: 200px;
  }
  .mobile-mascot-tabs {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .mascot-tab {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    color: #0a0a0a;
    padding: 0.75rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    font-family: inherit;
  }
  .mascot-tab.active {
    background: #0a0a0a;
    color: #fff;
    border-color: #0a0a0a;
  }
  .mascot-panel {
    display: none;
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    animation: fafsFadeIn 0.3s ease forwards;
  }
  .mascot-panel.active {
    display: block;
  }
  .mascot-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
    letter-spacing: -0.02em;
  }
  .mascot-panel p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
  }

  /* Soft heartbeat pulse for active mascot layers */
  .mascot-interactive-wrapper.show-layer-1 .blend-1,
  .mascot-interactive-wrapper.show-layer-2 .blend-2,
  .mascot-interactive-wrapper.show-layer-3 .blend-3 {
    animation: fafsPulse 2.5s infinite ease-in-out;
  }

  /* Apple Pay style buttons on mobile */
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .wc-proceed-to-checkout a.checkout-button,
  .wc-proceed-to-checkout a,
  a.checkout-button.button.alt,
  a.checkout-button,
  #place_order,
  .btn-clean-black {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    border-radius: 100px !important; /* Pill shape */
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-transform: none !important; /* Apple pay isn't usually all caps */
    letter-spacing: 0 !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@keyframes fafsPulse {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

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

.mission-manifesto-footer {
  margin-top: 3.5rem;
  text-align: center;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  padding-top: 2.5rem;
}

.manifesto-quote {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.manifesto-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.mission-wp-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
  background: #f4f4f4;
  color: var(--text-grey);
  padding: 4rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

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

.footer-links a:hover {
  color: #0a0a0a;
}

/* =========================================
   TOASTS
   ========================================= */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: #0a0a0a;
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

/* =========================================
   WOOCOMMERCE PAGE WRAPPER
   ========================================= */
.fafs-woo-page {
  background-color: #f7f7f5;
  color: #0a0a0a;
  min-height: 100vh;
  padding-top: 80px;
}

/* =========================================
   FAFS CHECKOUT — MODERN CENTERED
   ========================================= */
.fafs-checkout-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

/* Page heading */
.fafs-checkout-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.fafs-checkout-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fafs-checkout-sub {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Two-column grid */
.fafs-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

/* Section card */
.fafs-checkout-section {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}

/* Numbered section label */
.fafs-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 0.25rem;
}

.fafs-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* ---- FORM FIELDS — clean underline style ---- */
.fafs-checkout-form .form-row {
  margin-bottom: 1.25rem;
  position: relative;
}

.fafs-checkout-form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.35rem;
}

.fafs-checkout-form .required { color: rgba(0,0,0,0.25); }

.fafs-checkout-form input.input-text,
.fafs-checkout-form select,
.fafs-checkout-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.15);
  color: #0a0a0a;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.fafs-checkout-form input.input-text:focus,
.fafs-checkout-form select:focus,
.fafs-checkout-form textarea:focus {
  border-bottom-color: #0a0a0a;
}

.fafs-checkout-form input.input-text::placeholder { color: rgba(0,0,0,0.2); }
.fafs-checkout-form select option { background: #fff; color: #0a0a0a; }

/* Side-by-side fields */
.fafs-checkout-form .form-row-first,
.fafs-checkout-form .form-row-last {
  display: inline-block;
  width: calc(50% - 0.5rem);
}

.fafs-checkout-form .form-row-first { margin-right: 1rem; }

.fafs-checkout-form .form-row input[type="checkbox"] {
  accent-color: #0a0a0a;
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
}

/* ---- ORDER SUMMARY CARD ---- */
.fafs-order-summary {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 1.75rem;
  position: sticky;
  top: 88px;
}

/* Order table */
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.85rem;
  vertical-align: top;
}

.woocommerce-checkout-review-order-table th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.3);
  font-weight: 600;
  text-align: left;
}

.woocommerce-checkout-review-order-table .product-name { font-weight: 500; }
.woocommerce-checkout-review-order-table .product-total { text-align: right; }

.woocommerce-checkout-review-order-table tfoot tr td,
.woocommerce-checkout-review-order-table tfoot tr th {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.5);
}

.woocommerce-checkout-review-order-table tfoot tr:last-child td,
.woocommerce-checkout-review-order-table tfoot tr:last-child th {
  font-size: 1rem;
  font-weight: 700;
  border-bottom: none;
  color: #0a0a0a;
  padding-top: 1rem;
}

/* Shipping */
.woocommerce-shipping-methods { list-style: none; margin: 0; padding: 0; }

.woocommerce-shipping-methods li label {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.65);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* Payment section */
#payment { margin-top: 0; }
#payment .payment_methods { list-style: none; padding: 0; margin: 0 0 1.25rem; }

#payment .payment_methods li {
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

#payment .payment_methods li.wc_payment_method input[type="radio"]:checked + label {
  border-color: #0a0a0a;
}

#payment .payment_methods li label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #0a0a0a;
  text-transform: none;
  letter-spacing: 0;
}

#payment .payment_box {
  background: rgba(0,0,0,0.02);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Place Order button */
#place_order {
  background: #0a0a0a;
  color: #ffffff;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 1rem;
}

#place_order:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* WooCommerce notices */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  list-style: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  border-radius: 8px;
  border-left: 3px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.03);
  color: #0a0a0a;
}

.woocommerce-error { border-left-color: #e53e3e; background: #fff5f5; }
.woocommerce-message { border-left-color: #38a169; background: #f0fff4; }

/* Responsive */
@media (max-width: 860px) {
  .fafs-checkout-grid {
    grid-template-columns: 1fr;
  }
  .fafs-order-summary {
    position: static;
    order: -1; /* Show summary above form on mobile */
  }
}


/* =========================================
   INNER PAGES (page.php)
   ========================================= */
.inner-page {
  background-color: #ffffff;
  color: #0a0a0a;
  min-height: 100vh;
}

.inner-page-hero {
  padding: 8rem 2rem 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.inner-page-hero-content {
  max-width: 1400px;
  margin: 0 auto;
}

.inner-page-title {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.inner-page-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.inner-page-content {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.65);
}

.inner-page-content h1,
.inner-page-content h2,
.inner-page-content h3 {
  color: #0a0a0a;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.inner-page-content p { margin-bottom: 1.5rem; }

.inner-page-content a {
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* WP Nav Menu overrides */
.main-nav > ul,
.main-nav > div > ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: var(--transition-fast);
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a {
  color: var(--text-light);
}

.mobile-menu-toggle {
  display: none;
}
.mobile-nav-overlay {
  display: none;
}

/* =========================================
   RESPONSIVE & MOBILE ERGONOMICS
   ========================================= */
@media (max-width: 1024px) {
  .modal-container {
    width: 95%;
    height: 95vh;
  }

  .modal-card {
    flex-direction: column;
    overflow-y: auto;
  }

  .modal-gallery {
    flex: none;
    min-height: 50vh;
    overflow-y: visible;
  }

  .modal-details {
    flex: none;
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  /* Header & Mobile Ergonomics */
  .header-container {
    padding: 0.6rem 1.25rem;
    gap: 1rem;
    justify-content: space-between;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .cart-btn {
    min-width: 44px;
    min-height: 44px;
  }

  /* Hamburger Button */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3001; /* Keep above drawer */
  }
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Side Navigation Drawer */
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 3000;
    padding: 80px 2rem 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.08);
    overflow-y: auto;
  }

  body.nav-open .main-nav {
    transform: translateX(-300px);
  }

  .main-nav > ul,
  .main-nav > div > ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .main-nav ul li a {
    font-size: 1.25rem;
    color: #0a0a0a;
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
  }

  /* Overlay */
  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  body.nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero & Slideshow Mobile Touch Optimization */
  .hero-section {
    height: 54svh;
    min-height: 380px;
    padding-top: 80px;
  }

  /* Hide physical arrow buttons on mobile — 100% natural finger swipe */
  .hero-arrow {
    display: none !important;
  }

  .hero-dots {
    bottom: 5rem;
    gap: 0.85rem;
  }

  .hero-dot {
    position: relative;
  }

  /* Expand hit-box area to 44px for effortless finger tapping */
  .hero-dot::before {
    content: '';
    position: absolute;
    top: -16px;
    bottom: -16px;
    left: -12px;
    right: -12px;
  }

  .hero-content {
    top: 80px;
    left: 1rem;
    right: 1rem;
  }

  .hero-logo-large {
    max-width: 95px;
    width: 30vw;
  }

  .hero-text-block {
    margin-top: 1rem;
    max-width: 100%;
  }

  .hero-main-title {
    font-size: 2.25rem;
  }

  .hero-sub-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Product Grid Mobile Styling & Tactile Feedback */
  .products-grid-section {
    padding: 1.25rem 1rem 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .product-card {
    transition: transform 0.15s ease;
  }

  .product-card:active {
    transform: scale(0.97);
  }

  .product-image-wrapper {
    margin-bottom: 0.75rem;
    border-radius: 4px;
  }

  .product-title {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .product-price {
    font-size: 0.85rem;
    font-weight: 700;
  }

  /* Product Modal ("Inside Box") Mobile Touch Optimization */
  .modal-overlay {
    padding: 0;
  }

  .modal-container {
    width: 100%;
    height: 100vh;
    max-width: none;
    border-radius: 0;
  }

  .modal-close-btn {
    top: 0.85rem;
    right: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #0a0a0a;
    z-index: 25;
  }

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

  .modal-gallery {
    padding: 1.5rem 1rem;
    background: #f8f8f8;
  }

  .modal-details {
    padding: 1.5rem 1.25rem 2rem;
  }

  /* Size Selector 48px Touch Targets for Thumb Tapping */
  .fafs-size-selector-clean {
    gap: 0.6rem;
  }

  .fafs-size-box-clean {
    min-width: 48px;
    height: 48px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
  }

  /* Buy Button sticky at thumb level */
  .btn-clean-black {
    min-height: 48px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 6px;
  }

  .main-footer {
    padding: 3rem 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 48svh;
    min-height: 350px;
  }

  .products-grid {
    gap: 1.25rem 0.85rem;
  }

  .fafs-checkout-wrap {
    padding: 1.5rem 1rem 4rem;
  }
}

/* =========================================
   FIRST IMPRESSIONS SECTION
   ========================================= */
.impressions-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.impressions-header {
  background: rgba(245, 245, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 1rem 1.5rem;
  margin: 4rem auto 1.5rem auto;
  max-width: 500px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.impressions-header:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.impressions-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.impressions-dropdown-content.active {
  max-height: 2000px;
}

.impressions-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0;
}

.dropdown-icon {
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

/* Rotate icon when active */
.impressions-dropdown-content.active ~ .impressions-header .dropdown-icon,
.impressions-header.active .dropdown-icon {
  transform: rotate(180deg);
}

.impressions-subtitle {
  font-size: 0.95rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.impressions-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 1.5rem;
}

.impression-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.fafs-impression-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.imp-input, .imp-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
  color: #111;
  outline: none;
  transition: all 0.3s ease;
}

.imp-input:focus, .imp-textarea:focus {
  border-color: #111;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.imp-textarea {
  resize: vertical;
  min-height: 100px;
}

.imp-submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: rgba(240, 240, 245, 0.95);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.imp-submit-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.imp-submit-btn svg {
  stroke: #111;
}

.imp-status {
  font-size: 0.85rem;
  text-align: center;
  color: #666;
  min-height: 1.2rem;
}

/* Grid like products */
.impressions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Impression Cards (Like the Hotspot tooltips / Quote Boxes) */
.impression-card {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.impression-card:hover {
  transform: translateY(-5px);
}

.imp-card-author {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.imp-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.imp-card-date {
  font-size: 0.7rem;
  color: #666;
  margin-top: auto;
}

/* Skeleton Loading State */
.impression-card.skeleton {
  min-height: 150px;
  background: #eee;
  border-left: 3px solid #ccc;
  animation: pulse-bg 1.5s infinite;
}

@keyframes pulse-bg {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

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