  :root {
    --cream: #f7f3ec;
    --cream-deep: #efe6d8;
    --ink: #201d18;
    --stone: #86807a;
    --stone-light: #b8b2a8;
    --gold: #a9824f;
    --white: #ffffff;
    --line: rgba(32,29,24,0.12);
    --sw-terra: linear-gradient(135deg,#cba07e,#a97b57);
    --sw-stone: linear-gradient(135deg,#d9d2c4,#b7ae9c);
    --sw-sage: linear-gradient(135deg,#c3c9b8,#9aa48a);
    --sw-sand: linear-gradient(135deg,#e3d6bd,#c8b48c);
    --sw-clay: linear-gradient(135deg,#cdb3a3,#a9836e);
    --sw-taupe: linear-gradient(135deg,#d6cabd,#ab9a89);
    --sw-linen: linear-gradient(135deg,#ece3d2,#cfc0a3);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .serif {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* Announcement bar */
  .announce {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 9px 12px;
  }

  /* Header */
  header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(247,243,236,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 32px;
    max-width: 1240px; margin: 0 auto;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .logo span { color: var(--gold); }
  .navlinks { display: flex; align-items: center; gap: 34px; }
  .navlinks a {
    font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink); opacity: 0.75; transition: opacity .2s;
  }
  .navlinks a:hover { opacity: 1; }

  /* Catálogo dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown-toggle {
    background: none; border: none; padding: 0; margin: 0; cursor: pointer;
    font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink); opacity: 0.75; transition: opacity .2s;
    font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 5px;
  }
  .nav-dropdown-toggle:hover { opacity: 1; }
  .nav-caret { transition: transform .2s; flex-shrink: 0; }
  .nav-dropdown:hover .nav-caret, .nav-dropdown.open .nav-caret { transform: rotate(180deg); }
  .nav-dropdown-menu {
    display: none;
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    padding-top: 12px;
    z-index: 50;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu-inner {
    background: var(--cream); border: 1px solid var(--line); border-radius: 6px;
    box-shadow: 0 14px 34px rgba(32,29,24,0.16);
    min-width: 230px; padding: 8px;
  }
  .nav-dropdown-item {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 10px 12px; font-size: 12.5px; letter-spacing: 0.02em; text-transform: none;
    color: var(--ink); opacity: 1; border-radius: 3px; cursor: pointer; transition: background .15s;
  }
  .nav-dropdown-item:hover { background: var(--cream-deep); opacity: 1; }
  .nav-dropdown-item--disabled {
    color: var(--stone-light); cursor: not-allowed;
  }
  .nav-dropdown-item--disabled:hover { background: none; }
  .nav-dropdown-badge {
    font-size: 9px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600;
    background: var(--cream-deep); color: var(--stone); padding: 3px 7px; border-radius: 999px;
    flex-shrink: 0; white-space: nowrap;
  }
  .navright { display: flex; align-items: center; gap: 22px; }
  .cart-btn {
    position: relative; background: none; border: 1px solid var(--ink);
    border-radius: 999px; width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, color .2s;
  }
  .cart-btn:hover { background: var(--ink); color: var(--cream); }
  .cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--gold); color: white; font-size: 11px;
    border-radius: 999px; min-width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; font-weight: 600;
  }
  .navtoggle { display: none; }

  /* Hero */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex; align-items: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1783066070372-a1b0fffb7c53?fm=jpg&q=80&w=2400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--cream-deep);
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(20,17,13,0.82) 0%, rgba(20,17,13,0.58) 45%, rgba(20,17,13,0.38) 75%, rgba(20,17,13,0.5) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 2;
    max-width: 1240px; margin: 0 auto; padding: 0 32px;
    width: 100%;
  }
  .hero-eyebrow {
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 22px; font-weight: 600;
  }
  .hero h1 {
    font-size: clamp(42px, 7vw, 92px);
    line-height: 0.98;
    max-width: 820px;
    font-weight: 400;
    color: var(--cream);
  }
  .hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
  .hero p {
    max-width: 480px; margin-top: 26px;
    font-size: 17px; line-height: 1.6; color: var(--cream); opacity: 0.88;
  }
  .hero-cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
  .hero .btn { border-color: var(--cream); }
  .hero .btn:hover { background: transparent; color: var(--cream); }
  .hero .btn.ghost { color: var(--cream); border-color: var(--cream); }
  .hero .btn.ghost:hover { background: var(--cream); color: var(--ink); }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; border: 1px solid var(--ink); background: var(--ink); color: var(--cream);
    transition: all .25s; font-family: 'Inter', sans-serif; font-weight: 500;
  }
  .btn:hover { background: transparent; color: var(--ink); }
  .btn.ghost { background: transparent; color: var(--ink); }
  .btn.ghost:hover { background: var(--ink); color: var(--cream); }

  /* Craft strip */
  .craft {
    padding: 120px 0; text-align: center;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .craft-eyebrow {
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px; font-weight: 600;
  }
  .craft h2 {
    font-size: clamp(28px, 4vw, 46px); max-width: 780px; margin: 0 auto; line-height: 1.15; font-weight: 400;
  }
  .craft p {
    max-width: 560px; margin: 26px auto 0; color: var(--stone); font-size: 16px; line-height: 1.7;
  }
  .craft-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    max-width: 900px; margin: 56px auto 0;
  }
  .craft-item .num { font-family: 'Fraunces', serif; font-size: 34px; color: var(--gold); margin-bottom: 10px; }
  .craft-item p { font-size: 13px; letter-spacing: 0.03em; color: var(--ink); opacity: .7; margin: 0; }

  /* Category tabs */
  .catalog { padding: 100px 0 40px; }
  .catalog-head { text-align: center; margin: 0 auto 46px; }
  .catalog-head h2 { font-size: clamp(28px, 4vw, 46px); max-width: 780px; margin: 0 auto; line-height: 1.15; font-weight: 400; }
  .cat-filter { display: flex; justify-content: center; margin-bottom: 54px; }
  .tabs {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    max-width: 900px;
  }
  .tab {
    padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px;
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
    background: var(--cream-deep); color: var(--ink); transition: all .2s; font-family: 'Inter', sans-serif;
  }
  .tab:hover { border-color: var(--ink); }
  .tab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

  .grid { display: none; grid-template-columns: repeat(4, 1fr); gap: 30px 26px; }
  .grid.open { display: grid; }
  .card { cursor: pointer; }
  .card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
  .card-img {
    aspect-ratio: 4/5; border-radius: 2px; position: relative; overflow: hidden;
    display: flex; align-items: flex-end; padding: 16px;
    background: var(--cream-deep);
  }
  .card-img img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
  }
  .card:hover .card-img img { transform: scale(1.04); }
  .card-img .tag {
    position: relative; z-index: 2;
    background: rgba(247,243,236,0.9); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 999px; color: var(--ink); font-weight: 600;
  }
  .card-body { padding-top: 14px; }
  .card-name { font-size: 14.5px; line-height: 1.4; font-weight: 500; min-height: 40px; }
  .card-desc { font-size: 12.5px; line-height: 1.5; color: var(--stone); margin-top: 6px; min-height: 34px; }
  .card-color { margin-top: 12px; }
  .card-color label {
    display: block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--stone); margin-bottom: 6px;
  }
  .card-color select {
    width: 100%; padding: 8px 10px; font-size: 12.5px; font-family: 'Inter', sans-serif;
    border: 1px solid var(--line); border-radius: 2px; background: var(--white); color: var(--ink);
    cursor: pointer;
  }
  .card-qty { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
  .qty-box { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
  .qty-box button {
    width: 26px; height: 26px; border: none; background: none; cursor: pointer;
    font-size: 14px; display: flex; align-items: center; justify-content: center; color: var(--ink);
  }
  .qty-box button:hover { color: var(--gold); }
  .qty-box input {
    width: 30px; border: none; text-align: center; font-size: 13px; font-family: 'Inter', sans-serif;
    background: transparent; color: var(--ink);
  }
  .qty-box input:focus { outline: none; }
  .card-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
  .card-price { font-family: 'Fraunces', serif; font-size: 17px; }
  .add-btn {
    width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--ink);
    background: transparent; cursor: pointer; font-size: 18px; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: all .2s;
  }
  .add-btn:hover { background: var(--ink); color: var(--cream); }

  .empty-msg { color: var(--stone); font-size: 14px; padding: 40px 0; text-align: center; grid-column: 1/-1; }

  /* Estado de carga / error del catálogo (fetch a Google Sheets) */
  .catalog-status { display: none; text-align: center; padding: 54px 20px; }
  .catalog-status.show { display: block; }
  .cs-spinner {
    width: 28px; height: 28px; margin: 0 auto 18px; border-radius: 50%;
    border: 2px solid var(--line); border-top-color: var(--gold);
    animation: cs-spin .9s linear infinite;
  }
  @keyframes cs-spin { to { transform: rotate(360deg); } }
  .cs-title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--ink); margin: 0 0 8px; }
  .cs-text { font-size: 14px; line-height: 1.65; color: var(--stone); max-width: 460px; margin: 0 auto; }
  .catalog-status .btn { margin-top: 20px; display: inline-block; }

  /* Ver más (paginación de grilla) */
  .ver-mas-wrap { display: none; justify-content: center; margin: 40px 0 8px; }

  /* Modal de producto */
  .pm-overlay {
    position: fixed; inset: 0; background: rgba(32,29,24,0.55); z-index: 90;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .pm-overlay.open { opacity: 1; pointer-events: auto; }
  .pm-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -47%);
    width: min(880px, 92vw); max-height: 86vh; overflow-y: auto;
    background: var(--cream); border-radius: 6px; z-index: 91;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  }
  .pm-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
  .pm-close {
    position: absolute; top: 14px; right: 16px; background: none; border: none;
    font-size: 26px; line-height: 1; cursor: pointer; color: var(--ink); z-index: 2;
  }
  .pm-body { display: grid; grid-template-columns: 1fr 1fr; }
  .pm-media { display: flex; flex-direction: column; }
  .pm-img { aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
  .pm-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pm-thumbs { display: none; gap: 8px; padding: 10px; flex-wrap: wrap; background: var(--cream-deep); }
  .pm-thumbs.show { display: flex; }
  .pm-thumb {
    width: 54px; height: 54px; border-radius: 3px; overflow: hidden; padding: 0;
    border: 2px solid transparent; background: var(--white); cursor: pointer; flex-shrink: 0;
    transition: border-color .2s; -webkit-tap-highlight-color: transparent;
  }
  .pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pm-thumb.active { border-color: var(--gold); }
  .pm-thumb:hover { border-color: var(--stone-light); }
  .pm-info { padding: 44px 40px; display: flex; flex-direction: column; }
  .pm-tag {
    align-self: flex-start; background: var(--cream-deep); font-size: 10px; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 5px 10px; border-radius: 999px; color: var(--ink);
    font-weight: 600; margin-bottom: 16px;
  }
  .pm-name { font-size: 24px; font-weight: 400; line-height: 1.25; margin-bottom: 14px; }
  .pm-desc { font-size: 14px; line-height: 1.7; color: var(--stone); margin-bottom: 22px; }
  .pm-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; }
  .pm-bottom .card-price { font-size: 22px; }
  @media (max-width: 700px) {
    .pm-body { grid-template-columns: 1fr; }
    .pm-img { aspect-ratio: 16/10; }
    .pm-info { padding: 30px 24px; }
  }

  /* Cotizador: mismo fondo claro que el resto del sitio (no oscuro) */
  .cotizador {
    background: var(--cream-deep); color: var(--ink); border-radius: 4px;
    padding: 70px 60px; margin: 130px 0; position: relative; text-align: center;
  }
  .cotizador-eyebrow {
    position: absolute; top: 26px; right: 30px;
    font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
    font-weight: 600; margin: 0;
  }
  .cotizador h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 400; line-height: 1.15; color: var(--ink); max-width: 640px; margin: 0 auto; }
  .cotizador p.desc { color: var(--stone); margin: 18px auto 0; font-size: 15px; line-height: 1.65; max-width: 620px; }
  .cot-disclaimer {
    margin: 22px auto 0; font-size: 14.5px; line-height: 1.6; color: var(--gold);
    background: rgba(169,130,79,0.12); border: 1px solid rgba(169,130,79,0.35);
    padding: 14px 22px; border-radius: 10px; max-width: 620px; font-weight: 600; text-align: center;
  }
  .cot-block { margin-top: 54px; }
  .cot-block-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; color: var(--ink); margin: 0 0 20px; text-align: center; }
  .cot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; justify-content: center; }

  .cot-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 18px;
    padding: 18px; display: flex; flex-direction: column; gap: 12px; text-align: center;
  }
  .cot-card-top {
    border-radius: 14px; padding: 12px; cursor: pointer;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  }
  /* Piezas (sillón/sofá/otomana): ícono al menos el doble del tamaño original (56px -> 120px). */
  .cot-card-top--pieza { min-height: 190px; }
  /* Almohadones: ícono al menos el triple del tamaño original (56px -> 170px). */
  .cot-card-top--cojin { min-height: 240px; }
  .cot-card-icon { flex: 1; display: flex; align-items: center; justify-content: center; }
  .cot-card-icon--pieza { min-height: 120px; }
  .cot-card-icon--cojin { min-height: 170px; }
  .cot-icon { width: 100%; display: block; overflow: visible; }
  .cot-icon--pieza { height: 120px; }
  .cot-icon--cojin { height: 170px; }
  .cot-icon-shape { fill: rgba(255,255,255,.6); }
  .cot-icon-part { transition: fill .25s ease; }
  .cot-icon-outline { fill: none; stroke: rgba(32,29,24,.32); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .cot-card-top-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .cot-card-top-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; text-align: left; }
  .cot-card-top-action { display: flex; align-items: center; flex-shrink: 0; }
  .cot-card-name { font-family: 'Fraunces', serif; font-size: 14.5px; line-height: 1.3; color: var(--ink); }
  .cot-tag {
    background: rgba(32,29,24,0.8); color: var(--cream); font-size: 9.5px; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 3px 8px; border-radius: 999px; font-weight: 600; flex-shrink: 0;
  }
  .add-btn.cot-piece-plus, .add-btn.cot-piece-toggle {
    width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(32,29,24,0.25);
    background: transparent; color: var(--ink); cursor: pointer; font-size: 16px; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: all .2s; flex-shrink: 0;
  }
  .add-btn.cot-piece-plus:hover, .add-btn.cot-piece-toggle:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
  .cot-card-action { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 2px; }
  .cot-stepper { display: flex; align-items: center; gap: 14px; }
  .cot-stepper-btn {
    width: 30px; height: 30px; border-radius: 999px; border: 1px solid rgba(32,29,24,0.25);
    background: transparent; color: var(--ink); cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center; transition: all .2s;
  }
  .cot-stepper-btn:hover { background: var(--ink); color: var(--cream); }
  .cot-qty-display { min-width: 18px; text-align: center; font-size: 14px; }
  .cot-card .card-price { font-family: 'Fraunces', serif; font-size: 14.5px; color: var(--ink); }
  .cot-card .card-price.cot-price-pending {
    font-family: 'Inter', sans-serif; font-size: 12px; font-style: italic; color: var(--gold);
  }

  .cot-summary { margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); text-align: center; }
  .cot-total { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .cot-total .lbl { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); }
  .cot-total .val { font-family: 'Fraunces', serif; font-size: 32px; color: var(--ink); }

  /* ===== Cotizador: pastillitas de tela y color por pieza (se despliegan al elegir la pieza) ===== */
  .cot-picker{ margin-top:14px; padding-top:14px; border-top:1px solid var(--line); text-align:left; }
  .cot-picker[hidden]{ display:none; }
  .cot-picker-group{ margin-bottom:12px; }
  .cot-picker-group:last-child{ margin-bottom:0; }
  .cot-picker-group[hidden]{ display:none; }
  .cot-picker-group label{ display:block; font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--stone); margin-bottom:8px; }
  .cot-pills{ display:flex; flex-wrap:wrap; gap:8px; }
  .cot-pill{
    cursor:pointer; border:1px solid rgba(32,29,24,0.22); background:transparent; color:var(--ink);
    font-family:'Inter', sans-serif; font-size:12px; padding:6px 12px; border-radius:999px;
    transition:all .15s ease; line-height:1.3;
  }
  .cot-pill:hover{ border-color:var(--gold); }
  .cot-pill.active{ background:var(--gold); border-color:var(--gold); color:var(--white); font-weight:600; }
  .cot-pill-color{ display:flex; align-items:center; gap:7px; padding:4px 12px 4px 4px; }
  .cot-pill-color-swatch{ width:22px; height:22px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; box-shadow:0 0 0 1px rgba(32,29,24,0.15) inset; }
  .cot-picker-summary{ font-size:12px; color:var(--stone); margin-bottom:10px; }

  /* Footer */
  footer { border-top: 1px solid var(--line); padding: 70px 0 40px; margin-top: 60px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
  footer .logo { margin-bottom: 16px; }
  footer .foot-logo { display: inline-flex; align-items: baseline; gap: 8px; }
  footer .foot-logo .fl-nicho { font-size: 34px; color: var(--ink); }
  footer .foot-logo .fl-textil { font-size: 16px; }
  footer p { color: var(--stone); font-size: 14px; line-height: 1.7; max-width: 320px; }
  footer h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--stone); }
  footer .flinks a { display: block; font-size: 14px; margin-bottom: 10px; color: var(--ink); opacity: .8; }
  .foot-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--stone); text-align: center; }

  /* Cart drawer */
  .overlay {
    position: fixed; inset: 0; background: rgba(32,29,24,0.4); z-index: 60;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .overlay.open { opacity: 1; pointer-events: auto; }
  .drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
    background: var(--cream); z-index: 61; box-shadow: -12px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
    display: flex; flex-direction: column;
  }
  .drawer.open { transform: translateX(0); }
  .drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 28px; border-bottom: 1px solid var(--line); }
  .drawer-head h3 { font-size: 20px; font-weight: 400; }
  .drawer-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }
  .drawer-items { flex: 1; overflow-y: auto; padding: 10px 28px; }
  .drawer-empty { color: var(--stone); font-size: 14px; padding: 60px 0; text-align: center; }
  .ditem { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .ditem-swatch { width: 56px; height: 66px; border-radius: 2px; flex-shrink: 0; background-size: cover; background-position: center; }
  .ditem-info { flex: 1; }
  .ditem-name { font-size: 13.5px; line-height: 1.4; margin-bottom: 2px; }
  .ditem-variant { font-size: 11.5px; color: var(--stone); margin-bottom: 6px; }
  .ditem-price { font-family: 'Fraunces', serif; font-size: 14px; color: var(--gold); }
  .ditem-qty { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
  .qbtn { width: 24px; height: 24px; border: 1px solid var(--line); background: none; cursor: pointer; font-size: 14px; display:flex; align-items:center; justify-content:center; }
  .ditem-remove { font-size: 11px; text-decoration: underline; color: var(--stone); cursor: pointer; margin-top: 8px; display: inline-block; }
  .drawer-foot { padding: 24px 28px 30px; border-top: 1px solid var(--line); }
  .drawer-total { display: flex; justify-content: space-between; margin-bottom: 18px; align-items: baseline; }
  .drawer-total .lbl { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--stone); }
  .drawer-total .val { font-family: 'Fraunces', serif; font-size: 24px; }
  .drawer-note { font-size: 12px; color: var(--stone); margin-top: 14px; line-height: 1.6; text-align: center; }
  .ditem-price-pending { font-family: 'Inter', sans-serif !important; font-size: 11.5px !important; font-style: italic; color: var(--stone) !important; }
  .wa-btn { width: 100%; background: #25D366; border-color: #25D366; color: white; }
  .wa-btn:hover { background: transparent; color: #1f8a4c; border-color: #25D366; }

  /* Toast */
  .toast {
    position: fixed; left: 50%; bottom: 34px; transform: translateX(-50%) translateY(20px);
    background: var(--ink); color: var(--cream); padding: 14px 26px; border-radius: 999px;
    font-size: 13px; letter-spacing: 0.03em; box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 80;
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  @media (max-width: 900px) {
    .navlinks { display: none; }
    .grid { grid-template-columns: repeat(2, 1fr); }
    .cotizador { padding: 54px 22px 44px; }
    .cotizador-eyebrow { top: 16px; right: 18px; font-size: 9.5px; }
    .cotizador h2 { margin-top: 20px; }
    .cot-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr; gap: 30px; }
    .craft-row { grid-template-columns: 1fr; gap: 24px; }
    .wrap { padding: 0 20px; }
    .nav { padding: 16px 20px; }
    .hero { min-height: 74vh; background-attachment: scroll; }
    .hero::before { background: rgba(20,17,13,0.66); }
    .hero p { max-width: 100%; }
  }
