﻿:root {
      --bg: #f7fafc;
      --ink: #101828;
      --muted: #667085;
      --line: #d9e1ec;
      --brand: #00a86b;
      --brand-dark: #08704c;
      --blue: #0f62fe;
    }
    * { box-sizing: border-box; }
    body {
      min-height: 100vh;
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      background:
        radial-gradient(circle at 90% 0%, rgba(0,168,107,.16), transparent 27%),
        radial-gradient(circle at 6% 22%, rgba(15,98,254,.10), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #eef5f3 100%);
      color: var(--ink);
    }
    .app {
      min-height: 100vh;
      max-width: 1100px;
      margin: 0 auto;
      padding: 18px 18px 96px;
    }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 0;
      background: rgba(247,250,252,.78);
      backdrop-filter: blur(14px);
    }
    .topbar .d-flex.align-items-center {
      min-width: 0;
    }
    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--blue));
      font-weight: 900;
    }
    .hero {
      border-radius: 28px;
      padding: 26px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(5,32,54,.94), rgba(0,168,107,.88)),
        url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1400&q=80") center/cover;
      box-shadow: 0 22px 46px rgba(16,24,40,.14);
      overflow: hidden;
    }
    .app-banner {
      overflow: hidden;
      margin-bottom: 16px;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 18px 38px rgba(16,24,40,.08);
    }
    .app-banner img {
      display: block;
      width: 100%;
      height: auto;
      max-height: none;
      object-fit: contain;
    }
    .glass {
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(217,225,236,.9);
      box-shadow: 0 16px 34px rgba(16,24,40,.07);
      backdrop-filter: blur(14px);
      border-radius: 22px;
    }
    .card-soft {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
    }
    .btn {
      border-radius: 14px;
      font-weight: 800;
      min-height: 44px;
    }
    .btn-brand {
      color: #fff;
      background: var(--brand);
    }
    .btn-brand:hover { color: #fff; background: var(--brand-dark); }
    .form-control, .form-select {
      min-height: 46px;
      border-radius: 14px;
      border-color: #cbd5e1;
    }
    textarea.form-control { min-height: 94px; }
    .business-card {
      display: grid;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 15px;
      background: #fff;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .business-card:hover,
    .business-card.selected {
      transform: translateY(-2px);
      border-color: rgba(0,168,107,.58);
      box-shadow: 0 18px 34px rgba(0,168,107,.12);
    }
    .badge-soft {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 900;
      background: #ecfdf3;
      color: #027a48;
    }
    .badge-pending { background: #fffaeb; color: #b54708; }
    .badge-approved { background: #ecfdf3; color: #027a48; }
    .badge-rejected { background: #fef3f2; color: #b42318; }
    .badge-needs_changes { background: #f4f3ff; color: #5925dc; }
    .bottom-nav {
      position: fixed;
      left: 50%;
      bottom: 18px;
      z-index: 30;
      transform: translateX(-50%);
      width: min(520px, calc(100% - 24px));
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
      padding: 8px;
      border-radius: 22px;
      background: rgba(8,18,32,.92);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 36px rgba(16,24,40,.18);
    }
    .bottom-nav button {
      border: 0;
      border-radius: 16px;
      padding: 9px 6px;
      color: rgba(255,255,255,.70);
      background: transparent;
      font-size: 12px;
      font-weight: 800;
    }
    .bottom-nav button.active {
      color: #fff;
      background: rgba(255,255,255,.14);
    }
    .view { display: none; }
    .view.active { display: block; }
    
    
    
    
    
    
    
    
    
    
    
    .rating-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      border: 1px solid rgba(234,179,8,.18);
      border-radius: 999px;
      padding: 6px 10px;
      color: #713f12;
      background: linear-gradient(135deg, rgba(254,243,199,.98), rgba(255,251,235,.92));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
      font-size: 12px;
      font-weight: 900;
    }
    .rating-pill .stars {
      display: inline-flex;
      gap: 1px;
      color: #f59e0b;
      font-size: 11px;
    }
    .rating-pill small {
      color: #92400e;
      opacity: .78;
      font-weight: 800;
    }
    .review-link,
    .favorite-btn {
      border: 1px solid rgba(217,225,236,.96);
      color: #344054;
      background: rgba(255,255,255,.84);
      box-shadow: 0 8px 18px rgba(16,24,40,.06);
    }
    .review-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 34px;
      border-radius: 999px;
      padding: 6px 11px;
      font-size: 12px;
      font-weight: 900;
    }
    .favorite-btn {
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      border-radius: 14px;
      transition: transform .16s ease, color .16s ease, background .16s ease;
    }
    .favorite-btn:hover {
      transform: translateY(-1px) scale(1.02);
    }
    .favorite-btn.active {
      color: #fff;
      border-color: rgba(244,63,94,.25);
      background: linear-gradient(135deg, #fb7185, #e11d48);
      box-shadow: 0 12px 22px rgba(225,29,72,.22);
    }
    .share-actions {
      position: relative;
      display: flex;
      gap: 7px;
    }
    .share-btn {
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 14px;
      color: #fff;
      box-shadow: 0 10px 18px rgba(16,24,40,.12);
      transition: transform .16s ease, filter .16s ease;
    }
    .share-btn:hover {
      transform: translateY(-2px) scale(1.03);
      filter: saturate(1.08);
    }
    .share-btn.whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }
    .share-btn.facebook { background: linear-gradient(135deg, #1877f2, #0f62fe); }
    .share-btn.native { background: linear-gradient(135deg, #111827, #334155); }
    .soft-alert {
      margin-bottom: 10px;
      border-radius: 16px;
      padding: 10px 12px;
      font-weight: 800;
      background: #fff7ed;
      color: #9a3412;
      border: 1px solid #fed7aa;
    }
    .soft-alert.danger {
      background: #fef2f2;
      color: #b42318;
      border-color: #fecaca;
    }
    
    
    
    
    
    
    
    
    
    .empty {
      border: 1px dashed #cbd5e1;
      border-radius: 20px;
      padding: 22px;
      color: var(--muted);
      text-align: center;
      background: #f8fafc;
    }
    .global-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: grid;
      place-items: center;
      background: rgba(247,250,252,.58);
      backdrop-filter: blur(6px);
    }
    .loader-card {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 260px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 22px 48px rgba(16,24,40,.16);
    }
    /* Gold Card business experience */
    .gold-kicker,.gold-public-badge { display:inline-flex;align-items:center;gap:7px;color:#a76700;font-size:11px;font-weight:950;letter-spacing:.12em; }
    .gold-business-select { max-width:300px; }
    .gold-card-lock { padding:22px;border:1px solid #282828;border-radius:26px;color:#fff;background:#171717;box-shadow:0 22px 48px rgba(17,17,17,.18); }
    .gold-lock-top { display:flex;align-items:center;gap:16px; }
    .gold-lock-top h3 { margin:4px 0;font-size:clamp(20px,3vw,28px);font-weight:950; }
    .gold-lock-top p { margin:0;color:#c9c9c9; }
    .gold-lock-top span { color:#f4b942;font-size:11px;font-weight:950;letter-spacing:.12em; }
    .gold-lock-icon { display:grid;place-items:center;flex:0 0 52px;width:52px;height:52px;border-radius:18px;background:#f4b942;color:#171717;font-size:24px; }
    .gold-padlock { margin-left:auto;color:#f4b942;font-size:24px; }
    .gold-feature-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:20px 0; }
    .gold-feature-grid div { padding:14px;border:1px solid #383838;border-radius:18px;background:#202020; }
    .gold-feature-grid i { display:block;color:#f4b942;font-size:20px;margin-bottom:10px; }
    .gold-feature-grid strong,.gold-feature-grid small { display:block; }
    .gold-feature-grid small { color:#aaa;margin-top:4px; }
    .gold-activate-btn { width:100%;border:0;border-radius:16px;padding:14px;background:#f4b942;color:#171717;font-weight:950; }
    .gold-active-banner { display:flex;justify-content:space-between;align-items:center;padding:18px;border-radius:22px;background:#171717;color:#fff; }
    .gold-active-banner span { color:#f4b942;font-size:11px;font-weight:950;letter-spacing:.08em; }
    .gold-active-banner h3 { margin:4px 0 0;font-weight:950; }
    .gold-active-banner>strong { color:#171717;background:#f4b942;border-radius:999px;padding:8px 12px; }
    .gold-manager-section { margin-top:22px;padding-top:20px;border-top:1px solid var(--line); }
    .gold-section-title { display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:14px;font-weight:950; }
    .gold-section-title a,.gold-section-title small { font-size:12px;font-weight:800; }
    .gold-catalog-editor { display:grid;gap:8px;margin-top:12px; }
    .gold-catalog-editor>div { display:flex;align-items:center;gap:12px;padding:12px 14px;border:1px solid var(--line);border-radius:16px; }
    .gold-catalog-editor span { display:grid;flex:1; }
    .gold-catalog-editor small { color:#a76700;font-weight:900;text-transform:uppercase; }
    .gold-catalog-editor em { color:var(--muted);font-size:13px;font-style:normal; }
    .gold-catalog-editor button,.gold-media-manager button { border:0;background:#fff1ec;color:#e34a16;border-radius:10px;padding:8px; }
    .gold-media-manager { display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:12px;margin-top:14px; }
    .gold-media-manager article { overflow:hidden;border:1px solid var(--line);border-radius:18px; }
    .gold-media-manager img,.gold-media-manager video { width:100%;aspect-ratio:4/3;object-fit:cover;display:block; }
    .gold-media-manager article>div { display:flex;justify-content:space-between;align-items:center;gap:8px;padding:10px; }
    .gold-public-head { display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px; }
    .gold-public-badge { align-self:start;padding:9px 12px;border:1px solid #f0d28d;border-radius:999px;background:#fff8e7; }
    .gold-action-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:18px 0; }
    .gold-action { display:grid;justify-items:center;gap:7px;padding:14px 8px;border:1px solid var(--line);border-radius:18px;color:#171717;background:#fff;font-size:12px;font-weight:900;text-decoration:none; }
    .gold-action i { font-size:21px;color:#ff6200; }
    .gold-action.whatsapp i { color:#16a765; }
    .gold-action.disabled { opacity:.42; }
    .gold-map { overflow:hidden;height:230px;border:1px solid var(--line);border-radius:22px; }
    .gold-map iframe { width:100%;height:100%;border:0; }
    .gold-catalog-public,.gold-gallery { margin-top:22px; }
    .gold-catalog-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:10px; }
    .gold-catalog-grid article { display:flex;justify-content:space-between;gap:16px;padding:15px;border:1px solid var(--line);border-radius:18px; }
    .gold-catalog-grid article span { color:#a76700;font-size:10px;font-weight:950;text-transform:uppercase; }
    .gold-catalog-grid h3 { margin:3px 0;font-size:16px;font-weight:950; }
    .gold-catalog-grid p { margin:0;color:var(--muted);font-size:13px; }
    .gold-catalog-grid article>strong { color:#ff6200;white-space:nowrap; }
    .gold-locked-public { display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:16px;margin-top:20px;padding:18px;border-radius:24px;background:#171717;color:#fff; }
    .gold-locked-public span { color:#f4b942;font-size:10px;font-weight:950;letter-spacing:.1em; }
    .gold-locked-public h3 { margin:3px 0;font-size:18px;font-weight:950; }
    .gold-locked-public p { margin:0;color:#bdbdbd;font-size:13px; }
    .gold-preview-actions { display:flex;gap:8px;color:#f4b942; }
    .gold-locked-showcase { margin-top:20px;overflow:hidden;border:1px solid #e7e3dc;border-radius:26px;background:#fbfaf8;box-shadow:0 18px 42px rgba(23,23,23,.08); }
    .gold-locked-showcase .gold-locked-public { margin:0;border-radius:0;background:#171717; }
    .gold-showcase-padlock { display:grid;place-items:center;width:44px;height:44px;border:1px solid #3d3d3d;border-radius:15px;color:#f4b942;background:#222;font-size:18px; }
    .gold-preview-intro { display:flex;align-items:center;justify-content:space-between;gap:14px;padding:20px 20px 10px; }
    .gold-preview-intro span { color:#db5b00;font-size:10px;font-weight:950;letter-spacing:.12em; }
    .gold-preview-intro h3 { margin:4px 0 2px;font-size:19px;font-weight:950; }
    .gold-preview-intro p { margin:0;color:var(--muted);font-size:13px; }
    .gold-preview-intro>strong { display:inline-flex;align-items:center;gap:6px;padding:8px 11px;border-radius:999px;color:#7a5b11;background:#fff0c8;font-size:11px;white-space:nowrap; }
    .gold-preview-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;padding:10px 20px 20px; }
    .gold-preview-module { position:relative;min-height:142px;overflow:hidden;padding:14px;border:1px solid #e3dfd7;border-radius:19px;background:#fff;box-shadow:0 8px 22px rgba(20,20,20,.04); }
    .gold-preview-module:before { content:"";position:absolute;inset:0 0 0 auto;width:4px;background:#ff6500; }
    .gold-preview-module:after { content:"\f47a";position:absolute;right:13px;bottom:12px;display:grid;place-items:center;width:30px;height:30px;border-radius:50%;color:#fff;background:#171717;font-family:"bootstrap-icons";font-size:12px;box-shadow:0 5px 14px rgba(0,0,0,.18); }
    .gold-preview-module-top { display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:12px;color:#171717;font-size:12px;font-weight:950; }
    .gold-preview-module-top>span { display:flex;align-items:center;gap:7px; }
    .gold-preview-module-top>span i { color:#ff6500; }
    .gold-preview-module-top>i { color:#b7aa97; }
    .gold-preview-module>small { color:var(--muted);font-size:11px; }
    .gold-preview-products { display:grid;grid-template-columns:1fr 1fr;gap:7px;filter:saturate(.65); }
    .gold-preview-products>span { display:grid;gap:2px;padding:8px;border-radius:12px;background:#f5f3ef; }
    .gold-preview-products i { color:#c1b8aa;font-size:18px; }
    .gold-preview-products b { overflow:hidden;font-size:10px;white-space:nowrap;text-overflow:ellipsis; }
    .gold-preview-products small { color:#958b7d;font-size:8px; }
    .gold-preview-map { position:relative;height:72px;overflow:hidden;margin-bottom:7px;border-radius:12px;background:linear-gradient(135deg,#eef1ed,#e2e8df); }
    .gold-preview-map span { position:absolute;width:130%;height:2px;background:#fff;transform:rotate(-17deg); }
    .gold-preview-map span:nth-child(1) { left:-15%;top:18px; }.gold-preview-map span:nth-child(2) { left:-10%;top:46px;transform:rotate(22deg); }.gold-preview-map span:nth-child(3) { left:25%;top:35px;width:70%;height:4px;background:#ff8a40;transform:rotate(-38deg); }
    .gold-preview-map i { position:absolute;left:58%;top:22px;color:#ff6500;font-size:22px;filter:drop-shadow(0 2px 2px #fff); }
    .gold-demo-actions { display:grid;gap:8px;filter:saturate(.72); }
    .gold-demo-actions span { display:flex;align-items:center;gap:8px;padding:10px 11px;border-radius:12px;background:#f4f2ee;color:#34312e;font-size:11px;font-weight:900; }
    .gold-demo-actions .is-whatsapp i { color:#18a66a; }.gold-demo-actions span:not(.is-whatsapp) i { color:#ff6500; }
    .gold-preview-gallery { display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:5px;height:72px;margin-bottom:7px;filter:saturate(.45); }
    .gold-preview-gallery span { border-radius:10px;background:linear-gradient(145deg,#dcd6cc,#f3eee7); }.gold-preview-gallery span:nth-child(2) { background:linear-gradient(145deg,#ead5c5,#f7ede4); }.gold-preview-gallery span:nth-child(3) { background:linear-gradient(145deg,#d7dfd8,#edf0ec); }
    .gold-preview-cta { display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 20px;border-top:1px solid #e7e3dc;background:#fff; }
    .gold-preview-cta>div { display:grid;gap:2px; }.gold-preview-cta strong { display:flex;align-items:center;gap:7px;font-size:14px; }.gold-preview-cta strong i { color:#d99b12; }.gold-preview-cta small { color:var(--muted);font-size:11px; }
    .gold-preview-cta button { border:0;border-radius:14px;padding:11px 14px;color:#fff;background:#ff6500;font-size:12px;font-weight:950;box-shadow:0 8px 18px rgba(255,101,0,.22); }
    @media (max-width:720px) {
      .gold-business-select { max-width:none;width:100%; }
      .gold-feature-grid { grid-template-columns:repeat(2,1fr); }
      .gold-action-grid { grid-template-columns:repeat(4,1fr); }
      .gold-lock-top { align-items:flex-start; }
      .gold-padlock { display:none; }
      .gold-locked-public { grid-template-columns:auto 1fr; }
      .gold-preview-actions { grid-column:1/-1;justify-content:center; }
      .gold-preview-grid { grid-template-columns:1fr;padding:8px 14px 16px; }
      .gold-preview-intro { align-items:flex-start;padding:16px 14px 8px; }
      .gold-preview-intro>strong { padding:7px 9px; }
      .gold-preview-cta { align-items:stretch;flex-direction:column;padding:14px; }
      .gold-preview-cta button { width:100%; }
      .gold-showcase-padlock { display:grid;grid-column:1/-1;width:100%;height:34px; }
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 12px;
      margin-top: 14px;
    }
    .media-tile {
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
    }
    .media-tile img,
    .media-tile video {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
      background: #e5e7eb;
    }
    .upload-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 14px 0;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .upload-divider:before,
    .upload-divider:after {
      content: "";
      flex: 1;
      height: 1px;
      background: var(--line);
    }
    .privacy-check {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      line-height: 1.35;
    }
    .privacy-check input {
      margin-top: 2px;
    }
    .privacy-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    #privacy-gate-modal .app-modal-card {
      max-width: 520px;
      max-height: calc(100dvh - 36px);
      overflow-y: auto;
    }
    .user-access-gate {
      overflow-y: auto;
      overscroll-behavior: contain;
      padding-top: max(18px, env(safe-area-inset-top));
      padding-bottom: max(18px, env(safe-area-inset-bottom));
    }
    .user-access-gate-card {
      width: min(500px, 100%);
      max-height: calc(100dvh - 36px);
      margin: auto;
      overflow-x: hidden;
      overflow-y: auto;
    }
    .user-access-gate-icon {
      display: grid;
      width: 54px;
      height: 54px;
      margin-bottom: 14px;
      place-items: center;
      border-radius: 18px;
      color: #b54708;
      background: #fffaeb;
      box-shadow: inset 0 0 0 1px rgba(247,144,9,.18);
      font-size: 24px;
    }
    .user-access-gate-icon.is-admin {
      color: #175cd3;
      background: #eff8ff;
      box-shadow: inset 0 0 0 1px rgba(46,144,250,.18);
    }
    .user-access-gate-identity {
      min-height: 18px;
      margin: 4px 0 14px;
      color: #667085;
      overflow-wrap: anywhere;
      font-size: 13px;
      font-weight: 750;
    }
    .user-access-gate-notice {
      margin-bottom: 18px;
      padding: 12px 14px;
      border: 1px solid #fedf89;
      border-radius: 16px;
      color: #7a2e0e;
      background: #fffaeb;
      font-size: 13px;
      font-weight: 750;
      line-height: 1.45;
    }
    .user-access-gate-card .form-control {
      min-height: 50px;
      border-radius: 15px;
    }
    .user-access-gate-card .btn-brand {
      min-height: 54px;
    }
    .user-access-gate-help {
      margin: 10px 0 0;
      color: #667085;
      font-size: 12px;
      line-height: 1.4;
    }
    .user-access-gate-switch {
      min-height: 46px;
      color: #475467;
      font-weight: 800;
      text-decoration: none;
    }
    #privacy-gate-modal .privacy-check strong {
      color: #475467;
      white-space: nowrap;
    }
    @media (max-width: 520px) {
      .user-access-gate { padding-right: 10px; padding-left: 10px; }
      .user-access-gate-card {
        max-height: calc(100dvh - max(20px, env(safe-area-inset-top)) - max(20px, env(safe-area-inset-bottom)));
        padding: 20px 18px;
        border-radius: 24px;
      }
      .user-access-gate-icon { width: 48px; height: 48px; border-radius: 16px; font-size: 21px; }
    }
    .app-footer {
      margin: 18px auto 86px;
      max-width: 720px;
      padding: 14px 18px;
      border-radius: 18px;
      color: var(--muted);
      text-align: center;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(217,225,236,.82);
      font-size: 13px;
    }
    .app-footer a {
      color: var(--blue);
      font-weight: 800;
    }
    .app-footer-image {
      display: block;
      width: 100%;
      height: auto;
      max-height: none;
      margin: 0 auto;
      border-radius: 14px;
      object-fit: contain;
    }
    .app-footer-copy {
      display: grid;
      gap: 5px;
      overflow-wrap: anywhere;
    }
    .app-footer-image + .app-footer-copy {
      margin-top: 12px;
    }
    .yovoy-delivery {
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 32px;
      background:
        radial-gradient(circle at 12% 0%, rgba(15,98,254,.16), transparent 34%),
        radial-gradient(circle at 95% 8%, rgba(0,168,107,.18), transparent 30%),
        rgba(255,255,255,.86);
      box-shadow: 0 24px 52px rgba(16,24,40,.09);
      backdrop-filter: blur(18px);
    }
    .delivery-hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 124px;
      gap: 18px;
      align-items: center;
      padding: 22px;
      color: #fff;
      background:
        radial-gradient(circle at 85% 0%, rgba(105,214,200,.32), transparent 34%),
        linear-gradient(135deg, #071529 0%, #183a80 56%, #00a86b 100%);
    }
    .delivery-kicker {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 10px;
      border-radius: 999px;
      padding: 7px 11px;
      color: #dffcf4;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.18);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .delivery-hero h2 {
      max-width: 520px;
      margin: 0 0 8px;
      font-size: clamp(26px, 4vw, 40px);
      line-height: 1.02;
      font-weight: 950;
    }
    .delivery-hero p {
      max-width: 520px;
      margin: 0;
      color: rgba(255,255,255,.72);
      font-weight: 700;
    }
    .delivery-orbit {
      position: relative;
      width: 118px;
      height: 118px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    }
    .delivery-orbit span {
      position: absolute;
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border-radius: 18px;
      color: #071529;
      background: #fff;
      box-shadow: 0 14px 24px rgba(0,0,0,.16);
      font-size: 22px;
    }
    .delivery-orbit span:nth-child(1) { left: -8px; top: 16px; }
    .delivery-orbit span:nth-child(2) { right: -4px; top: 36px; }
    .delivery-orbit span:nth-child(3) { left: 34px; bottom: -8px; color: #fff; background: #00a86b; }
    .delivery-console {
      padding: 16px;
    }
    .delivery-tracking-card {
      margin: 0 16px 16px;
      border: 1px solid rgba(217,225,236,.86);
      border-radius: 26px;
      padding: 14px;
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 38px rgba(16,24,40,.08);
    }
    .tracking-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .tracking-head .delivery-kicker {
      margin-bottom: 8px;
      color: #027a48;
      background: #ecfdf3;
      border-color: rgba(0,168,107,.14);
    }
    .tracking-head h3 {
      margin: 0 0 4px;
      font-size: 20px;
      font-weight: 950;
    }
    .tracking-head p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }
    .tracking-pill {
      flex: 0 0 auto;
      border-radius: 999px;
      padding: 8px 10px;
      color: #194185;
      background: #eef4ff;
      font-size: 11px;
      font-weight: 950;
    }
    .delivery-search-loader {
      position: relative;
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      min-height: 88px;
      overflow: hidden;
      margin: 12px 0;
      padding: 13px 14px;
      border: 1px solid #ffd0ad;
      border-radius: 21px;
      color: #572600;
      background: linear-gradient(135deg, #fff8f2, #fff 58%, #effcf7);
      box-shadow: 0 12px 28px rgba(255,101,8,.12);
    }
    .delivery-search-loader.d-none { display: none !important; }
    .delivery-search-orbit {
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(145deg, #ff6508, #ff8a34);
      box-shadow: 0 9px 20px rgba(255,101,8,.28);
      animation: deliverySearchRide 1.35s ease-in-out infinite;
    }
    .delivery-search-orbit i { font-size: 25px; }
    .delivery-search-copy,
    .delivery-search-copy strong,
    .delivery-search-copy small { display: block; }
    .delivery-search-copy strong { font-size: 13px; font-weight: 950; }
    .delivery-search-copy small { min-height: 32px; margin-top: 4px; color: #7a5134; font-size: 11px; font-weight: 750; line-height: 1.35; }
    .delivery-search-dots { display: flex; gap: 4px; }
    .delivery-search-dots i { width: 6px; height: 6px; border-radius: 50%; background: #ff6508; animation: deliverySearchDot 1s ease-in-out infinite; }
    .delivery-search-dots i:nth-child(2) { animation-delay: .14s; }
    .delivery-search-dots i:nth-child(3) { animation-delay: .28s; }
    .delivery-search-loader.is-accepted { border-color: #9de3c2; color: #075c3a; background: #effcf7; }
    .delivery-search-loader.is-accepted .delivery-search-orbit { background: linear-gradient(145deg, #00a86b, #40c991); animation: none; }
    @keyframes deliverySearchRide { 0%,100% { transform: translateX(-2px) rotate(-2deg); } 50% { transform: translateX(4px) rotate(2deg); } }
    @keyframes deliverySearchDot { 0%,100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }
    .delivery-user-map {
      position: relative;
      min-height: 220px;
      overflow: hidden;
      border-radius: 22px;
      background:
        radial-gradient(circle at 15% 20%, rgba(15,98,254,.18), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(0,168,107,.16), transparent 32%),
        #f8fafc;
    }
    .delivery-user-map.is-google-loading::after {
      position: absolute;
      z-index: 50;
      inset: 0;
      display: grid;
      place-items: center;
      content: "Preparando el mapa del viaje…";
      padding: 24px;
      color: #344054;
      background:
        radial-gradient(circle at 18% 22%, rgba(15,98,254,.14), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(0,168,107,.14), transparent 32%),
        #eef5f3;
      font-size: 13px;
      font-weight: 900;
      text-align: center;
    }
    .delivery-user-map.is-google-loading.has-route-continuity::after {
      inset: 12px 12px auto auto;
      display: block;
      width: auto;
      max-width: calc(100% - 24px);
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 999px;
      padding: 8px 11px;
      content: "Actualizando mapa en vivo…";
      color: #fff;
      background: rgba(23,25,29,.88);
      box-shadow: 0 8px 22px rgba(15,23,42,.2);
      backdrop-filter: blur(8px);
      font-size: 10px;
    }
    .delivery-user-map-continuity {
      position: absolute;
      z-index: 45;
      inset: 0;
      display: grid;
      place-items: stretch;
      overflow: hidden;
      background: #eef5f3;
      pointer-events: none;
    }
    .delivery-user-map.delivery-user-map-fallback {
      display: grid;
      place-items: stretch;
    }
    .delivery-user-map-fallback svg {
      width: 100%;
      height: 100%;
      min-height: 260px;
    }
    .delivery-user-map-fallback-label {
      position: absolute;
      right: 12px;
      bottom: 12px;
      left: 12px;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 9px 11px;
      border: 1px solid rgba(255, 255, 255, .86);
      border-radius: 14px;
      color: #fff;
      background: rgba(23, 25, 29, .88);
      box-shadow: 0 10px 28px rgba(15, 23, 42, .2);
      backdrop-filter: blur(8px);
      pointer-events: none;
    }
    .delivery-user-map-fallback-label > i {
      flex: 0 0 auto;
      color: #ff6508;
      font-size: 18px;
    }
    .delivery-user-map-fallback-label span,
    .delivery-user-map-fallback-label strong,
    .delivery-user-map-fallback-label small {
      display: block;
    }
    .delivery-user-map-fallback-label strong {
      font-size: 11px;
    }
    .delivery-user-map-fallback-label small {
      margin-top: 1px;
      color: #d5d9df;
      font-size: 8px;
    }
    .delivery-user-map-msg {
      margin-top: 10px;
      border-radius: 16px;
      padding: 10px 12px;
      color: var(--muted);
      background: #f8fafc;
      font-size: 12px;
      font-weight: 850;
    }
    .delivery-status {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .delivery-status div {
      border: 1px solid rgba(217,225,236,.86);
      border-radius: 18px;
      padding: 11px;
      background: rgba(248,250,252,.82);
    }
    .delivery-status strong,
    .delivery-status span {
      display: block;
    }
    .delivery-status strong {
      color: var(--muted);
      font-size: 11px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .delivery-status span {
      color: var(--ink);
      font-size: 15px;
      font-weight: 950;
    }
    .driver-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 12px;
    }
    .driver-card {
      position: relative;
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
      overflow: hidden;
      border: 1px solid rgba(217,225,236,.88);
      border-radius: 20px;
      padding: 12px;
      background: #fff;
      box-shadow: 0 12px 22px rgba(16,24,40,.05);
    }
    .driver-avatar {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(135deg, #0f62fe, #00a86b);
      font-weight: 950;
    }
    .driver-card strong,
    .driver-card span {
      display: block;
    }
    .driver-card strong {
      font-size: 14px;
      font-weight: 950;
    }
    .driver-card span {
      color: var(--muted);
      font-size: 11px;
      font-weight: 750;
    }
    .driver-score {
      color: #b45309;
      font-size: 12px;
      font-weight: 950;
    }
    .driver-eta {
      grid-column: 1 / -1;
      width: fit-content;
      border-radius: 999px;
      padding: 5px 9px;
      color: #027a48;
      background: #ecfdf3;
      font-size: 11px;
      font-weight: 950;
    }
    .driver-route {
      position: absolute;
      right: 10px;
      bottom: 12px;
      width: 72px;
      height: 18px;
      border-bottom: 2px dashed rgba(15,98,254,.32);
      border-radius: 50%;
    }
    .compact-delivery {
      border-radius: 24px;
    }
    .compact-delivery .delivery-hero {
      display: flex;
      justify-content: space-between;
      padding: 14px;
    }
    .compact-delivery .delivery-kicker {
      margin-bottom: 4px;
      padding: 5px 9px;
      font-size: 11px;
    }
    .compact-delivery .delivery-hero h2 {
      margin: 0;
      font-size: 21px;
    }
    .mini-refresh {
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 14px;
      color: #101828;
      background: #fff;
      font-weight: 900;
    }
    .compact-delivery .driver-strip {
      grid-template-columns: 1fr;
      gap: 7px;
      margin: 10px 12px 0;
    }
    .compact-delivery .driver-card {
      grid-template-columns: 34px minmax(0, 1fr) auto;
      min-height: 54px;
      border-radius: 16px;
      padding: 8px 10px;
      box-shadow: 0 8px 16px rgba(16,24,40,.04);
    }
    .compact-delivery .driver-avatar {
      width: 34px;
      height: 34px;
      border-radius: 13px;
      font-size: 13px;
    }
    .compact-delivery .driver-card strong {
      font-size: 13px;
      line-height: 1.1;
    }
    .compact-delivery .driver-card span {
      font-size: 10px;
    }
    .driver-meta {
      display: grid;
      gap: 2px;
      text-align: right;
    }
    .driver-meta b {
      color: #b45309;
      font-size: 11px;
    }
    .driver-meta small {
      color: #027a48;
      font-size: 10px;
      font-weight: 900;
    }
    .compact-delivery .delivery-console {
      padding: 10px 12px 12px;
    }
    .compact-delivery .form-select,
    .compact-delivery .form-control {
      min-height: 38px;
      border-radius: 14px;
      font-size: 12px;
    }
    .compact-send {
      min-height: 38px;
      border-radius: 14px;
      padding: 0;
    }
    .compact-status {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }
    .compact-status span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border-radius: 999px;
      padding: 6px 9px;
      color: #344054;
      background: #f8fafc;
      font-size: 11px;
      font-weight: 900;
    }
    
    
    
    
    
    
    .compact-business-panel {
      border-radius: 24px;
    }
    .compact-business-panel h2 {
      font-size: 21px;
    }
    .compact-business-panel .business-card {
      padding: 12px;
      border-radius: 18px;
    }
    .compact-business-panel .business-card strong {
      font-size: 15px;
    }
    .compact-business-panel .business-card .btn {
      padding: 7px 10px;
      border-radius: 12px;
      font-size: 12px;
    }
    .app-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: grid;
      place-items: center;
      padding: 18px;
    }
    .app-modal-backdrop {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 18%, rgba(0,168,107,.20), transparent 26%),
        rgba(8,18,32,.58);
      backdrop-filter: blur(9px);
    }
    .app-modal-card {
      position: relative;
      z-index: 1;
      width: min(460px, 100%);
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 30px;
      padding: 24px;
      background:
        radial-gradient(circle at 90% 0%, rgba(0,168,107,.12), transparent 30%),
        rgba(255,255,255,.96);
      box-shadow: 0 30px 70px rgba(8,18,32,.24);
    }
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 14px;
      color: #344054;
      background: #eef2f7;
    }
    .modal-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
      border-radius: 999px;
      padding: 7px 11px;
      color: #027a48;
      background: #ecfdf3;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .rating-picker {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
    }
    .rating-picker button {
      min-height: 48px;
      border: 1px solid rgba(217,225,236,.98);
      border-radius: 16px;
      color: #cbd5e1;
      background: #fff;
      font-size: 20px;
      transition: transform .16s ease, color .16s ease, background .16s ease;
    }
    .rating-picker button.active {
      color: #f59e0b;
      border-color: rgba(245,158,11,.32);
      background: #fffbeb;
      box-shadow: 0 10px 18px rgba(245,158,11,.12);
    }
    .rating-picker button:hover {
      transform: translateY(-1px);
    }
    @media (max-width: 720px) {
      .app { padding: 14px 14px 92px; }
      .hero { padding: 22px; border-radius: 24px; }
      h1 { font-size: 28px; }
      
      
    }

/* YOVOY real logo */
.brand-logo {
  width: 118px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  padding: 4px 8px;
  box-shadow: 0 10px 22px rgba(16,24,40,.08);
}

/* Disponibilidad autoritativa de reparto: visible junto a cada accion. */
.driver-availability-alert{
  display:grid;
  width:100%;
  min-width:0;
  grid-template-columns:44px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  padding:10px 12px;
  border:1px solid #ffd0ad;
  border-radius:14px;
  color:#3a2a1e;
  background:#fff8f2;
  box-shadow:0 7px 18px rgba(65,43,28,.07);
}
.driver-availability-alert.d-none{display:none!important}
.driver-availability-alert>i{
  display:grid;
  width:44px;
  height:44px;
  place-items:center;
  border-radius:12px;
  color:#d95200;
  background:#ffe8d8;
  font-size:18px;
}
.driver-availability-alert>span{display:grid;min-width:0;gap:2px}
.driver-availability-alert strong{font-size:13px;font-weight:950;line-height:1.25}
.driver-availability-alert small{color:#6f6259;font-size:12px;font-weight:750;line-height:1.4}
.driver-availability-alert>button{
  min-height:44px;
  padding:8px 11px;
  border:1px solid #db5a08;
  border-radius:11px;
  color:#fff;
  background:#e95e08;
  font-size:12px;
  font-weight:900;
  touch-action:manipulation;
}
.driver-availability-alert>button i{margin-right:5px}
.driver-availability-alert.is-checking>i{animation:yovoy-availability-spin 1s linear infinite}
.driver-availability-alert.is-unavailable{
  border-color:#ff9b75;
  color:#771f0b;
  background:linear-gradient(105deg,#fff0eb,#fff8f4);
  box-shadow:0 9px 22px rgba(183,54,20,.12);
}
.driver-availability-alert.is-unavailable>i{color:#fff;background:#e94a20}
.driver-availability-alert.is-unavailable small{color:#814332}
.driver-availability-alert.is-error{border-color:#efbf62;background:#fff9e9}
.driver-availability-alert.is-error>i{color:#805500;background:#ffecb8}
.driver-availability-alert.is-active-trip{
  border-color:#89d6b3;
  color:#125b3f;
  background:linear-gradient(105deg,#edfff6,#f7fffb);
  box-shadow:0 9px 22px rgba(20,122,78,.11);
}
.driver-availability-alert.is-active-trip>i{color:#fff;background:#16875c}
.driver-availability-alert.is-active-trip small{color:#3f705d}
@keyframes yovoy-availability-spin{to{transform:rotate(360deg)}}

.featured-promotion-order:disabled,
.featured-promotion-order.is-availability-locked{
  cursor:not-allowed;
  border-color:#c9cdd2;
  color:#69717b;
  background:#e7e9ec;
  box-shadow:none;
  filter:none;
  transform:none;
  opacity:1;
}
.featured-promotion-order.is-availability-locked .bi-arrow-repeat{animation:yovoy-availability-spin 1s linear infinite}
#delivery-submit-button.is-availability-locked{
  border-color:#c5c9ce!important;
  color:#5d646d!important;
  background:#e6e8eb!important;
  box-shadow:none!important;
}
#delivery-submit-button.is-availability-unavailable{
  border-color:#ef8e70!important;
  color:#7d2914!important;
  background:#ffe8df!important;
}
.featured-promotion-quantity-confirm:disabled,
.featured-promotion-next-actions .continue-order:disabled,
.featured-promotion-store-catalog-finish:disabled,
.driver-request-cta>button:disabled{
  cursor:not-allowed!important;
  border-color:#c9cdd2!important;
  color:#656d77!important;
  background:#e7e9ec!important;
  box-shadow:none!important;
  opacity:1!important;
}
#featured-promotion-quantity-copy.is-unavailable{
  padding:9px 10px;
  border:1px solid #ffb097;
  border-radius:11px;
  color:#842b15;
  background:#fff0ea;
  font-weight:850;
}

@media(max-width:560px){
  .driver-availability-alert{
    grid-template-columns:44px minmax(0,1fr);
    gap:8px;
    margin-bottom:9px;
    padding:9px;
    border-radius:12px;
  }
  .driver-availability-alert>i{width:44px;height:44px;border-radius:10px;font-size:18px}
  .driver-availability-alert strong{font-size:13px}
  .driver-availability-alert small{font-size:12px}
  .driver-availability-alert>button{grid-column:1/-1;width:100%;min-height:44px}
}

/* 2026 navigation, nearby drivers and compact discovery */
.brand-home{padding:0;border:0;background:transparent}
.nearby-driver-list{display:grid;gap:10px}
.nearby-driver-list .driver-card{width:100%;max-width:none}
.driver-avatar img{width:100%;height:100%;object-fit:cover;border-radius:inherit}
.notification-preference{display:flex;align-items:center;justify-content:space-between;min-height:48px;padding:10px 0;border-bottom:1px solid #ececec;font-weight:800}
.notification-preference input{width:22px;height:22px;accent-color:#ff6500}





.compact-business-panel #business-list{display:grid;grid-template-columns:1fr}
.topbar .brand-logo {
  background: #fff;
}
@media (max-width: 720px) {
  .brand-logo { width: 104px; height: 40px; }
}

/* White short logo variant */
.brand-logo,
.topbar .brand-logo {
  background: linear-gradient(135deg, #061626, #253759) !important;
  box-shadow: 0 10px 22px rgba(16,24,40,.14);
  padding: 7px 10px;
  border-radius: 14px;
  width: 132px;
  height: 50px;
}

/* More native app feel */
body {
  background:
    radial-gradient(circle at 12% 6%, rgba(15,98,254,.10), transparent 25%),
    radial-gradient(circle at 88% 0%, rgba(0,168,107,.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8f6 50%, #eef5f3 100%) !important;
}
.app {
  max-width: 760px;
}
.card-soft {
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(16,24,40,.08);
}
.bottom-nav {
  width: min(460px, calc(100% - 24px));
  border-radius: 28px;
}

/* Native fixed dark header/footer polish */
.app {
  padding-top: 92px !important;
  padding-bottom: 112px !important;
}
.topbar {
  position: fixed !important;
  top: env(safe-area-inset-top, 0);
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(460px, calc(100% - 24px));
  margin-top: 12px;
  padding: 10px 12px !important;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: rgba(8,18,32,.94) !important;
  box-shadow: 0 18px 36px rgba(16,24,40,.18);
  backdrop-filter: blur(16px);
}
.topbar .brand-logo {
  width: 124px !important;
  height: 46px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.topbar .btn {
  min-height: 42px;
  width: 42px;
  padding: 0;
  border-color: rgba(255,255,255,.18) !important;
  color: #fff !important;
  background: rgba(255,255,255,.08) !important;
}
.topbar .btn:hover {
  background: rgba(255,255,255,.16) !important;
}
.bottom-nav {
  background: rgba(8,18,32,.94) !important;
  border: 1px solid rgba(255,255,255,.08);
}
.card-soft {
  overflow: hidden;
}
.card-soft h2, .business-card strong{
  word-break: normal;
  overflow-wrap: anywhere;
}






@media (max-width: 720px) {
  .app {
    padding: 88px 12px 112px !important;
  }
  .topbar {
    width: calc(100% - 20px);
    margin-top: 8px;
    border-radius: 24px;
  }
  .topbar .brand-logo {
    width: 116px !important;
    height: 42px !important;
  }
  .card-soft {
    border-radius: 24px !important;
    padding: 18px !important;
  }
  .card-soft h2 {
    font-size: 22px;
  }
      
      .share-actions {
        justify-content: stretch;
      }
      .share-btn {
        flex: 1;
        width: auto;
      }
  
  .bottom-nav {
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    width: calc(100% - 20px) !important;
  }
      .bottom-nav button {
        font-size: 11px;
      }
      .delivery-hero {
        grid-template-columns: 1fr;
      }
      .delivery-orbit {
        display: none;
      }
      .delivery-status,
      .driver-strip {
        grid-template-columns: 1fr;
      }
      .driver-card {
        grid-template-columns: 42px minmax(0, 1fr) auto;
      }
}

/* YOVOY Premium Minimal System - user app */
:root {
  --bg: #f4f7f5;
  --ink: #0d1728;
  --muted: #6b7483;
  --line: rgba(148, 163, 184, .24);
  --brand: #00a86b;
  --brand-dark: #047857;
  --blue: #1d4ed8;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(15, 23, 42, .10);
}
body {
  color: var(--ink) !important;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif !important;
  background:
    radial-gradient(circle at 16% 4%, rgba(29,78,216,.12), transparent 32%),
    radial-gradient(circle at 92% 9%, rgba(0,168,107,.13), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f4f7f5 100%) !important;
}
.app {
  max-width: 720px !important;
}
.topbar {
  width: min(440px, calc(100% - 24px)) !important;
  border-radius: 24px !important;
  background: rgba(10,18,32,.94) !important;
  box-shadow: 0 18px 48px rgba(15,23,42,.18) !important;
}
.topbar .brand-logo {
  width: 118px !important;
  height: 42px !important;
}
.topbar .btn {
  border-radius: 16px !important;
  background: rgba(255,255,255,.10) !important;
}
.glass, .card-soft, .yovoy-delivery, .app-modal-card, .delivery-tracking-card, .business-card{
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  background: rgba(255,255,255,.84) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(18px);
}
.hero,
.delivery-hero {
  background:
    radial-gradient(circle at 92% 8%, rgba(255,255,255,.20), transparent 24%),
    linear-gradient(145deg, #0a1220 0%, #1d4ed8 56%, #00a86b 100%) !important;
}
.hero {
  border-radius: 30px !important;
  box-shadow: var(--shadow) !important;
}
.hero h1, .delivery-hero h2, .card-soft h2{
  letter-spacing: -.04em;
}
.btn {
  min-height: 44px;
  border-radius: 16px !important;
  font-weight: 900 !important;
}
.btn-brand {
  border: 0 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #1d4ed8, #00a86b) !important;
  box-shadow: 0 14px 30px rgba(29,78,216,.16) !important;
}
.btn-light,
.btn-outline-dark {
  border-color: rgba(148,163,184,.30) !important;
  color: var(--ink) !important;
  background: rgba(255,255,255,.78) !important;
}
.form-control,
.form-select {
  min-height: 48px !important;
  border: 1px solid rgba(148,163,184,.34) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.90) !important;
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(29,78,216,.45) !important;
  box-shadow: 0 0 0 4px rgba(29,78,216,.10) !important;
}
.compact-delivery {
  overflow: hidden;
}
.compact-delivery .delivery-hero {
  padding: 16px !important;
}
.driver-card {
  border-radius: 20px !important;
  box-shadow: none !important;
}
.delivery-tracking-card {
  margin: 0 14px 14px !important;
}
.delivery-user-map {
  min-height: 260px !important;
  border-radius: 24px !important;
}




.share-btn,
.favorite-btn {
  box-shadow: none !important;
}
.bottom-nav {
  width: min(440px, calc(100% - 24px)) !important;
  border-radius: 26px !important;
  background: rgba(10,18,32,.94) !important;
  box-shadow: 0 18px 48px rgba(15,23,42,.18) !important;
}
.bottom-nav button {
  border-radius: 18px !important;
}
.bottom-nav button.active {
  background: rgba(255,255,255,.13) !important;
}
.business-card:hover,
.business-card.selected {
  transform: none !important;
  border-color: rgba(0,168,107,.45) !important;
  box-shadow: 0 16px 38px rgba(0,168,107,.10) !important;
}
.empty,
.loader-card {
  border-radius: 24px !important;
}
@media (max-width: 720px) {
  .app {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .topbar,
  .bottom-nav {
    width: calc(100% - 20px) !important;
  }
  .card-soft {
    padding: 16px !important;
  }
  
}

/* YOVOY User Ops UI - pedir rapido, sin banners pesados */
:root {
  --ops-bg: #f4f7f6;
  --ops-ink: #111827;
  --ops-muted: #697386;
  --ops-line: #e4eaf0;
  --ops-surface: rgba(255, 255, 255, 0.95);
  --ops-dark: #111a28;
  --ops-action: #00a86b;
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(0, 168, 107, 0.08), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(25, 118, 210, 0.07), transparent 32%),
    var(--ops-bg) !important;
}

.topbar,
.bottom-nav {
  background: var(--ops-dark) !important;
  box-shadow: 0 16px 34px rgba(17, 26, 40, 0.18) !important;
}

.compact-delivery,
.yovoy-delivery {
  overflow: hidden;
  border: 1px solid var(--ops-line) !important;
  border-radius: 26px !important;
  background: var(--ops-surface) !important;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08) !important;
}

.compact-delivery .delivery-hero,
.delivery-hero {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  min-height: auto !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--ops-line);
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--ops-ink) !important;
}

.delivery-hero:before,
.delivery-hero:after {
  display: none !important;
}

.delivery-kicker {
  width: max-content;
  margin: 0 !important;
  border: 1px solid #d8f4e8 !important;
  background: #eafff5 !important;
  color: #047857 !important;
}

.compact-delivery .delivery-hero h2,
.delivery-hero h2 {
  margin: 0 !important;
  font-size: clamp(22px, 4vw, 30px) !important;
  line-height: 1.05 !important;
  color: var(--ops-ink) !important;
}

.delivery-hero p {
  grid-column: 1 / -1;
  margin: 0 !important;
  font-size: 13px !important;
  color: var(--ops-muted) !important;
}

.delivery-refresh,
.refresh-mini {
  border: 1px solid var(--ops-line) !important;
  background: #fff !important;
  color: var(--ops-ink) !important;
  box-shadow: none !important;
}

.driver-strip {
  margin: 10px 14px 0 !important;
  border: 1px solid var(--ops-line) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.driver-avatar {
  background: var(--ops-dark) !important;
  color: #fff !important;
}

.delivery-console {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px !important;
  padding: 10px 14px 14px !important;
}

.delivery-console > *,
.delivery-order-action,
.delivery-order-action .row,
.delivery-order-action .delivery-type-col,
.delivery-order-action .delivery-description-col,
.delivery-order-action .delivery-order-col,
.delivery-order-action #delivery-submit-button {
  width: 100%;
  min-width: 0;
}

.delivery-order-action .row {
  margin-right: 0;
  margin-left: 0;
}

.delivery-order-action .row > * {
  padding-right: 0;
  padding-left: 0;
}

.delivery-order-action .delivery-order-row {
  margin-top: 8px;
}

.delivery-order-action #delivery-submit-button {
  min-height: 50px !important;
  padding: 0 18px;
  touch-action: manipulation;
}

.delivery-order-action #delivery-submit-button:disabled,
.delivery-order-action #delivery-submit-button.is-order-active {
  cursor: not-allowed;
  opacity: .84;
  filter: saturate(.82);
  animation: none !important;
}

.delivery-console input,
.delivery-console select {
  min-height: 46px !important;
  border: 1px solid var(--ops-line) !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: var(--ops-ink) !important;
}

.delivery-send {
  min-height: 46px !important;
  border-radius: 16px !important;
  background: var(--ops-action) !important;
  box-shadow: 0 12px 24px rgba(0, 168, 107, 0.22) !important;
}

.delivery-meta {
  padding: 0 14px 14px !important;
}

.delivery-meta span {
  border: 1px solid var(--ops-line) !important;
  background: #fff !important;
  color: var(--ops-muted) !important;
}

.delivery-tracking {
  border: 1px solid var(--ops-line) !important;
  background: #fff !important;
}

.tracking-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
}

.user-cancel-delivery-button {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 8px 11px !important;
  border: 1px solid #ffb4ac !important;
  border-radius: 17px !important;
  color: #b42318 !important;
  background: linear-gradient(135deg, #fff 0%, #fff1ef 100%) !important;
  box-shadow: 0 9px 22px rgba(180, 35, 24, .09);
  font-weight: 900 !important;
  text-align: left;
  touch-action: manipulation;
  transition: transform .12s ease, box-shadow .12s ease;
}

.user-cancel-delivery-button:active:not(:disabled) {
  transform: scale(.975);
  box-shadow: 0 4px 12px rgba(180, 35, 24, .08);
}

.user-cancel-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #ff665a, #d92d20);
  box-shadow: 0 7px 14px rgba(217, 45, 32, .18);
}

.user-cancel-copy {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.user-cancel-copy strong { font-size: 11px; }
.user-cancel-copy small { margin-top: 3px; color: #7e4a45; font-size: 8px; font-weight: 700; }
.user-cancel-chevron { color: #d92d20; font-size: 15px; }

.user-cancel-delivery-button.d-none {
  display: none !important;
}

.user-cancel-delivery-button[aria-busy="true"] .user-cancel-icon i {
  animation: userCancelSpin .75s linear infinite;
}

@keyframes userCancelSpin {
  to { transform: rotate(360deg); }
}

.delivery-route-panel {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--ops-line);
  border-radius: 22px;
  background: #f8fafc;
}

.route-user-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.route-user-control {
  min-height: 44px;
  border: 0;
  border-radius: 15px;
  background: var(--ops-dark);
  color: #fff;
  font-weight: 900;
}

.route-user-control.secondary {
  border: 1px solid var(--ops-line);
  background: #fff;
  color: var(--ops-ink);
}

.card-soft {
  border: 1px solid var(--ops-line) !important;
  background: var(--ops-surface) !important;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.07) !important;
}

@media (max-width: 720px) {
  body {
    background: var(--ops-bg) !important;
  }

  .compact-delivery .delivery-hero,
  .delivery-hero {
    padding: 12px !important;
  }

  .delivery-console {
    grid-template-columns: minmax(0, 1fr);
    padding: 10px 12px 12px !important;
  }

  .delivery-console select {
    grid-column: 1 / -1;
  }

  .delivery-send {
    min-width: 48px !important;
  }

  .tracking-actions,
  .route-user-controls {
    grid-template-columns: 1fr;
  }
}
/* Navegacion inferior premium */
.bottom-nav {
  background: #17191d !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 16px 38px rgba(17, 19, 23, 0.28) !important;
}

.bottom-nav button {
  color: #aeb4bd !important;
}

.bottom-nav button i {
  color: currentColor !important;
}

.bottom-nav button.active {
  background: #ff6500 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(255, 101, 0, 0.3) !important;
}

.search-result-photo-placeholder {
  background-color: #fff;
  background-image: var(--business-art);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.search-result-photo-placeholder i { opacity: 0; }
.search-result-media.unavailable .search-result-photo-placeholder { opacity: 1; }

/* Etapa 1 · descubrimiento móvil 2026 */

.home-discovery{position:relative;margin:8px 0 18px;padding:24px 18px 18px;overflow:visible;border-radius:32px;color:#fff;background:radial-gradient(circle at 90% 5%,rgba(255,255,255,.22),transparent 32%),linear-gradient(135deg,#ff6500,#f04400);box-shadow:0 18px 38px rgba(240,68,0,.2)}
.home-welcome span{font-size:12px;font-weight:900;letter-spacing:.04em}.home-welcome h1{margin:8px 0 3px;font-size:clamp(25px,7vw,38px);font-weight:900}.home-welcome p{margin:0 0 16px;color:rgba(255,255,255,.8);font-size:13px}
.smart-search{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;padding:5px 7px 5px 15px;border-radius:18px;background:#fff;box-shadow:0 10px 28px rgba(72,32,0,.18)}
.smart-search>i{color:#ff6500}.smart-search input{min-width:0;padding:12px 0;border:0;outline:0;color:#171717;font-weight:700}.smart-search button{width:36px;height:36px;border:0;border-radius:12px;color:#68707c;background:#f3f4f6}
.location-choice{display:flex;gap:8px;margin-top:10px}.location-choice button,.location-choice label{display:flex;align-items:center;gap:7px;min-width:0;padding:9px 11px;border:1px solid rgba(255,255,255,.28);border-radius:13px;color:#fff;background:rgba(255,255,255,.12);font-size:12px;font-weight:800;transition:background .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease}.location-choice button{white-space:nowrap}.location-choice button small{display:none;padding:3px 6px;border-radius:999px;font-size:8px;font-weight:900;letter-spacing:.08em}.location-choice button.is-location-loading{border-color:rgba(255,255,255,.5);background:rgba(255,255,255,.2)}.location-choice button.is-location-loading i{animation:location-spin .8s linear infinite}.location-choice button.is-location-active{border-color:#fff;color:#dc4f00;background:#fff;box-shadow:0 8px 22px rgba(102,35,0,.2)}.location-choice button.is-location-active small{display:inline;color:#fff;background:#0a9b68}.location-choice button.is-location-error{border-color:#ffe0d0;background:rgba(117,26,0,.28)}.location-choice label{flex:1}.location-choice label.is-manual-active{border-color:#fff;background:rgba(255,255,255,.24);box-shadow:inset 0 0 0 1px rgba(255,255,255,.2)}.location-choice input{width:100%;min-width:0;border:0;outline:0;color:#fff;background:transparent}.location-choice input::placeholder{color:rgba(255,255,255,.78)}.location-status{display:flex;align-items:center;gap:7px;min-height:24px;margin-top:7px;color:rgba(255,255,255,.82);font-size:10px;font-weight:700}.location-status.is-active{color:#fff}.location-status.is-active i{color:#baffdf}.location-status.is-error{color:#fff2eb}.location-status.is-manual i{color:#fff}@keyframes location-spin{to{transform:rotate(360deg)}}@media(max-width:430px){.location-choice button small{display:none!important}.location-choice button{padding-inline:9px}.location-choice label{padding-inline:9px}}
.search-suggestions{position:absolute;z-index:40;right:18px;left:18px;max-height:55vh;overflow:auto;margin-top:8px;padding:12px;border:1px solid #e5e7eb;border-radius:20px;color:#171717;background:#fff;box-shadow:0 22px 48px rgba(17,24,39,.2)}
.category-section{margin-bottom:18px}.section-title-button{display:flex;align-items:center;justify-content:space-between;width:100%;padding:0;border:0;color:inherit;background:none;font-size:20px;font-weight:900;text-align:left}.section-title-button i{font-size:16px}
.category-strip{display:flex;gap:12px;overflow-x:auto;padding:13px 2px 7px;scrollbar-width:none}.category-strip::-webkit-scrollbar{display:none}.category-strip button{display:grid;flex:0 0 70px;justify-items:center;gap:7px;border:0;background:none;color:#343943;font-size:11px;font-weight:800}.category-strip span{display:grid;place-items:center;width:54px;height:54px;border-radius:19px;color:#ff6500;background:#fff1e8;box-shadow:inset 0 0 0 1px rgba(255,101,0,.09)}.category-strip i{font-size:22px}
.grouped-search-results{display:grid;gap:22px}.grouped-search-results section,.search-suggestions section{display:grid;gap:10px}.grouped-search-results h3,.search-suggestions h3{display:flex;align-items:center;gap:8px;margin:0 0 2px;color:#525967;font-size:12px;font-weight:900;text-transform:uppercase}.grouped-search-results h3 span,.search-suggestions h3 span{margin-left:auto}.search-result{display:grid;grid-template-columns:96px minmax(0,1fr);align-items:stretch;gap:13px;width:100%;padding:8px;border:1px solid #eef0f3;border-radius:17px;color:#17191c;background:#f7f8fa;text-align:left;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.search-result:hover,.search-result:focus-visible{border-color:#ffd5bb;box-shadow:0 10px 24px rgba(32,38,46,.09);transform:translateY(-1px)}.search-result-media{position:relative;display:grid;place-items:center;width:96px;height:96px;overflow:hidden;border-radius:13px;color:#ff6500;background:linear-gradient(145deg,#fff0e6,#ffe0cc)}.search-result-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .2s ease}.search-result-media.loaded img{opacity:1}.search-result-photo-placeholder{display:grid;place-items:center;width:100%;height:100%;font-size:25px}.search-result-media.unavailable .search-result-photo-placeholder{opacity:.7}.search-result-media .business-photo-attribution{position:absolute;right:3px;bottom:3px;left:3px;z-index:2;overflow:hidden;padding:2px 4px;border-radius:5px;color:#fff;background:rgba(0,0,0,.55);font-size:6px;line-height:1.15;text-overflow:ellipsis;white-space:nowrap}.search-result-media .business-photo-attribution:empty{display:none}.search-result-media .business-photo-attribution a{color:#fff}.search-result-copy{display:grid;min-width:0;align-content:center;gap:5px;padding:2px 3px 2px 0}.search-result-title{display:flex;align-items:flex-start;gap:8px}.search-result-title strong{min-width:0;overflow:hidden;color:#101214;font-size:15px;font-weight:900;line-height:1.2;text-overflow:ellipsis;white-space:nowrap}.search-result-title>i{margin-left:auto;color:#a1a7b0;font-size:12px}.search-result-meta{display:flex;flex-wrap:wrap;align-items:center;gap:4px 7px;color:#606875;font-size:10px;font-weight:750}.search-result-meta>span{display:inline-flex;align-items:center;gap:3px}.search-result-meta>span+span::before{content:"·";margin-right:3px;color:#a2a8b0}.search-result-meta .is-rating,.search-result-meta .is-rating i{color:#17191c}.search-result-description{display:-webkit-box;overflow:hidden;color:#777f8b;font-size:11px;line-height:1.35;-webkit-box-orient:vertical;-webkit-line-clamp:2}.search-result-tags{display:flex;flex-wrap:wrap;gap:5px;margin-top:1px}.search-result-tags b,.search-result-tags em{padding:4px 7px;border-radius:8px;color:#e95500;background:#fff0e7;font-size:10px;font-style:normal;font-weight:900}.search-result-tags em{color:#7c4b00;background:#fff5cf}.search-suggestions .search-result{grid-template-columns:66px minmax(0,1fr);gap:9px;padding:6px;border-radius:13px}.search-suggestions .search-result-media{width:66px;height:66px;border-radius:10px}.search-suggestions .search-result-description{display:none}.search-suggestions .search-result-title strong{font-size:13px}.search-suggestions .search-result-meta{font-size:9px}.search-suggestions .search-result-tags b,.search-suggestions .search-result-tags em{padding:3px 6px;font-size:8px}.search-empty{padding:8px;color:#9298a3;font-size:12px}@media(max-width:480px){.search-result{grid-template-columns:84px minmax(0,1fr);gap:10px;padding:7px}.search-result-media{width:84px;height:84px}.search-result-title strong{font-size:14px}.search-result-meta{gap:3px 5px}.search-result-description{font-size:10px;-webkit-line-clamp:1}}
.smart-search-feedback{display:flex;grid-column:1/-1;align-items:center;gap:9px;min-height:44px;padding:9px 11px;border:1px solid #ffe0cc;border-radius:13px;color:#91400f;background:#fff8f3}.smart-search-feedback>i,.smart-search-feedback>.spinner-border{flex:0 0 auto;color:#ff6500}.smart-search-feedback>span{display:grid;min-width:0;gap:1px}.smart-search-feedback strong{font-size:11px;font-weight:900;line-height:1.2}.smart-search-feedback small{color:#7d695e;font-size:10px;font-weight:700;line-height:1.25}.smart-search-feedback.is-ready{border-color:#c8efdd;color:#087553;background:#f3fcf8}.smart-search-feedback.is-ready>i{color:#00a86b}.smart-search-feedback.is-offline{border-color:#e6e8ec;color:#525967;background:#f8f9fa}.smart-search-feedback.is-offline>i{color:#68707c}
.search-result-public-data{display:flex;min-width:0;flex-wrap:wrap;gap:4px 9px;color:#68717d;font-size:9px;font-weight:750}.search-result-public-data>span{display:inline-flex;min-width:0;align-items:center;gap:4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.search-result-public-data i{color:#ff6500}.search-result-public-data .is-operational,.search-result-public-data .is-operational i{color:#087a55}.search-suggestions .search-result-public-data{display:none}@media(max-width:480px){.search-result-public-data>span:first-child{max-width:100%}.search-result-public-data{gap:3px 7px;font-size:8px}}
.favorite-business-row{display:grid;grid-template-columns:1fr auto;align-items:center;border-bottom:1px solid #edf0f3}.favorite-business-row button{display:flex;align-items:center;gap:11px;padding:13px 8px;border:0;color:inherit;background:none;text-align:left}.favorite-business-row button:last-child{color:#ef4444}.favorite-business-row span{display:grid}.favorite-business-row small{color:#7a828e}
.business-card{position:relative}.business-favorite{position:absolute;z-index:4;top:10px;right:10px;display:grid;place-items:center;width:38px;height:38px;border:0;border-radius:50%;color:#333;background:rgba(255,255,255,.92);box-shadow:0 5px 15px rgba(0,0,0,.16)}.business-favorite.active{color:#ef4444}

@media(max-width:767px){#business-list{display:flex;flex-wrap:nowrap;overflow-x:auto;margin-right:-12px;margin-left:-12px;padding:0 12px 8px;scroll-snap-type:x proximity}#business-list>.col-md-6{flex:0 0 84%;width:84%;scroll-snap-align:start}.topbar{padding-inline:12px}.app{padding-bottom:92px}}

/* Etapa 2 · negocio y publicidad */
.profile-menu{display:grid;border-top:1px solid #edf0f3}.profile-menu button,.profile-menu>a{display:grid;grid-template-columns:42px 1fr auto;align-items:center;gap:10px;padding:14px 2px;border:0;border-bottom:1px solid #edf0f3;color:#252a31;background:none;text-align:left;text-decoration:none}.profile-menu button>i:first-child,.profile-menu>a>i:first-child{display:grid;place-items:center;width:38px;height:38px;border-radius:13px;color:#ff6500;background:#fff0e7}.profile-menu span{display:grid}.profile-menu small{color:#7b8490;font-size:11px}.profile-account-badge,.profile-eyebrow{display:inline-flex;align-items:center;gap:6px;color:#087a55;font-size:11px;font-weight:900;letter-spacing:.04em}
.profile-menu .profile-logout{color:#b42318}.profile-menu .profile-logout>i:first-child{color:#b42318;background:#fee4e2}
.registration-benefits{display:flex;gap:8px;overflow-x:auto;margin:16px 0;padding-bottom:4px}.registration-benefits span{flex:0 0 auto;padding:9px 11px;border-radius:12px;color:#8b3e0d;background:#fff1e8;font-size:11px;font-weight:800}.business-registration>h3{margin:22px 0 13px;font-size:18px;font-weight:900}.business-registration textarea{min-height:96px}
.business-invitation{display:grid;justify-items:center;gap:13px;padding:28px 18px;border:1px dashed #ffc49d;border-radius:22px;background:#fff9f5;text-align:center}.business-invitation>i{display:grid;place-items:center;width:58px;height:58px;border-radius:19px;color:#fff;background:#ff6500;font-size:25px}.business-invitation h3{font-size:19px;font-weight:900}.business-invitation p{margin:0;color:#707887;font-size:13px}.business-invitation button,.owned-business-actions button,.advertising-grid article>button{padding:11px 14px;border:0;border-radius:13px;color:#fff;background:#ff6500;font-weight:900}
.application-status-card{display:flex;align-items:flex-start;gap:15px;padding:20px;border-radius:20px;background:#fff8e1}.application-status-card>i{font-size:28px;color:#d58b00}.application-status-card span,.business-state{display:inline-flex;padding:5px 8px;border-radius:999px;color:#8c5a00;background:#fff0bd;font-size:10px;font-weight:900;text-transform:uppercase}.application-status-card h3{margin:6px 0 3px;font-size:18px;font-weight:900}.application-status-card p{margin:0;color:#6d7480;font-size:13px}.application-status-card small{color:#8c5a00}
.owned-business-list{display:grid;gap:12px}.owned-business-list article{display:grid;grid-template-columns:auto 1fr;gap:13px;padding:16px;border:1px solid #e6e9ed;border-radius:19px}.owned-business-icon{display:grid;place-items:center;width:48px;height:48px;border-radius:16px;color:#ff6500;background:#fff1e8;font-size:20px}.owned-business-list h3{margin:5px 0 2px;font-size:18px;font-weight:900}.owned-business-list p{margin:0;color:#747d89;font-size:12px}.owned-business-actions{grid-column:1/-1;display:flex;gap:8px}.owned-business-actions button{flex:1}.business-state.is-approved{color:#087a55;background:#dff9ed}.business-state.is-suspended,.business-state.state-cancelled{color:#b42318;background:#fee4e2}
.advertising-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px}.advertising-grid article{position:relative;display:flex;flex-direction:column;padding:19px;border:1px solid #e5e8ec;border-radius:22px;background:#fff}.advertising-grid article.recommended{border:2px solid #ff6500;box-shadow:0 14px 32px rgba(255,101,0,.12)}.package-recommended{position:absolute;top:-10px;right:15px;padding:5px 9px;border-radius:999px;color:#fff;background:#ff6500;font-size:9px;font-weight:900}.package-coverage{color:#ff6500;font-size:11px;font-weight:900}.advertising-grid h3{margin:7px 0 10px;font-size:19px;font-weight:900}.package-price{display:grid}.package-price strong{font-size:27px}.package-price small{color:#777f8a}.advertising-grid ul{display:grid;gap:6px;margin:15px 0;padding:0;list-style:none}.advertising-grid li{display:flex;gap:7px;font-size:12px}.advertising-grid li i{color:#0c9c6d}.advertising-grid p{color:#747d89;font-size:11px}.advertising-grid article>button{margin-top:auto}.advertising-grid article>button:disabled{color:#89909a;background:#e7e9ec}.advertising-history-row{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:12px;padding:13px 0;border-bottom:1px solid #edf0f3}.advertising-history-row>div{display:grid}.advertising-history-row small{color:#767f8b}
@media(max-width:850px){.advertising-grid{display:flex;overflow-x:auto;padding:10px 2px 16px}.advertising-grid article{flex:0 0 82%}}

/* Etapa 3 · tiendas */
.my-store-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.my-store-card,.new-store-card{overflow:hidden;border:1px solid #e3e7eb;border-radius:22px;background:#fff}.store-card-cover{position:relative;display:grid;place-items:center;height:120px;color:#ff6500;background:linear-gradient(135deg,#fff0e6,#ffe2cf) center/cover;font-size:34px}.store-card-cover img{width:64px;height:64px;object-fit:cover;border:4px solid #fff;border-radius:18px;background:#fff}.store-card-cover span{position:absolute;top:10px;right:10px;padding:5px 8px;border-radius:999px;color:#087a55;background:#dff9ed;font-size:9px;font-weight:900}.my-store-card.is-inactive{opacity:.66}.store-card-body{padding:15px}.store-card-body h3{margin:0 0 4px;font-size:18px;font-weight:900}.store-card-body p{margin:0;color:#737c88;font-size:12px}.store-card-body small{display:block;margin-top:8px;color:#ff6500}.store-actions{display:flex;flex-wrap:wrap;gap:6px;margin-top:13px}.store-actions a,.store-actions button{padding:7px 9px;border:0;border-radius:9px;color:#343a43;background:#f0f2f4;font-size:10px;font-weight:900;text-decoration:none}.store-actions .danger{color:#b42318;background:#fee4e2}.new-store-card{display:grid;min-height:250px;place-items:center;align-content:center;gap:6px;color:#ff6500;border-style:dashed;background:#fffaf7}.new-store-card i{font-size:30px}.new-store-card small{color:#7a828d}.new-store-card:disabled{color:#9ba1aa}
.store-editor,.product-manager{margin-top:22px;padding-top:20px;border-top:1px solid #e6e9ed}.store-editor>h3,.product-manager h3{font-size:20px;font-weight:900}.product-list{display:grid}.product-list article{display:grid;grid-template-columns:48px 1fr auto auto;align-items:center;gap:11px;padding:10px 0;border-bottom:1px solid #edf0f2}.product-list article>div{display:grid;place-items:center;width:48px;height:48px;overflow:hidden;border-radius:13px;color:#a5abb3;background:#f0f2f4}.product-list img{width:100%;height:100%;object-fit:cover}.product-list span{display:grid}.product-list small{color:#7a828d}.product-list button{width:34px;height:34px;border:0;border-radius:11px;color:#b42318;background:#fee4e2}.store-order-list{display:grid}.store-order-list article{display:grid;grid-template-columns:1fr auto;gap:8px;padding:13px 0;border-bottom:1px solid #e9ecf0}.store-order-list article>div{display:grid}.store-order-list span{color:#ff6500;font-size:10px;font-weight:900}.store-order-list small{color:#7b838e}.store-order-list em{grid-column:1/-1;justify-self:start;padding:5px 8px;border-radius:999px;color:#087a55;background:#dff9ed;font-size:10px;font-style:normal;font-weight:900}
@media(max-width:720px){.my-store-grid{grid-template-columns:1fr}.product-list article{grid-template-columns:42px 1fr auto}.product-list article>b{grid-column:2}.product-list article>button{grid-row:1/3;grid-column:3}}

/* Etapa 4 · pagos y alertas */
.notification-button{position:relative}.notification-button>span{position:absolute;top:-6px;right:-5px;display:grid;place-items:center;min-width:19px;height:19px;padding:0 4px;border:2px solid #fff;border-radius:999px;color:#fff;background:#ef4444;font-size:9px;font-weight:900}.notifications-panel{position:fixed;z-index:100;top:70px;right:12px;width:min(390px,calc(100vw - 24px));max-height:70vh;overflow:auto;padding:17px;border:1px solid #e3e7eb;border-radius:22px;background:#fff;box-shadow:0 24px 60px rgba(17,24,39,.22)}.notifications-head{display:flex;align-items:center;justify-content:space-between}.notifications-head span{color:#ff6500;font-size:10px;font-weight:900}.notifications-head h2{margin:3px 0 10px;font-size:21px;font-weight:900}.notifications-head button{display:grid;place-items:center;width:35px;height:35px;border:0;border-radius:11px;background:#f1f3f5}.notifications-panel #notifications-list{display:grid}.notifications-panel #notifications-list>button{display:grid;grid-template-columns:38px 1fr;gap:10px;padding:12px 5px;border:0;border-bottom:1px solid #edf0f2;background:#fff;text-align:left}.notifications-panel #notifications-list>button.unread{background:#fff8f3}.notifications-panel #notifications-list>button>i{display:grid;place-items:center;width:36px;height:36px;border-radius:12px;color:#ff6500;background:#fff0e6}.notifications-panel #notifications-list span{display:grid}.notifications-panel #notifications-list small{color:#6f7884}.notifications-panel #notifications-list em{color:#969ca5;font-size:9px;font-style:normal}
.stripe-business-panel{margin-top:22px}.stripe-heading{padding:18px;border-radius:20px;color:#fff;background:linear-gradient(135deg,#17191d,#383d46)}.stripe-heading>span{color:#b7f3dd;font-size:10px;font-weight:900}.stripe-heading h3{margin:6px 0 3px;font-size:19px;font-weight:900}.stripe-heading p{margin:0;color:#c8cdd4;font-size:11px}.stripe-connection-card{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:12px;padding:14px 3px;border-bottom:1px solid #e8ebef}.stripe-connection-card>div{display:grid}.stripe-connection-card small{color:#777f89}.stripe-connection-card button{padding:9px 11px;border:0;border-radius:11px;color:#fff;background:#635bff;font-size:11px;font-weight:900}.stripe-payment-list{display:flex;gap:8px;overflow-x:auto;padding:8px 0}.stripe-payment-list span{display:grid;flex:0 0 135px;padding:10px;border-radius:13px;background:#f4f5f7}.stripe-payment-list i{color:#635bff}.stripe-payment-list small{color:#737b86;font-size:9px}@media(max-width:560px){.stripe-connection-card{grid-template-columns:1fr auto}.stripe-connection-card button{grid-column:1/-1}}
.store-stripe-panel{margin:0 0 18px}.stripe-security-note{display:flex;align-items:center;gap:9px;margin-top:10px;padding:10px 12px;border:1px solid #cdeedd;border-radius:13px;color:#086943;background:#effbf5}.stripe-security-note>i{font-size:20px}.stripe-security-note span{display:grid}.stripe-security-note strong{font-size:11px}.stripe-security-note small{color:#39745d;font-size:9px}.stripe-action-group{display:flex!important;align-items:center;gap:6px}.stripe-action-group .stripe-disconnect-button{color:#b42318;background:#fff0ee}.store-stripe-panel .stripe-heading{background:linear-gradient(135deg,#17191d,#272b31 62%,#40386f)}@media(max-width:560px){.stripe-action-group{grid-column:1/-1;display:grid!important;grid-template-columns:1fr 1fr}.stripe-action-group button{grid-column:auto;width:100%}}

/* Etapa 5 · chat */
.commerce-chat-card{display:flex;max-height:min(680px,88vh);flex-direction:column}.commerce-chat-messages{display:flex;min-height:260px;flex-direction:column;gap:8px;overflow:auto;padding:12px;border-radius:16px;background:#f3f5f7}.commerce-chat-messages>div{display:grid;align-self:flex-start;max-width:82%;gap:2px}.commerce-chat-messages>div.mine{align-self:flex-end}.commerce-chat-messages span{padding:9px 11px;border-radius:14px 14px 14px 4px;background:#fff;font-size:13px}.commerce-chat-messages .mine span{border-radius:14px 14px 4px 14px;color:#fff;background:#ff6500}.commerce-chat-messages .pending{opacity:.72}.commerce-chat-messages small{color:#8a919b;font-size:9px}.commerce-chat-messages .mine small{text-align:right}.commerce-chat-compose{display:grid;grid-template-columns:1fr auto;gap:8px;margin-top:10px}.commerce-chat-compose input{min-width:0;padding:11px 13px;border:1px solid #dfe3e7;border-radius:13px}.commerce-chat-compose button{width:48px;border:0;border-radius:13px;color:#fff;background:#ff6500;box-shadow:0 8px 17px rgba(255,101,0,.2);touch-action:manipulation;transition:transform .12s ease,opacity .12s ease}.commerce-chat-compose button:active:not(:disabled){transform:scale(.94)}.commerce-chat-compose button.is-sending i{animation:userCancelSpin .75s linear infinite}.commerce-chat-compose button:disabled{opacity:.72}.order-chat-link{grid-column:1/-1;justify-self:start;padding:6px 9px;border:0;border-radius:9px;color:#ff6500;background:#fff0e6;font-size:10px;font-weight:900}

button,
[role="button"],
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.badge-expired{color:#667085!important;background:#eef0f3!important}


/* Puntos independientes de recogida y entrega */
.delivery-mode-selector{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-bottom:8px}
.delivery-mode-selector>button{display:grid;grid-template-columns:32px minmax(0,1fr);align-items:center;gap:8px;min-width:0;padding:8px 10px;border:1px solid #e0e4e9;border-radius:14px;color:#4b5563;background:#fff;text-align:left;transition:border-color .18s ease,background .18s ease,box-shadow .18s ease,transform .18s ease}
.delivery-mode-selector>button>i{display:grid;place-items:center;width:30px;height:30px;border-radius:10px;color:#ff6508;background:#fff0e6;font-size:15px}
.delivery-mode-selector>button>span{display:grid;min-width:0;line-height:1.15}
.delivery-mode-selector>button strong{color:#20242a;font-size:10px;font-weight:900}
.delivery-mode-selector>button small{margin-top:2px;color:#747d89;font-size:8px;font-weight:700}
.delivery-mode-selector>button.is-active{border-color:#ff6508;background:#fff8f3;box-shadow:0 5px 14px rgba(255,101,8,.12)}
.delivery-mode-selector>button.is-active>i{color:#fff;background:#ff6508}
.delivery-mode-selector>button:active{transform:scale(.985)}
.delivery-location-editor{grid-column:1/-1;display:grid;gap:0;margin-top:2px;padding:8px;border:1px solid #e3e7ec;border-radius:18px;background:#f8fafc}
.delivery-open-purchase-hint{display:grid;grid-template-columns:32px minmax(0,1fr);align-items:center;gap:8px;margin-bottom:7px;padding:7px 9px;border:1px solid #ffe0ca;border-radius:12px;color:#9a3f00;background:#fff8f3}
.delivery-open-purchase-hint>i{display:grid;place-items:center;width:30px;height:30px;border-radius:10px;color:#fff;background:#ff6508}
.delivery-open-purchase-hint>span{display:grid;line-height:1.2}.delivery-open-purchase-hint strong{font-size:9px;font-weight:900}.delivery-open-purchase-hint small{color:#87583c;font-size:8px;font-weight:700}
.yovoy-delivery.is-featured-promotion-order #delivery-mode-selector,.yovoy-delivery.is-featured-promotion-order #delivery-generic-order-fields{display:none!important}
.delivery-promotion-route-hint{display:grid;grid-template-columns:32px minmax(0,1fr);align-items:center;gap:8px;margin-bottom:7px;padding:7px 9px;border:1px solid #b9ead5;border-radius:12px;color:#087a55;background:#effbf6}
.delivery-promotion-route-hint.d-none{display:none!important}
.delivery-promotion-route-hint>i{display:grid;place-items:center;width:30px;height:30px;border-radius:10px;color:#fff;background:#0a9b68}
.delivery-promotion-route-hint>span{display:grid;min-width:0;line-height:1.2}.delivery-promotion-route-hint strong{overflow:hidden;font-size:9px;font-weight:900;text-overflow:ellipsis;white-space:nowrap}.delivery-promotion-route-hint small{color:#39745d;font-size:8px;font-weight:700}
.delivery-promotion-route-hint.is-warning{border-color:#ffd0ad;color:#9a3f00;background:#fff8f3}.delivery-promotion-route-hint.is-warning>i{background:#ff6508}.delivery-promotion-route-hint.is-warning small{color:#87583c}
.delivery-location-row{position:relative;display:grid;grid-template-columns:36px minmax(0,1fr);align-items:center;gap:6px 7px;min-width:0}
.delivery-location-icon{display:grid;place-items:center;width:34px;height:34px;border-radius:12px;color:#fff;background:#ff6508;box-shadow:0 7px 15px rgba(255,101,8,.2)}
.delivery-location-icon.is-dropoff{background:#0f62fe;box-shadow:0 7px 15px rgba(15,98,254,.18)}
.delivery-location-row label{display:grid;min-width:0;gap:1px;margin:0;padding:5px 10px;border:1px solid #e3e7ec;border-radius:12px;background:#fff}
.delivery-location-row label small{color:#6b7280;font-size:8px;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.delivery-location-row label input{width:100%;min-height:21px!important;padding:0!important;border:0!important;border-radius:0!important;outline:0;background:transparent!important;font-size:11px}
.delivery-location-actions{grid-column:2;display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.25fr);gap:6px;min-width:0}
.delivery-location-action{display:inline-flex;width:100%;min-width:0;min-height:44px;align-items:center;justify-content:center;gap:6px;padding:8px;border:1px solid #cbd7ea;border-radius:11px;color:#174b9a;background:#eef5ff;font-size:10.5px;font-weight:900;line-height:1.12;text-align:center;transition:border-color .18s ease,background .18s ease,box-shadow .18s ease,transform .18s ease}
.delivery-location-action>i{flex:0 0 auto;font-size:14px}
.delivery-location-action>span{min-width:0;overflow-wrap:anywhere}
.delivery-location-action.is-current{border-color:#b8dfcd;color:#087a55;background:#eafaf3}
.delivery-location-action:hover,.delivery-location-action:focus-visible{border-color:#0f62fe;background:#e3efff;box-shadow:0 5px 13px rgba(15,98,254,.13)}
.delivery-location-action.is-current:hover,.delivery-location-action.is-current:focus-visible{border-color:#079661;background:#ddf8eb;box-shadow:0 5px 13px rgba(7,150,97,.13)}
.delivery-location-action:active{transform:scale(.985)}
.delivery-location-connector{width:2px;height:8px;margin-left:16px;background:linear-gradient(#ff6508,#0f62fe)}
.delivery-location-summary{display:flex;align-items:center;gap:7px;margin-top:7px;padding:7px 9px;border-radius:11px;color:#667085;background:#eef1f4;font-size:9px;font-weight:800}
.delivery-location-summary.is-ready{color:#087a55;background:#e5f8ef}
.delivery-location-picker-card{width:min(560px,calc(100vw - 24px))}
.delivery-location-picker-map{width:100%;height:min(48vh,380px);overflow:hidden;border:1px solid #dfe4e9;border-radius:18px;background:#eef2f5}
.delivery-location-picker-status{display:flex;align-items:center;gap:7px;min-height:38px;margin-top:9px;padding:9px 11px;border-radius:12px;color:#59616d;background:#f1f3f5;font-size:10px;font-weight:800}
.delivery-location-picker-status i{color:#ff6508}
.delivery-location-picker-actions{display:grid;grid-template-columns:1fr 1.25fr;gap:8px;margin-top:10px}
.delivery-location-picker-actions .btn{min-height:44px;border-radius:14px;font-size:11px;font-weight:900}
@media(max-width:520px){.delivery-mode-selector{grid-template-columns:1fr}.delivery-mode-selector>button{padding:7px 9px}.delivery-location-row{grid-template-columns:32px minmax(0,1fr);gap:5px}.delivery-location-icon{width:31px;height:31px;border-radius:10px}.delivery-location-row label{padding:4px 8px}.delivery-location-actions{grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:5px}.delivery-location-action{min-height:44px;gap:4px;padding:7px 5px;font-size:10px}.delivery-location-action>i{font-size:13px}.delivery-location-picker-actions{grid-template-columns:1fr}.delivery-location-picker-map{height:42vh}}
@media(max-width:340px){.delivery-location-editor{padding:7px}.delivery-location-action{padding:7px 4px;font-size:9.5px}}

/* Licencias YOVOY · arte 3D original legible incluso en la barra compacta. */
.user-license-button{position:relative;display:grid;flex:0 0 40px;width:40px;height:40px;place-items:center;overflow:visible;padding:2px;border:1px solid rgba(255,255,255,.22);border-radius:12px;background:#2a2d31;box-shadow:0 7px 18px rgba(255,101,0,.18);animation:userLicenseInvite 5.4s ease-in-out infinite;transform-origin:50% 72%;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.user-license-button:hover,.user-license-button:focus-visible{animation-play-state:paused;transform:translateY(-1px) scale(1.05);border-color:rgba(255,255,255,.6);box-shadow:0 9px 22px rgba(255,101,0,.3)}
.user-license-button::after{position:absolute;z-index:-1;inset:-5px;content:"";border:2px solid rgba(255,101,8,.9);border-radius:16px;opacity:0;animation:userLicenseDoubleRing 5.4s ease-out infinite;pointer-events:none}
.user-license-button-icon{display:grid;width:34px;height:34px;place-items:center;overflow:visible;border-radius:10px;background:linear-gradient(145deg,#fff8f1,#ffd9bd)}
.user-license-button-icon img{display:block;width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 4px 5px rgba(4,10,20,.28))}
.user-license-button.d-none{display:none!important}
@keyframes userLicenseInvite{0%,52%,86%,100%{transform:translateY(0) rotate(0deg) scale(1);border-color:rgba(255,255,255,.22);box-shadow:0 7px 18px rgba(255,101,0,.18)}57%{transform:translateY(-4px) rotate(-7deg) scale(1.1);border-color:rgba(255,167,112,.88);box-shadow:0 10px 27px rgba(255,101,0,.48)}62%{transform:translateY(1px) rotate(6deg) scale(1.04)}67%{transform:translateY(-3px) rotate(-5deg) scale(1.09);border-color:rgba(255,167,112,.75);box-shadow:0 9px 25px rgba(255,101,0,.42)}73%{transform:translateY(0) rotate(3deg) scale(1.03)}79%{transform:translateY(0) rotate(0deg) scale(1)}}
@keyframes userLicenseDoubleRing{0%,52%,100%{opacity:0;transform:scale(.82)}56%{opacity:.95;transform:scale(.9)}66%{opacity:0;transform:scale(1.5)}68%{opacity:.78;transform:scale(.9)}82%{opacity:0;transform:scale(1.55)}}
#user-license-modal .app-modal-backdrop{background:radial-gradient(circle at 18% 14%,rgba(255,113,14,.32),transparent 30%),rgba(8,18,32,.66)}
#user-license-modal .user-license-modal-card{width:min(500px,100%);max-height:calc(100dvh - 28px);overflow:auto;padding:26px 30px 28px;border:1px solid rgba(255,126,36,.24)!important;border-radius:30px!important;background:radial-gradient(circle at 96% 2%,rgba(255,101,8,.15),transparent 33%),linear-gradient(145deg,#fff 0%,#fff8f3 100%)!important;box-shadow:0 34px 86px rgba(15,23,42,.34),0 16px 38px rgba(255,101,8,.14)!important;text-align:center}
.user-license-modal-close{z-index:4;top:13px;right:13px;display:grid;place-items:center;border:1px solid rgba(15,23,42,.08);color:#1f2937;background:rgba(255,255,255,.92);box-shadow:0 8px 20px rgba(15,23,42,.1)}
.user-license-visual{position:relative;display:grid;width:138px;height:138px;margin:0 auto 15px;place-items:center}
.user-license-visual-image{display:block;width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 18px 18px rgba(42,31,25,.2))}
.user-license-eyebrow{display:inline-flex;margin-bottom:8px;color:#d84a00;font-size:10px;font-weight:950;letter-spacing:.13em;text-transform:uppercase}
#user-license-modal h2{margin:0 36px 14px;font-size:clamp(25px,7vw,34px)!important;font-weight:950;letter-spacing:-.04em}
#user-license-modal p{margin:0 auto 11px;color:#616975;font-size:13px;line-height:1.6}
.user-license-whatsapp{display:inline-flex;min-height:50px;align-items:center;justify-content:center;gap:9px;margin-top:12px;padding:12px 21px;border-radius:15px;color:#fff;background:linear-gradient(135deg,#16ad6d,#0b9158);box-shadow:0 13px 27px rgba(14,154,93,.25);font-weight:900;text-decoration:none}
.user-license-whatsapp:hover,.user-license-whatsapp:focus-visible{color:#fff;background:linear-gradient(135deg,#139c63,#087e4d)}
@media(max-width:430px){.user-license-button{flex-basis:34px;width:34px;height:34px;padding:1px;border-radius:10px}.user-license-button-icon{width:30px;height:30px;border-radius:8px}#user-license-modal .user-license-modal-card{padding:22px 17px 20px;border-radius:24px!important}.user-license-visual{width:116px;height:116px;margin-bottom:13px}.user-license-whatsapp{display:flex;width:100%}}
@media(prefers-reduced-motion:reduce){.user-license-button,.user-license-button::after{animation:none!important}}

.featured-store-promotions{position:relative;margin:0 0 16px;padding:17px 17px 15px;overflow:hidden;border-radius:24px;color:#fff;background:radial-gradient(circle at 92% 3%,rgba(255,119,25,.5),transparent 30%),linear-gradient(135deg,#111317 0%,#24160f 58%,#4b210b 100%);box-shadow:0 16px 34px rgba(22,24,27,.18)}.featured-promotions-head{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;margin-bottom:13px}.featured-promotions-head>div>span{display:inline-flex;align-items:center;gap:5px;color:#ffad78;font-size:8px;font-weight:950;letter-spacing:.12em}.featured-promotions-head h2{margin:4px 0 2px;color:#fff;font-size:20px;font-weight:950}.featured-promotions-head p{margin:0;color:#c9cdd3;font-size:10px;font-weight:650}.featured-promotions-head>i{color:#ff7a22;font-size:25px;filter:drop-shadow(0 0 12px rgba(255,101,0,.55))}.featured-promotions-list{display:grid;grid-auto-columns:minmax(285px,34%);grid-auto-flow:column;gap:11px;overflow-x:auto;padding:2px 2px 7px;scroll-snap-type:x proximity;scrollbar-color:#ff6500 rgba(255,255,255,.08);scrollbar-width:thin}.featured-promotion-card{display:grid;grid-template-columns:112px minmax(0,1fr);min-height:126px;overflow:hidden;padding:0;border:1px solid rgba(255,255,255,.12);border-radius:18px;color:#fff;background:rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.08);text-align:left;scroll-snap-align:start;transition:transform .18s ease,border-color .18s ease,background .18s ease}.featured-promotion-card:hover,.featured-promotion-card:focus-visible{border-color:#ff8637;background:rgba(255,255,255,.12);transform:translateY(-2px)}.featured-promotion-media{position:relative;display:grid;place-items:center;min-height:126px;overflow:hidden;color:#ff6500;background:linear-gradient(145deg,#fff0e6,#ffcda9);font-size:28px}.featured-promotion-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.featured-promotion-media>b{position:absolute;top:8px;left:8px;padding:4px 6px;border-radius:7px;color:#fff;background:#ff6500;font-size:7px;font-weight:950;letter-spacing:.09em;box-shadow:0 4px 10px rgba(0,0,0,.2)}.featured-promotion-card:has(.featured-promotion-media>b:first-of-type){}.featured-promotion-copy{display:grid;min-width:0;align-content:center;gap:3px;padding:10px 11px}.featured-promotion-copy>small{overflow:hidden;color:#ffb886;font-size:8px;font-weight:850;text-overflow:ellipsis;white-space:nowrap}.featured-promotion-copy>strong{display:-webkit-box;overflow:hidden;color:#fff;font-size:14px;font-weight:950;line-height:1.15;-webkit-box-orient:vertical;-webkit-line-clamp:2}.featured-promotion-copy>em{display:-webkit-box;overflow:hidden;min-height:27px;color:#c8cbd0;font-size:9px;font-style:normal;line-height:1.4;-webkit-box-orient:vertical;-webkit-line-clamp:2}.featured-promotion-bottom{display:flex;align-items:flex-end;justify-content:space-between;gap:7px;margin-top:4px}.featured-promotion-price{display:flex;align-items:baseline;gap:5px}.featured-promotion-price del{color:#92979f;font-size:8px}.featured-promotion-price b{color:#fff;font-size:17px;font-weight:950}.featured-promotion-cta{display:inline-flex;align-items:center;gap:4px;padding:6px 8px;border-radius:9px;color:#fff;background:#ff6500;font-size:8px;font-weight:950;white-space:nowrap}.delivery-promotion-context{display:grid;grid-template-columns:44px minmax(0,1fr) 30px;align-items:center;gap:9px;margin-bottom:10px;padding:7px 8px;border:1px solid #ffbf94;border-radius:14px;background:linear-gradient(90deg,#fff3e9,#fff)}.delivery-promotion-context-media{position:relative;display:grid;place-items:center;width:44px;height:44px;overflow:hidden;border-radius:11px;color:#fff;background:#ff6500}.delivery-promotion-context-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.delivery-promotion-context>div:nth-child(2){display:grid;min-width:0}.delivery-promotion-context small{color:#f05a00;font-size:7px;font-weight:950;letter-spacing:.08em}.delivery-promotion-context strong{overflow:hidden;color:#17191c;font-size:11px;font-weight:950;text-overflow:ellipsis;white-space:nowrap}.delivery-promotion-context span{overflow:hidden;color:#68717d;font-size:8px;font-weight:750;text-overflow:ellipsis;white-space:nowrap}.delivery-promotion-context>button{display:grid;place-items:center;width:28px;height:28px;padding:0;border:0;border-radius:9px;color:#6d737c;background:#fff;box-shadow:0 3px 9px rgba(22,24,27,.08)}

@media(max-width:900px){.featured-promotions-list{grid-auto-columns:minmax(275px,72%)}}
@media(max-width:560px){.featured-store-promotions{margin-right:-1px;margin-left:-1px;padding:15px 12px 12px;border-radius:21px}.featured-promotions-head{padding:0 3px}.featured-promotions-head h2{font-size:18px}.featured-promotions-head p{max-width:285px;font-size:9px}.featured-promotions-list{grid-auto-columns:88%;gap:9px;margin-right:-12px;padding-right:12px}.featured-promotion-card{grid-template-columns:105px minmax(0,1fr);min-height:120px}.featured-promotion-media{min-height:120px}.featured-promotion-copy{padding:9px}.featured-promotion-copy>strong{font-size:13px}.featured-promotion-price b{font-size:16px}}
@media(prefers-reduced-motion:reduce){.featured-promotion-card{transition:none}}

/* Promociones: dos tarjetas por fila, tanto en Inicio como en el catálogo. */
.featured-promotions-list{
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-auto-columns:auto;
  grid-auto-flow:row;
  gap:12px;
  overflow:visible;
  padding:2px;
  scroll-snap-type:none;
}
.featured-promotion-card{
  display:flex;
  min-width:0;
  min-height:0;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  border-radius:19px;
  color:#fff;
  background:rgba(255,255,255,.085);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.09),0 9px 20px rgba(0,0,0,.11);
  text-align:left;
}
.featured-promotion-media{
  position:relative;
  display:grid;
  width:100%;
  min-height:0;
  aspect-ratio:4/3;
  place-items:center;
  overflow:hidden;
  color:#ff6500;
  background:linear-gradient(145deg,#fff0e6,#ffcda9);
  font-size:34px;
}
.featured-promotion-copy{
  display:grid;
  min-width:0;
  flex:1;
  grid-template-rows:auto auto minmax(30px,auto) auto auto;
  align-content:start;
  gap:5px;
  padding:12px;
}
.featured-promotion-copy>small{
  overflow:hidden;
  color:#ffb886;
  font-size:9px;
  font-weight:900;
  letter-spacing:.02em;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.featured-promotion-copy>strong{
  display:-webkit-box;
  overflow:hidden;
  color:#fff;
  font-size:15px;
  font-weight:950;
  line-height:1.18;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.featured-promotion-copy>em{
  display:-webkit-box;
  overflow:hidden;
  min-height:30px;
  color:#c8cbd0;
  font-size:10px;
  font-style:normal;
  line-height:1.45;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.featured-promotion-price{
  display:flex;
  min-height:25px;
  align-items:baseline;
  gap:6px;
}
.featured-promotion-price del{color:#9fa4ac;font-size:10px}
.featured-promotion-price b{color:#fff;font-size:20px;font-weight:950;line-height:1}
.featured-promotion-order{
  display:flex;
  width:100%;
  min-height:44px;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:4px;
  padding:10px 12px;
  border:1px solid #ff8b3a;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(135deg,#ff7a00,#ff4f00);
  box-shadow:0 9px 20px rgba(255,91,0,.28);
  font-size:12px;
  font-weight:950;
  line-height:1;
  transition:transform .16s ease,filter .16s ease;
}
.featured-promotion-order i{font-size:16px}
.featured-promotion-order:hover,.featured-promotion-order:focus-visible{color:#fff;filter:brightness(1.07);transform:translateY(-1px)}
.featured-promotions-more{
  display:flex;
  width:100%;
  min-height:44px;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:13px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:13px;
  color:#fff;
  background:rgba(255,255,255,.1);
  font-size:11px;
  font-weight:900;
}
.featured-promotions-more:hover,.featured-promotions-more:focus-visible{color:#fff;border-color:#ff8738;background:rgba(255,255,255,.16)}
.promotions-catalog{
  margin-bottom:18px;
  padding:18px;
  border-radius:26px;
  color:#fff;
  background:radial-gradient(circle at 92% 2%,rgba(255,119,25,.5),transparent 28%),linear-gradient(135deg,#111317 0%,#24160f 58%,#4b210b 100%);
  box-shadow:0 16px 34px rgba(22,24,27,.18);
}
.promotions-catalog-head{display:flex;align-items:flex-start;gap:12px;margin-bottom:17px}
.promotions-catalog-head>button{
  display:grid;
  width:40px;
  height:40px;
  flex:0 0 40px;
  place-items:center;
  padding:0;
  border:1px solid rgba(255,255,255,.2);
  border-radius:12px;
  color:#fff;
  background:rgba(255,255,255,.1);
}
.promotions-catalog-head>div>span{color:#ffad78;font-size:9px;font-weight:950;letter-spacing:.12em}
.promotions-catalog-head h2{margin:3px 0 2px;color:#fff;font-size:24px;font-weight:950}
.promotions-catalog-head p{max-width:620px;margin:0;color:#c9cdd3;font-size:11px;font-weight:650}
.featured-promotions-empty{
  display:grid;
  grid-column:1/-1;
  min-height:180px;
  place-items:center;
  align-content:center;
  gap:9px;
  padding:24px;
  border:1px dashed rgba(255,255,255,.22);
  border-radius:18px;
  color:#d6d8dc;
  text-align:center;
}
.featured-promotions-empty i{color:#ff6500;font-size:28px}
.featured-promotions-empty small{
  max-width:360px;
  color:#7a828d;
  font-size:10px;
  font-weight:700;
  line-height:1.45;
}
.featured-store-promotions.is-loading,
.featured-store-promotions.is-empty{
  min-height:280px;
}

@media(max-width:560px){
  .featured-promotions-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-auto-columns:auto;
    grid-auto-flow:row;
    gap:8px;
    margin-right:0;
    padding:1px;
  }
  .featured-promotion-card{grid-template-columns:none;min-height:0;border-radius:15px}
  .featured-promotion-media{min-height:0;aspect-ratio:1/1;font-size:27px}
  .featured-promotion-media>b{top:6px;left:6px;padding:3px 5px;font-size:6px}
  .featured-promotion-copy{
    grid-template-rows:auto auto minmax(25px,auto) auto auto;
    gap:4px;
    padding:9px 8px 8px;
  }
  .featured-promotion-copy>small{font-size:7px}
  .featured-promotion-copy>strong{font-size:11px;line-height:1.2}
  .featured-promotion-copy>em{min-height:25px;font-size:8px;line-height:1.4}
  .featured-promotion-price{min-height:21px;gap:4px}
  .featured-promotion-price del{font-size:7px}
  .featured-promotion-price b{font-size:15px}
  .featured-promotion-order{min-height:44px;gap:5px;margin-top:2px;padding:8px 5px;border-radius:10px;font-size:10px}
  .featured-promotion-order i{font-size:13px}
  .featured-promotions-more{min-height:44px;margin-top:10px}
  .featured-store-promotions.is-loading,
  .featured-store-promotions.is-empty{min-height:255px}
  .promotions-catalog{margin-right:-1px;margin-left:-1px;padding:14px 11px;border-radius:21px}
  .promotions-catalog-head{gap:9px;margin-bottom:13px;padding:0 2px}
  .promotions-catalog-head>button{width:44px;height:44px;flex-basis:44px;border-radius:10px}
  .promotions-catalog-head h2{font-size:20px}
  .promotions-catalog-head p{font-size:9px;line-height:1.45}
}

/* Promociones claras y compactas. */
.featured-store-promotions,
.promotions-catalog{
  color:#17191c;
  border:1px solid #e5e7eb;
  background:#fff;
  box-shadow:0 12px 28px rgba(31,36,43,.09);
}
.featured-promotions-head>div>span,
.promotions-catalog-head>div>span{color:#f05b00}
.featured-promotions-head h2,
.promotions-catalog-head h2{color:#17191c}
.featured-promotions-head p,
.promotions-catalog-head p{color:#69727f}
.featured-promotions-head>i{color:#ff6500;filter:drop-shadow(0 5px 9px rgba(255,101,0,.24))}
.featured-promotion-card{
  height:100%;
  aspect-ratio:auto;
  border-color:#e1e4e8;
  color:#17191c;
  background:#fff;
  box-shadow:0 7px 17px rgba(28,32,38,.08);
}
.featured-promotion-card:hover,
.featured-promotion-card:focus-within{
  border-color:#ff9a58;
  background:#fff;
  box-shadow:0 10px 22px rgba(255,101,0,.13);
}
.featured-promotion-media{
  flex:0 0 auto;
  aspect-ratio:4/3;
  border-bottom:1px solid #eceef1;
  background:#f4f1ed;
}
.featured-promotion-copy{
  min-height:0;
  grid-template-rows:auto auto minmax(0,1fr) auto auto;
  gap:4px;
  overflow:visible;
  padding:10px;
}
.featured-promotion-copy>small{color:#e75b08}
.featured-promotion-copy>strong{color:#17191c;font-size:14px}
.featured-promotion-copy>em{
  min-height:0;
  color:#737b86;
  font-size:9px;
  -webkit-line-clamp:1;
}
.featured-promotion-price{min-height:20px}
.featured-promotion-price del{color:#9299a2}
.featured-promotion-price b{color:#17191c;font-size:18px}
.featured-promotion-order{
  min-height:44px;
  margin-top:1px;
  padding:8px 10px;
  border-radius:10px;
  box-shadow:0 7px 14px rgba(255,91,0,.2);
  font-size:11px;
}
.featured-promotion-order i{font-size:14px}
.featured-promotions-more{
  border-color:#ffd3b8;
  color:#d94e00;
  background:#fff6ef;
}
.featured-promotions-more:hover,
.featured-promotions-more:focus-visible{color:#c84600;border-color:#ff9a58;background:#ffede0}
.promotions-catalog-head>button{
  border-color:#e3e5e8;
  color:#262a30;
  background:#f7f8f9;
}
.promotions-catalog-head>button:hover,
.promotions-catalog-head>button:focus-visible{color:#e95700;border-color:#ffb27e;background:#fff4ec}
.featured-promotions-empty{border-color:#d8dce1;color:#69727f;background:#fafafa}

@media(max-width:560px){
  .featured-store-promotions,
  .promotions-catalog{padding:13px 10px 11px}
  .featured-promotions-head{margin-bottom:10px}
  .featured-promotions-list{gap:7px}
  .featured-promotion-card{height:100%;aspect-ratio:auto;border-radius:13px}
  .featured-promotion-media{flex-basis:auto;aspect-ratio:4/3;font-size:22px}
  .featured-promotion-copy{
    grid-template-rows:auto auto auto auto;
    gap:3px;
    padding:6px;
  }
  .featured-promotion-copy>small{font-size:6px}
  .featured-promotion-copy>strong{
    display:block;
    overflow:visible;
    font-size:10px;
    line-height:1.15;
    overflow-wrap:anywhere;
    white-space:normal;
    -webkit-line-clamp:unset;
  }
  .featured-promotion-copy>em{display:none}
  .featured-promotion-price{min-height:14px;gap:3px}
  .featured-promotion-price del{font-size:6px}
  .featured-promotion-price b{font-size:13px}
  .featured-promotion-order{
    min-height:44px;
    gap:4px;
    margin-top:0;
    padding:6px 4px;
    border-radius:8px;
    font-size:10px;
  }
  .featured-promotion-order i{font-size:11px}
}

/* Acciones de promociones según disponibilidad de reparto. */
.featured-promotion-actions{
  display:grid;
  min-width:0;
  grid-template-columns:minmax(0,1fr);
  gap:6px;
}
.featured-promotion-actions.has-pickup{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.featured-promotion-actions .featured-promotion-order{
  min-width:0;
  margin-top:1px;
}
.featured-promotion-pickup{
  display:flex;
  width:100%;
  min-width:0;
  min-height:44px;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:8px 7px;
  border:1px solid #159a58;
  border-radius:10px;
  color:#08743e;
  background:#ecfff5;
  box-shadow:0 7px 14px rgba(15,145,82,.13);
  font-size:10px;
  font-weight:950;
  line-height:1;
}
.featured-promotion-pickup:hover,
.featured-promotion-pickup:focus-visible{
  color:#fff;
  background:#0d9b55;
}
.featured-promotion-pickup i{font-size:14px}

@media(max-width:560px){
  .featured-promotion-actions{gap:4px}
  .featured-promotion-actions.has-pickup .featured-promotion-order,
  .featured-promotion-pickup{
    min-height:44px;
    gap:3px;
    padding:5px 3px;
    border-radius:8px;
    font-size:10px;
    line-height:1.15;
    overflow-wrap:anywhere;
    white-space:normal;
  }
  .featured-promotion-actions .featured-promotion-order i,
  .featured-promotion-pickup i{font-size:12px}
}

@media(max-width:400px){
  .featured-promotion-actions.has-pickup{grid-template-columns:minmax(0,1fr)}
  .featured-promotion-actions.has-pickup .featured-promotion-order,
  .featured-promotion-pickup{
    padding:7px 5px;
    font-size:10px;
  }
}

/* Estado de carga visible y ligado a la consulta real de promociones. */
.featured-promotions-loading-status{
  display:flex;
  grid-column:1/-1;
  min-height:64px;
  align-items:center;
  gap:11px;
  padding:11px 13px;
  border:1px solid #ffd7bd;
  border-radius:15px;
  color:#24272c;
  background:linear-gradient(105deg,#fff8f3,#fff);
  box-shadow:0 8px 20px rgba(42,31,23,.06);
}
.featured-promotions-loading-status>span:nth-child(2){
  display:grid;
  min-width:0;
  flex:1;
  gap:2px;
}
.featured-promotions-loading-status strong{
  font-size:12px;
  font-weight:950;
}
.featured-promotions-loading-status small{
  overflow:hidden;
  color:#747b85;
  font-size:9px;
  font-weight:700;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.featured-promotions-loading-icon{
  display:grid;
  width:38px;
  height:38px;
  flex:0 0 38px;
  place-items:center;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(145deg,#ff7b18,#ff5700);
  box-shadow:0 8px 17px rgba(255,94,0,.22);
  animation:featured-promotions-search 1.35s ease-in-out infinite;
}
.featured-promotions-loading-spinner{
  width:19px;
  height:19px;
  flex:0 0 19px;
  border:2px solid #ffd5ba;
  border-top-color:#ff6500;
  border-radius:50%;
  animation:featured-promotions-spin .72s linear infinite;
}
.featured-promotions-loading-card{
  display:grid;
  min-height:192px;
  overflow:hidden;
  grid-template-rows:42% 1fr;
  border:1px solid #e8eaed;
  border-radius:15px;
  background:#fff;
}
.featured-promotions-loading-card>span,
.featured-promotions-loading-card i,
.featured-promotions-loading-card b{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:7px;
  background:#eceff2;
}
.featured-promotions-loading-card>span{border-radius:0;background:#f1f2f3}
.featured-promotions-loading-card>div{
  display:grid;
  align-content:center;
  gap:7px;
  padding:10px;
}
.featured-promotions-loading-card i:nth-child(1){width:45%;height:7px}
.featured-promotions-loading-card i:nth-child(2){width:82%;height:12px}
.featured-promotions-loading-card i:nth-child(3){width:58%;height:9px}
.featured-promotions-loading-card b{width:100%;height:31px;margin-top:2px}
.featured-promotions-loading-card>span::after,
.featured-promotions-loading-card i::after,
.featured-promotions-loading-card b::after{
  position:absolute;
  inset:0;
  content:"";
  background:linear-gradient(100deg,transparent 15%,rgba(255,255,255,.9) 47%,transparent 80%);
  transform:translateX(-100%);
  animation:featured-promotions-shimmer 1.15s ease-in-out infinite;
}
@keyframes featured-promotions-spin{to{transform:rotate(360deg)}}
@keyframes featured-promotions-search{50%{transform:translateY(-2px) scale(1.04);box-shadow:0 11px 22px rgba(255,94,0,.3)}}
@keyframes featured-promotions-shimmer{to{transform:translateX(100%)}}

@media(max-width:560px){
  .featured-promotions-loading-status{min-height:58px;gap:8px;padding:9px}
  .featured-promotions-loading-status strong{font-size:10px}
  .featured-promotions-loading-status small{font-size:7px}
  .featured-promotions-loading-icon{width:34px;height:34px;flex-basis:34px;border-radius:10px}
  .featured-promotions-loading-card{min-height:168px;border-radius:13px}
  .featured-promotions-loading-card>div{gap:6px;padding:8px}
  .featured-promotions-loading-card b{height:28px}
}

@media(prefers-reduced-motion:reduce){
  .featured-promotions-loading-icon,
  .featured-promotions-loading-spinner,
  .featured-promotions-loading-card>span::after,
  .featured-promotions-loading-card i::after,
  .featured-promotions-loading-card b::after{animation:none}
}

.promo-preparing{
  position:relative;
  min-height:238px;
  place-content:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 28%,rgba(255,101,0,.12),transparent 34%),
    linear-gradient(145deg,#fff,#fff8f3);
}
.promo-preparing::before,
.promo-preparing::after{
  position:absolute;
  width:84px;
  height:84px;
  border:1px solid rgba(255,101,0,.12);
  border-radius:50%;
  content:"";
  animation:promo-preparing-ripple 2.4s ease-out infinite;
}
.promo-preparing::after{animation-delay:1.2s}
.promo-preparing-stage{
  position:relative;
  display:grid;
  width:112px;
  height:92px;
  margin:0 auto 10px;
  place-items:center;
}
.promo-preparing-core{
  position:relative;
  z-index:2;
  display:grid;
  width:58px;
  height:58px;
  place-items:center;
  border-radius:19px;
  color:#fff;
  background:linear-gradient(145deg,#ff812d,#ff5600);
  box-shadow:0 14px 28px rgba(255,92,0,.26);
  font-size:27px;
  animation:promo-preparing-bounce 1.1s cubic-bezier(.35,.05,.25,1) infinite;
}
.promo-preparing-core>i{animation:promo-preparing-wiggle 1.1s ease-in-out infinite}
.promo-preparing-orbit{
  position:absolute;
  z-index:3;
  display:grid;
  width:27px;
  height:27px;
  place-items:center;
  border:1px solid #ffe0cb;
  border-radius:10px;
  color:#f05a00;
  background:#fff;
  box-shadow:0 7px 15px rgba(52,37,27,.1);
  font-size:13px;
}
.promo-preparing-orbit-one{top:2px;left:4px;animation:promo-preparing-float 1.5s ease-in-out infinite}
.promo-preparing-orbit-two{right:0;bottom:5px;animation:promo-preparing-float 1.65s ease-in-out .25s infinite}
.promo-preparing-orbit-three{bottom:0;left:4px;animation:promo-preparing-float 1.4s ease-in-out .5s infinite}
.promo-preparing-spark{
  position:absolute;
  color:#ff6500;
  font-style:normal;
  animation:promo-preparing-twinkle .9s ease-in-out infinite alternate;
}
.promo-preparing-spark-one{top:7px;right:17px}
.promo-preparing-spark-two{bottom:15px;left:35px;animation-delay:.35s}
.promo-preparing>strong,
.promo-preparing>small,
.promo-preparing-dots{position:relative;z-index:2}
.promo-preparing-dots{display:flex;justify-content:center;gap:5px;margin-top:10px}
.promo-preparing-dots i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#ff6500;
  animation:promo-preparing-dot .9s ease-in-out infinite alternate;
}
.promo-preparing-dots i:nth-child(2){animation-delay:.18s}
.promo-preparing-dots i:nth-child(3){animation-delay:.36s}
@keyframes promo-preparing-bounce{0%,100%{transform:translateY(0) rotate(-3deg)}50%{transform:translateY(-7px) rotate(3deg)}}
@keyframes promo-preparing-wiggle{0%,100%{transform:rotate(-8deg)}50%{transform:rotate(9deg)}}
@keyframes promo-preparing-float{0%,100%{transform:translateY(0) rotate(-5deg)}50%{transform:translateY(-7px) rotate(6deg)}}
@keyframes promo-preparing-twinkle{from{opacity:.25;transform:scale(.7)}to{opacity:1;transform:scale(1.25)}}
@keyframes promo-preparing-dot{from{opacity:.3;transform:translateY(0)}to{opacity:1;transform:translateY(-4px)}}
@keyframes promo-preparing-ripple{0%{opacity:.75;transform:scale(.45)}100%{opacity:0;transform:scale(1.9)}}

@media(max-width:560px){
  .promo-preparing{min-height:222px}
}

@media(prefers-reduced-motion:reduce){
  .promo-preparing::before,
  .promo-preparing::after,
  .promo-preparing-core,
  .promo-preparing-core>i,
  .promo-preparing-orbit,
  .promo-preparing-spark,
  .promo-preparing-dots i{animation:none}
}
















@media (max-width: 360px) {
  
  
}





















































@media (max-width: 380px) {
  
  
}

/* Tarjeta de repartidor: foto y datos esenciales visibles de un vistazo. */
.driver-strip {
  scrollbar-width: none;
}

.driver-strip::-webkit-scrollbar {
  display: none;
}

.driver-card.driver-profile-card {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) !important;
  min-width: 0;
  min-height: 112px;
  align-items: center !important;
  gap: 14px !important;
  overflow: hidden;
  padding: 14px !important;
  border: 1px solid #e2e6e4 !important;
  border-radius: 22px !important;
  background: linear-gradient(145deg, #fff 0%, #fbfcfb 72%, #f3faf6 100%) !important;
  box-shadow: 0 11px 25px rgba(19, 36, 29, .08) !important;
}

.driver-card.driver-profile-card.is-driver-available {
  border-color: rgba(15, 143, 91, .24) !important;
  box-shadow: 0 11px 25px rgba(10, 113, 73, .10) !important;
}

.driver-profile-card .driver-profile-photo {
  width: 78px !important;
  height: 78px !important;
  border: 3px solid #fff;
  border-radius: 24px !important;
  outline: 1px solid rgba(19, 36, 29, .12);
  color: #fff !important;
  background: linear-gradient(145deg, #252a31, #111315) !important;
  box-shadow: 0 8px 18px rgba(17, 25, 22, .18);
  font-size: 25px !important;
}

.driver-profile-main {
  min-width: 0;
}

.driver-profile-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.driver-profile-card .driver-profile-name {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  color: #17191c;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.driver-profile-card .driver-profile-availability {
  display: inline-flex !important;
  min-height: 27px;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #08724d !important;
  background: #e9f8f0;
  font-size: 11.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.driver-profile-card.is-driver-busy .driver-profile-availability {
  color: #9a4a16 !important;
  background: #fff1e7;
}

.driver-profile-card .driver-profile-availability i {
  font-size: 7px;
}

.driver-profile-card .driver-profile-vehicle {
  display: flex !important;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  margin-top: 6px;
  color: #68716d !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.driver-profile-card .driver-profile-vehicle i {
  flex: 0 0 auto;
  color: #ff6500;
  font-size: 13px;
}

.driver-profile-highlights {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.driver-profile-card .driver-profile-highlight {
  display: inline-flex !important;
  min-height: 32px;
  max-width: 100%;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.driver-profile-card .driver-profile-highlight strong {
  overflow: hidden;
  color: inherit;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-overflow: ellipsis;
}

.driver-profile-card .driver-profile-highlight small {
  color: inherit;
  font-size: 10px;
  font-weight: 800;
}

.driver-profile-card .driver-profile-rating {
  border-color: #ffe2a7;
  color: #9a5800;
  background: #fff8e8;
}

.driver-profile-card .driver-profile-rating i {
  color: #f59e0b;
}

.driver-profile-card .driver-profile-distance {
  border-color: #cdebdc;
  color: #08724d;
  background: #effaf4;
}

.driver-profile-card .driver-profile-distance i {
  color: #0f9f69;
}

.driver-profile-card .driver-profile-distance.is-distance-unknown {
  border-color: #e0e4e2;
  color: #68716d;
  background: #f5f6f5;
}

.driver-profile-card .driver-profile-distance.is-distance-unknown i {
  color: #818984;
}

.driver-card.driver-card-empty {
  grid-template-columns: 58px minmax(0, 1fr) !important;
  min-height: 88px;
}

.driver-card.driver-card-empty .driver-avatar {
  width: 58px !important;
  height: 58px !important;
  border-radius: 19px !important;
  font-size: 21px !important;
}

.driver-card.driver-card-empty strong {
  white-space: normal !important;
}

@media (max-width: 720px) {
  .driver-strip .driver-profile-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: none !important;
    scroll-snap-align: start;
  }

  .nearby-driver-list .driver-profile-card {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .driver-card.driver-profile-card {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    min-height: 106px;
    gap: 11px !important;
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .driver-profile-card .driver-profile-photo {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
  }

  .driver-profile-card .driver-profile-name { font-size: 17px !important; }
  .driver-profile-card .driver-profile-availability { padding: 5px 8px; font-size: 11px !important; }
  .driver-profile-card .driver-profile-highlight { padding: 7px 9px; }
  .driver-profile-card .driver-profile-highlight small { display: none; }
}

@media (max-width: 340px) {
  .driver-card.driver-profile-card {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 9px !important;
    padding: 10px !important;
  }

  .driver-profile-card .driver-profile-photo {
    width: 64px !important;
    height: 64px !important;
    border-radius: 20px !important;
    font-size: 22px !important;
  }

  .driver-profile-card .driver-profile-name { font-size: 16px !important; }
  .driver-profile-highlights { gap: 5px; margin-top: 8px; }
  .driver-profile-card .driver-profile-highlight { min-height: 30px; padding: 6px 8px; }
  .driver-profile-card .driver-profile-highlight strong { font-size: 11.5px !important; }
}
