
    /* ── VARIABLES & RESET ── */
    :root {
      --black: #0a0804;
      --wood-dark: #2C1A0E;
      --wood-mid: #6B3F1F;
      --wood-warm: #A0622A;
      --wood-light: #C8894A;
      --cream: #F2EAD8;
      --cream-light: #FAF6ED;
      --text-muted: #8C7B6B;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--black);
      color: var(--cream);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
    }

    /* El cursor personalizado solo aplica con mouse real */
    @media (pointer: fine) {
      body { cursor: none; }
    }

    /* Grain */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.4;
    }

    /* Custom cursor */
    .cursor {
      position: fixed; width: 8px; height: 8px;
      background: var(--wood-light); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transition: transform 0.1s ease; mix-blend-mode: difference;
    }
    .cursor-ring {
      position: fixed; width: 32px; height: 32px;
      border: 1px solid var(--wood-warm); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transition: all 0.15s ease; mix-blend-mode: difference;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100; padding: 28px 48px;
      display: flex; justify-content: space-between; align-items: center;
    }
    nav::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(10,8,4,0.9), transparent);
      pointer-events: none; z-index: -1;
    }
    .nav-logo {
      font-family: 'Playfair Display', serif; font-weight: 900;
      font-size: 1.4rem; letter-spacing: 0.3em;
      color: var(--cream); text-decoration: none;
    }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a {
      font-family: 'DM Mono', monospace; font-size: 0.65rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--text-muted); text-decoration: none; transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--cream); }

    /* WRAPPER */
    .cotizador-wrapper {
      min-height: 100vh;
      padding: 140px 80px 160px;
      display: flex; flex-direction: column;
      align-items: center; gap: 48px;
    }

    /* HEADER */
    .cotizador-header { text-align: center; }
    .section-label {
      font-family: 'DM Mono', monospace; font-size: 0.6rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--wood-warm); margin-bottom: 20px;
      display: flex; align-items: center; justify-content: center; gap: 16px;
    }
    .cotizador-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 700; line-height: 1.1; margin-bottom: 16px;
    }
    .cotizador-title em { font-style: italic; color: var(--wood-light); }
    .cotizador-sub {
      font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
      font-weight: 300; color: var(--text-muted); line-height: 1.7;
    }

    /* STEPS NAV */
    .steps-nav {
      display: flex; flex-direction: row; align-items: center;
      width: 100%; max-width: 640px;
    }
    .step-dot {
      display: flex; flex-direction: column; align-items: center;
      gap: 8px; flex: 1; position: relative;
    }
    .step-dot:not(:last-child)::after {
      content: ''; position: absolute; top: 11px; left: 50%;
      width: 100%; height: 1px;
      background: rgba(200,137,74,0.15); z-index: 0;
    }
    .step-dot.done:not(:last-child)::after { background: var(--wood-warm); }
    .dot {
      width: 22px; height: 22px; border-radius: 50%;
      border: 1px solid rgba(200,137,74,0.25); background: var(--black);
      display: flex; align-items: center; justify-content: center;
      font-family: 'DM Mono', monospace; font-size: 0.55rem;
      letter-spacing: 0.05em; color: var(--text-muted);
      position: relative; z-index: 1; transition: all 0.3s;
    }
    .step-dot.active .dot { border-color: var(--wood-warm); background: var(--wood-warm); color: var(--black); }
    .step-dot.done .dot { border-color: var(--wood-warm); color: var(--wood-warm); }
    .dot-lbl {
      font-family: 'DM Mono', monospace; font-size: 0.5rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--text-muted); white-space: nowrap;
    }
    .step-dot.active .dot-lbl { color: var(--wood-warm); }

    /* PANELS */
    .panel { display: none; }
    .panel.active {
      display: block; width: 100%; max-width: 680px;
      animation: fadeUp 0.4s ease;
    }

    .panel-label {
      font-family: 'DM Mono', monospace; font-size: 0.6rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--wood-warm); margin-bottom: 32px;
      display: flex; align-items: center; gap: 16px;
    }
    .panel-label::before { content: ''; width: 32px; height: 1px; background: var(--wood-warm); }

    /* ── MUEBLE GRID ── */
    .mueble-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; margin-bottom: 40px;
    }
    .mueble-card {
      background: linear-gradient(135deg, #2C1A0E, #1a0d06);
      border: 1px solid rgba(200,137,74,0.1);
      padding: 32px 20px; cursor: none; text-align: center;
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .mueble-card::before {
      content: ''; position: absolute; inset: 0;
      background: var(--wood-warm); opacity: 0; transition: opacity 0.3s;
    }
    .mueble-card:hover { border-color: rgba(200,137,74,0.4); }
    .mueble-card:hover::before { opacity: 0.05; }
    .mueble-card.sel { border-color: var(--wood-warm); }
    .mueble-card.sel::before { opacity: 0.08; }
    .mc-icon {
      font-size: 1.6rem; color: rgba(200,137,74,0.4); margin-bottom: 12px;
      display: block; position: relative; z-index: 1; transition: color 0.3s;
    }
    .mueble-card.sel .mc-icon { color: var(--wood-warm); }
    .mc-name {
      font-family: 'Playfair Display', serif; font-size: 1rem;
      font-weight: 400; color: var(--cream); margin-bottom: 6px;
      position: relative; z-index: 1;
    }
    .mc-base {
      font-family: 'DM Mono', monospace; font-size: 0.5rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--text-muted); position: relative; z-index: 1;
    }

    /* ── DIMENSIONES ── */
    .dims-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .dim-wrap label {
      display: block; font-family: 'DM Mono', monospace; font-size: 0.55rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 10px; text-align: center;
    }
    .dim-stepper { display: flex; align-items: center; border: 1px solid rgba(200,137,74,0.2); overflow: hidden; }
    .dim-stepper button {
      background: rgba(200,137,74,0.12); color: var(--cream); border: none;
      border-right: 1px solid rgba(200,137,74,0.2); padding: 14px 18px;
      font-size: 1.2rem; cursor: pointer; transition: background 0.2s;
      font-family: 'Playfair Display', serif; flex-shrink: 0;
    }
    .dim-stepper button:last-child { border-right: none; border-left: 1px solid rgba(200,137,74,0.2); }
    .dim-stepper button:hover { background: rgba(200,137,74,0.25); }
    .dim-input {
      width: 100%; background: rgba(255,255,255,0.03); border: none;
      color: var(--cream); padding: 14px; font-family: 'Playfair Display', serif;
      font-size: 1.2rem; text-align: center; outline: none;
      appearance: none; -moz-appearance: textfield;
    }
    .dim-input::-webkit-outer-spin-button, .dim-input::-webkit-inner-spin-button { -webkit-appearance: none; }
    .dims-hint {
      font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
      font-weight: 300; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px;
    }

    /* ── MATERIAL — NUEVO DISEÑO CON FOTOS ── */
    .mat-section-intro {
      margin-bottom: 28px;
    }
    .mat-section-intro p {
      font-family: 'Cormorant Garamond', serif; font-size: 1rem;
      font-weight: 300; color: var(--text-muted); line-height: 1.7;
    }

    .mat-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3px; margin-bottom: 28px;
    }

    .mat-card {
      position: relative; overflow: hidden; cursor: none;
      border: 1px solid rgba(200,137,74,0.1);
      transition: border-color 0.3s; height: 180px;
    }

    .mat-card:hover { border-color: rgba(200,137,74,0.5); }
    .mat-card.sel { border-color: var(--wood-light); }

    /* "Próximamente" — visible pero aún no seleccionable */
    .mat-card.soon { border-style: dashed; }
    .mat-card.soon .wood-photo { opacity: 0.45; filter: saturate(0.6); }
    .mat-card.soon:hover .wood-photo { transform: none; }
    .mat-card.soon .mat-card-tick { display: none; }
    /* Listón de esquina a 45°: ancho fijo + text-align center para que
       el texto quede centrado en la parte visible de la cinta */
    .soon-badge {
      position: absolute; top: 40px; right: -68px; z-index: 3;
      width: 240px; text-align: center;
      transform: rotate(45deg);
      background: var(--wood-warm); color: var(--black);
      font-family: 'DM Mono', monospace; font-size: 0.55rem; line-height: 1;
      letter-spacing: 0.24em; text-indent: 0.24em; text-transform: uppercase;
      padding: 7px 0; white-space: nowrap;
      pointer-events: none;
      animation: soonPulse 2.4s ease-in-out infinite;
    }
    @keyframes soonPulse {
      0%, 100% { background: var(--wood-warm); }
      50% { background: var(--wood-light); box-shadow: 0 0 18px rgba(200,137,74,0.55); }
    }

    /* "Próximamente" en muebles: listón más chico para tarjetas bajas */
    .mueble-card.soon { border-style: dashed; }
    .mueble-card.soon .mc-icon, .mueble-card.soon .mc-name, .mueble-card.soon .mc-base { opacity: 0.5; }
    .mueble-card.soon:hover::before { opacity: 0; }
    .soon-badge.sm {
      top: 20px; right: -76px; width: 220px;
      font-size: 0.48rem; padding: 5px 0;
    }

    /* "Próximamente" en extras: chip junto al nombre, no seleccionable */
    .extra-item { position: relative; }
    .extra-item.soon { border-style: dashed; }
    .extra-item.soon .extra-name, .extra-item.soon .extra-price { opacity: 0.5; }
    .extra-item.soon .chk { display: none; }
    .soon-chip {
      display: inline-block; vertical-align: 2px;
      background: var(--wood-warm); color: var(--black);
      font-family: 'DM Mono', monospace; font-size: 0.42rem; line-height: 1;
      letter-spacing: 0.22em; text-indent: 0.22em; text-transform: uppercase;
      padding: 4px 7px; margin-left: 10px;
      animation: soonPulse 2.4s ease-in-out infinite;
    }

    /* Foto de textura de madera con CSS (gradientes realistas) */
    .mat-card .wood-photo {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform 0.5s ease;
    }
    .mat-card:hover .wood-photo { transform: scale(1.04); }

    /* Fotos reales de madera — agregar en /assets/images/woods/ */
    .mat-card[data-id="Pino"]   .wood-photo { background-image: url('/assets/images/woods/pino.avif'); }
    .mat-card[data-id="Cedro"]  .wood-photo { background-image: url('/assets/images/woods/cedro.webp'); }
    .mat-card[data-id="Encino"] .wood-photo { background-image: url('/assets/images/woods/encino.webp'); }
    .mat-card[data-id="Nogal"]  .wood-photo { background-image: url('/assets/images/woods/nogal.jpg'); }
    .mat-card[data-id="MDF"]    .wood-photo { background-image: url('/assets/images/woods/mdf.jpg'); }
    /* Maderas sin foto: fondo oscuro con "humo" animado (aplica a
       cualquier tarjeta cuyo .wood-photo tenga la clase no-photo) */
    .mat-card .wood-photo.no-photo {
  background: #0a0804;
  overflow: hidden;
  position: absolute;
  inset: 0;
    }

    .mat-card .wood-photo.no-photo::before,
    .mat-card .wood-photo.no-photo::after,
    .mat-card .wood-photo.no-photo .w1,
    .mat-card .wood-photo.no-photo .w2,
    .mat-card .wood-photo.no-photo .w3,
    .mat-card .wood-photo.no-photo .w4 {
      content: '';
      position: absolute;
      border-radius: 50% 50% 20% 20% / 80% 80% 20% 20%;
      background: linear-gradient(to top, rgba(160,98,42,0.95), rgba(200,137,74,0.5), transparent);
      filter: blur(6px);
      bottom: 0;
      transform-origin: bottom center;
    }

    .mat-card .wood-photo.no-photo::before {
      width: 22px; height: 140px;
      left: 15%;
      animation: wisp 5s ease-in-out infinite;
    }
    .mat-card .wood-photo.no-photo::after {
      width: 18px; height: 110px;
      left: 35%;
      animation: wisp 6s ease-in-out infinite;
      animation-delay: -2s;
      background: linear-gradient(to top, rgba(200,137,74,0.9), rgba(160,98,42,0.4), transparent);
    }
    .mat-card .wood-photo.no-photo .w1 {
      width: 25px; height: 160px;
      left: 55%;
      animation: wisp 7s ease-in-out infinite;
      animation-delay: -4s;
    }
    .mat-card .wood-photo.no-photo .w2 {
      width: 14px; height: 90px;
      left: 72%;
      animation: wisp 4s ease-in-out infinite;
      animation-delay: -1s;
      background: linear-gradient(to top, rgba(200,137,74,0.7), rgba(160,98,42,0.3), transparent);
    }
    .mat-card .wood-photo.no-photo .w3 {
      width: 20px; height: 120px;
      left: 25%;
      animation: wisp 8s ease-in-out infinite;
      animation-delay: -5s;
    }
    .mat-card .wood-photo.no-photo .w4 {
      width: 16px; height: 100px;
      left: 80%;
      animation: wisp 5.5s ease-in-out infinite;
      animation-delay: -3s;
      background: linear-gradient(to top, rgba(107,63,31,0.9), rgba(160,98,42,0.4), transparent);
    }

    @keyframes wisp {
      0%   { transform: scaleX(1) translateY(0) rotate(-4deg);   opacity: 0; }
      10%  { opacity: 1; }
      40%  { transform: scaleX(2) translateY(-50px) rotate(8deg); }
      70%  { transform: scaleX(1.5) translateY(-100px) rotate(-6deg); opacity: 0.5; }
      100% { transform: scaleX(0.8) translateY(-180px) rotate(5deg); opacity: 0; }
    }

    /* Overlay de información */
    .mat-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,8,4,0.92) 0%, rgba(10,8,4,0.3) 55%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 20px;
    }
    .mat-card.sel .mat-card-overlay {
      background: linear-gradient(to top, rgba(10,8,4,0.92) 0%, rgba(160,98,42,0.15) 55%, transparent 100%);
    }

    .mat-card-name {
      font-family: 'Playfair Display', serif; font-size: 1.1rem;
      font-weight: 700; color: var(--cream); margin-bottom: 4px;
    }
    .mat-card-desc {
      font-family: 'DM Mono', monospace; font-size: 0.5rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--text-muted); line-height: 1.6;
    }

    /* Tick seleccionado */
    .mat-card-tick {
      position: absolute; top: 12px; right: 12px;
      width: 20px; height: 20px;
      border: 1px solid rgba(200,137,74,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem; color: transparent;
      background: rgba(10,8,4,0.6); transition: all 0.2s;
    }
    .mat-card.sel .mat-card-tick {
      background: var(--wood-warm); border-color: var(--wood-warm);
      color: var(--black);
    }

    /* Tooltip de madera */
    .mat-tooltip {
      background: rgba(44,26,14,0.95);
      border: 1px solid rgba(200,137,74,0.2);
      border-left: 2px solid var(--wood-warm);
      padding: 16px 20px; margin-bottom: 40px;
      font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
      font-weight: 300; color: var(--text-muted); line-height: 1.7;
      display: none; animation: fadeUp 0.3s ease;
    }
    .mat-tooltip.visible { display: block; }
    .mat-tooltip strong { color: var(--wood-light); font-weight: 400; }

    /* ── EXTRAS ── */
    .extras-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 40px; }
    .extra-item {
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(135deg, #2C1A0E, #1a0d06);
      border: 1px solid rgba(200,137,74,0.1);
      padding: 20px 24px; cursor: none; transition: all 0.3s; user-select: none;
    }
    .extra-item:hover { border-color: rgba(200,137,74,0.3); }
    .extra-item.sel { border-color: var(--wood-warm); }
    .extra-name {
      font-family: 'Playfair Display', serif; font-size: 1rem;
      font-weight: 400; color: var(--cream); margin-bottom: 4px;
    }
    .extra-price {
      font-family: 'DM Mono', monospace; font-size: 0.5rem;
      letter-spacing: 0.15em; text-transform: uppercase; color: var(--wood-warm);
    }
    .extra-note {
      display: block; font-family: 'DM Mono', monospace;
      font-size: 0.45rem; letter-spacing: 0.1em;
      color: var(--text-muted); margin-top: 4px; font-weight: 300;
    }
    .chk {
      width: 20px; height: 20px;
      border: 1px solid rgba(200,137,74,0.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 0.65rem; color: transparent;
      transition: all 0.2s; flex-shrink: 0; margin-left: 16px;
    }
    .extra-item.sel .chk { background: var(--wood-warm); border-color: var(--wood-warm); color: var(--black); }

    /* ── RESUMEN (SIN DESGLOSE, SOLO RANGO) ── */
    .precio-box {
      background: linear-gradient(135deg, #2C1A0E 0%, #1a0d06 100%);
      border: 1px solid rgba(200,137,74,0.2);
      padding: 40px; margin-bottom: 32px;
      position: relative; overflow: hidden;
    }
    .precio-box::before {
      content: ''; position: absolute; left: 0; top: 0;
      width: 2px; height: 100%;
      background: linear-gradient(to bottom, var(--wood-warm), transparent);
    }

    .precio-intro {
      font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
      font-weight: 300; color: var(--text-muted); line-height: 1.7;
      margin-bottom: 28px;
    }

    .precio-rango-label {
      font-family: 'DM Mono', monospace; font-size: 0.5rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 10px;
    }

    .precio-rango {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700; color: var(--wood-light);
      line-height: 1; margin-bottom: 20px;
    }

    .precio-disclaimer {
      font-family: 'DM Mono', monospace; font-size: 0.5rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-muted); line-height: 1.8;
      border-top: 1px solid rgba(200,137,74,0.1);
      padding-top: 20px; margin-top: 8px;
    }

    .resumen-tags {
      display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px;
    }
    .r-tag {
      border: 1px solid rgba(200,137,74,0.2); padding: 5px 12px;
      font-family: 'DM Mono', monospace; font-size: 0.48rem;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--wood-warm);
    }

    /* ── FORM CONTACTO ── */
    .f-input {
      width: 100%; background: rgba(255,255,255,0.03);
      border: 1px solid rgba(200,137,74,0.2); color: var(--cream);
      padding: 14px 18px; font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; outline: none; transition: border-color 0.3s; margin-bottom: 12px;
      display: block;
    }
    .f-input:focus { border-color: var(--wood-warm); }
    .f-input::placeholder { color: var(--text-muted); }
    textarea.f-input { resize: none; height: 100px; }

    /* ── BOTONES ── */
    .btn-cot-primary {
      width: 100%; background: var(--wood-warm); color: var(--black);
      border: none; padding: 18px;
      font-family: 'DM Mono', monospace; font-size: 0.65rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      cursor: none; transition: background 0.3s; margin-bottom: 12px;
      position: relative; overflow: hidden;
    }
    .btn-cot-primary::after {
      content: ''; position: absolute; inset: 0;
      background: var(--wood-light);
      transform: translateX(-101%); transition: transform 0.3s ease;
    }
    .btn-cot-primary:hover::after { transform: translateX(0); }
    .btn-cot-primary span { position: relative; z-index: 1; }
    .btn-cot-primary:disabled { opacity: 0.35; cursor: not-allowed; }
    .btn-cot-primary:disabled::after { display: none; }

    .btn-cot-ghost {
      width: 100%; background: transparent; color: var(--text-muted);
      border: 1px solid rgba(200,137,74,0.2); padding: 14px;
      font-family: 'DM Mono', monospace; font-size: 0.6rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      cursor: none; transition: all 0.3s;
    }
    .btn-cot-ghost:hover { border-color: var(--wood-warm); color: var(--cream); }

    /* STATUS */
    .status {
      font-family: 'DM Mono', monospace; font-size: 0.55rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      text-align: center; min-height: 20px; margin-top: 12px; color: var(--text-muted);
    }
    .status.ok { color: var(--wood-warm); }
    .status.err { color: #c0392b; }

    .disclaimer {
      font-family: 'DM Mono', monospace; font-size: 0.5rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted); text-align: center; line-height: 1.8; margin-bottom: 20px;
    }

    /* SUCCESS */
    .success {
      display: none; text-align: center; padding: 80px 20px;
      width: 100%; max-width: 500px; animation: fadeUp 0.6s ease;
    }
    .s-icon {
      width: 64px; height: 64px; border: 1px solid var(--wood-warm);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 32px; font-size: 1.4rem; color: var(--wood-warm);
    }
    .s-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 700; margin-bottom: 16px; }
    .s-title em { font-style: italic; color: var(--wood-light); }
    .s-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; max-width: 380px; margin: 0 auto 40px; }
    .tag { display: inline-block; border: 1px solid rgba(200,137,74,0.2); padding: 6px 16px; font-family: 'DM Mono', monospace; font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wood-warm); margin: 4px 3px 0; }

    .c-divider { width: 100%; border: none; border-top: 1px solid rgba(200,137,74,0.15); margin: 32px 0; }

    /* WHATSAPP */
    .whatsapp-float {
      position: fixed; bottom: 40px; right: 40px; z-index: 500;
      display: flex; align-items: center; gap: 12px;
      background: #25D366; color: white; padding: 14px 20px;
      font-family: 'DM Mono', monospace; font-size: 0.6rem;
      letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
      transition: all 0.3s;
    }
    .whatsapp-float:hover { background: #1da851; transform: translateY(-2px); }

    /* FOOTER */
    footer {
      position: relative; z-index: 1;
      border-top: 1px solid rgba(200,137,74,0.15);
      padding: 60px 80px; display: flex;
      justify-content: space-between; align-items: center;
    }
    .footer-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.2rem; letter-spacing: 0.3em; }
    .footer-text { font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
    .footer-links { display: flex; gap: 32px; list-style: none; }
    .footer-links a { font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
    .footer-links a:hover { color: var(--wood-light); }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* MOBILE */
    @media (max-width: 768px) {
      .cursor, .cursor-ring { display: none; }
      body { cursor: auto; }
      nav { padding: 20px 24px; }
      .nav-links { gap: 20px; }
      .cotizador-wrapper { padding: 100px 20px 80px; gap: 32px; }
      .steps-nav { max-width: 100%; }
      .dot-lbl { font-size: 0.42rem; letter-spacing: 0.1em; }
      .mueble-grid { grid-template-columns: repeat(2, 1fr); }
      .mueble-card { padding: 24px 12px; }
      .dims-row { grid-template-columns: 1fr; gap: 12px; }
      .mat-grid { grid-template-columns: 1fr; }
      .mat-card { height: 150px; }
      .extra-item { padding: 16px; cursor: pointer; }
      .mueble-card, .btn-cot-primary, .btn-cot-ghost { cursor: pointer; }
      .precio-box { padding: 24px 20px; }
      .precio-rango { font-size: 1.8rem; }
      footer { flex-direction: column; gap: 24px; padding: 40px 24px; text-align: center; }
      .footer-links { justify-content: center; gap: 20px; }
      .whatsapp-float { bottom: 20px; right: 16px; padding: 12px 16px; font-size: 0.55rem; }
    }

    /* ─── BANNER RESUME ─────────────────────────── */
#resumeBanner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(44, 26, 14, 0.97);
  border-bottom: 1px solid rgba(200, 137, 74, 0.25);
  padding: 12px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
.rb-text {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); display: flex; align-items: center; gap: 12px;
}
.rb-tag {
  color: var(--wood-warm); border: 1px solid rgba(200,137,74,0.25);
  padding: 3px 10px;
}
.rb-actions {
  display: flex; gap: 8px; flex-shrink: 0;
}
.rb-actions button {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid rgba(200,137,74,0.3); padding: 7px 16px;
  cursor: pointer; transition: all 0.2s; background: transparent;
}
.rb-actions button:first-child {
  color: var(--cream); border-color: var(--wood-warm);
}
.rb-actions button:first-child:hover { background: var(--wood-warm); color: var(--black); }
.rb-actions button:last-child { color: var(--text-muted); }
.rb-actions button:last-child:hover { color: var(--cream); border-color: rgba(200,137,74,0.6); }

@media (max-width: 768px) {
  #resumeBanner { flex-direction: column; padding: 12px 20px; gap: 10px; text-align: center; }
  .rb-text { flex-direction: column; gap: 6px; }
}

/* ─── BOTÓN RESTART FLOTANTE ─────────────────── */
.btn-restart-floating {
  position: fixed; bottom: 40px; left: 40px; z-index: 501;
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); background: rgba(10,8,4,0.85);
  border: 1px solid rgba(200,137,74,0.2); padding: 10px 18px;
  cursor: pointer; transition: all 0.3s;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  backdrop-filter: blur(8px);
}
.btn-restart-floating.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.btn-restart-floating:hover {
  color: var(--cream); border-color: rgba(200,137,74,0.6);
}

@media (max-width: 768px) {
  .btn-restart-floating { bottom: 70px; left: 16px; }
}