/* 
 * Design System: Navalha Negra
 * Aesthetic: Liquid Glass - Luxury Vintage
 */

:root {
  /* Colors */
  --bg-color: #0C0A09;
  --surface-color: #1C1917;
  --surface-color-light: #44403C;
  --text-color: #FAFAF9;
  --text-muted: #A8A29E;
  --primary-accent: #CA8A04;
  /* Gold */
  --primary-accent-hover: #EAB308;

  /* Typography */
  --font-heading: 'Poiret One', cursive;
  --font-body: 'Didact Gothic', sans-serif;

  --base-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  /* ~16px-18px */

  /* Layout */
  --max-width: 1200px;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Transitions */
  --trans-fast: 200ms ease;
  --trans-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--base-size);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-left: 1px solid rgba(250, 250, 249, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-color-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* Typography Basics */
h1,
h2,
h3,
h4,
.logo-text,
.section-title {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 400;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
  font-size: 1.75rem;
}

.section-title {
  color: var(--primary-accent);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-accent);
  transition: width var(--trans-smooth);
}

.section:hover .section-title::after {
  width: 100%;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Utilities */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: var(--space-xl) 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--trans-fast);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: var(--bg-color);
  font-weight: bold;
}

.btn-primary:hover {
  background-color: var(--primary-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(202, 138, 4, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-accent);
  color: var(--primary-accent);
}

.btn-outline:hover {
  background: var(--primary-accent);
  color: var(--bg-color);
}

.btn-text {
  background: transparent;
  color: var(--text-color);
  border-bottom: 1px solid transparent;
  padding: 0.5rem 0;
}

.btn-text:hover {
  border-bottom-color: var(--primary-accent);
  color: var(--primary-accent);
}

/* Base focus state for accessibility */
:focus-visible {
  outline: 2px solid var(--primary-accent);
  outline-offset: 4px;
}

/* Navigation - Floating Liquid Glass */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 50;
  border-radius: 12px;
  background: rgba(12, 10, 9, 0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(250, 250, 249, 0.05);
  border-bottom: 1px solid rgba(250, 250, 249, 0.05);
  /* Explicit bottom border */
  transition: all var(--trans-smooth);
}

.navbar.scrolled {
  background: rgba(12, 10, 9, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  top: 0;
  width: 100%;
  border-radius: 0 0 16px 16px;
  /* Rounded bottom corners */
  border-color: transparent;
  /* Transition to transparent side borders */
  border-bottom-color: rgba(202, 138, 4, 0.2);
  /* Ensure only bottom glows */
}

.logo-text {
  font-size: 2rem;
  color: var(--primary-accent);
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color var(--trans-fast);
  white-space: nowrap;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-accent);
  transition: width var(--trans-fast);
}

.nav-item:hover {
  color: var(--primary-accent);
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/barber_hero_bg_1773108546112.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(12, 10, 9, 0.7) 0%,
      rgba(12, 10, 9, 0.85) 60%,
      rgba(12, 10, 9, 1) 100%);
  z-index: -1;
}

.hero-glass-panel {
  margin-left: max(5%, calc((100% - var(--max-width)) / 2));
  max-width: 600px;
  animation: fadeUp 1s ease-out forwards;
}

.hero-title {
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: var(--text-color);
}

.hero-title span {
  color: var(--primary-accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.7;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(250, 250, 249, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary-accent);
  animation: scrollAnim 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Experience Section */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.morphing-shape {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  animation: morph 8s ease-in-out infinite alternate;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.morphing-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 50px rgba(202, 138, 4, 0.2);
  pointer-events: none;
}

.fluid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform var(--trans-smooth);
}

.morphing-shape:hover .fluid-image {
  transform: scale(1.05);
  /* Slight reverse scale for effect */
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Fixed Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Services */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
}

.link-action {
  color: var(--primary-accent);
  border-bottom: 1px solid var(--primary-accent);
  padding-bottom: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity var(--trans-fast);
}

.link-action:hover {
  opacity: 0.8;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-color);
  border: 1px solid rgba(250, 250, 249, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-smooth), border-color var(--trans-smooth);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(202, 138, 4, 0.3);
}

.service-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-smooth);
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-desc {
  flex-grow: 1;
  font-size: 0.95rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 249, 0.05);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.icon-btn {
  background: var(--surface-color-light);
  color: var(--text-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.icon-btn:hover {
  background: var(--primary-accent);
  color: var(--bg-color);
  transform: rotate(90deg);
}

/* Special Service */
.service-special {
  background: linear-gradient(135deg, var(--surface-color) 0%, #2A241B 100%);
  border-color: rgba(202, 138, 4, 0.2);
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-special::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.1) 0%, transparent 70%);
  animation: rotateGlow 15s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  100% {
    transform: rotate(360deg);
  }
}

.badge {
  background: var(--primary-accent);
  color: var(--bg-color);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.25rem 1rem;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: bold;
}

/* =========================================
   NEW SECTIONS: SUPREME EXPANSION
========================================= */

/* Section 1: Benefits */
.benefits {
  background: linear-gradient(to bottom, var(--bg-color) 0%, var(--surface-color) 100%);
}

.subtitle-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: var(--bg-color);
  border: 1px solid rgba(250, 250, 249, 0.05);
  padding: 2.5rem 1.5rem;
  transition: transform var(--trans-smooth), background var(--trans-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(28, 25, 23, 0.8);
  border-color: rgba(202, 138, 4, 0.2);
}

.icon-wrapper {
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
}

.icon-wrapper i {
  width: 48px;
  height: 48px;
}

.benefit-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

/* Section 2: Team (Mestres) */
.section-header-center {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.master-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.master-img-container {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.master-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-smooth);
  filter: grayscale(80%) contrast(1.2);
}

.master-card:hover .master-img-container img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.1);
}

.social-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--trans-fast);
}

.social-overlay a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(12, 10, 9, 0.8);
  color: var(--primary-accent);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.master-card:hover .social-overlay {
  opacity: 1;
  transform: translateX(0);
}

.glass-panel-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-top: 1px solid rgba(250, 250, 249, 0.05);
  transform: translateY(30%);
  transition: transform var(--trans-smooth);
}

.master-card:hover .glass-panel-small {
  transform: translateY(0);
}

.master-role {
  display: block;
  color: var(--primary-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Section 3: Shop */
.shop-flex {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.shop-text {
  flex: 1;
}

.shop-features {
  list-style: none;
  margin: 2rem 0;
}

.shop-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.shop-features i {
  color: var(--primary-accent);
  width: 20px;
}

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

.shop-products-grid {
  flex: 1;
  display: flex;
  gap: 2rem;
  position: relative;
}

.product-item {
  position: relative;
  flex: 1;
  border: 1px solid rgba(250, 250, 249, 0.05);
  background: var(--bg-color);
  padding: 1rem;
  transition: transform var(--trans-smooth);
}

.product-item:hover {
  transform: translateY(-10px);
  border-color: rgba(202, 138, 4, 0.3);
}

.product-offset {
  transform: translateY(3rem);
}

.product-offset:hover {
  transform: translateY(calc(3rem - 10px));
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1rem;
}

.product-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: rgba(12, 10, 9, 0.9);
  color: var(--primary-accent);
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 1.25rem;
}

/* Section 4: Testimonials */
.testimonials {
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-accent), transparent);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-color);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(250, 250, 249, 0.05);
  position: relative;
  text-align: left;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(250, 250, 249, 0.03);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
}

.stars i {
  width: 16px;
  height: 16px;
}

.quote {
  font-size: 1.1rem;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 2rem;
}

.author {
  color: var(--primary-accent);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* Section 5: FAQ */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

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

.accordion-item {
  border: 1px solid rgba(250, 250, 249, 0.05);
  background: var(--surface-color);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--trans-fast);
}

.accordion-header:hover {
  color: var(--primary-accent);
}

.accordion-header i {
  transition: transform var(--trans-smooth);
  color: var(--primary-accent);
}

.accordion-header[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-smooth);
}

.accordion-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

/* CTA Forms */
.cta-section {
  background-image: url('../img/barber_hero_bg_1773108546112.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.9);
}

.cta-container {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.glass-panel {
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(250, 250, 249, 0.1);
  padding: 4rem;
  width: 100%;
  max-width: 600px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.glass-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--primary-accent);
  filter: blur(100px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

.background-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.title-large {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

.booking-form {
  margin-top: 3rem;
  text-align: left;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

select {
  width: 100%;
  padding: 1rem;
  background: rgba(12, 10, 9, 0.8);
  border: 1px solid rgba(250, 250, 249, 0.2);
  color: var(--text-color);
  font-family: inherit;
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color var(--trans-fast);
}

select:focus {
  border-color: var(--primary-accent);
}

.full-width {
  width: 100%;
  padding: 1.25rem;
}

/* Footer */
.footer {
  background: var(--bg-color);
  padding: var(--space-xl) 0 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-lg);
}

.footer-desc {
  margin-top: 1rem;
  max-width: 250px;
}

.footer-info h4,
.footer-social h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

address,
.footer-info p {
  color: var(--text-muted);
  font-style: normal;
}

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

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  color: var(--text-muted);
  transition: all var(--trans-fast);
}

.social-links a:hover {
  background: var(--primary-accent);
  color: var(--bg-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.05);
  color: rgba(168, 162, 158, 0.5);
  font-size: 0.875rem;
}

/* Media Queries (Responsive) */
@media (max-width: 900px) {

  .experience-grid,
  .shop-flex,
  .faq-container {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .morphing-shape {
    aspect-ratio: 1;
    max-height: 500px;
    margin: 0 auto;
  }

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

  .product-offset {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    z-index: 100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.5, 0, 0, 1);
    z-index: 99;
  }

  .nav-links.active {
    right: 0;
  }

  .glass-panel {
    padding: 2rem;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}