    /* ============================================
       1. CUSTOM PROPERTIES & DESIGN SYSTEM
       ============================================ */
    :root {
      --orange: #FF5D09;
      --orange-hover: #E85000;
      --turquoise: #01BEC3;
      --turquoise-hover: #00A5A9;
      --white: #FFFFFF;
      --bg-warm: #F7F6F2;
      --bg-warm-alt: #F0EFEB;
      --text-dark: #1A1A1A;
      --text-body: #3D3D3D;
      --text-muted: #6B7280;
      --text-light: rgba(255,255,255,0.7);
      --border-light: rgba(0,0,0,0.07);
      --footer-bg: #1C1C1E;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-nav: 0 2px 24px rgba(0,0,0,0.07);
      --radius-sm: 4px;
      --radius-md: 6px;
      --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --transition-fast: 200ms ease;
      --transition-base: 300ms ease;
      --transition-slow: 500ms ease;
      --container: 1200px;
      --section-py: clamp(64px, 10vw, 120px);
    }

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

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

    body {
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-body);
      background: var(--white);
      overflow-x: hidden;
    }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: color var(--transition-fast);
    }

    ul, ol { list-style: none; }

    /* ============================================
       3. TYPOGRAPHY
       ============================================ */
    .eyebrow {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      line-height: 1.4;
    }

    .section-title {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 540px;
    }

    /* ============================================
       4. LAYOUT
       ============================================ */
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    .container--narrow {
      max-width: 800px;
    }

    /* ============================================
       5. BUTTONS
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border: 2px solid transparent;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all var(--transition-base);
      white-space: nowrap;
    }

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

    .btn--primary:hover {
      background: var(--orange-hover);
      border-color: var(--orange-hover);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: transparent;
      color: var(--orange);
      border-color: var(--orange);
    }

    .btn--outline:hover {
      background: var(--orange);
      color: var(--white);
      transform: translateY(-1px);
    }

    .btn--outline-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.6);
    }

    .btn--outline-white:hover {
      background: var(--white);
      color: var(--text-dark);
      border-color: var(--white);
    }

    .btn--small {
      padding: 10px 24px;
      font-size: 12px;
    }

    /* ============================================
       6. HEADER
       ============================================ */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 0 24px;
      transition: all var(--transition-base);
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: var(--container);
      margin: 0 auto;
      height: 72px;
      transition: height var(--transition-base);
    }

    .header--scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--shadow-nav);
    }

    .header--scrolled .header__inner {
      height: 64px;
    }

    .header__logo {
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
      transition: color var(--transition-base);
      flex-shrink: 0;
    }

    .header--scrolled .header__logo {
      color: var(--text-dark);
    }

    .header__nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .header__nav a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      transition: color var(--transition-fast);
      position: relative;
    }

    .header__nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: width var(--transition-base);
    }

    .header__nav a:hover {
      color: var(--white);
    }

    .header__nav a:hover::after {
      width: 100%;
    }

    .header--scrolled .header__nav a {
      color: var(--text-muted);
    }

    .header--scrolled .header__nav a:hover {
      color: var(--text-dark);
    }

    .header__cta {
      padding: 9px 24px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: var(--white);
      background: var(--orange);
      border-radius: var(--radius-sm);
      transition: all var(--transition-base);
      flex-shrink: 0;
    }

    .header__cta:hover {
      background: var(--orange-hover);
      transform: translateY(-1px);
    }

    .header__menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-shrink: 0;
    }

    .header__menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      margin: 6px 0;
      transition: all var(--transition-base);
    }

    .header--scrolled .header__menu-toggle span {
      background: var(--text-dark);
    }

    /* ============================================
       7. HERO
       ============================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

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

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

    .hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.82) 0%,
        rgba(10, 10, 10, 0.65) 30%,
        rgba(10, 10, 10, 0.35) 55%,
        rgba(10, 10, 10, 0.15) 75%,
        rgba(10, 10, 10, 0.08) 100%
      );
    }

    .hero__content {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

    .hero__inner {
      max-width: 600px;
      padding-top: 72px;
    }

    .hero__eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 24px;
    }

    .hero__eyebrow span {
      color: var(--turquoise);
      margin: 0 10px;
    }

    .hero__title {
      font-size: clamp(36px, 5.2vw, 64px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .hero__text {
      font-size: 18px;
      color: rgba(255,255,255,0.75);
      line-height: 1.65;
      margin-bottom: 40px;
      max-width: 480px;
    }

    .hero__actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero__trust {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.5px;
    }

    .hero__trust span {
      color: var(--turquoise);
      margin: 0 10px;
    }

    .hero__scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.4);
      animation: heroScroll 2.5s ease-in-out infinite;
    }

    .hero__scroll svg {
      width: 20px;
      height: 20px;
    }

    @keyframes heroScroll {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
      50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
    }

    /* ============================================
       8. TRUST BAR
       ============================================ */
    .trust {
      padding: 64px 0;
      background: var(--white);
      border-bottom: 1px solid var(--border-light);
    }

    .trust__headline {
      text-align: center;
      font-size: clamp(20px, 2.5vw, 26px);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.01em;
      margin-bottom: 48px;
    }

    .trust__items {
      display: flex;
      justify-content: center;
      gap: 0;
    }

    .trust__item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 48px;
      border-right: 1px solid var(--border-light);
    }

    .trust__item:last-child {
      border-right: none;
    }

    .trust__icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--turquoise);
      flex-shrink: 0;
    }

    .trust__icon svg {
      width: 28px;
      height: 28px;
    }

    .trust__label {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .trust__desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ============================================
       9. CATEGORIES
       ============================================ */
    .categories {
      padding: var(--section-py) 0;
      background: var(--white);
    }

    .categories__header {
      margin-bottom: 48px;
    }

    .categories__eyebrow {
      color: var(--turquoise);
      margin-bottom: 16px;
    }

    .categories__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 240px 240px 220px;
      gap: 12px;
    }

    .cat-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-sm);
      cursor: pointer;
    }

    .cat-card__img {
      position: absolute;
      inset: 0;
    }

    .cat-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .cat-card:hover .cat-card__img img {
      transform: scale(1.06);
    }

    .cat-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.08) 100%);
      transition: background var(--transition-slow);
    }

    .cat-card:hover .cat-card__overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.02) 100%);
    }

    .cat-card__content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      z-index: 2;
    }

    .cat-card__name {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .cat-card__cta {
      font-size: 13px;
      font-weight: 500;
      color: var(--turquoise);
      opacity: 0;
      transform: translateY(8px);
      transition: all var(--transition-base);
    }

    .cat-card:hover .cat-card__cta {
      opacity: 1;
      transform: translateY(0);
    }

    /* Featured category - spans 2 cols and 2 rows */
    .cat-card--featured {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }

    .cat-card--featured .cat-card__name {
      font-size: 28px;
    }

    .cat-card--featured .cat-card__content {
      padding: 32px;
    }

    .cat-card--featured .cat-card__tag {
      display: inline-block;
      padding: 4px 12px;
      background: var(--orange);
      color: var(--white);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 2px;
      margin-bottom: 12px;
    }

    /* Last category spans 2 columns */
    .cat-card--wide {
      grid-column: span 2;
    }

    /* ============================================
       10. PRODUCTS
       ============================================ */
    .products {
      padding: var(--section-py) 0;
      background: var(--bg-warm);
    }

    .products__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }

    .products__grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-bottom: 56px;
    }

    .product-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }

    .product-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
      border-color: transparent;
    }

    .product-card__img {
      position: relative;
      height: 132px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      overflow: hidden;
      padding: 6px;
    }

    .product-card__img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.4s ease;
    }

    /* Fotos adicionales de la galería: apiladas e invisibles por defecto,
       se van alternando al pasar el cursor por la tarjeta (efecto hover). */
    .product-card__img img:not(.is-default) {
      position: absolute;
      top: 0; left: 0;
      opacity: 0;
    }

    .product-card__img img.is-active {
      opacity: 1;
      z-index: 1;
    }

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

    .product-card__tag {
      position: absolute;
      top: 8px;
      left: 8px;
      padding: 3px 8px;
      background: var(--turquoise);
      color: var(--white);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      border-radius: 2px;
      z-index: 2;
    }

    .product-card__discount-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      padding: 3px 7px;
      background: var(--orange);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      border-radius: 2px;
      z-index: 2;
    }

    .product-card__body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 10px 12px 12px;
      border-top: 1px solid var(--border-light);
    }

    .product-card__brand {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 3px;
      min-height: 12px;
    }

    .product-card__name {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 34px;
    }

    .product-card__price-block {
      margin-top: auto;
      margin-bottom: 8px;
    }

    .product-card__price-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
      flex-wrap: wrap;
    }

    .product-card__price {
      font-size: 19px;
      font-weight: 800;
      color: var(--orange);
      line-height: 1.1;
    }

    .product-card__price--query {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      font-style: italic;
    }

    .product-card__price-old {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: line-through;
    }

    .product-card__discount-inline {
      font-size: 11px;
      font-weight: 700;
      color: var(--orange);
    }

    .product-card__wholesale {
      margin-top: 5px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10.5px;
      color: var(--text-muted);
      background: var(--bg-warm);
      border-radius: 3px;
      padding: 3px 7px;
      line-height: 1.3;
    }

    .product-card__wholesale strong {
      color: var(--turquoise-hover);
      font-weight: 700;
    }

    .products__cta {
      text-align: center;
    }

    /* ============================================
       11. EDITORIAL BLOCK
       ============================================ */
    .editorial {
      position: relative;
      overflow: hidden;
    }

    .editorial__wrapper {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      min-height: 520px;
    }

    .editorial__image {
      position: relative;
      overflow: hidden;
    }

    .editorial__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .editorial:hover .editorial__image img {
      transform: scale(1.03);
    }

    .editorial__content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 72px;
      background: var(--bg-warm);
      position: relative;
    }

    .editorial__accent {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 80px;
      background: var(--orange);
      border-radius: 2px;
    }

    .editorial__eyebrow {
      color: var(--turquoise);
      margin-bottom: 20px;
    }

    .editorial__title {
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .editorial__text {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 420px;
    }

    /* ============================================
       12. VALUE PROPOSITION
       ============================================ */
    .values {
      padding: var(--section-py) 0;
      background: var(--white);
    }

    .values__header {
      margin-bottom: 64px;
    }

    .values__eyebrow {
      color: var(--turquoise);
      margin-bottom: 16px;
    }

    .values__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
    }

    .value-item {
      padding: 48px;
      position: relative;
      border-bottom: 1px solid var(--border-light);
    }

    .value-item:nth-child(odd) {
      border-right: 1px solid var(--border-light);
    }

    .value-item:nth-child(n+3) {
      border-bottom: none;
    }

    .value-item__number {
      font-size: 80px;
      font-weight: 900;
      color: var(--orange);
      opacity: 0.08;
      line-height: 1;
      position: absolute;
      top: 24px;
      right: 36px;
      letter-spacing: -0.04em;
      user-select: none;
    }

    .value-item__title {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
      position: relative;
    }

    .value-item__line {
      width: 40px;
      height: 3px;
      background: var(--turquoise);
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .value-item__text {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 340px;
    }

    /* ============================================
       13. ABOUT
       ============================================ */
    .about {
      padding: var(--section-py) 0;
      background: var(--bg-warm);
      overflow: hidden;
    }

    .about__wrapper {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }

    .about__content {
      padding-right: 20px;
    }

    .about__eyebrow {
      color: var(--turquoise);
      margin-bottom: 20px;
    }

    .about__title {
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.12;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .about__text {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .about__stats {
      display: flex;
      gap: 40px;
    }

    .about__stat {
      text-align: left;
    }

    .about__stat-number {
      font-size: 36px;
      font-weight: 800;
      color: var(--orange);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .about__stat-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    .about__image-wrapper {
      position: relative;
    }

    .about__image {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      z-index: 2;
    }

    .about__image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }

    .about__image-frame {
      position: absolute;
      top: -12px;
      right: -12px;
      bottom: 12px;
      left: 12px;
      border: 3px solid var(--turquoise);
      border-radius: var(--radius-md);
      z-index: 1;
      opacity: 0.35;
    }

    /* ============================================
       14. TESTIMONIALS
       ============================================ */
    .testimonials {
      padding: var(--section-py) 0;
      background: var(--bg-warm);
    }

    .testimonials__header {
      text-align: center;
      margin-bottom: 56px;
    }

    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial {
      padding: 40px;
      position: relative;
    }

    .testimonial__quote-mark {
      font-size: 64px;
      font-weight: 900;
      color: var(--turquoise);
      opacity: 0.2;
      line-height: 1;
      margin-bottom: -12px;
      user-select: none;
    }

    .testimonial__text {
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial__author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial__avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--turquoise);
      opacity: 0.2;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }

    .testimonial__name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .testimonial__role {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* ============================================
       16. FAQ
       ============================================ */
    .faq {
      padding: var(--section-py) 0;
      background: var(--white);
    }

    .faq__header {
      text-align: center;
      margin-bottom: 56px;
    }

    .faq__list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq__item {
      border-bottom: 1px solid var(--border-light);
    }

    .faq__question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      cursor: pointer;
      gap: 16px;
      width: 100%;
      background: none;
      border: none;
      font-family: var(--font);
      text-align: left;
    }

    .faq__question-text {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }

    .faq__icon {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--turquoise);
      transition: transform var(--transition-base);
    }

    .faq__item.is-open .faq__icon {
      transform: rotate(45deg);
    }

    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq__answer-inner {
      padding-bottom: 24px;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 600px;
    }

    /* ============================================
       17. CTA FINAL
       ============================================ */
    .cta-final {
      position: relative;
      padding: clamp(80px, 12vw, 140px) 0;
      overflow: hidden;
    }

    .cta-final__bg {
      position: absolute;
      inset: 0;
    }

    .cta-final__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-final__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.6) 100%
      );
    }

    .cta-final__content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-final__title {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .cta-final__text {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .cta-final__actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ============================================
       18. FOOTER
       ============================================ */
    .footer {
      background: var(--footer-bg);
      padding: 72px 0 0;
      color: rgba(255,255,255,0.65);
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
      gap: 48px;
      padding-bottom: 56px;
    }

    .footer__logo {
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .footer__desc {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 300px;
    }

    .footer__social {
      display: flex;
      gap: 12px;
    }

    .footer__social a {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.6);
      transition: all var(--transition-base);
    }

    .footer__social a:hover {
      background: var(--orange);
      color: var(--white);
    }

    .footer__social svg {
      width: 16px;
      height: 16px;
    }

    .footer__heading {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }

    .footer__links li {
      margin-bottom: 12px;
    }

    .footer__links a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      transition: color var(--transition-fast);
    }

    .footer__links a:hover {
      color: var(--orange);
    }

    .footer__contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 14px;
      line-height: 1.5;
    }

    .footer__contact-item svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--turquoise);
    }

    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer__copyright {
      font-size: 13px;
      color: rgba(255,255,255,0.35);
    }

    .footer__credits {
      font-size: 13px;
      color: rgba(255,255,255,0.35);
    }

    .credits__spyke {
      color: #f59e0b;
      font-weight: 700;
      text-decoration: none;
      transition: color 0.25s ease, font-size 0.25s ease, transform 0.25s ease;
      display: inline-block;
    }

    .credits__spyke:hover {
      color: #fbbf24;
      font-size: 16px;
      transform: scale(1.08);
    }

    .credits__spyke:focus-visible {
      outline: 2px solid #f59e0b;
      outline-offset: 2px;
      border-radius: 2px;
    }

    /* ============================================
       19. WHATSAPP FLOATING BUTTON
       ============================================ */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
      transition: transform var(--transition-base), box-shadow var(--transition-base);
      animation: whatsappPulse 3s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    }

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      color: var(--white);
    }

    @keyframes whatsappPulse {
      0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
      50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5); }
    }

    /* ============================================
       20. MOBILE MENU
       ============================================ */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: var(--white);
      display: flex;
      flex-direction: column;
      padding: 24px;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.is-open {
      transform: translateX(0);
    }

    .mobile-menu__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 48px;
    }

    .mobile-menu__logo {
      font-size: 20px;
      font-weight: 800;
      color: var(--text-dark);
    }

    .mobile-menu__close {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-dark);
    }

    .mobile-menu__close svg {
      width: 24px;
      height: 24px;
    }

    .mobile-menu__nav {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu__nav a {
      display: block;
      padding: 16px 0;
      font-size: 22px;
      font-weight: 600;
      color: var(--text-dark);
      border-bottom: 1px solid var(--border-light);
      transition: color var(--transition-fast);
    }

    .mobile-menu__nav a:hover {
      color: var(--orange);
    }

    .mobile-menu__cta {
      margin-top: auto;
      padding-top: 24px;
    }

    .mobile-menu__cta .btn {
      width: 100%;
    }

    /* ============================================
       21. SCROLL REVEAL ANIMATIONS
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 100ms; }
    .reveal-delay-2 { transition-delay: 200ms; }
    .reveal-delay-3 { transition-delay: 300ms; }
    .reveal-delay-4 { transition-delay: 400ms; }

    /* ============================================
       22. RESPONSIVE — TABLET (max 1199px)
       ============================================ */
    @media (max-width: 1199px) {
      .header__nav { gap: 24px; }
      .header__nav a { font-size: 13px; }

      .categories__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 260px 200px 200px;
      }

      .cat-card--featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
      }

      .cat-card--wide {
        grid-column: span 1;
      }

      .products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }

      .editorial__wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: 440px;
      }

      .editorial__content {
        padding: 48px;
      }

      .about__wrapper {
        gap: 48px;
      }

      .values__grid .value-item {
        padding: 36px;
      }

      .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    /* ============================================
       23. RESPONSIVE — MOBILE (max 767px)
       ============================================ */
    @media (max-width: 767px) {
      :root {
        --section-py: 60px;
      }

      /* Header mobile */
      .header__nav,
      .header__cta {
        display: none;
      }

      .header__menu-toggle {
        display: block;
      }

      .header__inner {
        height: 64px;
      }

      /* Catálogo mobile */
      .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
      }

      .catalog-toolbar__search {
        max-width: none;
      }

      .catalog-toolbar__sort {
        justify-content: space-between;
      }

      .vendor-list {
        grid-template-columns: 1fr;
      }

      .list-drawer__header h2 {
        font-size: 18px;
      }

      /* Hero mobile */
      .hero {
        min-height: 100vh;
        min-height: 100svh;
      }

      .hero__bg img,
      .hero__bg video {
        object-position: 60% center;
      }

      .hero__overlay {
        background: linear-gradient(
          180deg,
          rgba(10, 10, 10, 0.5) 0%,
          rgba(10, 10, 10, 0.7) 50%,
          rgba(10, 10, 10, 0.85) 100%
        );
      }

      .hero__inner {
        max-width: 100%;
      }

      .hero__title {
        font-size: 34px;
      }

      .hero__text {
        font-size: 16px;
      }

      .hero__actions {
        flex-direction: column;
      }

      .hero__actions .btn {
        width: 100%;
      }

      /* Botones largos: permiten salto de línea para no desbordar en pantallas
         angostas (hero, CTA final, menú, "cargar más", etc.). */
      .btn {
        white-space: normal;
        line-height: 1.3;
        padding: 13px 18px;
      }

      .hero__actions .btn {
        padding: 14px 12px;
      }

      .hero__scroll { display: none; }

      /* Trust mobile */
      .trust {
        padding: 48px 0;
      }

      .trust__items {
        flex-direction: column;
        gap: 24px;
      }

      .trust__item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 24px;
      }

      .trust__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      /* Categories mobile */
      .categories__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 180px 180px 180px 180px;
      }

      .cat-card--featured {
        grid-column: 1 / -1;
        grid-row: auto;
      }

      .cat-card--wide {
        grid-column: 1 / -1;
      }

      .cat-card--featured .cat-card__name {
        font-size: 22px;
      }

      /* Products mobile */
      .products__header {
        flex-direction: column;
        align-items: flex-start;
      }

      .products__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
      }

      .product-card__img {
        height: 110px;
        padding: 8px;
      }

      .product-card__body {
        padding: 8px 9px 10px;
      }

      .product-card__name {
        font-size: 11.5px;
        min-height: 32px;
      }

      .product-card__price {
        font-size: 16px;
      }

      .product-card__stepper {
        flex-wrap: wrap;
        gap: 4px;
        padding: 5px 6px;
      }

      /* Editorial mobile */
      .editorial__wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .editorial__image {
        height: 300px;
      }

      .editorial__content {
        padding: 48px 24px;
      }

      .editorial__accent {
        display: none;
      }

      /* Values mobile */
      .values__grid {
        grid-template-columns: 1fr;
      }

      .value-item {
        padding: 32px 0;
        border-right: none !important;
      }

      .value-item:nth-child(n+3) {
        border-bottom: 1px solid var(--border-light);
      }

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

      .value-item__number {
        font-size: 60px;
        right: 0;
      }

      /* About mobile */
      .about__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about__content {
        padding-right: 0;
        order: 2;
      }

      .about__image-wrapper {
        order: 1;
      }

      .about__image img {
        height: 320px;
      }

      .about__image-frame {
        display: none;
      }

      .about__stats {
        gap: 24px;
      }

      .about__stat-number {
        font-size: 28px;
      }

      /* Testimonials mobile */
      .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .testimonial {
        padding: 28px 0;
        border-bottom: 1px solid var(--border-light);
      }

      .testimonial:last-child {
        border-bottom: none;
      }

      /* Footer mobile */
      .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      /* WhatsApp */
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
      }
    }

    /* ============================================
       24. SMALL MOBILE (max 380px)
       ============================================ */
    @media (max-width: 380px) {
      .hero__title { font-size: 28px; }
      .categories__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .cat-card { min-height: 180px; }
      .cat-card--featured { min-height: 220px; }

      /* Pantallas muy angostas: más aire en los laterales y botones compactos
         para evitar desbordes horizontales. */
      .container { padding-left: 18px; padding-right: 18px; }
      .btn { padding: 11px 14px; font-size: 12.5px; }
      .header__inner { padding-left: 18px; padding-right: 18px; }
    }

    /* ============================================
       25. LOGO (marca real Ferremat)
       ============================================ */
    .header__logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

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

    .header__logo-badge img {
      height: 56px;
      width: auto;
      display: block;
      transition: height var(--transition-base);
    }

    .header--scrolled .header__logo-badge img {
      height: 48px;
    }

    .mobile-menu__logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    .footer__logo {
      display: inline-flex;
      align-items: center;
      margin-bottom: 16px;
    }

    .footer__logo img {
      height: 44px;
      width: auto;
      display: block;
    }

    /* ============================================
       25b. HEADER — BOTÓN LISTA DE CONSULTA
       ============================================ */
    .header__actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .header__list-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--white);
      flex-shrink: 0;
      transition: color var(--transition-base);
    }

    .header--scrolled .header__list-btn {
      color: var(--text-dark);
    }

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

    .header__search-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--white);
      flex-shrink: 0;
      transition: color var(--transition-base);
    }

    .header--scrolled .header__search-btn {
      color: var(--text-dark);
    }

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

    .header__search-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }

    .header__search[hidden] {
      display: none !important;
    }

    .header__search-btn[hidden] {
      display: none !important;
    }

    .header__search {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 999px;
      padding: 6px 8px 6px 10px;
      box-shadow: var(--shadow-sm);
      animation: headerSearchIn 0.2s ease;
    }

    .header__search-icon {
      width: 18px;
      height: 18px;
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .header__search input {
      border: none;
      outline: none;
      font-size: 14px;
      width: 200px;
      background: transparent;
      color: var(--text-dark);
    }

    .header__search input::placeholder {
      color: var(--text-muted);
    }

    .header__search-close {
      width: 26px;
      height: 26px;
      border: none;
      border-radius: 50%;
      background: #f1f5f9;
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .header__search-close:hover {
      background: var(--border-light);
    }

    @keyframes headerSearchIn {
      from { opacity: 0; transform: translateY(-6px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .header__search-wrap {
      position: relative;
    }

    .header__suggest {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
      overflow: hidden;
      z-index: 30;
      max-height: 70vh;
      overflow-y: auto;
    }

    .header__suggest[hidden] {
      display: none !important;
    }

    .header__suggest-list {
      max-height: 360px;
      overflow-y: auto;
    }

    .header__suggest-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 14px;
      cursor: pointer;
      transition: background 0.15s;
      border-bottom: 1px solid #f1f5f9;
    }

    .header__suggest-item:hover {
      background: var(--bg-warm);
    }

    .header__suggest-item img {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 6px;
      background: #f8fafc;
      flex-shrink: 0;
    }

    .header__suggest-item__info {
      flex: 1;
      min-width: 0;
    }

    .header__suggest-item__name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .header__suggest-item__price {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      white-space: nowrap;
    }

    .header__suggest-foot {
      padding: 10px 14px 12px;
      background: #f8fafc;
      border-top: 1px solid var(--border-light);
    }

    .header__suggest-all {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      cursor: pointer;
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .header__suggest-all span {
      color: var(--orange);
      font-size: 16px;
    }

    .header__suggest-hints {
      margin-top: 8px;
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .header__suggest-hints button {
      background: none;
      border: none;
      text-align: left;
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
      padding: 0;
    }

    .header__suggest-hints button strong {
      color: var(--orange);
      font-weight: 600;
    }

    .header__suggest-hints button:hover {
      color: var(--text-dark);
    }

    @media (max-width: 768px) {
      .header__suggest {
        position: fixed;
        top: 112px;
        left: 12px;
        right: 12px;
        width: auto;
      }
    }

    @media (max-width: 768px) {
      .header__search {
        position: fixed;
        top: 64px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        z-index: 100;
      }
      .header__search input {
        width: 100%;
      }
    }

    .header__list-badge {
      position: absolute;
      top: 2px;
      right: 2px;
      min-width: 17px;
      height: 17px;
      padding: 0 4px;
      border-radius: 999px;
      background: var(--orange);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      line-height: 17px;
      text-align: center;
    }

    .header__list-badge--inline {
      position: static;
      display: inline-block;
      margin-left: 6px;
      vertical-align: middle;
    }

    /* ============================================
       25c. CATÁLOGO — TOOLBAR, FILTROS Y RESULTADOS
       ============================================ */
    .catalog-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .catalog-toolbar__search {
      position: relative;
      flex: 1 1 320px;
      max-width: 420px;
    }

    .catalog-toolbar__search svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: var(--text-muted);
      pointer-events: none;
    }

    .catalog-toolbar__search input {
      width: 100%;
      padding: 12px 16px 12px 42px;
      font-family: var(--font);
      font-size: 14px;
      color: var(--text-dark);
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
    }

    .catalog-toolbar__search input:focus-visible {
      outline: 2px solid var(--turquoise);
      outline-offset: 1px;
    }

    .catalog-toolbar__sort {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .catalog-toolbar__sort select {
      font-family: var(--font);
      font-size: 13px;
      color: var(--text-dark);
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      padding: 10px 12px;
      cursor: pointer;
    }

    .catalog-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }

    .filter-chip {
      padding: 8px 18px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-body);
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: 999px;
      cursor: pointer;
      transition: all var(--transition-fast);
    }

    .filter-chip:hover {
      border-color: var(--turquoise);
      color: var(--turquoise);
    }

    .filter-chip.is-active {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
    }

    .catalog-results-count {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    /* ============================================
       25c-bis. CATÁLOGO — TOOLBAR MOBILE (fix de cascada)
       Estas reglas se declaran DESPUÉS de la sección base
       (25c) a propósito: el bloque @media (max-width:767px)
       de la sección 22 quedaba ANTES de 25c en el archivo, y
       al tener la misma especificidad, las reglas base (más
       abajo) ganaban la cascada y rompían el layout mobile
       (buscador angosto, "flex: 1 1 320px" interpretado como
       alto en flex-direction: column). Se repite aquí, más
       abajo, para que gane correctamente en móvil.
       ============================================ */
    @media (max-width: 767px) {
      .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
      }

      .catalog-toolbar__search {
        flex: 0 0 auto;
        max-width: none;
        width: 100%;
      }

      .catalog-toolbar__sort {
        justify-content: space-between;
        width: 100%;
        white-space: normal;
        flex-wrap: wrap;
      }

      .catalog-toolbar__sort select {
        max-width: 100%;
      }
    }

    .catalog-empty {
      text-align: center;
      padding: 48px 24px;
      color: var(--text-muted);
      background: var(--white);
      border-radius: var(--radius-md);
      margin-bottom: 40px;
    }

    /* ============================================
       25d. TARJETA DE PRODUCTO — ACCIONES DE LISTA
       ============================================ */
    .product-card__actions {
      margin-top: auto;
    }

    .product-card__unavailable {
      display: inline-block;
      font-size: 11px;
      color: var(--text-muted);
      font-style: italic;
    }

    .product-card__tag--out {
      left: auto;
      right: 8px;
      background: var(--text-muted);
    }

    .product-card__add {
      width: 100%;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 700;
      border-radius: var(--radius-sm);
    }

    .product-card__stepper {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      justify-content: space-between;
      padding: 5px 10px;
      border: 1.5px solid var(--orange);
      border-radius: var(--radius-sm);
    }

    .qty-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: var(--bg-warm);
      color: var(--text-dark);
      border: none;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: background var(--transition-fast);
    }

    .qty-btn:hover {
      background: var(--orange);
      color: var(--white);
    }

    .qty-value {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      min-width: 16px;
      text-align: center;
    }

    /* ============================================
       25e. LISTA DE CONSULTA — DRAWER
       ============================================ */
    .list-overlay {
      position: fixed;
      inset: 0;
      z-index: 2050;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-base);
    }

    .list-overlay.is-visible {
      opacity: 1;
      pointer-events: auto;
    }

    .list-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 2100;
      width: min(420px, 100%);
      background: var(--white);
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    }

    .list-drawer.is-open {
      transform: translateX(0);
    }

    .list-drawer__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 24px 0;
    }

    .list-drawer__header h2 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .list-drawer__close {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-warm);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      color: var(--text-dark);
    }

    .list-drawer__close svg {
      width: 18px;
      height: 18px;
    }

    .list-drawer__count {
      padding: 12px 24px 0;
      font-size: 13px;
      color: var(--text-muted);
    }

    .list-drawer__body {
      flex: 1;
      overflow-y: auto;
      padding: 16px 24px;
    }

    .list-empty {
      text-align: center;
      padding: 40px 12px;
      color: var(--text-muted);
    }

    .list-empty p {
      margin-bottom: 6px;
      font-size: 14px;
    }

    .list-empty__hint {
      font-size: 13px;
    }

    .list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
    }

    .list-item__info {
      flex: 1;
      min-width: 0;
    }

    .list-item__name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }

    .list-item__qty {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .list-item__remove {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      flex-shrink: 0;
    }

    .list-item__remove svg {
      width: 16px;
      height: 16px;
    }

    .list-item__remove:hover {
      color: var(--orange);
    }

    .list-drawer__footer {
      padding: 16px 24px 24px;
      border-top: 1px solid var(--border-light);
    }

    .list-drawer__clear {
      display: block;
      margin: 0 0 16px auto;
      background: none;
      border: none;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      text-decoration: underline;
    }

    .list-drawer__clear:hover {
      color: var(--orange);
    }

    .list-vendors h3 {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .vendor-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-bottom: 8px;
    }

    .vendor-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      font-size: 13px;
      color: var(--text-body);
      background: var(--bg-warm);
      border-radius: var(--radius-sm);
      cursor: pointer;
    }

    .vendor-option input {
      accent-color: var(--orange);
    }

    .vendor-warning {
      font-size: 12px;
      color: var(--orange-hover);
      margin: 4px 0 8px;
    }

    .list-drawer__name-field {
      display: block;
      margin: 16px 0;
    }

    .list-drawer__name-field span {
      display: block;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .list-drawer__name-field input {
      width: 100%;
      padding: 10px 12px;
      font-family: var(--font);
      font-size: 14px;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
    }

    .list-drawer__whatsapp {
      width: 100%;
      background: #25D366;
      border-color: #25D366;
    }

    .list-drawer__whatsapp:hover:not(:disabled) {
      background: #1EBE5A;
      border-color: #1EBE5A;
    }

    .list-drawer__whatsapp:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    /* ============================================
       25f. TOAST DE CONFIRMACIÓN
       ============================================ */
    .list-toast {
      position: fixed;
      left: 50%;
      bottom: 28px;
      z-index: 2300;
      transform: translate(-50%, 16px);
      background: var(--text-dark);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      padding: 12px 22px;
      border-radius: 999px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-base), transform var(--transition-base);
      box-shadow: var(--shadow-md);
    }

    .list-toast.is-visible {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    /* ============================================
       26. ACCESIBILIDAD — FOCO Y SKIP LINK
       ============================================ */
    .skip-link {
      position: absolute;
      top: -48px;
      left: 16px;
      z-index: 3000;
      background: var(--orange);
      color: var(--white);
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      transition: top var(--transition-fast);
    }

    .skip-link:focus {
      top: 16px;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--turquoise);
      outline-offset: 3px;
      border-radius: 2px;
    }

    .btn:focus-visible {
      outline-offset: 4px;
    }

    .header__menu-toggle:focus-visible,
    .mobile-menu__close:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 2px;
    }

    /* ============================================
       27. PRODUCT MODAL (quick view)
       ============================================ */
    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .product-modal.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .product-modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.72);
      backdrop-filter: blur(4px);
    }
    .product-modal__window {
      position: relative;
      background: var(--white);
      border-radius: var(--radius-md);
      max-width: 860px;
      width: 100%;
      max-height: 90vh;
      overflow: hidden;
      overflow-y: auto;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
      transform: translateY(12px) scale(0.98);
      transition: transform 0.25s ease;
    }
    .product-modal.is-open .product-modal__window {
      transform: translateY(0) scale(1);
    }
    .product-modal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s, border-color 0.2s;
    }
    .product-modal__close:hover {
      background: var(--bg-warm);
      border-color: var(--border-light);
    }
    .product-modal__close svg { width: 18px; height: 18px; color: var(--text-dark); }
    .product-modal__content {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 0;
      min-height: 420px;
      align-items: start;
    }
    .product-modal__gallery {
      background: #f8fafc;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      border-right: 1px solid var(--border-light);
      align-self: start;
      position: sticky;
      top: 0;
    }
    .product-modal__main-img {
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 6px;
      min-height: 280px;
      max-height: 380px;
    }
    .product-modal__main-img img {
      width: 100%;
      height: auto;
      max-height: 360px;
      max-width: 100%;
      object-fit: contain;
    }
    .product-modal__thumbs {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
    }
    .product-modal__thumbs img {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 6px;
      border: 2px solid transparent;
      cursor: pointer;
      flex-shrink: 0;
      background: var(--white);
      padding: 2px;
    }
    .product-modal__thumbs img.is-active {
      border-color: var(--orange);
    }
    .product-modal__details {
      padding: 28px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .product-modal__brand {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      color: var(--text-muted);
      min-height: 14px;
    }
    .product-modal__name {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.25;
      color: var(--text-dark);
      margin: 0;
    }
    .product-modal__meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .product-modal__meta span { display: inline-flex; align-items: center; gap: 4px; }
    .product-modal__price {
      font-size: 22px;
      font-weight: 800;
      color: var(--orange);
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .product-modal__price .product-card__price-old { font-size: 14px; }
    .product-modal__desc {
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--text-muted);
      margin: 0;
    }
    .product-modal__tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .product-modal__actions {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--border-light);
    }
    .product-modal__qty {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      padding: 8px;
      background: var(--bg-warm);
      border-radius: var(--radius-sm);
    }
    .product-modal__add { width: 100%; }
    .product-modal__whatsapp {
      width: 100%;
      border-color: #25D366 !important;
      color: #25D366 !important;
    }
    .product-modal__whatsapp:hover {
      background: #25D366 !important;
      color: var(--white) !important;
    }
    @media (max-width: 768px) {
      .product-modal { padding: 12px; align-items: flex-end; }
      .product-modal__window { max-height: 92vh; border-radius: var(--radius-md) var(--radius-md) 0 0; }
      .product-modal__content { grid-template-columns: 1fr; }
      .product-modal__gallery { border-right: none; border-bottom: 1px solid var(--border-light); padding: 16px; }
      .product-modal__main-img { min-height: 220px; }
      .product-modal__details { padding: 20px 16px 16px; }
    }

    /* ============================================
       28. PREFERENCIA DE MOVIMIENTO REDUCIDO
       ============================================ */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }

      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
