/**
 * SALACOR - Custom CSS
 * Sistema de diseño propio sin Tailwind
 */

/* ============================================
   PAGE LAYOUT - Footer siempre abajo
   ============================================ */
html, body {
  min-height: 100%;
}

.page-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Body base styles */
body {
  background-color: var(--color-background);
  color: var(--color-gray-800);
  margin: 0;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colores corporativos */
  --color-primary: #033168;
  --color-primary-light: #3a8eb2;
  --color-background: #eeeeee;

  /* Grises */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Header offset para scroll y padding */
  --header-offset: 70px;

  /* Estados */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Spacing */
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;

  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;

  /* Transiciones */
  --transition-fast: 150ms;
  --transition-base: 200ms;
  --transition-slow: 300ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-x: hidden;
}

/* Scroll margin for hash navigation - accounts for fixed header */
[id]:is(#nosotros, #contacto, #productos, #servicios),
section[id],
div[id^="section-"] {
  scroll-margin-top: var(--header-offset);
}

@media (min-width: 768px) {
  :root {
    --header-offset: 80px;
  }
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: var(--color-background);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'ITC Motter Corpus Condensed', 'Cooper BT', 'Pacifico', Arial, sans-serif;
  color: var(--color-primary);
  margin: 0;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
}

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

/* Prevenir scroll horizontal */
html, body {
  overflow-x: hidden !important;
}

/* ============================================
   UTILITIES - Display
   ============================================ */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline-flex { display: inline-flex; }
.d-inline-block { display: inline-block; }

/* ============================================
   UTILITIES - Flexbox
   ============================================ */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

/* ============================================
   UTILITIES - Gap
   ============================================ */
.gap-0 { gap: 0; }
.gap-1 { gap: var(--spacing-1); }
.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }
.gap-4 { gap: var(--spacing-4); }
.gap-5 { gap: var(--spacing-5); }
.gap-6 { gap: var(--spacing-6); }
.gap-8 { gap: var(--spacing-8); }

/* ============================================
   UTILITIES - Margin
   ============================================ */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-6 { margin-top: var(--spacing-6); }
.mt-8 { margin-top: var(--spacing-8); }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: var(--spacing-12); }
.mt-16 { margin-top: var(--spacing-16); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: var(--spacing-1); }
.ml-2 { margin-left: var(--spacing-2); }
.ml-3 { margin-left: var(--spacing-3); }
.ml-4 { margin-left: var(--spacing-4); }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: var(--spacing-1); }
.mr-2 { margin-right: var(--spacing-2); }
.mr-3 { margin-right: var(--spacing-3); }
.mr-4 { margin-right: var(--spacing-4); }
.mr-auto { margin-right: auto; }

.-mt-2 { margin-top: -0.5rem; }
.-mt-4 { margin-top: -1rem; }
.-mt-6 { margin-top: -1.5rem; }
.-mt-8 { margin-top: -2rem; }
.-mt-12 { margin-top: -3rem; }

/* ============================================
   UTILITIES - Padding
   ============================================ */
.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }
.p-4 { padding: var(--spacing-4); }
.p-5 { padding: var(--spacing-5); }
.p-6 { padding: var(--spacing-6); }
.p-8 { padding: var(--spacing-8); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: var(--spacing-1); padding-right: var(--spacing-1); }
.px-2 { padding-left: var(--spacing-2); padding-right: var(--spacing-2); }
.px-3 { padding-left: var(--spacing-3); padding-right: var(--spacing-3); }
.px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
.px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }
.px-8 { padding-left: var(--spacing-8); padding-right: var(--spacing-8); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--spacing-1); padding-bottom: var(--spacing-1); }
.py-2 { padding-top: var(--spacing-2); padding-bottom: var(--spacing-2); }
.py-3 { padding-top: var(--spacing-3); padding-bottom: var(--spacing-3); }
.py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
.py-6 { padding-top: var(--spacing-6); padding-bottom: var(--spacing-6); }
.py-8 { padding-top: var(--spacing-8); padding-bottom: var(--spacing-8); }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: var(--spacing-12); padding-bottom: var(--spacing-12); }
.py-16 { padding-top: var(--spacing-16); padding-bottom: var(--spacing-16); }

.pt-0 { padding-top: 0; }
.pt-2 { padding-top: var(--spacing-2); }
.pt-4 { padding-top: var(--spacing-4); }
.pt-6 { padding-top: var(--spacing-6); }
.pt-8 { padding-top: var(--spacing-8); }

.pb-0 { padding-bottom: 0; }
.pb-2 { padding-bottom: var(--spacing-2); }
.pb-4 { padding-bottom: var(--spacing-4); }
.pb-6 { padding-bottom: var(--spacing-6); }
.pb-8 { padding-bottom: var(--spacing-8); }

/* ============================================
   UTILITIES - Width & Height
   ============================================ */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-screen-sm { max-width: 640px; }
.max-w-screen-md { max-width: 768px; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-xl { max-width: 1280px; }
.max-w-full { max-width: 100%; }

.min-w-0 { min-width: 0; }
.min-w-\[220px\] { min-width: 220px; }

.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-auto { height: auto; }
.h-0 { height: 0; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-90 { height: 22.5rem; }
.h-96 { height: 24rem; }

.min-h-screen { min-height: 100vh; }
.min-h-0 { min-height: 0; }
.min-h-\[3\.5rem\] { min-height: 3.5rem; }
.min-h-\[200px\] { min-height: 200px; }
.min-h-\[400px\] { min-height: 400px; }

/* ============================================
   UTILITIES - Position
   ============================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-2 { top: 0.5rem; right: 0.5rem; bottom: 0.5rem; left: 0.5rem; }
.inset-4 { top: 1rem; right: 1rem; bottom: 1rem; left: 1rem; }

.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-6 { top: 1.5rem; }
.top-8 { top: 2rem; }
.top-1\/2 { top: 50%; }
.top-1\/3 { top: 33.333333%; }
.top-2\/3 { top: 66.666667%; }
.top-full { top: 100%; }

.right-0 { right: 0; }
.right-1 { right: 0.25rem; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.right-8 { right: 2rem; }
.right-1\/2 { right: 50%; }
.right-full { right: 100%; }

.bottom-0 { bottom: 0; }
.bottom-1 { bottom: 0.25rem; }
.bottom-2 { bottom: 0.5rem; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.bottom-1\/2 { bottom: 50%; }
.bottom-full { bottom: 100%; }

.left-0 { left: 0; }
.left-1 { left: 0.25rem; }
.left-2 { left: 0.5rem; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.left-8 { left: 2rem; }
.left-1\/2 { left: 50%; }
.left-full { left: 100%; }

.-top-2 { top: -0.5rem; }
.-top-4 { top: -1rem; }
.-top-6 { top: -1.5rem; }
.-top-8 { top: -2rem; }
.-top-12 { top: -3rem; }
.-top-16 { top: -4rem; }

.-right-2 { right: -0.5rem; }
.-right-4 { right: -1rem; }
.-right-6 { right: -1.5rem; }
.-right-8 { right: -2rem; }

.-bottom-2 { bottom: -0.5rem; }
.-bottom-4 { bottom: -1rem; }
.-bottom-6 { bottom: -1.5rem; }
.-bottom-8 { bottom: -2rem; }

.-left-2 { left: -0.5rem; }
.-left-4 { left: -1rem; }
.-left-6 { left: -1.5rem; }
.-left-8 { left: -2rem; }

.-inset-2 { top: -0.5rem; right: -0.5rem; bottom: -0.5rem; left: -0.5rem; }

/* ============================================
   UTILITIES - Z-Index
   ============================================ */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }
.z-9998 { z-index: 9998; }
.z-9999 { z-index: 9999; }
.z-10000 { z-index: 10000; }

/* ============================================
   UTILITIES - Border
   ============================================ */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-r-2 { border-right-width: 2px; border-right-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }

.border-white { border-color: var(--color-white); }
.border-gray-50 { border-color: var(--color-gray-50); }
.border-gray-100 { border-color: var(--color-gray-100); }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }
.border-gray-400 { border-color: var(--color-gray-400); }
.border-gray-500 { border-color: var(--color-gray-500); }
.border-gray-600 { border-color: var(--color-gray-600); }
.border-gray-700 { border-color: var(--color-gray-700); }
.border-gray-800 { border-color: var(--color-gray-800); }
.border-gray-900 { border-color: var(--color-gray-900); }
.border-primary { border-color: var(--color-primary); }
.border-primary-light { border-color: var(--color-primary-light); }
.border-transparent { border-color: transparent; }

/* ============================================
   UTILITIES - Border Radius
   ============================================ */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-t { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.rounded-t-lg { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.rounded-t-xl { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.rounded-t-2xl { border-radius: var(--radius-2xl) var(--radius-2xl) 0 0; }
.rounded-t-3xl { border-radius: var(--radius-3xl) var(--radius-3xl) 0 0; }
.rounded-b { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.rounded-b-lg { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.rounded-b-xl { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
.rounded-b-2xl { border-radius: 0 0 var(--radius-2xl) var(--radius-2xl); }
.rounded-b-3xl { border-radius: 0 0 var(--radius-3xl) var(--radius-3xl); }
.rounded-l { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.rounded-r { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

/* ============================================
   UTILITIES - Shadow
   ============================================ */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }

/* ============================================
   UTILITIES - Typography
   ============================================ */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }

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

.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.whitespace-pre-line { white-space: pre-line; }

.break-normal { overflow-wrap: normal; word-break: normal; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* ============================================
   UTILITIES - Colors
   ============================================ */
.text-white { color: var(--color-white); }
.text-black { color: #000; }
.text-transparent { color: transparent; }
.text-gray-50 { color: var(--color-gray-50); }
.text-gray-100 { color: var(--color-gray-100); }
.text-gray-200 { color: var(--color-gray-200); }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-800 { color: var(--color-gray-800); }
.text-gray-900 { color: var(--color-gray-900); }
.text-primary { color: var(--color-primary); }
.text-primary-light { color: var(--color-primary-light); }
.text-blue-100 { color: #ebf8ff; }
.text-blue-200 { color: #bee3f8; }
.text-blue-300 { color: #90cdf4; }
.text-blue-400 { color: #63b3ed; }
.text-blue-500 { color: #4299e1; }
.text-blue-600 { color: #3182ce; }
.text-blue-700 { color: #2b6cb0; }
.text-blue-800 { color: #2c5282; }
.text-blue-900 { color: #1e3a8a; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-green-400 { color: #68d391; }
.text-green-500 { color: #48bb78; }
.text-green-600 { color: #38a169; }
.text-red-400 { color: #fc8181; }
.text-red-500 { color: #f56565; }
.text-red-600 { color: #e53e3e; }
.text-yellow-400 { color: #f6e05e; }
.text-yellow-500 { color: #ecc94b; }
.text-purple-400 { color: #b794f4; }
.text-purple-500 { color: #9f7aea; }
.text-purple-600 { color: #805ad5; }

.bg-white { background-color: var(--color-white); }
.bg-black { background-color: #000; }
.bg-transparent { background-color: transparent; }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-gray-200 { background-color: var(--color-gray-200); }
.bg-gray-300 { background-color: var(--color-gray-300); }
.bg-gray-400 { background-color: var(--color-gray-400); }
.bg-gray-500 { background-color: var(--color-gray-500); }
.bg-gray-600 { background-color: var(--color-gray-600); }
.bg-gray-700 { background-color: var(--color-gray-700); }
.bg-gray-800 { background-color: var(--color-gray-800); }
.bg-gray-900 { background-color: var(--color-gray-900); }
.bg-primary { background-color: var(--color-primary); }
.bg-primary-light { background-color: var(--color-primary-light); }
.bg-blue-50 { background-color: #ebf8ff; }
.bg-blue-100 { background-color: #bee3f8; }
.bg-blue-200 { background-color: #90cdf4; }
.bg-blue-300 { background-color: #63b3ed; }
.bg-blue-400 { background-color: #4299e1; }
.bg-blue-500 { background-color: #3182ce; }
.bg-blue-600 { background-color: #2b6cb0; }
.bg-blue-700 { background-color: #2c5282; }
.bg-blue-800 { background-color: #1e3a8a; }
.bg-blue-900 { background-color: #1a365d; }
.bg-green-50 { background-color: #f0fff4; }
.bg-green-100 { background-color: #c6f6d5; }
.bg-green-400 { background-color: #68d391; }
.bg-green-500 { background-color: #48bb78; }
.bg-green-600 { background-color: #38a169; }
.bg-red-50 { background-color: #fff5f5; }
.bg-red-100 { background-color: #fed7d7; }
.bg-red-400 { background-color: #fc8181; }
.bg-red-500 { background-color: #f56565; }
.bg-red-600 { background-color: #e53e3e; }
.bg-yellow-100 { background-color: #fefcbf; }
.bg-yellow-400 { background-color: #f6e05e; }
.bg-yellow-500 { background-color: #ecc94b; }
.bg-amber-100 { background-color: #fffbeb; }
.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-orange-400 { background-color: #fb923c; }
.bg-orange-500 { background-color: #f97316; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-100 { background-color: #e9d8fd; }
.bg-purple-400 { background-color: #b794f4; }
.bg-purple-500 { background-color: #9f7aea; }
.bg-purple-600 { background-color: #805ad5; }
.bg-emerald-400 { background-color: #34d399; }
.bg-emerald-500 { background-color: #10b981; }
.bg-indigo-50 { background-color: #eef2ff; }

/* Backgrounds corporativos */
.bg-corp-blue-dark { background-color: var(--color-primary) !important; }
.bg-corp-blue-light { background-color: var(--color-primary-light) !important; }
.bg-corp-gray { background-color: var(--color-background) !important; }

/* ============================================
   UTILITIES - Gradient Backgrounds
   ============================================ */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}
.bg-gradient-to-tl {
  background-image: linear-gradient(to top left, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}
.bg-gradient-to-bl {
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops, var(--color-primary), var(--color-primary-light)));
}

.from-primary { --tw-gradient-from: var(--color-primary); --tw-gradient-to: rgba(3, 49, 104, 0); }
.to-primary-light { --tw-gradient-to: var(--color-primary-light); }
.from-gray-200 { --tw-gradient-from: var(--color-gray-200); --tw-gradient-to: rgba(229, 231, 235, 0); }
.to-gray-300 { --tw-gradient-to: var(--color-gray-300); }
.from-gray-300 { --tw-gradient-from: var(--color-gray-300); --tw-gradient-to: rgba(209, 213, 219, 0); }
.to-gray-400 { --tw-gradient-to: var(--color-gray-400); }
.from-blue-50 { --tw-gradient-from: #eff6ff; --tw-gradient-to: rgba(239, 246, 255, 0); }
.to-indigo-50 { --tw-gradient-to: #eef2ff; }
.from-yellow-400 { --tw-gradient-from: #fbbf24; --tw-gradient-to: rgba(251, 191, 36, 0); }
.to-orange-400 { --tw-gradient-to: #fb923c; }
.to-orange-500 { --tw-gradient-to: #f97316; }
.from-emerald-400 { --tw-gradient-from: #34d399; --tw-gradient-to: rgba(52, 211, 153, 0); }
.via-blue-500 { --tw-gradient-to: rgba(66, 153, 225, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-purple-600 { --tw-gradient-to: #805ad5; }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-to: transparent; }
.via-gray-300 { --tw-gradient-to: rgba(209, 213, 219, 0); }

/* ============================================
   UTILITIES - Overflow
   ============================================ */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

/* ============================================
   UTILITIES - Cursor
   ============================================ */
.cursor-auto { cursor: auto; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-grab { cursor: grab; }
.cursor-grabbing { cursor: grabbing; }

/* ============================================
   UTILITIES - Pointer Events
   ============================================ */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ============================================
   UTILITIES - User Select
   ============================================ */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

/* ============================================
   UTILITIES - Opacity
   ============================================ */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

/* ============================================
   UTILITIES - Visibility
   ============================================ */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* ============================================
   UTILITIES - Transitions
   ============================================ */
.transition-none { transition: none; }
.transition { transition: color 0.15s, background-color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s, opacity 0.15s; }
.transition-all { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-opacity { transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }

.duration-0 { transition-duration: 0s; }
.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.ease-spring { transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

/* ============================================
   UTILITIES - Transforms
   ============================================ */
.transform { transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scale(1); }
.transform-gpu { transform: translate3d(0, 0, 0); }

.scale-0 { transform: scale(0); }
.scale-50 { transform: scale(0.5); }
.scale-75 { transform: scale(0.75); }
.scale-90 { transform: scale(0.9); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-125 { transform: scale(1.25); }
.scale-150 { transform: scale(1.5); }

.scale-x-0 { transform: scaleX(0); }
.scale-x-50 { transform: scaleX(0.5); }
.scale-x-100 { transform: scaleX(1); }
.scale-x-105 { transform: scaleX(1.05); }

.scale-y-0 { transform: scaleY(0); }
.scale-y-50 { transform: scaleY(0.5); }
.scale-y-100 { transform: scaleY(1); }
.scale-y-105 { transform: scaleY(1.05); }

.rotate-0 { transform: rotate(0deg); }
.rotate-45 { transform: rotate(45deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-135 { transform: rotate(135deg); }
.rotate-180 { transform: rotate(180deg); }
.rotate-270 { transform: rotate(270deg); }
.-rotate-45 { transform: rotate(-45deg); }
.-rotate-90 { transform: rotate(-90deg); }
.-rotate-180 { transform: rotate(-180deg); }

.translate-x-0 { transform: translateX(0); }
.translate-x-1 { transform: translateX(0.25rem); }
.translate-x-2 { transform: translateX(0.5rem); }
.translate-x-3 { transform: translateX(0.75rem); }
.translate-x-4 { transform: translateX(1rem); }
.translate-x-5 { transform: translateX(1.25rem); }
.translate-x-6 { transform: translateX(1.5rem); }
.translate-x-8 { transform: translateX(2rem); }
.translate-x-full { transform: translateX(100%); }
.translate-x-1\/2 { transform: translateX(50%); }
.translate-x-1\/3 { transform: translateX(33.333333%); }
.translate-x-2\/3 { transform: translateX(66.666667%); }
.-translate-x-1 { transform: translateX(-0.25rem); }
.-translate-x-2 { transform: translateX(-0.5rem); }
.-translate-x-3 { transform: translateX(-0.75rem); }
.-translate-x-4 { transform: translateX(-1rem); }
.-translate-x-5 { transform: translateX(-1.25rem); }
.-translate-x-6 { transform: translateX(-1.5rem); }
.-translate-x-8 { transform: translateX(-2rem); }
.-translate-x-full { transform: translateX(-100%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-x-1\/3 { transform: translateX(-33.333333%); }
.-translate-x-2\/3 { transform: translateX(-66.666667%); }

.translate-y-0 { transform: translateY(0); }
.translate-y-1 { transform: translateY(0.25rem); }
.translate-y-2 { transform: translateY(0.5rem); }
.translate-y-3 { transform: translateY(0.75rem); }
.translate-y-4 { transform: translateY(1rem); }
.translate-y-5 { transform: translateY(1.25rem); }
.translate-y-6 { transform: translateY(1.5rem); }
.translate-y-8 { transform: translateY(2rem); }
.translate-y-full { transform: translateY(100%); }
.translate-y-1\/2 { transform: translateY(50%); }
.translate-y-1\/3 { transform: translateY(33.333333%); }
.translate-y-2\/3 { transform: translateY(66.666667%); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-y-3 { transform: translateY(-0.75rem); }
.-translate-y-4 { transform: translateY(-1rem); }
.-translate-y-6 { transform: translateY(-1.5rem); }
.-translate-y-8 { transform: translateY(-2rem); }
.-translate-y-12 { transform: translateY(-3rem); }
.-translate-y-16 { transform: translateY(-4rem); }
.-translate-y-full { transform: translateY(-100%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.-skew-x-12 { transform: skewX(-12deg); }

/* ============================================
   UTILITIES - Object Fit
   ============================================ */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }
.object-none { object-fit: none; }
.object-scale-down { object-fit: scale-down; }

/* ============================================
   UTILITIES - List Styles
   ============================================ */
.list-none { list-style: none; }
.list-disc { list-style: disc; }
.list-decimal { list-style: decimal; }

/* ============================================
   UTILITIES - Lists
   ============================================ */
.list-none { list-style: none; padding-left: 0; }
.list-disc { list-style: disc; padding-left: 1.5rem; }
.list-decimal { list-style: decimal; padding-left: 1.5rem; }

/* ============================================
   UTILITIES - Backdrop Filter
   ============================================ */
.backdrop-blur-none { backdrop-filter: blur(0); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); }
.backdrop-blur-3xl { backdrop-filter: blur(64px); }

/* ============================================
   UTILITIES - Miscellaneous
   ============================================ */
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-16-9 { aspect-ratio: 16 / 9; }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-full { grid-column: 1 / -1; }

.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.row-span-3 { grid-row: span 3 / span 3; }
.row-span-full { grid-row: 1 / -1; }

.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

.justify-self-start { justify-self: start; }
.justify-self-center { justify-self: center; }
.justify-self-end { justify-self: end; }
.justify-self-stretch { justify-self: stretch; }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (min-width: 640px) {
  .sm\:d-none { display: none; }
  .sm\:d-block { display: block; }
  .sm\:d-flex { display: flex; }
  .sm\:d-grid { display: grid; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-col { flex-direction: column; }
  .sm\:items-center { align-items: center; }
  .sm\:items-start { align-items: flex-start; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:justify-center { justify-content: center; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:p-4 { padding: var(--spacing-4); }
  .sm\:p-6 { padding: var(--spacing-6); }
  .sm\:px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
  .sm\:px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }
  .sm\:py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
  .sm\:mt-0 { margin-top: 0; }
  .sm\:mt-4 { margin-top: var(--spacing-4); }
  .sm\:mt-6 { margin-top: var(--spacing-6); }
  .sm\:mb-0 { margin-bottom: 0; }
  .sm\:w-auto { width: auto; }
  .sm\:w-1\/2 { width: 50%; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:d-none { display: none; }
  .md\:d-block { display: block; }
  .md\:d-flex { display: flex; }
  .md\:d-grid { display: grid; }
  .md\:d-inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:flex-nowrap { flex-wrap: nowrap; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-end { align-items: flex-end; }
  .md\:items-stretch { align-items: stretch; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-center { justify-content: center; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:flex-1 { flex: 1 1 0%; }
  .md\:flex-grow { flex-grow: 1; }
  .md\:gap-0 { gap: 0; }
  .md\:gap-2 { gap: var(--spacing-2); }
  .md\:gap-4 { gap: var(--spacing-4); }
  .md\:gap-6 { gap: var(--spacing-6); }
  .md\:gap-8 { gap: var(--spacing-8); }
  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:font-medium { font-weight: 500; }
  .md\:font-semibold { font-weight: 600; }
  .md\:font-bold { font-weight: 700; }
  .md\:p-0 { padding: 0; }
  .md\:p-2 { padding: var(--spacing-2); }
  .md\:p-4 { padding: var(--spacing-4); }
  .md\:p-6 { padding: var(--spacing-6); }
  .md\:p-8 { padding: var(--spacing-8); }
  .md\:px-0 { padding-left: 0; padding-right: 0; }
  .md\:px-2 { padding-left: var(--spacing-2); padding-right: var(--spacing-2); }
  .md\:px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
  .md\:px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }
  .md\:px-8 { padding-left: var(--spacing-8); padding-right: var(--spacing-8); }
  .md\:py-0 { padding-top: 0; padding-bottom: 0; }
  .md\:py-2 { padding-top: var(--spacing-2); padding-bottom: var(--spacing-2); }
  .md\:py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
  .md\:py-6 { padding-top: var(--spacing-6); padding-bottom: var(--spacing-6); }
  .md\:py-8 { padding-top: var(--spacing-8); padding-bottom: var(--spacing-8); }
  .md\:py-12 { padding-top: var(--spacing-12); padding-bottom: var(--spacing-12); }
  .md\:py-16 { padding-top: var(--spacing-16); padding-bottom: var(--spacing-16); }
  .md\:pt-0 { padding-top: 0; }
  .md\:pt-6 { padding-top: var(--spacing-6); }
  .md\:pt-8 { padding-top: var(--spacing-8); }
  .md\:pb-0 { padding-bottom: 0; }
  .md\:pb-6 { padding-bottom: var(--spacing-6); }
  .md\:pb-8 { padding-bottom: var(--spacing-8); }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-2 { margin-top: var(--spacing-2); }
  .md\:mt-4 { margin-top: var(--spacing-4); }
  .md\:mt-6 { margin-top: var(--spacing-6); }
  .md\:mt-8 { margin-top: var(--spacing-8); }
  .md\:mt-10 { margin-top: 2.5rem; }
  .md\:mt-12 { margin-top: var(--spacing-12); }
  .md\:mt-16 { margin-top: var(--spacing-16); }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-2 { margin-bottom: var(--spacing-2); }
  .md\:mb-4 { margin-bottom: var(--spacing-4); }
  .md\:mb-6 { margin-bottom: var(--spacing-6); }
  .md\:mb-8 { margin-bottom: var(--spacing-8); }
  .md\:mb-12 { margin-bottom: var(--spacing-12); }
  .md\:ml-auto { margin-left: auto; }
  .md\:mr-auto { margin-right: auto; }
  .md\:mx-auto { margin-left: auto; margin-right: auto; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-1\/4 { width: 25%; }
  .md\:w-3\/4 { width: 75%; }
  .md\:w-full { width: 100%; }
  .md\:max-w-sm { max-width: 24rem; }
  .md\:max-w-md { max-width: 28rem; }
  .md\:max-w-lg { max-width: 32rem; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }
  .md\:max-w-4xl { max-width: 56rem; }
  .md\:max-w-5xl { max-width: 64rem; }
  .md\:max-w-6xl { max-width: 72rem; }
  .md\:max-w-7xl { max-width: 80rem; }
  .md\:max-w-screen-md { max-width: 768px; }
  .md\:max-w-screen-lg { max-width: 1024px; }
  .md\:max-h-none { max-height: none; }
  .md\:max-h-\[25rem\] { max-height: 25rem; }
  .md\:min-h-\[400px\] { min-height: 400px; }
  .md\:h-auto { height: auto; }
  .md\:h-12 { height: 3rem; }
  .md\:h-16 { height: 4rem; }
  .md\:h-20 { height: 5rem; }
  .md\:h-40 { height: 10rem; }
  .md\:h-56 { height: 14rem; }
  .md\:h-64 { height: 16rem; }
  .md\:h-80 { height: 20rem; }
  .md\:h-screen { height: 100vh; }
  .md\:text-left { text-align: left; }
  .md\:text-center { text-align: center; }
  .md\:text-right { text-align: right; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:border-0 { border-width: 0; }
  .md\:rounded-none { border-radius: 0; }
  .md\:rounded-lg { border-radius: var(--radius-lg); }
  .md\:rounded-xl { border-radius: var(--radius-xl); }
  .md\:rounded-2xl { border-radius: var(--radius-2xl); }
  .md\:rounded-3xl { border-radius: var(--radius-3xl); }
  .md\:rounded-full { border-radius: var(--radius-full); }
  .md\:shadow-sm { box-shadow: var(--shadow-sm); }
  .md\:shadow { box-shadow: var(--shadow-md); }
  .md\:shadow-md { box-shadow: var(--shadow-md); }
  .md\:shadow-lg { box-shadow: var(--shadow-lg); }
  .md\:shadow-xl { box-shadow: var(--shadow-xl); }
  .md\:shadow-none { box-shadow: none; }
  .md\:overflow-visible { overflow: visible; }
  .md\:overflow-x-auto { overflow-x: auto; }
  .md\:static { position: static; }
  .md\:fixed { position: fixed; }
  .md\:relative { position: relative; }
  .md\:absolute { position: absolute; }
  .md\:sticky { position: sticky; }
  .md\:inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
  .md\:top-auto { top: auto; }
  .md\:right-auto { right: auto; }
  .md\:bottom-auto { bottom: auto; }
  .md\:left-auto { left: auto; }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-6 { grid-column: span 6 / span 6; }
  .md\:col-span-full { grid-column: 1 / -1; }
  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .md\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .md\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .md\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .md\:grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .md\:grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:grid-cols-none { grid-template-columns: none; }
  .md\:row-span-2 { grid-row: span 2 / span 2; }
  .md\:flex-grow { flex-grow: 1; }
  .md\:flex-shrink-0 { flex-shrink: 0; }
  .md\:opacity-100 { opacity: 1; }
  .md\:transform { transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scale(1); }
  .md\:scale-100 { transform: scale(1); }
  .md\:scale-105 { transform: scale(1.05); }
  .md\:scale-110 { transform: scale(1.1); }
  .md\:self-center { align-self: center; }
  .md\:self-stretch { align-self: stretch; }
  .md\:justify-self-start { justify-self: start; }
  .md\:justify-self-center { justify-self: center; }
  .md\:justify-self-end { justify-self: end; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:order-3 { order: 3; }
  .md\:order-first { order: -9999; }
  .md\:order-last { order: 9999; }
  .md\:space-x-0 > * + * { margin-left: 0; }
  .md\:space-x-2 > * + * { margin-left: var(--spacing-2); }
  .md\:space-x-4 > * + * { margin-left: var(--spacing-4); }
  .md\:space-x-6 > * + * { margin-left: var(--spacing-6); }
  .md\:space-x-8 > * + * { margin-left: var(--spacing-8); }
}

@media (min-width: 1024px) {
  .lg\:d-none { display: none; }
  .lg\:d-block { display: block; }
  .lg\:d-flex { display: flex; }
  .lg\:d-grid { display: grid; }
  .lg\:d-inline-flex { display: inline-flex; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:items-center { align-items: center; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:justify-center { justify-content: center; }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:justify-end { justify-content: flex-end; }
  .lg\:flex-1 { flex: 1 1 0%; }
  .lg\:flex-grow { flex-grow: 1; }
  .lg\:gap-0 { gap: 0; }
  .lg\:gap-2 { gap: var(--spacing-2); }
  .lg\:gap-4 { gap: var(--spacing-4); }
  .lg\:gap-6 { gap: var(--spacing-6); }
  .lg\:gap-8 { gap: var(--spacing-8); }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:p-0 { padding: 0; }
  .lg\:p-4 { padding: var(--spacing-4); }
  .lg\:p-6 { padding: var(--spacing-6); }
  .lg\:p-8 { padding: var(--spacing-8); }
  .lg\:px-0 { padding-left: 0; padding-right: 0; }
  .lg\:px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
  .lg\:px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }
  .lg\:px-8 { padding-left: var(--spacing-8); padding-right: var(--spacing-8); }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
  .lg\:py-6 { padding-top: var(--spacing-6); padding-bottom: var(--spacing-6); }
  .lg\:py-8 { padding-top: var(--spacing-8); padding-bottom: var(--spacing-8); }
  .lg\:py-12 { padding-top: var(--spacing-12); padding-bottom: var(--spacing-12); }
  .lg\:py-16 { padding-top: var(--spacing-16); padding-bottom: var(--spacing-16); }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:mt-4 { margin-top: var(--spacing-4); }
  .lg\:mt-6 { margin-top: var(--spacing-6); }
  .lg\:mt-8 { margin-top: var(--spacing-8); }
  .lg\:mt-12 { margin-top: var(--spacing-12); }
  .lg\:mb-0 { margin-bottom: 0; }
  .lg\:mb-4 { margin-bottom: var(--spacing-4); }
  .lg\:mb-6 { margin-bottom: var(--spacing-6); }
  .lg\:mb-8 { margin-bottom: var(--spacing-8); }
  .lg\:mb-12 { margin-bottom: var(--spacing-12); }
  .lg\:ml-auto { margin-left: auto; }
  .lg\:mr-auto { margin-right: auto; }
  .lg\:mx-auto { margin-left: auto; margin-right: auto; }
  .lg\:w-auto { width: auto; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-1\/3 { width: 33.333333%; }
  .lg\:w-2\/3 { width: 66.666667%; }
  .lg\:w-1\/4 { width: 25%; }
  .lg\:w-3\/4 { width: 75%; }
  .lg\:w-full { width: 100%; }
  .lg\:max-w-xs { max-width: 20rem; }
  .lg\:max-w-sm { max-width: 24rem; }
  .lg\:max-w-md { max-width: 28rem; }
  .lg\:max-w-lg { max-width: 32rem; }
  .lg\:max-w-xl { max-width: 36rem; }
  .lg\:max-w-2xl { max-width: 42rem; }
  .lg\:max-w-3xl { max-width: 48rem; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:max-w-5xl { max-width: 64rem; }
  .lg\:max-w-6xl { max-width: 72rem; }
  .lg\:max-w-7xl { max-width: 80rem; }
  .lg\:max-w-screen-sm { max-width: 640px; }
  .lg\:max-w-screen-md { max-width: 768px; }
  .lg\:max-w-screen-lg { max-width: 1024px; }
  .lg\:max-w-screen-xl { max-width: 1280px; }
  .lg\:h-auto { height: auto; }
  .lg\:h-12 { height: 3rem; }
  .lg\:h-16 { height: 4rem; }
  .lg\:h-20 { height: 5rem; }
  .lg\:h-24 { height: 6rem; }
  .lg\:h-40 { height: 10rem; }
  .lg\:h-56 { height: 14rem; }
  .lg\:h-64 { height: 16rem; }
  .lg\:h-80 { height: 20rem; }
  .lg\:h-screen { height: 100vh; }
  .lg\:min-h-screen { min-height: 100vh; }
  .lg\:text-left { text-align: left; }
  .lg\:text-center { text-align: center; }
  .lg\:text-right { text-align: right; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:rounded-lg { border-radius: var(--radius-lg); }
  .lg\:rounded-xl { border-radius: var(--radius-xl); }
  .lg\:rounded-2xl { border-radius: var(--radius-2xl); }
  .lg\:rounded-3xl { border-radius: var(--radius-3xl); }
  .lg\:rounded-full { border-radius: var(--radius-full); }
  .lg\:shadow-sm { box-shadow: var(--shadow-sm); }
  .lg\:shadow { box-shadow: var(--shadow-md); }
  .lg\:shadow-md { box-shadow: var(--shadow-md); }
  .lg\:shadow-lg { box-shadow: var(--shadow-lg); }
  .lg\:shadow-xl { box-shadow: var(--shadow-xl); }
  .lg\:shadow-2xl { box-shadow: var(--shadow-2xl); }
  .lg\:shadow-none { box-shadow: none; }
  .lg\:overflow-visible { overflow: visible; }
  .lg\:overflow-x-auto { overflow-x: auto; }
  .lg\:static { position: static; }
  .lg\:fixed { position: fixed; }
  .lg\:relative { position: relative; }
  .lg\:absolute { position: absolute; }
  .lg\:sticky { position: sticky; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:col-span-10 { grid-column: span 10 / span 10; }
  .lg\:col-span-11 { grid-column: span 11 / span 11; }
  .lg\:col-span-12 { grid-column: span 12 / span 12; }
  .lg\:col-span-full { grid-column: 1 / -1; }
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .lg\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .lg\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .lg\:grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .lg\:grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-none { grid-template-columns: none; }
  .lg\:row-span-1 { grid-row: span 1 / span 1; }
  .lg\:row-span-2 { grid-row: span 2 / span 2; }
  .lg\:row-span-3 { grid-row: span 3 / span 3; }
  .lg\:row-span-full { grid-row: 1 / -1; }
  .lg\:flex-grow { flex-grow: 1; }
  .lg\:flex-shrink-0 { flex-shrink: 0; }
  .lg\:opacity-100 { opacity: 1; }
  .lg\:transform { transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scale(1); }
  .lg\:scale-100 { transform: scale(1); }
  .lg\:scale-105 { transform: scale(1.05); }
  .lg\:scale-110 { transform: scale(1.1); }
  .lg\:self-center { align-self: center; }
  .lg\:self-stretch { align-self: stretch; }
  .lg\:justify-self-start { justify-self: start; }
  .lg\:justify-self-center { justify-self: center; }
  .lg\:justify-self-end { justify-self: end; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:order-3 { order: 3; }
  .lg\:order-first { order: -9999; }
  .lg\:order-last { order: 9999; }
}

@media (min-width: 1280px) {
  .xl\:d-none { display: none; }
  .xl\:d-block { display: block; }
  .xl\:d-flex { display: flex; }
  .xl\:d-grid { display: grid; }
  .xl\:flex-row { flex-direction: row; }
  .xl\:items-center { align-items: center; }
  .xl\:items-start { align-items: flex-start; }
  .xl\:justify-between { justify-content: space-between; }
  .xl\:justify-center { justify-content: center; }
  .xl\:gap-4 { gap: var(--spacing-4); }
  .xl\:gap-6 { gap: var(--spacing-6); }
  .xl\:gap-8 { gap: var(--spacing-8); }
  .xl\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .xl\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .xl\:text-5xl { font-size: 3rem; line-height: 1; }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .xl\:p-0 { padding: 0; }
  .xl\:p-4 { padding: var(--spacing-4); }
  .xl\:p-6 { padding: var(--spacing-6); }
  .xl\:p-8 { padding: var(--spacing-8); }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
  .xl\:px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
  .xl\:px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }
  .xl\:py-0 { padding-top: 0; padding-bottom: 0; }
  .xl\:py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
  .xl\:py-8 { padding-top: var(--spacing-8); padding-bottom: var(--spacing-8); }
  .xl\:py-12 { padding-top: var(--spacing-12); padding-bottom: var(--spacing-12); }
  .xl\:mt-0 { margin-top: 0; }
  .xl\:mt-4 { margin-top: var(--spacing-4); }
  .xl\:mt-6 { margin-top: var(--spacing-6); }
  .xl\:mt-8 { margin-top: var(--spacing-8); }
  .xl\:mb-0 { margin-bottom: 0; }
  .xl\:mb-4 { margin-bottom: var(--spacing-4); }
  .xl\:mb-6 { margin-bottom: var(--spacing-6); }
  .xl\:mb-8 { margin-bottom: var(--spacing-8); }
  .xl\:w-auto { width: auto; }
  .xl\:w-1\/2 { width: 50%; }
  .xl\:w-1\/3 { width: 33.333333%; }
  .xl\:w-2\/3 { width: 66.666667%; }
  .xl\:w-1\/4 { width: 25%; }
  .xl\:w-full { width: 100%; }
  .xl\:max-w-screen-xl { max-width: 1280px; }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* ============================================
   HOVER UTILITIES
   ============================================ */
.hover-opacity-0:hover { opacity: 0; }
.hover-opacity-50:hover { opacity: 0.5; }
.hover-opacity-100:hover { opacity: 1; }

.hover-scale-105:hover { transform: scale(1.05); }
.hover-scale-110:hover { transform: scale(1.1); }
.hover-scale-125:hover { transform: scale(1.25); }

.hover-shadow-sm:hover { box-shadow: var(--shadow-sm); }
.hover-shadow:hover { box-shadow: var(--shadow-md); }
.hover-shadow-md:hover { box-shadow: var(--shadow-md); }
.hover-shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover-shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover-shadow-2xl:hover { box-shadow: var(--shadow-2xl); }
.hover-shadow-none:hover { box-shadow: none; }

.hover-text-primary:hover { color: var(--color-primary); }
.hover-text-primary-light:hover { color: var(--color-primary-light); }
.hover-text-white:hover { color: var(--color-white); }
.hover-text-gray-500:hover { color: var(--color-gray-500); }
.hover-text-gray-600:hover { color: var(--color-gray-600); }
.hover-text-gray-700:hover { color: var(--color-gray-700); }
.hover-text-gray-800:hover { color: var(--color-gray-800); }
.hover-text-amber-400:hover { color: #f6ad55; }

.hover-bg-gray-50:hover { background-color: var(--color-gray-50); }
.hover-bg-gray-100:hover { background-color: var(--color-gray-100); }
.hover-bg-gray-200:hover { background-color: var(--color-gray-200); }
.hover-bg-gray-300:hover { background-color: var(--color-gray-300); }
.hover-bg-primary:hover { background-color: var(--color-primary); }
.hover-bg-primary-light:hover { background-color: var(--color-primary-light); }
.hover-bg-white:hover { background-color: var(--color-white); }
.hover-bg-corp-blue-dark:hover { background-color: var(--color-primary) !important; }
.hover-bg-corp-blue-light:hover { background-color: var(--color-primary-light) !important; }

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

.hover-border-primary:hover { border-color: var(--color-primary); }
.hover-border-gray-200:hover { border-color: var(--color-gray-200); }
.hover-border-gray-300:hover { border-color: var(--color-gray-300); }

.hover-translate-y-0:hover { transform: translateY(0); }
.hover-translate-y-1:hover { transform: translateY(0.25rem); }
.hover-translate-y-2:hover { transform: translateY(0.5rem); }
.hover-translate-y-4:hover { transform: translateY(1rem); }
.-hover-translate-y-1:hover { transform: translateY(-0.25rem); }
.-hover-translate-y-2:hover { transform: translateY(-0.5rem); }
.-hover-translate-y-4:hover { transform: translateY(-1rem); }

/* ============================================
   FOCUS UTILITIES
   ============================================ */
.focus-outline-none:focus { outline: none; }
.focus-outline:focus { outline: 2px solid var(--color-primary-light); outline-offset: 2px; }
.focus-ring:focus { box-shadow: 0 0 0 3px rgba(58, 142, 178, 0.3); }

.focus-border-gray-300:focus { border-color: var(--color-gray-300); }
.focus-border-gray-400:focus { border-color: var(--color-gray-400); }
.focus-border-primary:focus { border-color: var(--color-primary); }
.focus-border-primary-light:focus { border-color: var(--color-primary-light); }
.focus-border-blue-500:focus { border-color: #3182ce; }
.focus-border-red-500:focus { border-color: #f56565; }

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

.focus-text-gray-700:focus { color: var(--color-gray-700); }
.focus-text-gray-800:focus { color: var(--color-gray-800); }
.focus-text-primary:focus { color: var(--color-primary); }

/* ============================================
   ACTIVE UTILITIES
   ============================================ */
.active-bg-gray-100:active { background-color: var(--color-gray-100); }
.active-bg-gray-200:active { background-color: var(--color-gray-200); }
.active-scale-95:active { transform: scale(0.95); }
.active-scale-98:active { transform: scale(0.98); }
.active-scale-100:active { transform: scale(1); }

/* ============================================
   GROUP HOVER UTILITIES
   ============================================ */
.group:hover .group-hover-opacity-0 { opacity: 0; }
.group:hover .group-hover-opacity-50 { opacity: 0.5; }
.group:hover .group-hover-opacity-100 { opacity: 1; }

.group:hover .group-hover-scale-100 { transform: scale(1); }
.group:hover .group-hover-scale-105 { transform: scale(1.05); }
.group:hover .group-hover-scale-110 { transform: scale(1.1); }

.group:hover .group-hover-shadow-sm { box-shadow: var(--shadow-sm); }
.group:hover .group-hover-shadow { box-shadow: var(--shadow-md); }
.group:hover .group-hover-shadow-lg { box-shadow: var(--shadow-lg); }
.group:hover .group-hover-shadow-xl { box-shadow: var(--shadow-xl); }

.group:hover .group-hover-translate-y-0 { transform: translateY(0); }
.group:hover .group-hover-translate-y-2 { transform: translateY(0.5rem); }
.group:hover .group-hover-translate-y-4 { transform: translateY(1rem); }
.group:hover .group-hover--translate-y-1 { transform: translateY(-0.25rem); }
.group:hover .group-hover--translate-y-2 { transform: translateY(-0.5rem); }
.group:hover .group-hover--translate-y-3 { transform: translateY(-0.75rem); }
.group:hover .group-hover--translate-y-4 { transform: translateY(-1rem); }

.group:hover .group-hover-text-gray-600 { color: var(--color-gray-600); }
.group:hover .group-hover-text-gray-700 { color: var(--color-gray-700); }
.group:hover .group-hover-text-gray-800 { color: var(--color-gray-800); }
.group:hover .group-hover-text-primary { color: var(--color-primary); }
.group:hover .group-hover-text-white { color: var(--color-white); }

.group:hover .group-hover-bg-gray-50 { background-color: var(--color-gray-50); }
.group:hover .group-hover-bg-gray-100 { background-color: var(--color-gray-100); }
.group:hover .group-hover-bg-gray-200 { background-color: var(--color-gray-200); }
.group:hover .group-hover-bg-white { background-color: var(--color-white); }

.group:hover .group-hover-from-blue-50 { --tw-gradient-from: #eff6ff; }
.group:hover .group-hover-to-indigo-50 { --tw-gradient-to: #eef2ff; }

/* ============================================
   DISABLED UTILITIES
   ============================================ */
.disabled-opacity-50:disabled { opacity: 0.5; }
.disabled-opacity-75:disabled { opacity: 0.75; }
.disabled-pointer-events-none:disabled { pointer-events: none; }
.disabled-cursor-not-allowed:disabled { cursor: not-allowed; }

/* ============================================
   CUSTOM COMPONENTS
   ============================================ */

/* Chips glass */
.chip-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(3,49,104,.12);
  border-radius: .75rem;
  box-shadow: 0 2px 8px rgba(3,49,104,.08);
  font-weight: 500;
}

.chip-glass .chip-copy {
  margin-left: .25rem;
  font-size: .8rem;
  color: #033168;
  opacity: .6;
  transition: opacity .2s;
}

.chip-glass .chip-copy:hover { opacity: 1; }

/* Map tabs */
.map-tabs .tab {
  padding: .4rem .8rem;
  border-radius: .6rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  color: #033168;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.map-tabs .tab.active {
  background: linear-gradient(135deg, #033168, #3a8eb2);
  color: #fff;
  border-color: transparent;
}

.menu-item {
  display: block;
  padding: .6rem .8rem;
  color: #033168;
}

.menu-item:hover { background: #f3f4f6; }

/* Service cards */
/* ============================================
   SERVICIOS SECTION — Premium Light Design
   ============================================ */

/* Section container */
.servicios-section {
  position: relative;
  padding: 5rem 0;
  background-color: #eff6ff;
  overflow: hidden;
}

/* Fade gradients on edges — left and right */
.servicios-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12%;
  height: 100%;
  background: linear-gradient(to right, #eff6ff 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.servicios-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 12%;
  height: 100%;
  background: linear-gradient(to left, #eff6ff 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Section header */
.servicios-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 3;
}

.servicios-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f2c4a;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.servicios-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  color: #718096;
  margin: 0;
  line-height: 1.6;
}

/* Gold decorative line inside header */
.servicios-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4af37;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Old carousel support - for content from BD - USE SPECIFIC CLASSES */
.carousel-track.servicios-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0 2rem;
  animation: servicios-scroll 35s linear infinite;
}

.carousel-track.servicios-track:hover {
  animation-play-state: paused;
}

.service-slide-item {
  flex-shrink: 0;
}

.service-slide-item .service-card {
  width: 300px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 44, 74, 0.05);
  border: 1px solid rgba(15, 44, 74, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-slide-item .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 44, 74, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-slide-item .service-card .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 44, 74, 0.04);
  border-radius: 50%;
  color: #0f2c4a;
  transition: all 0.3s ease;
}

.service-slide-item .service-card:hover .service-icon {
  background-color: #0f2c4a;
  color: #ffffff;
  transform: scale(1.05);
}

.service-slide-item .service-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-slide-item .service-card p {
  font-family: 'Poppins', sans-serif;
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.service-slide-item .service-card .service-icon i[data-feather],
.service-slide-item .service-card .service-icon svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   SERVICIOS - Carrusel nuevo separado
   ============================================ */
.servicios-carousel-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 2rem;
}

.servicios-carousel-wrapper::before,
.servicios-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.servicios-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #eff6ff 0%, transparent 100%);
}
.servicios-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #eff6ff 0%, transparent 100%);
}

.services-carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0 2rem;
  animation: servicios-scroll 35s linear infinite;
}

.services-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes servicios-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.services-card {
  width: 300px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 44, 74, 0.05);
  border: 1px solid rgba(15, 44, 74, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 44, 74, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
}

.services-card .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 44, 74, 0.04);
  border-radius: 50%;
  color: #0f2c4a;
  transition: all 0.3s ease;
}

.services-card .service-icon i[data-feather],
.services-card .service-icon svg {
  width: 28px;
  height: 28px;
}

.services-card:hover .service-icon {
  background-color: #0f2c4a;
  color: #ffffff;
  transform: scale(1.05);
}

.services-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-card p {
  font-family: 'Poppins', sans-serif;
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.services-card .service-icon svg,
.services-card .service-icon i {
  color: inherit;
}

/* Responsive servicios */
@media (max-width: 768px) {
  .servicios-section {
    padding: 4rem 0;
  }

  .servicios-section::before,
  .servicios-section::after {
    width: 5%;
  }

  .servicios-title {
    font-size: 1.8rem;
  }

  .carousel-track,
  .services-carousel-track {
    gap: 1.25rem;
  }

  .carousel-track .service-card,
  .service-slide-item .service-card,
  .services-card {
    width: 260px;
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   PRODUCTOS DESTACADOS (Nuestros Productos)
   ============================================ */
.featured-products-carousel-wrapper {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 420px;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 16px 48px 0 rgba(58, 142, 178, 0.18), 0 4px 16px 0 rgba(3,49,104,0.10);
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ef 100%);
  transform: translateY(-8px) scale(1.035);
}

.product-card .product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 1.25rem;
  background: #f3f6fa;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  box-shadow: 0 2px 12px 0 rgba(58, 142, 178, 0.07);
}

.product-card:hover .product-image {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(58, 142, 178, 0.13);
}

.product-card .product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #033168;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  min-height: 3.2em;
  line-height: 1.2;
}

.product-card .product-separator {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #3a8eb2 0%, #10b981 100%);
  border-radius: 2px;
  margin: 0.5rem auto 1.2rem;
  opacity: 0.18;
}

.product-card .product-description {
  color: #4b5563;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.2rem;
  min-height: 2.5em;
}

.product-card .product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 1rem;
}

.product-card .product-price {
  background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 1rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(16,185,129,0.10);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  transition: background 0.3s;
}

.product-card .add-to-cart-button {
  background: linear-gradient(135deg, #033168 0%, #3a8eb2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 9999px;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(58, 142, 178, 0.13);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.product-card .add-to-cart-button:hover {
  background: linear-gradient(135deg, #3a8eb2 0%, #10b981 100%);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px 0 rgba(16,185,129,0.13);
}

.product-card .add-to-cart-button:active { transform: scale(0.98); }

.product-card .add-to-cart-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s;
  z-index: 1;
}

.product-card .add-to-cart-button:hover::before { left: 100%; }

/* ============================================
   SHOP PRODUCT CARD - Tienda Page
   ============================================ */
.shop-product-card {
  background: #ffffff;
  border: 1px solid rgba(3, 49, 104, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.shop-product-card:hover {
  box-shadow: 0 4px 16px rgba(3, 49, 104, 0.08);
  border-color: rgba(3, 49, 104, 0.12);
}

.shop-product-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.shop-product-card-image-wrapper:hover .shop-product-card-image:not(.error) {
  transform: scale(1.15);
  transition: transform 0.4s ease;
}

.shop-product-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  z-index: 10;
  background: #033168;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-product-card-zoom-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #033168;
  transition: all 0.2s ease;
  z-index: 10;
}

.shop-product-card-zoom-btn:hover {
  background: #033168;
  color: white;
}

.shop-product-card-picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product-card-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.4s ease;
  opacity: 0;
}

.shop-product-card-image.loaded {
  opacity: 1;
}

.shop-product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: white;
}

.shop-product-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #033168;
  margin-bottom: 0.375rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-product-card-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3a8eb2;
  margin-bottom: 0.5rem;
}

.shop-product-card-add-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border: none;
}

.shop-product-card-add-btn.btn-primary {
  background: #033168;
  color: white;
}

.shop-product-card-add-btn.btn-primary:hover {
  background: #3a8eb2;
}

.shop-product-card-add-btn.btn-disabled,
.shop-product-card-add-btn:disabled {
  background: transparent;
  color: rgba(3, 49, 104, 0.4);
  border: 1px solid rgba(3, 49, 104, 0.15);
  cursor: not-allowed;
}

/* ============================================
   PRODUCT CARD - Home Page
   ============================================ */
.product-card {
  background: linear-gradient(135deg, #F5F2EC 0%, #F4F6FA 100%);
  border: 1px solid rgba(216, 195, 165, 0.7);
  border-radius: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  background: #F4F6FA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.75rem;
}

.product-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  z-index: 10;
  background: #FF6B6B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-card-zoom-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A2342;
  transition: all 0.2s ease;
  z-index: 10;
}

.product-card-zoom-btn:hover {
  background: white;
  transform: scale(1.1);
}

.product-card-picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: white;
}

.product-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0A2342;
  margin-bottom: 0.5rem;
}

.product-card-add-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.625rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
}

.product-card-add-btn.btn-primary {
  background: linear-gradient(135deg, #033168 0%, #3a8eb2 100%);
  color: white;
}

.product-card-add-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(3, 49, 104, 0.3);
}

.product-card-add-btn.btn-disabled,
.product-card-add-btn:disabled {
  background: transparent;
  color: rgba(10, 35, 66, 0.5);
  border: 2px solid rgba(10, 35, 66, 0.2);
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .product-card-image-wrapper {
    height: 120px;
  }

  .product-card-title {
    font-size: 0.8rem;
  }
}

/* Premium badge */
.premium-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  color: white !important;
  font-weight: bold !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 9999px !important;
  font-size: 0.75rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #fbbf24 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
}

/* Shop card hover */
.shop-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.filter-tag.active {
  background-color: #3a8eb2 !important;
  color: white !important;
}

/* Product search */
#product-search:focus {
  box-shadow: 0 0 0 3px rgba(58, 142, 178, 0.1);
}

/* Product list */
.products-list .product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
}

.products-list .product-card img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  margin-right: 1rem;
}

.product-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: productEnter 0.4s ease-out forwards;
}

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

/* Price gradient */
.price-gradient {
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
}

/* Animated gradient */
.animated-gradient {
  background: linear-gradient(-45deg, #033168, #3a8eb2, #033168, #3a8eb2);
  background-size: 400% 400%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glass effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Cart button shine */
.cart-btn-shine {
  position: relative;
  overflow: hidden;
}

.cart-btn-shine::before {
  display: none;
}

.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  color: white;
}

/* Toast notification */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: #033168;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 16px rgba(3,49,104,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(30px);
  display: flex;
  align-items: center;
}

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

#toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Generic toast class (used by cart fallback) */
.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 0.875rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(30px);
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-success { background-color: var(--color-success, #16a34a); }
.toast-error { background-color: var(--color-error, #dc2626); }
.toast-warning { background-color: var(--color-warning, #ca8a04); }
.toast-info { background-color: var(--color-primary, #033168); }

/* ============================================
   LAYOUT & SECTIONS
   ============================================ */

/* Main menu */
#main-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
  margin: 0 !important;
  padding: 0 !important;
}

main { overflow: visible !important; padding-top: var(--header-offset); }

#main-view { overflow: visible !important; }

#main-view, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  padding: 0.75rem 0;
  list-style: none;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb-link:hover {
  color: var(--color-primary-light);
}

.breadcrumb-link i,
.breadcrumb-separator i,
.breadcrumb-icon {
  width: 1rem;
  height: 1rem;
}

.breadcrumb-separator {
  color: var(--color-gray-400);
  display: flex;
  align-items: center;
}

.breadcrumb-item-current {
  color: var(--color-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ============================================
   SHOP HEADER (Hero de tienda)
   ============================================ */
.shop-header {
  position: relative;
  width: 100%;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #111827;
}

.shop-header-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.4);
  transition: opacity 0.7s ease;
}

.shop-header:hover .shop-header-overlay {
  opacity: 0.3;
}

.shop-header-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 50%);
}

.shop-header-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.shop-header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.shop-header-badge-line {
  width: 2.5rem;
  height: 2px;
  background-color: rgba(245, 158, 11, 0.7);
}

.shop-header-badge-text {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fbbf24;
}

.shop-header-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .shop-header-title {
    font-size: 4.5rem;
    flex-direction: row;
  }
}

.shop-header-title-text {
  display: block;
}

.shop-header-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #fbbf24;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .shop-header-icon {
    width: 3rem;
    height: 3rem;
  }
}

.shop-header-subtitle {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  color: #d1d5db;
}

@media (min-width: 768px) {
  .shop-header-subtitle {
    font-size: 1.5rem;
  }
}

.shop-header-subtitle-line {
  display: block;
}

.shop-header-subtitle-highlight {
  display: block;
  color: #fcd34d;
  font-style: italic;
  margin-top: 0.25rem;
}

/* ============================================
   PRODUCTS SECTION (Tienda)
   ============================================ */
.products-section {
  background-color: #f8f7f4;
  padding: 2.5rem 0;
  width: 100%;
}

@media (min-width: 768px) {
  .products-section {
    padding: 4rem 0;
  }
}

.products-section-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

@media (min-width: 640px) {
  .products-section-container {
    padding: 0 1.5rem;
  }
}

.products-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .products-section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
}

.products-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0a2342;
}

@media (min-width: 768px) {
  .products-section-title {
    font-size: 2.25rem;
  }
}

.products-section-subtitle {
  color: rgba(10, 35, 66, 0.7);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .products-section-subtitle {
    font-size: 1rem;
  }
}

.products-sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .products-sort-bar {
    gap: 0.75rem;
  }
}

.products-count {
  font-size: 0.875rem;
  color: rgba(10, 35, 66, 0.7);
}

.products-sort-select {
  flex: 1;
  min-width: 140px;
  border-radius: 0.5rem;
  border: 1px solid rgba(216, 195, 165, 0.8);
  background-color: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #0a2342;
}

.products-sort-select:focus {
  outline: none;
  border-color: #0a2342;
  box-shadow: 0 0 0 2px rgba(10, 35, 66, 0.2);
}

.products-filters-toggle {
  display: none;
  margin-bottom: 1.5rem;
}

@media (max-width: 1023px) {
  .products-filters-toggle {
    display: block;
  }
}

.products-filters-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  color: #0a2342;
  font-weight: 500;
  cursor: pointer;
}

.products-filters-toggle-btn:hover {
  background-color: #f9fafb;
}

.products-filters-toggle-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.products-filters-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.products-filter-loading {
  font-size: 0.875rem;
  color: #9ca3af;
}

.products-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .products-layout {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
  }
}

.products-filters-sidebar {
  display: none;
  width: 100%;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .products-filters-sidebar {
    display: block;
    width: 16rem;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
}

@media (min-width: 1024px) {
  .products-filters-sidebar {
    width: 18rem;
  }
}

.products-filters-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 1.5rem;
}

.products-filters-group {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1.25rem;
}

.products-filters-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.products-filters-summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #0a2342;
  font-size: 1rem;
  padding: 0.5rem 0;
}

.products-filters-chevron {
  color: #d8c3a5;
  transition: transform 0.3s ease;
}

.products-filters-details[open] .products-filters-chevron {
  transform: rotate(180deg);
}

.products-filters-options {
  padding-top: 1rem;
}

.products-filter-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background-color: #f9fafb;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.products-filter-item:hover {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.products-filter-item i {
  color: #3a8eb2;
  width: 1rem;
  height: 1rem;
}

.products-main {
  flex: 1;
  overflow: hidden;
  max-width: 100%;
}

/* ============================================
   BREADCRUMBS CONTAINER
   ============================================ */
.breadcrumbs-container {
  width: 100%;
  background: white;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.breadcrumbs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   PRODUCTS EMPTY STATE
   ============================================ */
.products-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: 3rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.products-empty-state-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-gray-400);
}

.products-empty-state-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

.products-empty-state-text {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ============================================
   CATEGORY FILTER STYLES
   ============================================ */
.category-filter-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.category-filter-item:hover {
  color: var(--color-primary);
}

.category-filter-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-gray-300);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.category-filter-checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.category-filter-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.category-filter-label {
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

.category-filter-item:hover .category-filter-label {
  color: var(--color-primary);
}

.category-filter-loading {
  font-size: 0.875rem;
  color: var(--color-gray-400);
}

.category-filter-error {
  font-size: 0.875rem;
  color: var(--color-error);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  overflow: hidden;
  max-width: 100%;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  margin-top: 2rem;
}

.load-more-btn {
  background: transparent;
  color: #374151;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.load-more-btn:hover {
  border-color: #374151;
  background: #f9fafb;
}

.load-more-btn:active {
  background: #f3f4f6;
}

.load-more-btn:disabled {
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
}

/* Skeleton loading para productos */
.skeleton-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.skeleton-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-content {
  padding: 1rem;
}

.skeleton-title {
  height: 20px;
  width: 80%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.skeleton-price {
  height: 24px;
  width: 50%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.skeleton-button {
  height: 42px;
  width: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 0.5rem;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-loading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .skeleton-loading {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .skeleton-loading {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Price range slider */
.price-range {
  padding-top: 1rem;
  padding-left: 0.5rem;
}

.price-range-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.price-range-value {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a2342;
}

/* ============================================
   CATALOG SECTION
   ============================================ */
  background: linear-gradient(135deg, #033168 0%, #3a8eb2 100%);
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://api.digitalvalue.es/salacor/assets2/68515408d27e68f72473b488') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.catalog-hero > * { position: relative; z-index: 2; }

/* Catalog viewer */
.catalog-viewer {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 1rem;
  overflow: hidden;
}

/* Download button */
.download-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transition: all 0.3s ease;
}

/* ============================================
   CATALOG SECTION
   ============================================ */
.catalog-section {
  padding: 3rem 0;
}

.catalog-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
  .catalog-section-title {
    font-size: 1.875rem;
  }
}

.catalog-section-subtitle {
  color: var(--color-gray-600);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.catalog-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .catalog-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
  min-height: 48px;
}

.catalog-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.catalog-btn--primary:hover {
  background-color: #08192e;
  color: var(--color-white);
}

.catalog-btn--secondary {
  background-color: var(--color-gray-200);
  color: var(--color-gray-800);
}

.catalog-btn--secondary:hover {
  background-color: var(--color-gray-300);
  color: var(--color-gray-900);
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .content-section {
    padding: 5rem 0;
  }
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Loading spinner */
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #033168;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Skeleton loading */
.skeleton-product .bg-gray-200 {
  background: #e5e7eb;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

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

/* ============================================
   NOSOTROS / ABOUT SECTION
   ============================================ */
.nosotros-section {
  background-color: #f8fafc;
}

/* ============================================
   SOCIAL BANNER SECTION
   ============================================ */
.social-banner {
  position: relative;
  background-color: #033168;
  overflow: hidden;
  padding: 4rem 1.5rem;
  text-align: center;
}

.social-banner::before {
  content: '';
  background-image: url('https://api.digitalvalue.es/salacor/assets2/6863da0af8ed741b383e1a76');
  background-size: 120px auto;
  background-repeat: repeat;
  opacity: 0.07;
  position: absolute;
  inset: 0;
}

.social-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.social-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .social-title { font-size: 2.5rem; }
}

.social-subtitle {
  color: #bfdbfe;
  font-size: 1.0625rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  color: #ffffff;
}

.social-link svg {
  flex-shrink: 0;
}

/* Map section */
.ubicacion-pattern {
  background-color: #3a8eb2;
  background-image: url('https://api.digitalvalue.es/salacor/assets2/68515408d27e68f72473b488');
  background-size: 80px 80px;
  background-repeat: repeat;
  opacity: 0.10;
  position: absolute;
  inset: 0;
  z-index: 1;
}

#salacor-map {
  width: 100%;
  min-height: 260px;
  height: 320px;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(3,49,104,0.10);
  z-index: 2;
}

@media (min-width: 768px) {
  #salacor-map { height: 340px; }
}

/* ============================================
   CONTACT MAP SECTION
   ============================================ */
.contact-section {
  position: relative;
  z-index: 10;
  padding: 4rem 1.5rem;
  background-color: #f8fafc;
}

@media (min-width: 768px) {
  .contact-section { padding: 5rem 1.5rem; }
}

.contact-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
  .contact-section-title {
    font-size: 2.25rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-map-wrapper {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 4px solid #fff;
  min-height: 260px;
}

.contact-map {
  width: 100%;
  height: 300px;
}

@media (min-width: 768px) {
  .contact-map {
    height: 380px;
  }
}

.contact-info-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .contact-info-card {
    padding: 1.5rem;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .contact-info-grid {
    gap: 1rem;
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background-color: #f9fafb;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.contact-info-item:hover {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-info-item i,
.contact-info-item svg {
  color: var(--color-primary-light);
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 0.875rem;
}

.contact-map-link:hover {
  background-color: var(--color-primary-light);
  color: #fff;
}

.contact-map-link i,
.contact-map-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
  .contact-form-title {
    font-size: 1.5rem;
  }
}

.contact-form-subtitle {
  color: #6b7280;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-loading {
  text-align: center;
  color: #9ca3af;
}

.contact-form-feedback {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .contact-form-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #16a34a;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 0.875rem;
}

.contact-whatsapp-btn:hover {
  background-color: #15803d;
  color: #fff;
}

.contact-whatsapp-btn i,
.contact-whatsapp-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.contact-submit-btn {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}

.contact-submit-btn:hover {
  background-color: var(--color-primary-light);
  color: #fff;
}

.contact-submit-btn--loading {
  opacity: 0.75;
  cursor: not-allowed;
}

.contact-submit-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Form fields */
.contact-field-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.contact-field-required {
  color: #ef4444;
  margin-left: 0.125rem;
}

.contact-field-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: #111827;
  background-color: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-field-input:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(58, 142, 178, 0.15);
}

.contact-field-input--error {
  border-color: #ef4444;
}

.contact-field-input--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.contact-field-textarea {
  height: 8rem;
  resize: vertical;
}

.contact-field-error {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

/* Feedback messages */
.contact-feedback-success,
.contact-feedback-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.contact-feedback-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.contact-feedback-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.contact-feedback-success i,
.contact-feedback-success svg,
.contact-feedback-error i,
.contact-feedback-error svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Skeleton loading */
.contact-form-skeleton {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-skeleton-field {
  animation: skeleton-loading 1.4s ease infinite;
}

.contact-form-skeleton-label {
  height: 0.875rem;
  width: 6rem;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.contact-form-skeleton-input {
  height: 2.875rem;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  border-radius: 0.5rem;
}

.contact-form-skeleton-textarea {
  height: 8rem;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  border-radius: 0.5rem;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
  padding: 4rem 0;
  background-color: #fff;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-wrapper {
    flex-direction: row;
  }
}

.about-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .about-image-wrapper {
    width: 50%;
  }
}

.about-image {
  width: 66.666%;
  max-width: 24rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .about-image {
    width: 100%;
    max-width: none;
  }
}

.about-content {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .about-content {
    width: 50%;
    text-align: left;
  }
}

.about-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.25rem;
  }
}

.about-text {
  color: #6b7280;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 1rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .legal-page {
    padding: 5rem 0;
  }
}

.legal-page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .legal-page-title {
    font-size: 3rem;
  }
}

.legal-page-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.legal-page-button:hover {
  background-color: #08192e;
  color: #fff;
}

.legal-page-back {
  margin-top: 3rem;
  text-align: center;
}

/* Legal content */
.legal-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #033168;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-content ul {
  list-style-position: inside;
  list-style-type: disc;
  margin-bottom: 1rem;
}

/* Recipe styles */
.recipe-body p { margin-bottom: 1rem; }

.recipe-body strong {
  font-weight: bold;
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.recipe-badge {
  background: rgba(0,0,0,0.72);
  border-radius: 9999px;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.recipe-badges-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

/* ============================================
   RECIPE CARDS
   ============================================ */
.recipe-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 2px 8px -2px rgba(3, 49, 104, 0.08), 0 4px 16px -4px rgba(3, 49, 104, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.recipe-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 8px 24px -4px rgba(3, 49, 104, 0.15), 0 12px 32px -8px rgba(3, 49, 104, 0.2);
}

.recipe-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-gray-100);
}

.recipe-card-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 49, 104, 0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recipe-card:hover .recipe-card-image-wrapper::after {
  opacity: 1;
}

.recipe-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-card-image {
  transform: scale(1.06);
}

.recipe-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.recipe-card-badge--mar {
  background: rgba(3, 49, 104, 0.88);
  color: #fff;
}

.recipe-card-badge--rio {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}

.recipe-card-badge--default {
  background: rgba(107, 114, 128, 0.85);
  color: #fff;
}

.recipe-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.recipe-card-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.recipe-card:hover .recipe-card-title {
  color: var(--color-primary);
}

.recipe-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.recipe-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-gray-600);
}

.recipe-card-meta-item--time i {
  color: var(--color-primary);
}

.recipe-card-meta-item--servings i {
  color: var(--color-success);
}

.recipe-card-meta-item--type i {
  color: #ef4444;
}

.recipe-card-description {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  flex: 1;
  min-height: 0;
  margin: 0;
}

.recipe-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.recipe-card-link:hover {
  color: var(--color-primary-light);
  gap: 0.5rem;
}

.recipe-card-link i {
  transition: transform 0.2s ease;
}

.recipe-card-link:hover i {
  transform: translateX(3px);
}

/* ============================================
   RECIPE HERO & SECTION
   ============================================ */
.recipe-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

@media (min-width: 768px) {
  .recipe-hero {
    min-height: 500px;
  }
}

.recipe-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.recipe-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recipe-hero .hero-badge-line {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}

.recipe-hero .hero-badge-text {
  color: rgba(255, 255, 255, 0.95);
}

.recipe-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  color: #fff;
}

.recipe-hero .hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .recipe-hero .hero-title {
    font-size: 3.5rem;
  }
}

/* Recipe Section container */
.recipe-section {
  padding: 4rem 0;
  background: var(--color-background);
}

@media (min-width: 768px) {
  .recipe-section {
    padding: 5rem 0;
  }
}

.recipe-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recipe-section .recipes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .recipe-section .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .recipe-section .recipes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background-color: #0A2342;
  color: #F8F7F4;
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  text-align: center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #08192e;
  color: #F8F7F4;
  box-shadow: 0 6px 18px -10px rgba(10, 35, 66, 0.45);
}

.btn-primary[disabled], .btn-primary[aria-disabled="true"] {
  background-color: rgba(10, 35, 66, 0.35);
  color: #F0F3F8;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-outline {
  background-color: #FFFFFF;
  color: rgba(10, 35, 66, 0.75);
  border: 1px solid rgba(216, 195, 165, 0.8);
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-outline:hover, .btn-outline:focus {
  background-color: #F8F7F4;
  color: #0A2342;
  border-color: #0A2342;
}

.btn-outline[disabled], .btn-outline[aria-disabled="true"] {
  color: rgba(10, 35, 66, 0.4);
  border-color: rgba(216, 195, 165, 0.6);
  cursor: not-allowed;
}

.pagination-btn {
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: 9999px;
  color: rgba(10, 35, 66, 0.7);
  background-color: transparent;
  padding: 0.5rem 0.8rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.pagination-btn:hover, .pagination-btn:focus {
  background-color: #FFFFFF;
  color: #0A2342;
  box-shadow: 0 6px 20px -12px rgba(10, 35, 66, 0.6);
}

.pagination-btn.is-active {
  background-color: #0A2342;
  color: #F8F7F4;
  border-color: transparent;
  box-shadow: 0 10px 25px -15px rgba(10, 35, 66, 0.75);
}

.pagination-btn[disabled], .pagination-btn[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--color-white);
  font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(58, 142, 178, 0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--color-gray-400);
}

/* ============================================
   CAROUSEL / SWIPER CUSTOMIZATION
   ============================================ */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
}

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

/* ============================================
   PAGE LOADING INDICATOR
   ============================================ */
#page-loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

#page-loading-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
   SKELETON LOADER
   ============================================ */
.section-skeleton {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.section-skeleton .skeleton-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skeleton-item {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 0.5rem;
  height: 200px;
  margin-bottom: 1rem;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Aspect ratios */
.aspect-ratio-16-9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.aspect-ratio-16-9 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Pulse animation */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Animate spin */
.animate-spin {
  animation: spin 1s linear infinite;
}

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

/* Truncate */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================
   ICON SIZES - Feather Icons
   ============================================ */
.icon-xs { width: 0.75rem; height: 0.75rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }
.icon-2xl { width: 2.5rem; height: 2.5rem; }

/* Feather icon sizing (SVG icons) */
i[data-feather] {
  width: 1em;
  height: 1em;
}
i[data-feather].icon-xs { width: 0.75rem; height: 0.75rem; }
i[data-feather].icon-sm { width: 1rem; height: 1rem; }
i[data-feather].icon-md { width: 1.25rem; height: 1.25rem; }
i[data-feather].icon-lg,
i[data-feather].w-6,
i[data-feather].h-6 { width: 1.5rem; height: 1.5rem; }
i[data-feather].icon-xl,
i[data-feather].w-8,
i[data-feather].h-8 { width: 2rem; height: 2rem; }
i[data-feather].w-7,
i[data-feather].h-7 { width: 1.75rem; height: 1.75rem; }

/* ============================================
   LOADING INDICATORS
   ============================================ */
.loading-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.loading-spinner-sm {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--color-gray-200);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-text {
  margin-left: 0.75rem;
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE UTILITIES - ONLY
   ============================================ */
@media (max-width: 640px) {
  .sm-only-d-none { display: none; }
  .sm-only-d-block { display: block; }
  .sm-only-d-flex { display: flex; }
  .sm-only-flex-col { flex-direction: column; }
  .sm-only-text-center { text-align: center; }
  .sm-only-w-full { width: 100%; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .sm-md-d-none { display: none; }
  .sm-md-d-block { display: block; }
  .sm-md-d-flex { display: flex; }
}

@media (max-width: 767px) {
  .md-down-d-none { display: none; }
  .md-down-d-block { display: block; }
  .md-down-d-flex { display: flex; }
  .md-down-flex-col { flex-direction: column; }
  .md-down-text-center { text-align: center; }
  .md-down-w-full { width: 100%; }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .md-lg-d-none { display: none; }
  .md-lg-d-block { display: block; }
  .md-lg-d-flex { display: flex; }
}

@media (max-width: 1023px) {
  .lg-down-d-none { display: none; }
  .lg-down-d-block { display: block; }
  .lg-down-d-flex { display: flex; }
  .lg-down-flex-col { flex-direction: column; }
  .lg-down-text-center { text-align: center; }
}

/* ============================================
   PRICE RANGE SLIDER
   ============================================ */
.range-slider {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #e2e8f0;
  border-radius: 4px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.range-slider .progress {
  position: absolute;
  height: 100%;
  background-color: #0A2342;
  border-radius: 4px;
  left: 0%;
  right: 0%;
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 0;
  top: -6px;
  -webkit-appearance: none;
  pointer-events: none;
  background: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #0A2342;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
  cursor: pointer;
  border: 2px solid white;
}

/* Details/Summary */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ============================================
   HIDDEN UTILITIES
   ============================================ */
.hidden { display: none !important; }
.invisible { visibility: hidden; }

/* ============================================
   DECORATIVE CLASSES
   ============================================ */
.font-pacifico { font-family: 'Pacifico', cursive; }
.font-cooper { font-family: 'Cooper BT', serif; }
.font-motter { font-family: 'ITC Motter Corpus Condensed', sans-serif; }
.font-display { font-family: 'Poppins', Arial, sans-serif; }

/* ============================================
   LINE CLAMP
   ============================================ */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   EMPTY STATES
   ============================================ */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: var(--color-gray-400);
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

.empty-state-description {
  font-size: 1rem;
  color: var(--color-gray-500);
  max-width: 24rem;
}

/* ============================================
   PRODUCT MODAL
   ============================================ */
.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 50;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  padding: var(--spacing-4);
  max-width: 28rem;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .product-modal {
    padding: var(--spacing-8);
    max-width: 48rem;
  }
}

.product-modal.show {
  display: flex;
}

.modal-product-image {
  width: 100%;
  max-height: 14rem;
  object-fit: contain;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-4);
  background-color: var(--color-gray-100);
}

@media (min-width: 768px) {
  .modal-product-image {
    max-height: 25rem;
  }
}

.modal-product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: var(--spacing-2);
  text-align: center;
}

@media (min-width: 768px) {
  .modal-product-title {
    font-size: 1.875rem;
  }
}

.modal-product-description {
  color: var(--color-gray-700);
  margin-bottom: var(--spacing-4);
  text-align: center;
}

.modal-product-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: var(--spacing-6);
  gap: var(--spacing-2);
}

@media (min-width: 768px) {
  .modal-product-actions {
    flex-direction: row;
    gap: 0;
  }
}

.modal-product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d97706;
}

@media (min-width: 768px) {
  .modal-product-price {
    font-size: 1.5rem;
  }
}

/* ============================================
   PRODUCT CARD MODERN
   ============================================ */
.product-card-modern {
  background: linear-gradient(135deg, #fff 80%, #f0f4fa 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(58, 142, 178, 0.10), 0 1.5px 6px 0 rgba(3,49,104,0.08);
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1), background 0.3s;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-gray-50);
  position: relative;
  min-height: 420px;
}

.product-card-modern:hover {
  box-shadow: 0 16px 48px 0 rgba(58, 142, 178, 0.18), 0 4px 16px 0 rgba(3,49,104,0.10);
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ef 100%);
  transform: translateY(-0.75rem) scale(1.02);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.product-card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.product-card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card-modern:hover .product-card-image-wrapper::after {
  opacity: 1;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.3s;
}

.product-card-modern:hover .product-card-image {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.product-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #033168;
  line-height: 1.3;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.product-card-separator {
  width: 4rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-gray-300), transparent);
  margin: 0 auto 1rem;
  opacity: 0.6;
}

.product-card-spacer {
  flex-grow: 1;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-card-price-wrapper {
  flex: 1;
}

.product-card-price {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #34d399, #3b82f6, #8b5cf6);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px 0 rgba(16,185,129,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card-price:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.product-card-price-placeholder {
  background: linear-gradient(to right, var(--color-gray-300), var(--color-gray-400));
  color: var(--color-gray-700);
}

/* Overlay effect on hover */
.product-card-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(58, 142, 178, 0.1) 50%, transparent 100%);
}

.product-card-modern:hover::after {
  opacity: 1;
}

/* ============================================
   SKELETON CARD
   ============================================ */
.skeleton-card {
  background: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.skeleton-card-image {
  height: 14rem;
  background: var(--color-gray-200);
  border-radius: 1.5rem 1.5rem 0 0;
}

.skeleton-card-content {
  padding: 1.5rem;
}

.skeleton-line {
  background: var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
  background-size: 200% 100%;
}

.skeleton-line-title {
  height: 1.5rem;
  width: 80%;
}

.skeleton-line-text {
  height: 1rem;
  width: 100%;
}

.skeleton-line-text-sm {
  height: 1rem;
  width: 60%;
}

.skeleton-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skeleton-line-price {
  height: 2rem;
  width: 6rem;
}

.skeleton-line-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--radius-full);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   ERROR MESSAGE
   ============================================ */
.error-message {
  text-align: center;
  padding: 2rem 0;
}

.error-message-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-error);
  margin: 0 auto 1rem;
}

.error-message-text {
  color: var(--color-gray-600);
}

/* ============================================
   LOADING MESSAGE
   ============================================ */
.loading-message {
  text-align: center;
  color: var(--color-gray-400);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.loading-message .loading-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-gray-300);
  border-top-color: #3182ce;
}

/* ============================================
   MAIN HEADER - Normal flow, no sticky
   ============================================ */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 40;
  width: 100%;
}

/* ============================================
   MAIN FOOTER
   ============================================ */
.main-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-12) 0 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-10);
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-section {
  flex: 1;
  margin-bottom: var(--spacing-8);
  min-width: 220px;
}

@media (min-width: 768px) {
  .footer-section {
    margin-bottom: 0;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-4);
}

.footer-logo-image {
  width: 6rem;
  height: 3rem;
  padding: 0.25rem;
}

.footer-description {
  color: #90cdf4;
}

.footer-contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-3);
  font-family: 'Poppins', sans-serif;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  color: #ebf8ff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.footer-contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gray-300);
  flex-shrink: 0;
}

.footer-link {
  color: #ebf8ff;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: var(--spacing-4);
  margin-top: var(--spacing-4);
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  color: var(--color-gray-300);
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: #fbbf24;
}

.footer-social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-social-text {
  margin-left: var(--spacing-2);
  font-size: 0.875rem;
  color: var(--color-gray-200);
}

.footer-bottom {
  border-top: 1px solid #2c5282;
  margin-top: var(--spacing-10);
  padding: var(--spacing-6) var(--spacing-6);
  text-align: center;
  font-size: 0.875rem;
  color: #90cdf4;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-2);
}

@media (min-width: 768px) {
  .footer-legal-links {
    flex-direction: row;
    gap: var(--spacing-6);
  }
}

.footer-nav-link {
  color: var(--color-white);
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-copyright {
  margin-top: var(--spacing-2);
}

/* ============================================
   CART OVERLAY & SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
}

.cart-overlay.show {
  display: block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 24rem;
  background-color: var(--color-white);
  box-shadow: var(--shadow-2xl);
  z-index: 99999;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.translate-x-full {
  transform: translateX(100%);
}

.cart-sidebar:not(.translate-x-full) {
  transform: translateX(0);
}

/* ============================================
   PRODUCT MODAL OVERLAY
   ============================================ */
.product-modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  display: none;
}

.product-modal-overlay.show {
  display: block;
}

.modal-close-btn {
  align-self: flex-end;
  color: var(--color-gray-500);
  margin-bottom: var(--spacing-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.modal-close-btn:hover {
  color: var(--color-gray-800);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  width: 100%;
  background-color: var(--color-white);
  padding: var(--spacing-3) var(--spacing-2);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .breadcrumbs {
    padding: var(--spacing-3) 0;
  }
}

.breadcrumbs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-6);
}

.breadcrumb-link {
  color: var(--color-gray-600);
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--color-primary);
}

.breadcrumb-link-active {
  font-weight: 600;
}

.breadcrumb-separator {
  margin: 0 var(--spacing-2);
  color: var(--color-gray-400);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background-color: #1e3a8a;
  color: var(--color-white);
  border-radius: var(--radius-full);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.3s, background-color 0.2s;
  opacity: 0;
  pointer-events: none;
  border: none;
  cursor: pointer;
}

.scroll-to-top-btn:hover {
  background-color: #1e40af;
}

.scroll-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top-btn:focus {
  outline: none;
}

/* ============================================
   CART COMPONENT
   ============================================ */
.cart-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-4);
  border-bottom: 1px solid var(--color-gray-200);
  background-color: var(--color-white);
}

.cart-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-gray-800);
}

.cart-close-btn {
  color: var(--color-gray-500);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: var(--color-gray-800);
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-4);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: var(--spacing-8) 0;
}

.cart-empty-icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-gray-300);
  margin-bottom: var(--spacing-4);
}

.cart-empty-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-2);
}

.cart-empty-text {
  color: var(--color-gray-500);
  margin-bottom: var(--spacing-6);
}

.btn-continue-shopping {
  background-color: #2563eb;
  color: var(--color-white);
  font-weight: 600;
  padding: var(--spacing-2) var(--spacing-6);
  border-radius: var(--radius-lg);
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-continue-shopping:hover {
  background-color: #1d4ed8;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  padding: var(--spacing-3);
  background-color: var(--color-gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-3);
}

.cart-item-image {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  color: var(--color-gray-800);
}

.cart-item-price {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.quantity-btn-decrease,
.quantity-btn-increase {
  width: 2rem;
  height: 2rem;
  background-color: var(--color-gray-200);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quantity-btn-decrease:hover,
.quantity-btn-increase:hover {
  background-color: var(--color-gray-300);
}

.quantity-value {
  width: 2rem;
  text-align: center;
  font-weight: 600;
}

.cart-item-remove {
  color: var(--color-error);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #dc2626;
}

.cart-footer {
  border-top: 1px solid var(--color-gray-200);
  padding: var(--spacing-4);
  background-color: var(--color-white);
}

.cart-footer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-4);
}

.cart-footer-total-label {
  font-size: 1.125rem;
  font-weight: 600;
}

.cart-footer-total-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
}

.cart-footer-actions {
  display: flex;
  gap: var(--spacing-2);
}

.cart-btn-clear {
  flex: 1;
  background-color: var(--color-gray-200);
  color: var(--color-gray-800);
  font-weight: 600;
  padding: var(--spacing-3) var(--spacing-4);
  border-radius: var(--radius-lg);
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.cart-btn-clear:hover {
  background-color: var(--color-gray-300);
}

.cart-btn-checkout {
  flex: 1;
  background-color: #2563eb;
  color: var(--color-white);
  font-weight: 600;
  padding: var(--spacing-3) var(--spacing-4);
  border-radius: var(--radius-lg);
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.cart-btn-checkout:hover {
  background-color: #1d4ed8;
}

/* ============================================
   MENU COMPONENT
   ============================================ */
.menu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-6);
  padding-top: var(--spacing-3);
  padding-bottom: var(--spacing-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.menu-logo-image {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .menu-logo-image {
    height: 3.5rem;
  }
}

.menu-nav {
  display: none;
  gap: var(--spacing-8);
  align-items: center;
}

@media (min-width: 768px) {
  .menu-nav {
    display: flex;
  }
}

.menu-link {
  color: var(--color-gray-600);
  transition: color 0.2s;
}

.menu-link:hover {
  color: #1e3a8a;
  text-decoration: none;
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.menu-cart-btn {
  position: relative;
  padding: var(--spacing-2);
  color: var(--color-gray-600);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.menu-cart-btn:hover {
  color: #0A2342;
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-error);
  color: var(--color-white);
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.menu-mobile-toggle {
  display: block;
}

@media (min-width: 768px) {
  .menu-mobile-toggle {
    display: none;
  }
}

.menu-mobile-btn {
  color: var(--color-gray-600);
  background: none;
  border: none;
  padding: var(--spacing-2);
  cursor: pointer;
  transition: color 0.2s;
}

.menu-mobile-btn:hover {
  color: #1e3a8a;
}

.menu-mobile-btn:focus {
  outline: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: var(--spacing-4) var(--spacing-6);
  padding-top: calc(var(--spacing-4) + env(safe-area-inset-top));
  padding-bottom: calc(var(--spacing-4) + env(safe-area-inset-bottom));
  box-shadow: var(--shadow-lg);
  z-index: 50;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu:not(.hidden) {
  transform: translateX(0);
}

.mobile-menu.hidden {
  transform: translateX(-100%);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-4);
}

.mobile-menu-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-800);
}

.mobile-menu-close {
  color: var(--color-gray-600);
  background: none;
  border: none;
  padding: var(--spacing-3);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background-color 0.2s, color 0.2s;
}

.mobile-menu-close:hover {
  background-color: var(--color-gray-100);
  color: var(--color-gray-800);
}

.mobile-menu-close:focus {
  outline: none;
  background-color: var(--color-gray-100);
}

.mobile-menu-links {
  padding-top: var(--spacing-2);
  padding-bottom: var(--spacing-2);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4) var(--spacing-4);
  color: var(--color-gray-700);
  background: none;
  border: none;
  border-radius: var(--radius-lg);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
  min-height: 48px;
  font-size: 1rem;
}

.mobile-menu-link:hover {
  background-color: var(--color-gray-100);
  color: var(--color-primary);
}

.mobile-menu-link:focus {
  outline: none;
  background-color: var(--color-gray-100);
  color: var(--color-primary);
}

.mobile-menu-link:active {
  background-color: var(--color-gray-200);
}

.mobile-menu-cart {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  width: 100%;
}

/* ============================================
   PRODUCT CARD CLASSIC (producto-card)
   ============================================ */
.producto-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.producto-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.producto-imagen {
  width: 100%;
  height: auto;
}

.producto-imagen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.producto-contenido {
  padding: var(--spacing-4);
}

.producto-nombre {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-2);
}

.producto-descripcion {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-3);
}

.producto-precio {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

/* ============================================
   FEATURED PRODUCT CAROUSEL - CSS 3D EFFECTS
   ============================================ */

.featured-products-carousel-wrapper {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.featured-products-carousel-wrapper .carousel-viewport {
  overflow: hidden;
  perspective: 1200px;
  padding-top: 2rem;
  padding-bottom: 3rem;
  margin-top: -2rem;
  margin-bottom: -3rem;
}

.featured-products-carousel-wrapper .carousel-track {
  display: flex;
  gap: var(--gap, 2rem);
  transform-style: preserve-3d;
  will-change: transform;
  animation: none;
}

.featured-products-carousel-wrapper .carousel-track.shifting {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Slides */
.featured-products-carousel-wrapper .product-slide-item {
  flex: 0 0 calc((100% - (var(--gap, 2rem) * 2)) / 3);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}

/* Animaciones de salida y entrada (Efectos 3D) */
.featured-products-carousel-wrapper .product-slide-item.exiting {
  opacity: 0;
  transform: scale(0.75) translateZ(-150px) rotateY(-15deg);
}

.featured-products-carousel-wrapper .product-slide-item.entering {
  opacity: 0;
  transform: scale(0.75) translateZ(-150px) rotateY(15deg);
}

/* Tarjetas */
.featured-products-carousel-wrapper .featured-product-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(3, 49, 104, 0.05);
  box-shadow: 0 8px 24px rgba(3, 49, 104, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-products-carousel-wrapper .featured-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(3, 49, 104, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.featured-products-carousel-wrapper .featured-product-image-wrapper {
  width: 100%;
  height: 475px;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}

.featured-products-carousel-wrapper .featured-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-products-carousel-wrapper .featured-product-card:hover .featured-product-image {
  transform: scale(1.08);
}

.featured-products-carousel-wrapper .featured-product-info {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-products-carousel-wrapper .featured-product-name {
  color: #033168;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.featured-products-carousel-wrapper .featured-product-card:hover .featured-product-name {
  color: #d4af37;
}

.featured-products-carousel-wrapper .featured-product-text {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Flechas */
.featured-products-carousel-wrapper .featured-carousel-prev,
.featured-products-carousel-wrapper .featured-carousel-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #033168;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.featured-products-carousel-wrapper .featured-carousel-prev { left: -10px; }
.featured-products-carousel-wrapper .featured-carousel-next { right: -10px; }

.featured-products-carousel-wrapper .featured-carousel-prev:hover,
.featured-products-carousel-wrapper .featured-carousel-next:hover {
  background-color: #033168;
  color: #ffffff;
  border-color: #033168;
  box-shadow: 0 10px 30px rgba(3, 49, 104, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.featured-products-carousel-wrapper .featured-carousel-prev:active,
.featured-products-carousel-wrapper .featured-carousel-next:active {
  transform: translateY(-50%) scale(0.95);
}

/* Responsive */
@media (max-width: 992px) {
  .featured-products-carousel-wrapper .product-slide-item {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
  .featured-products-carousel-wrapper { padding: 0 2.5rem; }
}

@media (max-width: 768px) {
  .featured-products-carousel-wrapper .product-slide-item {
    flex: 0 0 100%;
  }
  .productos-destacados { padding: 4rem 1rem; }
  .productos-destacados-title { font-size: 2rem; }
  .featured-products-carousel-wrapper { padding: 0 1.5rem; }
  .featured-products-carousel-wrapper .featured-carousel-prev,
  .featured-products-carousel-wrapper .featured-carousel-next {
    width: 45px;
    height: 45px;
  }
  .featured-products-carousel-wrapper .featured-carousel-prev { left: -5px; }
  .featured-products-carousel-wrapper .featured-carousel-next { right: -5px; }
}

@media (max-width: 640px) {
  .featured-carousel-prev {
    left: 4px;
  }

  .featured-carousel-next {
    right: 4px;
  }

  .featured-carousel-prev svg,
  .featured-carousel-next svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1024px) {
  .featured-carousel-prev {
    left: -20px;
  }

  .featured-carousel-next {
    right: -20px;
  }
}

/* ============================================
   SECCIÓN PRODUCTOS DESTACADOS — Premium Redesign
   ============================================ */
.productos-destacados {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}

.productos-destacados-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.productos-destacados-header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.productos-destacados-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #033168;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.productos-destacados-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Línea decorativa dorada */
.productos-destacados-header-inner::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0c84c);
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

/* ============================================
   WRAPPER DEL CARRUSEL
   ============================================ */

/* ============================================
   PRODUCTOS DESTACADOS CTA
   ============================================ */

.featured-product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.featured-product-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #033168;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.featured-product-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.featured-product-text p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(3, 49, 104, 0.08);
  margin-top: auto;
}

.featured-product-price {
  font-weight: 600;
  color: #d97706;
  font-size: 1.125rem;
}

.add-to-cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #033168;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(3, 49, 104, 0.2);
}

.add-to-cart-button:hover:not(:disabled) {
  background: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.add-to-cart-button:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  box-shadow: none;
}

.add-to-cart-button svg {
  width: 16px;
  height: 16px;
}

.productos-destacados-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.productos-destacados-cta .btn-ver-todos {
  display: inline-block;
  background-color: transparent;
  color: #033168;
  border: 2px solid #033168;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.productos-destacados-cta .btn-ver-todos:hover {
  background-color: #033168;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(3, 49, 104, 0.2);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE - PRODUCTS CAROUSEL 3D
   ============================================ */
@media (max-width: 992px) {
  .featured-products-carousel-wrapper .product-slide-item {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
  .featured-products-carousel-wrapper { padding: 0 2.5rem; }
  .featured-carousel-prev { left: 0px; }
  .featured-carousel-next { right: 0px; }
}

@media (max-width: 768px) {
  .featured-products-carousel-wrapper .product-slide-item {
    flex: 0 0 100%;
  }
  .productos-destacados { padding: 4rem 1rem; }
  .productos-destacados-title { font-size: 2rem; }
  .featured-products-carousel-wrapper { padding: 0 1.5rem; }
  .featured-carousel-prev,
  .featured-carousel-next {
    width: 45px;
    height: 45px;
  }
  .featured-carousel-prev { left: -5px; }
  .featured-carousel-next { right: -5px; }
}

/* ============================================
   NAV LINK (global)
   ============================================ */
.nav-link {
  color: var(--color-gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================
   BADGE PREMIUM (global)
   ============================================ */
.badge-premium {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-1) var(--spacing-2);
  background: linear-gradient(to right, #fbbf24, #fb923c);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CONTAINER (global utility)
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--spacing-6);
    padding-right: var(--spacing-6);
  }
}

/* Título sin hero (para páginas sin imagen de fondo) */
.hero-title-plain {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
  .hero-title-plain {
    font-size: 2.25rem;
  }
}

.hero-subtitle-plain {
  font-size: 1rem;
  color: var(--color-gray-600);
  margin-bottom: 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle-plain {
    font-size: 1.125rem;
  }
}

/* ============================================
   CATALOG PAGE - Premium Immersive PDF Viewer
   Tu paleta: #033168 (primary), #3a8eb2 (primary-light)
   ============================================ */

/* Header compacto con acciones */
.catalog-header {
  background: linear-gradient(135deg, #033168 0%, #034a8c 100%);
  padding: 1.25rem 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(3, 49, 104, 0.3);
}

.catalog-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .catalog-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
  }
}

.catalog-header-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.catalog-header-title svg {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .catalog-header-title {
    font-size: 1.5rem;
  }
}

.catalog-header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Botones del header */
.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
}

.catalog-btn svg {
  width: 16px;
  height: 16px;
}

.catalog-btn-primary {
  background: white;
  color: #033168;
}

.catalog-btn-primary:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.catalog-btn-whatsapp {
  background: #25d366;
  color: white;
}

.catalog-btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ============================================
   RECIPES HEADER - Compact Banner Design
   ============================================ */
.recipes-header {
  background: linear-gradient(135deg, #033168 0%, #034a8c 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.recipes-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(58, 142, 178, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.recipes-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #033168 0%, #3a8eb2 50%, #033168 100%);
}

.recipes-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .recipes-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
  }
}

.recipes-header-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.recipes-header-title svg {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .recipes-header-title {
    font-size: 2.25rem;
  }
}

.recipes-header-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.25rem 0 0 0;
  max-width: 500px;
}

@media (min-width: 768px) {
  .recipes-header-subtitle {
    font-size: 1rem;
  }
}

.recipes-header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  animation: whatsappRing 2s infinite;
}

.whatsapp-float-btn::after {
  content: '¿Necesitas ayuda?';
  position: absolute;
  right: 70px;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  }
}

@keyframes whatsappRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .whatsapp-float-btn {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float-btn svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float-btn::after {
    display: none;
  }
}

/* ============================================
   VISOR PDF INMERSIVO - El mejor del mundo
   ============================================ */
.catalog-viewer {
  background: #eeeeee;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Contenedor principal del visor */
.catalog-viewer-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .catalog-viewer-main {
    padding: 2rem;
  }
}

/* Marco del PDF - elegante y minimalista */
.catalog-frame {
  background: white;
  border-radius: 12px;
  box-shadow:
    0 2px 8px rgba(3, 49, 104, 0.06),
    0 8px 24px rgba(3, 49, 104, 0.08),
    0 24px 48px rgba(3, 49, 104, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Header del frame */
.catalog-frame-header {
  background: linear-gradient(135deg, #033168 0%, #3a8eb2 100%);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-frame-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.catalog-frame-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.catalog-frame-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

/* Área del contenido PDF */
.catalog-viewer-content {
  background: #f8f9fa;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .catalog-viewer-content {
    min-height: 600px;
  }
}

/* Inner container para el PDF */
#pdf-viewer-inner {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Canvas del PDF */
#pdf-canvas {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Info de página */
#pdf-page-info {
  text-align: center;
  padding: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #033168;
  letter-spacing: 0.02em;
}

/* ============================================
   CONTROLES DE NAVEGACIÓN PREMIUM
   ============================================ */
.catalog-nav {
  background: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.catalog-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #033168;
  background: white;
  color: #033168;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.catalog-nav-btn:hover:not(:disabled) {
  background: #033168;
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(3, 49, 104, 0.3);
}

.catalog-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  border-color: #9ca3af;
  color: #9ca3af;
}

.catalog-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Barra de progreso */
.catalog-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 400px;
  min-width: 150px;
}

.catalog-progress-bar {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.catalog-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #033168, #3a8eb2);
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0%;
}

.catalog-progress-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #033168;
  white-space: nowrap;
  min-width: 70px;
  text-align: center;
}

/* Controles de zoom */
.catalog-zoom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.catalog-zoom-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: white;
  color: #033168;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 1.125rem;
}

.catalog-zoom-btn:hover {
  background: #f0f4f8;
  border-color: #033168;
}

.catalog-zoom-btn svg {
  width: 18px;
  height: 18px;
}

/* Loading state */
.catalog-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #033168;
  padding: 3rem;
}

.catalog-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(3, 49, 104, 0.1);
  border-top-color: #033168;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.catalog-loading-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6b7280;
}

/* ============================================
   HERO SECTION - Premium Style
   ============================================ */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Decorative geometric elements */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 75vh;
  }

  /* Large decorative circle - top right */
  .hero-section::before {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
  }

  /* Small decorative circle - bottom left */
  .hero-section::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
  }
}

/* Additional decorative line */
.hero-decoration-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* Overlay con gradiente más sofisticado */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(3, 49, 104, 0.75) 0%, rgba(30, 70, 112, 0.6) 50%, rgba(58, 142, 178, 0.45) 100%);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 30%),
    linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
}

/* Contenido alineado a la izquierda en desktop */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  min-height: inherit;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem 2rem;
    max-width: 800px;
  }
}

/* Badge decorativo - Premium Style */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-badge-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9));
}

.hero-badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

/* Título con tipografía elegante */
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.15;
  font-family: 'Poppins', sans-serif;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
    letter-spacing: -0.02em;
  }
}

/* Subtítulo con mejor jerarquía */
.hero-subtitle {
  font-size: 1.0625rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  line-height: 1.75;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
  }
}

/* ============================================
   HERO BUTTONS - Premium Two-Tone Design
   ============================================ */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.8s;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

/* Primary Button - Solid Fill */
.hero-button {
  position: relative;
  background: #ffffff;
  color: #033168;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow:
    0 4px 15px rgba(3, 49, 104, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  overflow: hidden;
  min-width: 180px;
}

/* Shimmer effect */
.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(3, 49, 104, 0.08) 50%,
    transparent 70%
  );
  transition: left 0.6s ease;
}

/* Icon styling within button */
.hero-button i[data-feather],
.hero-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-button:hover::before {
  left: 100%;
}

.hero-button:hover {
  background: #ffffff;
  color: #1a4a8a;
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(3, 49, 104, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-button:hover i[data-feather],
.hero-button:hover svg {
  transform: translateX(3px);
}

.hero-button:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 6px 20px rgba(3, 49, 104, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-button:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.8),
    0 0 0 6px rgba(3, 49, 104, 0.3),
    0 8px 25px rgba(3, 49, 104, 0.25);
}

/* Secondary Button - Outline Variant */
.hero-button-outline {
  background: transparent;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9375rem 1.875rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  min-width: 180px;
}

.hero-button-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.hero-button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.hero-button-outline:hover::before {
  opacity: 1;
}

.hero-button-outline:active {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-button-outline:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animación de entrada */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECCIÓN CONFIANZA (Trust Badges)
   ============================================ */
.confianza-section {
  padding: 2rem 1rem;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .confianza-section {
    padding: 2.5rem 1.5rem;
  }
}

.confianza-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .confianza-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.confianza-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 1.25rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  gap: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.confianza-badge:hover {
  border-color: #d4af37;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.confianza-badge svg {
  width: 28px;
  height: 28px;
  color: #d4af37;
  flex-shrink: 0;
}

.confianza-badge > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.confianza-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #033168;
  margin: 0;
  line-height: 1.3;
}

.confianza-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}
