/* ============================================================
   ANIMALPLANET · Tienda online — Estilos
   Coherentes con el diseño premium oscuro del sitio
   (mismas variables, tipografías y acentos dorados).
   Prefijo "mc-" para no chocar con las clases existentes.
   ============================================================ */

/* ---------- Botones de la barra de navegación ---------- */
.mc-badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 100px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
  font-family: var(--font-body);
}

/* ---------- Zoom de producto (lightbox) ---------- */
.mc-zoom {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(10, 20, 14, 0.92);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 20px;
  animation: mcZoomIn .25s ease;
}
.mc-zoom[hidden] { display: none !important; }
@keyframes mcZoomIn { from { opacity: 0; } to { opacity: 1; } }
.mc-zoom-stage {
  position: relative; margin: 0; border: 0; padding: 0;
  background: transparent; box-shadow: none;
  max-width: 98vw; max-height: 98vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: mcZoomPop .28s cubic-bezier(.2, .9, .3, 1.15);
}
@keyframes mcZoomPop {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.mc-zoom-stage img {
  max-width: 96vw; max-height: 94vh; width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
}
.mc-zoom-close {
  position: fixed; top: 18px; right: 18px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: #fff; font-size: 17px; font-weight: 700;
  backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .18s, background .18s;
}
.mc-zoom-close:hover { transform: scale(1.12) rotate(90deg); background: rgba(239, 68, 68, .85); }
.mc-zoom figcaption {
  margin-top: 12px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, .92);
  text-align: center; max-width: 88vw; line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}
/* Pista visual: la imagen de la tarjeta invita al zoom */
.card-media img, .ap-product-media img { cursor: zoom-in; }

/* ---------- Overlays y drawer del carrito (blanco, minimalista) ---------- */
.mc-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(4px);
  animation: mcFade .25s;
}
@keyframes mcFade { from { opacity: 0; } to { opacity: 1; } }

.mc-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 301;
  width: min(430px, 92vw);
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 44px rgba(17, 24, 39, 0.18);
  display: flex; flex-direction: column;
  transform: translateX(104%);
  visibility: hidden;
  transition: transform .32s cubic-bezier(.22,.9,.35,1), visibility 0s linear .32s;
}
.mc-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .32s cubic-bezier(.22,.9,.35,1);
}

.mc-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.mc-drawer-head h3 { font-size: 16px; font-weight: 800; font-family: var(--font-head); color: var(--text); }
.mc-cart-close {
  background: none; border: 0; color: var(--muted); font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  transition: color .18s;
}
.mc-cart-close:hover { color: var(--red); }
.mc-x {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.4); border: 1px solid var(--line-2);
  color: var(--muted); font-size: 14px;
  transition: transform .2s, background .2s, color .2s;
}
.mc-x:hover { transform: rotate(90deg); background: var(--red); border-color: var(--red); color: #fff; }

.mc-drawer-list {
  flex: 1; overflow-y: auto; padding: 14px 18px;
  display: flex; flex-direction: column; gap: 12px;
  -webkit-overflow-scrolling: touch;
}
.mc-empty { text-align: center; color: var(--muted); font-size: 14px; padding: 40px 10px; }
.mc-empty .mc-empty-icon { font-size: 38px; display: block; margin-bottom: 12px; opacity: .7; }

.mc-item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 12px;
  transition: border-color .2s;
}
.mc-item:hover { border-color: var(--line-2); }
.mc-item-media {
  width: 56px; height: 56px; border-radius: 10px; overflow: hidden;
  background: var(--bg-2); display: grid; place-items: center;
}
.mc-item-media img, .mc-item-media svg { width: 100%; height: 100%; object-fit: contain; }
.mc-item-info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mc-item-name {
  font-size: 12.5px; font-weight: 700; line-height: 1.3; font-family: var(--font-head);
  color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mc-item-sec { font-size: 11px; color: var(--muted); }
.mc-item-price-line {
  color: var(--text); font-weight: 800; font-size: 13px; font-family: var(--font-head); margin-top: 3px;
}
.mc-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.mc-item-del {
  background: none; border: none; color: var(--muted); font-size: 14px;
  transition: color .2s, transform .2s; cursor: pointer; line-height: 1;
}
.mc-item-del:hover { color: var(--red); transform: scale(1.15); }

/* selector de cantidad */
.mc-qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--line-2); border-radius: 9px; overflow: hidden;
  background: var(--bg-2);
}
.mc-qty button {
  width: 28px; height: 28px; border: none; background: none;
  color: var(--text); font-size: 15px; font-weight: 700;
  transition: background .15s; cursor: pointer;
}
.mc-qty button:hover { background: rgba(17,24,39,.06); }
.mc-qty input {
  width: 32px; height: 28px; border: none; background: none;
  color: var(--text); text-align: center; font-size: 13px; font-weight: 700;
  font-family: var(--font-body); outline: none;
}

.mc-drawer-foot {
  border-top: 1px solid var(--line); padding: 14px 18px 16px;
  background: #fff;
}
.mc-drawer-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.mc-drawer-subtotal span:first-child {
  font-size: 13.5px; color: var(--muted); font-weight: 600;
}
.mc-drawer-subtotal span:last-child {
  font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--text);
}
.mc-drawer-actions { display: flex; flex-direction: column; gap: 9px; }
.mc-drawer-actions .mc-btn { width: 100%; }
.mc-clear {
  align-self: center; background: none; border: none;
  color: var(--muted); font-size: 12px; text-decoration: underline;
  text-underline-offset: 3px; transition: color .2s; cursor: pointer; margin-top: 9px;
}
.mc-clear:hover { color: var(--red); }

/* Botones del resumen: VER CARRITO (gris claro) + FINALIZAR COMPRA (amarillo) */
.mc-btn-view {
  background: #f1f2f4; color: #111; border: 1px solid var(--line-2);
}
.mc-btn-view:hover:not(:disabled) { background: #e8eaed; transform: translateY(-1px); }
.mc-btn-checkout {
  background: #ffd400; color: #111; font-weight: 800;
  box-shadow: 0 8px 22px rgba(255, 212, 0, 0.35);
}
.mc-btn-checkout:hover:not(:disabled) { background: #ffd400; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 212, 0, 0.45); }

/* ---------- Botones ---------- */
.mc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; border: none;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  cursor: pointer;
}
.mc-btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }
.mc-btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #171204;
  box-shadow: 0 8px 26px rgba(212,175,55,.3);
}
.mc-btn-gold:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(212,175,55,.42); }
.mc-btn-ghost { background: rgba(255,255,255,.05); color: var(--text); border: 1px solid var(--line-2); }
.mc-btn-ghost:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.mc-btn-green { background: linear-gradient(120deg, #25d366, #128c7e); color: #04210f; box-shadow: 0 8px 26px rgba(37,211,102,.25); }
.mc-btn-green:hover:not(:disabled) { transform: translateY(-2px); }
.mc-btn-danger { background: rgba(255,95,86,.12); color: var(--red); border: 1px solid rgba(255,95,86,.4); }
.mc-btn-danger:hover:not(:disabled) { background: var(--red); color: #fff; }
.mc-btn-sm { padding: 8px 14px; font-size: 12.5px; border-radius: 10px; }
.mc-btn-block { width: 100%; }

/* ---------- Modal genérico ---------- */
.mc-modal-overlay {
  position: fixed; inset: 0; z-index: 310;
  background: rgba(4,6,9,.8); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 18px;
  animation: mcFade .25s;
  overflow-y: auto;
}
.mc-modal {
  position: relative; width: min(560px, 100%);
  max-height: 92vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: 22px;
  box-shadow: var(--shadow); animation: mcPop .3s cubic-bezier(.2,.9,.3,1.2);
  padding: 26px 28px 30px;
}
.mc-modal-wide { width: min(760px, 100%); }
@keyframes mcPop { from { transform: scale(.93) translateY(14px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.mc-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.45); border: 1px solid var(--line-2); color: #fff;
  transition: transform .2s, background .2s;
}
.mc-modal-close:hover { transform: rotate(90deg); background: var(--red); border-color: var(--red); }
.mc-modal h2 { font-size: 22px; font-weight: 800; font-family: var(--font-head); margin-bottom: 4px; }
.mc-modal .mc-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.mc-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 700; }

/* ---------- Tabs ---------- */
.mc-tabs { display: flex; gap: 6px; background: var(--bg-2); padding: 5px; border-radius: 12px; margin-bottom: 20px; }
.mc-tab {
  flex: 1; padding: 10px; border: none; border-radius: 9px;
  background: none; color: var(--muted); font-family: var(--font-head);
  font-weight: 600; font-size: 13.5px; transition: background .2s, color .2s;
}
.mc-tab.active { background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #171204; }

/* ---------- Formularios ---------- */
.mc-form { display: flex; flex-direction: column; gap: 12px; }
.mc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mc-field { display: flex; flex-direction: column; gap: 5px; }
.mc-label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.mc-label small { color: var(--line-2); }
.mc-input {
  width: 100%; padding: 11px 14px; border-radius: 11px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  color: var(--text); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.mc-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.mc-input::placeholder { color: #556070; }
select.mc-input { appearance: none; -webkit-appearance: none; cursor: pointer; }
.mc-err { color: var(--red); font-size: 12.5px; }
.mc-hint { color: var(--muted); font-size: 12px; line-height: 1.5; }
.mc-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); cursor: pointer; }
.mc-check input { accent-color: var(--gold); width: 15px; height: 15px; }

/* ---------- Alerta (método de pago obligatorio) ---------- */
.mc-alert {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 13px 15px; border-radius: 12px; font-size: 13.5px; line-height: 1.45;
  border: 1px solid rgba(232,193,90,.45);
  background: rgba(232,193,90,.1); color: #f3d27a;
}
.mc-alert-danger { border-color: rgba(255,95,86,.5); background: rgba(255,95,86,.1); color: var(--red); }
.mc-alert-info { border-color: rgba(47,191,113,.45); background: rgba(47,191,113,.1); color: #7fe0a8; }

/* ---------- Tarjetas de pago ---------- */
.mc-card-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 13px; padding: 13px 15px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.mc-card-row:hover { border-color: rgba(212,175,55,.4); }
.mc-card-row.selected { border-color: var(--gold); background: rgba(212,175,55,.07); }
.mc-card-radio { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.mc-card-brand {
  width: 46px; height: 30px; border-radius: 7px; flex-shrink: 0;
  background: linear-gradient(120deg, #1c232e, #2a3440);
  border: 1px solid var(--line-2);
  display: grid; place-items: center; font-size: 9.5px; font-weight: 800;
  font-family: var(--font-head); letter-spacing: .03em;
}
.mc-card-brand.visa { color: #fff; background: linear-gradient(120deg, #1a1f71, #2a3f8f); }
.mc-card-brand.mastercard { color: #fff; background: linear-gradient(120deg, #eb001b, #f79e1b); }
.mc-card-brand.amex { color: #fff; background: linear-gradient(120deg, #006fcf, #2e77bb); }
.mc-card-brand.otra { color: var(--gold-2); }
.mc-card-meta { flex: 1; min-width: 0; }
.mc-card-name { font-size: 13.5px; font-weight: 700; font-family: var(--font-head); }
.mc-card-detail { font-size: 12px; color: var(--muted); font-family: monospace; }
.mc-card-default { font-size: 10px; color: var(--green); font-weight: 700; }
.mc-card-actions { display: flex; gap: 6px; }
.mc-link-btn {
  background: none; border: none; color: var(--muted); font-size: 12px;
  text-decoration: underline; text-underline-offset: 3px; transition: color .2s;
}
.mc-link-btn:hover { color: var(--gold); }
.mc-link-btn.danger:hover { color: var(--red); }

/* ---------- Pasos del checkout ---------- */
.mc-steps { display: flex; gap: 6px; margin-bottom: 22px; }
.mc-step {
  flex: 1; text-align: center; position: relative;
  font-size: 11px; color: var(--muted); font-weight: 600;
}
.mc-step::before {
  content: ""; display: block; height: 3px; border-radius: 3px;
  background: var(--line-2); margin-bottom: 7px;
}
.mc-step.active { color: var(--gold); }
.mc-step.active::before { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.mc-step.done { color: var(--green); }
.mc-step.done::before { background: var(--green); }

/* ---------- Envío ---------- */
.mc-ship-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 13px; padding: 14px 16px; cursor: pointer;
  transition: border-color .2s, background .2s; margin-bottom: 9px;
}
.mc-ship-row:hover { border-color: rgba(212,175,55,.4); }
.mc-ship-row.selected { border-color: var(--gold); background: rgba(212,175,55,.07); }
.mc-ship-radio { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.mc-ship-icon { font-size: 21px; width: 34px; text-align: center; flex-shrink: 0; }
.mc-ship-meta { flex: 1; }
.mc-ship-label { font-size: 14px; font-weight: 700; font-family: var(--font-head); }
.mc-ship-sim { font-size: 11px; color: var(--gold); font-weight: 600; }
.mc-ship-cost { font-weight: 800; color: var(--gold-2); font-family: var(--font-head); }
.mc-ship-cost.free { color: var(--green); }

/* ---------- Resumen ---------- */
.mc-summary { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 15px 17px; }
.mc-summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: var(--muted); }
.mc-summary-row b { color: var(--text); }
.mc-summary-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 800; font-family: var(--font-head); border-top: 1px dashed var(--line-2); margin-top: 8px; padding-top: 10px; }
.mc-summary-total span:last-child { color: var(--gold-2); }

/* ---------- Éxito ---------- */
.mc-success { text-align: center; padding: 14px 0 6px; }
.mc-success-icon {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(47,191,113,.14); border: 1px solid rgba(47,191,113,.45);
  display: grid; place-items: center; font-size: 34px;
  animation: mcPop .4s cubic-bezier(.2,.9,.3,1.3);
}
.mc-success h2 { font-size: 24px; margin-bottom: 8px; }
.mc-success .mc-num {
  display: inline-block; background: var(--panel-2); border: 1px solid var(--line-2);
  padding: 6px 16px; border-radius: 10px; font-family: monospace;
  font-weight: 700; color: var(--gold-2); margin: 6px 0 14px;
}
.mc-success-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.mc-success .mc-hint { margin-top: 12px; }

/* ---------- Pedidos (perfil) ---------- */
.mc-orders { display: flex; flex-direction: column; gap: 10px; }
.mc-order {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 13px;
  padding: 13px 16px;
}
.mc-order-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 4px; }
.mc-order-num { font-family: monospace; font-weight: 700; color: var(--gold-2); font-size: 13px; }
.mc-order-state { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 100px; background: rgba(47,191,113,.14); color: var(--green); }
.mc-order-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted); }
.mc-order-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.mc-order-total { font-weight: 800; font-family: var(--font-head); color: var(--text); font-size: 14px; }

/* ---------- Toast ---------- */
.mc-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 400; background: var(--panel-2); border: 1px solid rgba(212,175,55,.5);
  color: var(--text); padding: 12px 22px; border-radius: 13px;
  font-size: 13.5px; font-family: var(--font-body);
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; max-width: 90vw; text-align: center;
}
.mc-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.mc-toast.error { border-color: rgba(255,95,86,.5); }
.mc-toast.success { border-color: rgba(47,191,113,.5); }

/* ---------- Tarjeta de producto: cantidad + agregar ---------- */
.card-buy { display: flex; gap: 8px; margin-top: 12px; }
.card-buy .qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; background: var(--bg-2); flex-shrink: 0; }
.card-buy .qty button { width: 30px; height: 38px; border: none; background: none; color: var(--gold); font-size: 16px; font-weight: 700; transition: background .15s; }
.card-buy .qty button:hover { background: rgba(212,175,55,.15); }
.card-buy .qty input { width: 34px; border: none; background: none; color: var(--text); text-align: center; font-size: 14px; font-weight: 700; font-family: var(--font-body); outline: none; }
.card-add {
  flex: 1; min-width: 0; padding: 0 12px; border: none; border-radius: 10px;
  background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #171204;
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  cursor: pointer; transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.card-add:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,175,55,.35); }
.card-add:active { transform: translateY(0); }
.card-add.added { background: linear-gradient(120deg, var(--green), #2fbf71); color: #04150b; }
/* Escritorio: el texto "Añadir al carrito" siempre queda DENTRO del botón.
   Si el botón queda angosto (pantalla con sidebar o más columnas), el texto
   se acomoda en 2 líneas en lugar de salirse del botón. El móvil no se toca. */
@media (min-width: 721px) {
  .card-add {
    font-size: 11.5px;
    padding: 4px 8px;
    white-space: normal;
    line-height: 1.2;
    min-height: 38px;
  }
}
.card-cta { margin-top: 8px !important; }

/* Modal de producto: compra */
.modal-buy { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.modal-buy .qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; background: var(--bg-2); }
.modal-buy .qty button { width: 40px; height: 46px; border: none; background: none; color: var(--gold); font-size: 18px; font-weight: 700; transition: background .15s; }
.modal-buy .qty button:hover { background: rgba(212,175,55,.15); }
.modal-buy .qty input { width: 48px; border: none; background: none; color: var(--text); text-align: center; font-size: 16px; font-weight: 700; font-family: var(--font-body); outline: none; }
.modal-buy .btn-add { flex: 1; padding: 14px 16px; }

/* ---------- Spinner ---------- */
.mc-spinner {
  width: 22px; height: 22px; border-radius: 50%;
  border: 3px solid rgba(212,175,55,.25); border-top-color: var(--gold);
  animation: mcSpin .7s linear infinite; margin: 0 auto;
}
@keyframes mcSpin { to { transform: rotate(360deg); } }
.mc-loading { display: grid; place-items: center; padding: 34px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .mc-grid-2 { grid-template-columns: 1fr; }
  .mc-modal { padding: 22px 18px 24px; }
  .mc-drawer { width: min(430px, 94vw); }
  .card-buy { flex-direction: column; }
  .card-buy .qty { justify-content: center; }
  .card-buy .qty button { width: 44px; }
  .card-buy .qty input { width: 46px; }
  .modal-buy { flex-direction: column; }
  .modal-buy .btn-add { width: 100%; }
}
