/* ============================================
   ENTRE PERCHAS — Global Stylesheet
   Palette: #6F6168 (primary) + #FFFFFF (bg)
   Typography: Playfair Display + DM Sans
   ============================================ */

/* --- VARIABLES --- */
:root {
  --ep: #6F6168;
  --ep-rgb: 111, 97, 104;
  --ep-dark: #3c3138;
  --ep-8: rgba(111, 97, 104, 0.08);
  --ep-15: rgba(111, 97, 104, 0.15);
  --ep-40: rgba(111, 97, 104, 0.40);
  --ep-body: #5e5359;
  --ep-muted: #897b82;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 72px;
  --container: 1200px;
  --section-py: clamp(64px, 8vw, 120px);
  --ease-apple: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); color: var(--ep); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- FOCUS VISIBLE --- */
:focus-visible {
  outline: 2px solid var(--ep);
  outline-offset: 3px;
  border-radius: 3px;
}
a:focus-visible,
button:focus-visible { outline-offset: 4px; }
.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: none;
  border-color: var(--ep);
  box-shadow: 0 0 0 3px rgba(111, 97, 104, 0.12);
}
:focus:not(:focus-visible) { outline: none; }

/* --- SKELETON LOADER --- */
@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(
    90deg,
    var(--ep-8) 25%,
    var(--ep-15) 50%,
    var(--ep-8) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
}

/* --- UTILITIES --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }

/* --- TYPOGRAPHY --- */
.heading-xl {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ep);
}
.heading-lg {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ep);
}
.heading-md {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ep);
}
.heading-sm {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ep-muted);
}
.body-text {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ep-body);
  max-width: 620px;
}
.italic { font-style: italic; }

/* --- PROGRESS BAR --- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ep);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
  pointer-events: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 48px);
  z-index: 900;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 0.5px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--ep-15);
}
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-icons { color: var(--ep); }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo .nav-logo-dark { display: block; }
.nav-logo .nav-logo-white { display: none; }
.navbar:not(.scrolled):not(.dark) .nav-logo .nav-logo-dark { display: none; }
.navbar:not(.scrolled):not(.dark) .nav-logo .nav-logo-white { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.4s ease;
  position: relative;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: currentColor;
  transition: width 0.35s var(--ease-apple);
}
.nav-links a:hover::after { width: 100%; }

.nav-links .chevron-icon {
  font-size: 10px;
  vertical-align: 1px;
  margin-left: 2px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.4s ease;
}
.nav-icons i { font-size: 19px; cursor: pointer; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: inherit;
  border-left: 0.5px solid currentColor;
  padding-left: 16px;
  margin-left: 2px;
  opacity: 0.75;
}
.lang-opt { cursor: pointer; transition: opacity 0.2s; padding: 2px 0; }
.lang-opt.active { opacity: 1; font-weight: 500; }
.lang-opt:not(.active) { opacity: 0.45; }
.lang-sep { opacity: 0.3; font-weight: 300; }
.nav-icons .cart-badge {
  position: relative;
  cursor: pointer;
}
.nav-icons .cart-badge::after {
  content: attr(data-count);
  position: absolute;
  top: -6px;
  right: -9px;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--ep);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform 0.25s var(--ease-apple);
}
.nav-icons .cart-badge[data-count="0"]::after { display: none; }

/* NAV — Dark variant (for pages without hero) */
.navbar.dark .nav-links a,
.navbar.dark .nav-icons { color: var(--ep); }
.navbar.dark { background: var(--white); border-bottom-color: var(--ep-15); }

/* --- DROPDOWN MEGA-MENU --- */
.dropdown-wrap { position: static; }
.dropdown {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px clamp(24px, 4vw, 48px) 24px;
  border-bottom: 0.5px solid var(--ep-15);
  visibility: hidden;
  opacity: 0;
  z-index: 800;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.dropdown-item {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ep);
  padding: 8px 0;
  border-bottom: 0.5px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s ease;
}
.dropdown-item:hover { border-bottom-color: var(--ep-40); }
.dropdown-item i {
  font-size: 12px;
  color: var(--ep-40);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.25s ease;
}
.dropdown-item:hover i { opacity: 1; transform: translateX(0); }

/* --- MOBILE MENU --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 950;
}
.nav-hamburger span {
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 890;
  padding: 120px 48px 48px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ep);
  padding: 16px 0;
  border-bottom: 0.5px solid var(--ep-15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ep-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg.gradient {
  background: linear-gradient(140deg, #2a2228 0%, #3c3138 45%, #584d54 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 49, 56, 0.6) 0%, transparent 60%);
  z-index: 1;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}
.hero-visual-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, rgba(var(--ep-rgb), 0.12), rgba(var(--ep-rgb), 0.32));
  will-change: transform;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 4vw, 48px) clamp(48px, 6vw, 80px);
  max-width: 560px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  font-size: clamp(40px, 5.5vw, 58px);
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  will-change: transform, opacity;
}
.hero-sub {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 36px;
  max-width: 340px;
}

/* CTA Button */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  will-change: transform;
}
.cta-link--light { color: var(--white); }
.cta-link--dark { color: var(--ep); }
.cta-bar {
  width: 36px;
  height: 0.5px;
  flex-shrink: 0;
  transition: width 0.4s var(--ease-apple);
}
.cta-link--light .cta-bar { background: rgba(255, 255, 255, 0.45); }
.cta-link--dark .cta-bar { background: var(--ep-40); }
.cta-link:hover .cta-bar { width: 64px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  right: clamp(24px, 4vw, 48px);
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 0.5px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
  transform-origin: top center;
}

/* Hero — Page variant (shorter, for inner pages) */
.hero--page {
  height: 50vh;
  min-height: 360px;
  max-height: 500px;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--ep-15);
  background: var(--white);
}
.marquee-track {
  display: flex;
  will-change: transform;
}
.marquee-item {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ep-40);
  padding: 0 28px;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-item b { color: var(--ep); font-weight: 400; }

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 64px clamp(24px, 4vw, 48px);
  border-bottom: 0.5px solid var(--ep-15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: var(--container);
  margin: 0 auto;
}
.stat { text-align: center; padding: 0 24px; }
.stat + .stat { border-left: 0.5px solid var(--ep-15); }
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--ep);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ep-muted);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-py) 0;
}
.section--alt {
  background: var(--ep-8);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  color: var(--ep);
  line-height: 1.2;
}
.section-title em { font-style: italic; }
.section-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ep-40);
  border-bottom: 0.5px solid var(--ep-40);
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.section-link:hover { color: var(--ep); }

/* ============================================
   CATEGORY GRID
   ============================================ */
.category-grid {
  display: grid;
  gap: 5px;
}
.category-grid--trio {
  grid-template-columns: repeat(3, 1fr);
}
.category-grid--full {
  grid-template-columns: repeat(4, 1fr);
}
.category-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.category-card--trio {
  height: clamp(180px, 22vw, 260px);
}
.category-card--medium {
  height: clamp(110px, 13vw, 150px);
}

/* Expanded container — hidden by default */
.category-expanded {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  will-change: max-height, opacity;
}
.category-expanded.is-open {
  margin-top: 5px;
}

/* Toggle button active state */
#toggle-categories.is-active {
  color: var(--ep);
  border-bottom-color: var(--ep);
}
.category-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-apple);
  will-change: transform;
}
.category-card:hover .category-bg { transform: scale(1.06); }
.category-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(transparent, rgba(50, 40, 46, 0.45));
}
.category-card--banner .category-label {
  background: linear-gradient(transparent, rgba(50, 40, 46, 0.35));
  padding: 10px 16px;
}
.category-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
}
.category-card--medium .category-name { font-size: 13px; }
.category-card--banner .category-name { font-size: 12px; }
.category-explore {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-6px);
  opacity: 0;
  transition: all 0.35s var(--ease-apple);
}
.category-card:hover .category-explore {
  transform: translateX(0);
  opacity: 1;
}

/* ============================================
   BIG TEXT
   ============================================ */
.big-text-section {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
  overflow: hidden;
  border-top: 0.5px solid var(--ep-15);
  border-bottom: 0.5px solid var(--ep-15);
  text-align: center;
}
.big-text {
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ep);
  display: inline-block;
  white-space: nowrap;
}
.big-text em { font-style: italic; color: var(--ep-40); }
.big-text-logo {
  height: clamp(50px, 8vw, 90px);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

/* ============================================
   QUOTE
   ============================================ */
.quote-section {
  padding: clamp(64px, 8vw, 100px) clamp(24px, 4vw, 48px);
  text-align: center;
  background: var(--ep);
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  max-width: 560px;
  margin: 0 auto 20px;
}
.quote-attr {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 300;
}

/* ============================================
   NOSOTRAS PREVIEW (Home)
   ============================================ */
.nosotras-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.nosotras-img {
  position: relative;
  overflow: hidden;
  background: #897580;
}
.nosotras-img-inner {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.nosotras-img-inner.placeholder {
  background: linear-gradient(155deg, #7a6c73, #9a8891);
}
.nosotras-content {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nosotras-content .heading-sm { margin-bottom: 18px; }
.nosotras-content .heading-md { margin-bottom: 18px; }
.nosotras-content .body-text { margin-bottom: 28px; }

/* ============================================
   NOSOTRAS PAGE — Scrollytelling
   ============================================ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}
.story-block--reverse { direction: rtl; }
.story-block--reverse > * { direction: ltr; }
.story-image {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}
.story-image-inner {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.story-text {
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text .body-text { margin-top: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding: 0 clamp(24px, 4vw, 48px);
  max-width: var(--container);
  margin: 0 auto;
}
.value-item i {
  font-size: 28px;
  color: var(--ep);
  margin-bottom: 16px;
  display: block;
}
.value-title {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ep);
  margin-bottom: 8px;
}
.value-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-body);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-grid .contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
.contact-grid .contact-card .contact-card-text { flex: 1; }
.contact-grid .contact-card .cta-link { margin-top: auto; padding-top: 16px; }
.contact-grid--duo {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-grid--duo .contact-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-grid--duo .contact-card .contact-card-text { flex: 1; }
.contact-grid--duo .contact-card .cta-link { margin-top: auto; padding-top: 16px; }
.contact-card {
  background: var(--white);
  border: 0.5px solid var(--ep-15);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover {
  border-color: var(--ep-40);
  transform: translateY(-4px);
}
.contact-card i {
  font-size: 28px;
  color: var(--ep);
  margin-bottom: 16px;
  display: block;
}
.contact-card-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ep);
  margin-bottom: 8px;
}
.contact-card-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-body);
  margin-bottom: 20px;
  line-height: 1.6;
}
.contact-card .cta-link--dark { font-size: 10px; }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ep);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ep);
  background: var(--white);
  border: 0.5px solid var(--ep-15);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--ep); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ep-40); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ep);
  border-radius: 6px;
  transition: background 0.3s ease;
}
.form-submit:hover { background: var(--ep-dark); }

.schedule-table {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-collapse: collapse;
}
.schedule-table td {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 300;
  color: var(--ep);
  border-bottom: 0.5px solid var(--ep-15);
}
.schedule-table td:last-child {
  text-align: right;
  color: var(--ep-40);
}

/* ============================================
   RETURNS PAGE
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--ep-15);
  margin-bottom: 16px;
  line-height: 1;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ep-8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon i {
  font-size: 22px;
  color: var(--ep);
}
.step-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ep);
  margin-bottom: 8px;
}
.step-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-body);
  line-height: 1.7;
}
.step-connector {
  position: absolute;
  top: 80px;
  right: -20px;
  width: 40px;
  height: 0.5px;
  background: var(--ep-15);
}

.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 0.5px solid var(--ep-15);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ep);
  text-align: left;
}
.faq-question i {
  font-size: 16px;
  color: var(--ep-40);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ep-body);
  line-height: 1.7;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease-apple);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn i { font-size: 28px; color: var(--white); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ep-8);
  padding: 56px clamp(24px, 4vw, 48px) 36px;
  border-top: 0.5px solid var(--ep-15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-logo {
  display: block;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 64px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-40);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social i { font-size: 19px; color: var(--ep-40); cursor: pointer; transition: color 0.3s ease; }
.footer-social i:hover { color: var(--ep); }
.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ep);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-40);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--ep); }
.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 8px;
}
.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ep);
  border: 0.5px solid var(--ep-15);
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: var(--white);
}
.footer-newsletter input::placeholder { color: var(--ep-40); }
.footer-newsletter button {
  padding: 10px 18px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ep);
  border-radius: 0 4px 4px 0;
  transition: background 0.3s ease;
}
.footer-newsletter button:hover { background: var(--ep-dark); }
.footer-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 0.5px solid var(--ep-15);
  font-size: 11px;
  font-weight: 300;
  color: var(--ep-40);
  display: flex;
  justify-content: space-between;
}
.footer-bottom a { transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--ep); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 0.5px solid var(--ep-15);
  padding: 20px clamp(24px, 4vw, 48px);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 30px rgba(60, 49, 56, 0.06);
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
}
.cookie-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-body);
  line-height: 1.6;
  flex: 1;
}
.cookie-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}
.cookie-btn--accept {
  background: var(--ep);
  color: var(--white);
}
.cookie-btn--accept:hover { background: var(--ep-dark); }
.cookie-btn--reject {
  background: transparent;
  color: var(--ep);
  border: 0.5px solid var(--ep-15);
}
.cookie-btn--reject:hover { background: var(--ep-8); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ============================================
   CATALOG PAGE
   ============================================ */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.catalog-filter {
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ep-muted);
  border: 0.5px solid var(--ep-15);
  border-radius: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.catalog-filter:hover { border-color: var(--ep-40); color: var(--ep); }
.catalog-filter.active {
  background: var(--ep);
  color: var(--white);
  border-color: var(--ep);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px 16px;
}
.product-card {
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--ep-8);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-apple);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img .product-card-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* ── OUT OF STOCK ── */
.product-card.is-out-of-stock {
  pointer-events: none;
  cursor: default;
}
.product-card.is-out-of-stock .product-card-img img {
  opacity: 0.4;
  filter: grayscale(25%);
  transition: none;
}
.product-card.is-out-of-stock .product-card-img::after {
  content: 'No disponible';
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.93);
  color: var(--ep);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  z-index: 3;
}
.product-card.is-out-of-stock .product-card-name,
.product-card.is-out-of-stock .product-card-price {
  opacity: 0.45;
}

.product-card:hover .product-card-img-hover { opacity: 1; }
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ep);
  color: var(--white);
  border-radius: 3px;
}
.product-card-colors {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
}
.product-card-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.product-card-info { padding: 0 2px; }
.product-card-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--ep);
  margin-bottom: 4px;
}
.product-card-price {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-body);
}
.product-count {
  font-size: 13px;
  font-weight: 300;
  color: var(--ep-muted);
  margin-bottom: 24px;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}
.product-gallery { position: relative; }
.product-main-img {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--ep-8);
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  gap: 8px;
}
.product-thumb {
  width: 72px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
  opacity: 0.6;
  background: var(--ep-8);
}
.product-thumb.active { border-color: var(--ep); opacity: 1; }
.product-thumb:hover { opacity: 1; }
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}
.product-breadcrumb {
  font-size: 11px;
  color: var(--ep-muted);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-breadcrumb a {
  color: var(--ep-muted);
  transition: color 0.2s;
}
.product-breadcrumb a:hover { color: var(--ep); }
.product-breadcrumb span { color: var(--ep-40); }
.product-name {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--ep);
  margin-bottom: 8px;
}
.product-price {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--ep);
  margin-bottom: 20px;
}
.product-stock-count {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #b05a1a;
  margin: -12px 0 16px;
  min-height: 1em;
}
.product-card-stock {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #b05a1a;
  margin-top: 3px;
}
.product-description {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ep-muted);
  margin-bottom: 28px;
  max-width: 420px;
}
.product-option-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ep);
  margin-bottom: 10px;
}
.product-option-label span { font-weight: 300; color: var(--ep-muted); text-transform: none; letter-spacing: 0; }
.product-color-select {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 44px;
  padding: 0 40px 0 14px;
  margin-bottom: 28px;
  border: 0.5px solid var(--ep-15);
  border-radius: 2px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ep);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-color-select:hover { border-color: var(--ep-40); }
.product-color-select:focus { outline: none; border-color: var(--ep); }
.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.product-size-btn {
  min-width: 48px;
  height: 44px;
  border: 0.5px solid var(--ep-15);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-size-btn:hover { border-color: var(--ep); }
.product-size-btn.active {
  background: var(--ep);
  color: var(--white);
  border-color: var(--ep);
}
.product-size-btn.out {
  color: var(--ep-40);
  text-decoration: line-through;
  cursor: default;
  opacity: 0.4;
}
.product-add-btn {
  width: 100%;
  padding: 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ep);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.15s ease;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.product-actions .product-wa-btn { margin-bottom: 0; }
.product-add-btn:hover { background: var(--ep-dark); }
.product-add-btn:active { transform: scale(0.98); }
.product-add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.product-wa-btn {
  width: 100%;
  padding: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #25D366;
  background: transparent;
  border: 0.5px solid #25D366;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease;
  text-decoration: none;
}
.product-wa-btn:hover { background: rgba(37,211,102,0.06); }
.product-wa-btn i { font-size: 18px; }
.product-shipping-info {
  padding-top: 24px;
  border-top: 0.5px solid var(--ep-15);
}
.product-shipping-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--ep-muted);
}
.product-shipping-item i { font-size: 16px; color: var(--ep); }
.related-section {
  padding: var(--section-py) 0;
}
.related-section .container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px 14px;
}

@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 950;
  visibility: hidden;
  opacity: 0;
}
.search-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 24px) clamp(24px, 4vw, 48px) 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-input {
  flex: 1;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--ep);
  border: none;
  border-bottom: 1px solid var(--ep-15);
  padding: 12px 0;
  background: transparent;
  outline: none;
  caret-color: var(--ep);
}
.search-input::placeholder { color: var(--ep-40); }
.search-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ep-40);
  transition: background 0.2s, color 0.2s;
}
.search-close:hover { background: var(--ep-8); color: var(--ep); }
.search-results {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px) 32px;
  max-height: 50vh;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--ep-15);
  color: var(--ep);
  cursor: pointer;
  transition: padding-left 0.3s var(--ease-apple);
  text-decoration: none;
}
.search-result-item:hover { padding-left: 10px; }
.search-result-item span { font-family: var(--serif); font-size: 16px; }
.search-result-item i { color: var(--ep-40); font-size: 14px; }
.search-no-results {
  padding: 24px 0;
  font-size: 14px;
  color: var(--ep-muted);
  text-align: center;
}

/* ============================================
   CART PANEL
   ============================================ */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(60, 49, 56, 0.35);
  z-index: 960;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 970;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  box-shadow: -8px 0 40px rgba(60, 49, 56, 0.08);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 0.5px solid var(--ep-15);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ep);
}
.cart-count {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ep-muted);
  font-weight: 300;
  margin-left: 8px;
}
.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--ep-40);
  transition: background 0.2s, color 0.2s;
}
.cart-close:hover { background: var(--ep-8); color: var(--ep); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  text-align: center;
}
.cart-empty-icon { font-size: 48px; color: var(--ep-15); }
.cart-empty p { font-size: 15px; color: var(--ep-muted); margin: 0; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--ep-15);
}
.cart-item-img {
  width: 72px;
  height: 90px;
  border-radius: 4px;
  background: var(--ep-8);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; }
.cart-item-name {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ep);
  margin-bottom: 3px;
}
.cart-item-variant {
  font-size: 12px;
  color: var(--ep-muted);
  margin-bottom: auto;
}
.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.cart-item-price { font-size: 14px; color: var(--ep); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid var(--ep-15);
  border-radius: 4px;
  padding: 2px;
}
.cart-item-qty button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ep-muted);
  border-radius: 3px;
  transition: background 0.15s;
}
.cart-item-qty button:hover { background: var(--ep-8); }
.cart-item-qty span { font-size: 13px; min-width: 18px; text-align: center; color: var(--ep); }
.cart-footer {
  padding: 20px 24px;
  border-top: 0.5px solid var(--ep-15);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--ep);
}
.cart-subtotal span:last-child { font-family: var(--serif); }
.cart-shipping-note {
  font-size: 11px;
  color: var(--ep-muted);
  margin-bottom: 16px;
}
.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ep);
  border-radius: 6px;
  transition: background 0.3s ease;
}
.cart-checkout-btn:hover { background: var(--ep-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links, .nav-icons .ti-search, .nav-icons .ti-user { display: none; }
  .nav-hamburger { display: flex; }
  .dropdown { display: none; }

  .hero-visual { width: 100%; opacity: 0.3; }
  .hero-title .line { font-size: clamp(32px, 8vw, 44px); }

  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat + .stat { border-left: none; border-top: 0.5px solid var(--ep-15); padding-top: 32px; }

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

  .nosotras-preview,
  .story-block,
  .story-block--reverse { grid-template-columns: 1fr; }
  .nosotras-img,
  .story-image { min-height: 250px; }

  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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