/* =========================================================
   GOTA · COFFEE THEME — espresso + caramelo (moderno)
   ========================================================= */

/* ---- RESET MÓVIL SEGURO ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { width: 100%; overflow-x: hidden; }
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
  height: auto;
}

/* === Design tokens (CSS vars) === */
:root{
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 25px rgba(43,30,22,.06);
  --shadow-hover: 0 16px 36px rgba(43,30,22,.12);

  /* Espresso (brand) */
  --brand-50:#F7EFE9;
  --brand-100:#EFE2D7;
  --brand-200:#E2CCB8;
  --brand-300:#D4B394;
  --brand-400:#B98D6E;
  --brand-500:#8B5E3C;
  --brand-600:#6E4B3B;
  --brand-700:#553A2F;
  --brand-800:#3D2B23;
  --brand-900:#2B1E16;

  /* Caramelo */
  --caramel-50:#FFF6EC;
  --caramel-100:#FDECD9;
  --caramel-200:#F7D4B5;
  --caramel-300:#EDB885;
  --caramel-400:#E19C60;
  --caramel-500:#C67C48;
  --caramel-600:#B36D3D;
  --caramel-700:#8F5330;

  /* Neutrales */
  --canvas:#FBF7F2;
  --surface:#FFFFFF;
  --surface-2:#F5EEE6;
  --border:#E7DED6;
  --text-1:#1F130E;
  --text-2:#6B5E55;

  --primary:     var(--brand-600);
  --primary-600: var(--brand-700);
  --primary-700: var(--brand-800);
  --primary-50:  var(--brand-50);
  --primary-100: var(--brand-100);

  --accent:  var(--caramel-600);
  --warning: #B7791F;
  --danger:  #B5533C;
  --success: #2E7D32;

  --review-collapsed: 140px;
}

/* @media (prefers-color-scheme: dark){
  :root{
    --canvas:#16110E;
    --surface:#1F1813;
    --surface-2:#231C17;
    --border:#3A2E27;
    --text-1:#F5EEE6;
    --text-2:#D2C9C1;

    --primary:#A67858;
    --primary-600:#8F674C;
    --primary-700:#7A563F;
    --accent:#D29061;
  }
}
*/
/* === Base === */
* { -webkit-tap-highlight-color: transparent; }
body {
  color: var(--text-1);
  background: var(--canvas);
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI',
               Roboto, 'Helvetica Neue', Arial, 'Noto Sans',
               'Apple Color Emoji', 'Segoe UI Emoji';
}
a { text-decoration: none; color: var(--primary-600); }
a:hover { color: var(--primary); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.container-default { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.text-muted { color: var(--text-2); }
.surface { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.text-primary{ color: var(--primary) !important; }

/* === Header fijo === */
header.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2147483647;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .18s ease, background-color .18s ease, backdrop-filter .18s ease;
}
header.site-nav.is-scrolled{
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(43,30,22,.08);
}

/* Leaflet por debajo del header */
.leaflet-container,
.leaflet-pane,
.leaflet-map-pane,
.leaflet-tile-pane,
.leaflet-overlay-pane,
.leaflet-marker-pane,
.leaflet-shadow-pane,
.leaflet-tooltip-pane,
.leaflet-popup-pane,
.leaflet-top,
.leaflet-bottom,
.leaflet-control { z-index: 0 !important; }

/* Fade entre páginas */
.page { opacity: 0; transition: opacity .18s ease; }
.page.page-ready { opacity: 1; }

/* === Botones === */
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.625rem .95rem; border-radius: var(--radius-md);
  font-weight:600; border:1px solid transparent; transition: all .18s ease;
  box-shadow: var(--shadow-soft); line-height:1;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn:active{ transform: translateY(0); }

.btn-primary{ background: var(--primary) !important; color:#fff !important; border-color: var(--primary-600) !important; }
.btn-primary:hover{ background: var(--primary-600) !important; }
.btn-primary:focus-visible{ outline:2px solid var(--primary-700); outline-offset:2px; }

.btn-outline{ background:#fff; color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-outline:hover{ background: var(--primary-50); }

.btn-ghost{ background: transparent; color: var(--primary) !important; border-color: transparent; }
.btn-ghost:hover{ background: var(--primary-50); }

.btn-danger{ background: var(--danger); color:#fff; }
.btn-danger:hover{ filter:brightness(.95); }
.btn-success{ background: var(--success); color:#fff; }
.btn-success:hover{ filter:brightness(.95); }

.btn-sm{ padding:.45rem .65rem; font-size:.9rem; border-radius: var(--radius-sm); height:40px; }
.btn-block{ width:100%; justify-content:center; }
.btn-icon{ padding:.5rem; width:2.5rem; height:2.5rem; justify-content:center; }

/* === Nav links === */
.nav-link{
  display:inline-flex; align-items:center;
  padding:.5rem .75rem; border-radius:9999px;
  color: var(--text-1);
  transition: background-color .15s ease, color .15s ease;
}
.nav-link:hover{ background: var(--surface-2); color: var(--primary); }

/* === Badges / chips === */
.badge{
  display:inline-flex; align-items:center; gap:.35rem;
  font-size:.75rem; padding:.25rem .55rem; border-radius:999px;
  background: var(--surface-2); border:1px solid var(--border); color: var(--text-2);
}
.badge-success{ background: rgba(46,125,50,.12); border-color: rgba(46,125,50,.25); color:#1B5E20; }
.badge-warning{ background: rgba(183,121,31,.12); border-color: rgba(183,121,31,.25); color:#7C4A0E; }

.chip{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.45rem .75rem; border-radius:9999px; font-size:.88rem;
  background: var(--surface); border:1px solid var(--border);
  box-shadow: var(--shadow-soft); color: var(--text-1); white-space:nowrap; cursor:pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.chip:hover{ background: var(--surface-2); }
.chip[data-checked="1"], .chip.active{
  background: var(--brand-50);
  border-color: var(--brand-200);
  color: var(--primary-600);
}

/* === Cards === */
.card{
  background: var(--surface); border:1px solid var(--border);
  border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.card-body{ padding: .9rem .95rem 1rem; }
.card-title{ font-size: 1.05rem; font-weight:700; line-height:1.2; }
.card-sub{ font-size:.85rem; color: var(--text-2); }
.card-actions{ display:flex; justify-content:space-between; align-items:center; gap:.5rem; margin-top:.75rem; }

/* === Formularios === */
.input, .select, .textarea{
  width:100%; padding:.6rem .75rem; border-radius: var(--radius-md);
  border:1px solid var(--border); background:#fff; color: var(--text-1);
  transition:border-color .18s ease, box-shadow .18s ease;
}
.input:focus, .select:focus, .textarea:focus{
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(142,103,77,.18);
  outline: none;
}
select,
input[type="text"], input[type="search"], input[type="email"], input[type="number"],
input[type="password"], input[type="tel"], textarea {
  width: 100%;
  padding: .55rem .7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-1);
  box-shadow: 0 1px 0 rgba(43,30,22,.05) inset;
  transition: border-color .18s ease, box-shadow .18s ease;
  font: inherit;
}
select:focus,
input[type="text"]:focus, input[type="search"]:focus, input[type="email"]:focus,
input[type="number"]:focus, input[type="password"]:focus, input[type="tel"]:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(142,103,77,.18);
}
input[type="checkbox"]{ width:1rem; height:1rem; accent-color: var(--primary); vertical-align: middle; }
label { display: inline-flex; align-items: center; gap: .45rem; }
fieldset { border-top: 1px solid var(--border); margin-top: .5rem; padding-top: .5rem; }

form button[type="submit"]:not(.btn),
form input[type="submit"]:not(.btn) {
  background: var(--primary);
  color: #fff;
  padding: .55rem .9rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
form button[type="submit"]:not(.btn):hover,
form input[type="submit"]:not(.btn):hover { background: var(--primary-600); }

form a.button-reset, form a[type="reset"] {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem .9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff; color: var(--text-1);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

h2 { margin: .25rem 0 .5rem; }
h2 + form { margin-top: .25rem; }
main img { max-width: 100%; display: block; }

/* === Etiquetas sensoriales === */
.tag-list{ display:grid; gap:.4rem; grid-template-columns:1fr; }
@media (min-width:640px){ .tag-list{ grid-template-columns:1fr 1fr; } }
.tag-item{ display:flex; align-items:flex-start; gap:.55rem; padding:.25rem 0; }
.tag-dot{
  width:.5rem; height:.5rem; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
  margin-top:.45rem; flex:0 0 auto;
}
.tag-text{ font-size:.95rem; color: var(--text-1); }

/* === Reseñas === */
.review-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.review-head{ display:flex; gap:.75rem; alignments:flex-start; }
.review-avatar{
  width: 42px; height: 42px; border-radius: 999px;
  background: #e5e7eb; display:flex; align-items:center; justify-content:center;
  font-weight: 700; color:#64748b;
}
.review-meta{ line-height:1.2; }
.review-user{ font-weight:700; }
.review-date{ font-size:.85rem; color: var(--text-2); }

.review-rating{ display:inline-flex; align-items:center; gap:.4rem; }
.review-rating .dot{ width:.5rem; height:.5rem; border-radius:999px; background: var(--accent); }

.review-body{ position:relative; }
.review-body.collapsed{ max-height: var(--review-collapsed); overflow:hidden; }
.review-fade{
  position:absolute; left:0; right:0; bottom:0; height:48px;
  background: linear-gradient(180deg, rgba(255,255,255,0), var(--surface));
  display:none; pointer-events:none;
}
.review-body.collapsible.collapsed .review-fade{ display:block; }

.review-text p{ margin: .25rem 0; }

.tags-inline{ display:flex; flex-wrap:wrap; gap:.35rem; margin-top:.5rem; }
.badge-xs{ font-size:.72rem; padding:.18rem .5rem; }

/* === Alias rápidos / utilidades === */
.bg-primary{ background-color: var(--primary) !important; color:#fff !important; }
.text-accent{ color: var(--accent) !important; }
.border-accent{ border-color: var(--accent) !important; }
.shadow-soft{ box-shadow: var(--shadow-soft); }
.rounded-blob{ border-radius: 24px; }
.min-w-0{ min-width: 0 !important; }

/* === Animaciones === */
@keyframes bounce { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }
@keyframes fadeIn { from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:translateY(0);} }
@keyframes shimmer { to{ transform: translateX(100%); } }
.animated-bounce{ animation: bounce 1s infinite; }
.animate-fade-in{ animation: fadeIn .35s ease; }

.cafe-card { transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; will-change: transform, box-shadow, filter; }
.cafe-card:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 8px 24px rgba(0,0,0,.08); }

@keyframes like-bounce { 0% { transform: scale(1); } 40% { transform: scale(1.25); } 100% { transform: scale(1); } }
.like-bounce { animation: like-bounce .28s ease; }

.cup-float {
  position: fixed; right: 16px; bottom: 100px; z-index: 40;
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border); backdrop-filter: blur(4px);
  padding: 10px 12px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.cup-emoji { font-size: 18px; transform-origin: bottom; }
.cup-emoji.fill { animation: cup-fill 900ms.ease forwards; }
@keyframes cup-fill { from { filter: saturate(.4) brightness(.95); transform: translateY(2px); } to { filter: saturate(1.05); transform: translateY(0); } }

.owner-card-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:.5rem; }
.owner-card-actions .btn{ min-width:120px; justify-content:center; }

a.cta{
  display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:.5rem !important;
  height:48px !important; padding:0 1.25rem !important; min-width:280px !important;
  border-radius:12px !important; font-weight:700 !important; letter-spacing:.01em; line-height:1 !important;
  color:#fff !important; border:1px solid transparent !important;
  background-color: var(--primary) !important; box-shadow: var(--shadow-soft) !important;
  transition: transform .15s ease, box-shadow .15s.ease, background-color .15s.ease; white-space:nowrap; text-align:center;
}
a.cta:hover{ transform: translateY(-1px); box-shadow: var(--shadow-hover) !important; background-color: var(--primary-600) !important; }
a.cta:active{ transform: translateY(0); }

.btn-primary,
.btn.btn-primary,
a.btn-primary, button.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary-600) !important;
  color:#fff !important;
}
a.cta.cta-blue, a.cta.cta-indigo { background-color: var(--primary) !important; }
a.cta.cta-blue:hover, a.cta.cta-indigo:hover { background-color: var(--primary-600) !important; }

.bg-blue-50,.bg-blue-100,.bg-blue-200,.bg-blue-300,.bg-blue-400,
.bg-blue-500,.bg-blue-600,.bg-blue-700,.bg-blue-800,.bg-blue-900,
.bg-indigo-500,.bg-indigo-600,.bg-indigo-700 { background-color: var(--primary) !important; }
.text-blue-500,.text-blue-600,.text-blue-700,.text-indigo-600,.text-indigo-700 { color: var(--primary) !important; }
.border-blue-500,.border-blue-600,.border-indigo-500,.border-indigo-600 { border-color: var(--primary) !important; }
.hover\:bg-blue-600:hover,.hover\:bg-blue-700:hover,.hover\:bg-indigo-600:hover,.hover\:bg-indigo-700:hover { background-color: var(--primary-600) !important; }
.focus\:ring-blue-500:focus,.focus\:ring-indigo-500:focus { box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 25%, transparent) !important; }

.leaflet-marker-icon.cup-marker { filter: drop-shadow(0 3px 6px rgba(0,0,0,.25)); }

.skeleton{ position:relative; overflow:hidden; background: var(--surface-2); border-radius: var(--radius-md); }
.skeleton::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-100%); animation: shimmer 1.15s infinite;
}

.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.chips-fade{ position: relative; }
.chips-fade::before,
.chips-fade::after{
  content:""; position:absolute; top:0; bottom:0; width:28px; pointer-events:none; z-index:5;
}
.chips-fade::before{ left:0; background: linear-gradient(90deg, var(--surface) 30%, transparent); border-top-left-radius: var(--radius-lg); }
.chips-fade::after{ right:0; background: linear-gradient(270deg, var(--surface) 30%, transparent); border-top-right-radius: var(--radius-lg); }

.swiper-container { overflow: hidden; max-width: 100vw; }
.swiper-wrapper { max-width: 100%; }
.swiper-slide { min-width: 0; }

.swiper-button-next, .swiper-button-prev{
  width:38px;height:38px;border-radius:999px;background:#fff;border:1px solid var(--border);
  box-shadow: var(--shadow-soft); backdrop-filter: blur(4px);
}
.swiper-button-next:after, .swiper-button-prev:after{ font-size:16px; color: var(--text-1); }
.swiper-pagination-bullet{ opacity:.6; background: var(--border); width: 8px; height: 8px; }
.swiper-pagination-bullet-active{ opacity:1; background: var(--primary); }

.card { outline: none; }
.card:focus-visible{ box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 25%, transparent); }

#cafes-map, #map{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 0;
}
.map-search{ position: relative; z-index: 2; margin-top: .75rem; }

.section-hero { width: 100%; background-size: cover; background-position: center; }
.section-hero::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25));
}
/* @media (prefers-color-scheme: dark){
  .section-hero::before{ background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.35)); }
}
*/
.rating-cups label{ transition: transform .12s ease, filter .12s ease; }
.rating-cups input:checked ~ label,
.rating-cups label:hover,
.rating-cups label:hover ~ label{ filter: saturate(1.15); transform: translateY(-1px) scale(1.02); }

.toast{
  position:fixed; top:1rem; right:1rem; z-index:2147485000;
  background: var(--primary); color:#fff; padding:.6rem .9rem;
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
}

.photo-thumb { min-width: 0; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }

.fav-card-img { width: 100%; height: 12rem; object-fit: cover; border-radius: 12px; }

.cafe-main-photo,
.cafe-hero,
.cafe-photo-lg {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  border-radius: 16px;
}
.cafe-main-photo img,
.cafe-hero img,
.cafe-photo-lg img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
}

/* === CAFÉ LISTA: FILTROS MOBILE Y MAPA === */

/* Contenedor de filtros móvil */
@media (max-width: 768px) {
  #filtrosMobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 70%;
    overflow-y: auto;
    z-index: 50;
    background-color: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 1rem;
    border-radius: 16px 16px 0 0;
  }

  #filtrosMobile.open {
    transform: translateY(0%);
  }

  .filtros-toggle-btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 60;
    background-color: var(--brand-500, #7a553c);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
  }

  .filtros-toggle-btn:hover {
    background-color: var(--brand-700, #593d2d);
  }
}

/* === FIXES FINAL PARA OVERFLOW === */

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

main, .page-cafe-list, #grid-cafes, .cafe-card, .swiper-slide, .swiper-container {
  max-width: 100%;
  overflow-x: hidden;
  min-width: 0;
}

#toggle-filtros {
  max-width: 90vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* === AJUSTE DE FONDO PARA SECCIÓN FINAL DE LISTA DE CAFÉS === */

/* Fix: primer tap en rating no se registraba */
#rating-cups label {
  pointer-events: auto;
  touch-action: manipulation;
}

#rating-cups {
  -webkit-user-select: none;
  user-select: none;
  overscroll-behavior: contain;
}

/* === FIX WIZARD TAGS RESPONSIVE — ROMA === */
#tag-steps .chip,
#tag-steps .chip span,
#tag-steps label > span {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
}

#tag-steps .chip {
  display: inline-flex !important;
  align-items: center;
}

/* === MODO OSCURO · CARDS ESPECIALES CAFÉ DETAIL === */

/* Precio promedio del capuccino */
.price-card{
  background: color-mix(in srgb, var(--surface) 90%, var(--accent) 10%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 18px;
  padding: .75rem 1rem;
  box-shadow: var(--shadow-soft);
}
.price-card-title{
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-1);
}
.price-card-amount{
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: .15rem;
}
.price-card-note{
  font-size: .75rem;
  color: var(--text-2);
  margin-top: .1rem;
}

/* Reseña destacada */
.best-review-card{
  background: color-mix(in srgb, var(--surface) 92%, var(--accent) 8%);
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}
.best-review-card-header{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: .25rem;
}
.best-review-card-meta{
  font-size: .8rem;
  color: var(--text-2);
  margin-bottom: .4rem;
}
.best-review-card-body{
  font-size: .92rem;
  color: var(--text-1);
}

/* Chips de tags sensoriales */
/* TAG CHIP — modo claro */
.tag-chip{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .8rem;
  border-radius: 9999px;
  font-size: .85rem;
  background: color-mix(in srgb, var(--surface) 82%, var(--primary-50) 18%);
  border: 1px solid color-mix(in srgb, var(--primary-100) 65%, transparent);
  color: var(--text-1);
  box-shadow: var(--shadow-soft);
}

.tag-chip--small{
  font-size: .8rem;
  padding: .3rem .65rem;
  opacity: .96;
}

/* TAG CHIP — modo oscuro */
/*@media (prefers-color-scheme: dark){
  .tag-chip{
    background: color-mix(in srgb, var(--surface) 88%, var(--primary-700) 12%);
    border-color: color-mix(in srgb, var(--primary-700) 40%, transparent);
    color: var(--text-1);
  }
}

*/
/* Fade del listado de reseñas compatible con modo oscuro */
.reviews-fade-gradient{
  background: linear-gradient(to top, var(--canvas) 0%, transparent);
}

/* FIX 1 — Textos que quedan demasiado oscuros en modo oscuro */
.dark .text-gray-600,
.dark .text-slate-600,
.dark .text-gray-700,
.dark .text-slate-700 {
  color: var(--text-2) !important;
}

.dark .text-gray-800,
.dark .text-slate-800,
.dark .text-gray-900 {
  color: var(--text-1) !important;
}

/* FIX 3 — fondo de tarjetas en modo oscuro */
.dark .surface,
.dark .card,
.dark .review-card {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}

/* ===========================================================
   FIX GLOBAL PARA TEXTO EN MODO OSCURO
   Sin romper Tailwind ni tu diseño existente
   =========================================================== */
/* @media (prefers-color-scheme: dark){

   Textos grisáceos (usados en subheaders, listas, reseñas, labels) 
  .text-gray-600,
  .text-gray-700,
  .text-gray-800,
  .text-gray-900,
  .text-slate-600,
  .text-slate-700,
  p.text-gray-600,
  span.text-gray-600 {
    color: var(--text-2) !important;
  }

  
  h1.text-gray-800,
  h2.text-gray-800,
  h3.text-gray-800,
  .text-gray-800 {
    color: var(--text-1) !important;
  }

  
  .text-xs.text-gray-600,
  .text-sm.text-gray-600 {
    color: color-mix(in srgb, var(--text-2) 85%, var(--text-1) 15%) !important;
  }

  
  a.text-gray-600,
  a.text-gray-700 {
    color: var(--primary) !important;
  }

}
*/
/* ===========================================================
   D — BARRA SUPERIOR MODERNA DEL DETALLE DEL CAFÉ
   =========================================================== */

/* Contenedor general */
.cafe-topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Ítems internos */
.cafe-topbar__item{
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .95rem;
  color: var(--text-1);
  white-space: nowrap;
}

/* Emojis alineados */
.cafe-topbar__item span.emoji{
  font-size: 1.15rem;
  line-height: 1;
}

/* Divider “|” */
.cafe-topbar__divider{
  opacity: .55;
  color: var(--text-2);
  font-weight: 300;
}

.review-highlight {
  border: 2px solid #22c55e;
  background: #ecfdf5;
  animation: reviewGlow 2.5s ease-out;
}

@keyframes reviewGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(34,197,94,0);
  }
}

.review-highlight-active {
  animation: reviewGlow 2.5s ease-out;
  outline: 3px solid var(--accent);
  background: rgba(255, 200, 120, 0.15);
  transition: all .6s ease;
}


/* Versión dark-mode optimizada */
/*@media (prefers-color-scheme: dark){
  .cafe-topbar{
    background: color-mix(in srgb, var(--surface-2) 75%, transparent);
    border-color: color-mix(in srgb, var(--border) 50%, transparent);
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
  }
  .cafe-topbar__item{
    color: var(--text-1);
  }
  .cafe-topbar__divider{
    color: var(--text-2);
  }
}
*/
/* ===========================================================
   FIX GLOBAL PARA TEXTO EN MODO OSCURO
   Sin romper Tailwind ni tu diseño existente
   =========================================================== */
/*@media (prefers-color-scheme: dark){

 
  .text-gray-600,
  .text-gray-700,
  .text-gray-800,
  .text-gray-900,
  .text-slate-600,
  .text-slate-700,
  p.text-gray-600,
  span.text-gray-600 {
    color: var(--text-2) !important;
  }

  
  h1.text-gray-800,
  h2.text-gray-800,
  h3.text-gray-800,
  .text-gray-800 {
    color: var(--text-1) !important;
  }

 
  .text-xs.text-gray-600,
  .text-sm.text-gray-600 {
    color: color-mix(in srgb, var(--text-2) 85%, var(--text-1) 15%) !important;
  }

  
  a.text-gray-600,
  a.text-gray-700 {
    color: var(--primary) !important;
  }

}
*/

/* =========================================================
   HOME · HERO GOTA
   ========================================================= */

.gota-home-hero {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto 32px;
  padding: 42px 44px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 24px;
}

.gota-home-hero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gota-home-hero__logo {
  width: 56px;
  height: 56px;
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FFFFFF;
  border-radius: 16px;
}

.gota-home-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gota-home-hero__name {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #172C6D;
}

.gota-home-hero__title {
  margin: 24px 0 0;

  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: #172C6D;
}

.gota-home-hero__subtitle {
  max-width: 620px;
  margin: 10px 0 0;

  font-size: 16px;
  line-height: 1.5;
  color: #6B7280;
}

.gota-home-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.gota-home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 0 20px;

  background: #172C6D;
  border: 1px solid #172C6D;
  border-radius: 14px;

  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 600;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background-color .15s ease;
}

.gota-home-hero__button:hover {
  background: #1E3A8A;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(23, 44, 109, .16);
}

@media (max-width: 640px) {

  .gota-home-hero {
    padding: 22px;
    margin-bottom: 24px;
    border-radius: 24px;
  }

  .gota-home-hero__logo {
    width: 52px;
    height: 52px;
  }

  .gota-home-hero__name {
    font-size: 32px;
  }

  .gota-home-hero__title {
    margin-top: 18px;
    font-size: 22px;
  }

  .gota-home-hero__subtitle {
    font-size: 15px;
  }

  .gota-home-hero__actions {
    margin-top: 18px;
  }

  .gota-home-hero__button {
    width: 100%;
  }
}

/* =========================================================
   HOME · ÚLTIMAS EXPERIENCIAS
   ========================================================= */

.gota-home-reviews {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto 40px;
  padding: 32px 0 38px;
  overflow: hidden;
}

.gota-home-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.gota-home-section-kicker {
  display: block;
  margin-bottom: 5px;

  color: #2563EB;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.gota-home-section-title {
  margin: 0;

  color: #172C6D;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.gota-home-section-subtitle {
  margin: 7px 0 0;

  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
}

.gota-reviews-swiper {
  position: relative;
  width: 100%;
  padding: 2px 2px 38px;
}

.gota-review-card {
  width: 320px !important;
  height: auto;

  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;

  box-shadow: 0 4px 16px rgba(23, 44, 109, .06);

  box-sizing: border-box;
}

.gota-review-card__cafe {
  display: flex;
  align-items: center;
  gap: 12px;

  color: inherit;
  text-decoration: none;
}

.gota-review-card__image,
.gota-review-card__image-placeholder {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;

  border-radius: 14px;
  overflow: hidden;
}

.gota-review-card__image {
  object-fit: cover;
}

.gota-review-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 13px;
  background: #EFF6FF;
}

.gota-review-card__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gota-review-card__cafe-info {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gota-review-card__name {
  color: #172C6D;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gota-review-card__location {
  color: #6B7280;
  font-size: 12px;
}

.gota-review-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  width: fit-content;
  margin-top: 16px;
  padding: 6px 10px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 13px;
  font-weight: 700;
}

.gota-review-card__rating img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.gota-review-card__comment {
  min-height: 44px;
  margin: 13px 0 16px;

  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.gota-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding-top: 12px;
  border-top: 1px solid #F1F5F9;

  color: #9CA3AF;
  font-size: 11px;
}

.gota-reviews-swiper .swiper-pagination-bullet-active {
  background: #172C6D;
}

.gota-reviews-swiper .swiper-button-next,
.gota-reviews-swiper .swiper-button-prev {
  color: #172C6D;
}

.gota-home-empty {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 20px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 18px;

  color: #6B7280;
  font-size: 14px;
}

.gota-home-empty img {
  width: 28px;
  height: 28px;
}

@media (max-width: 640px) {

  .gota-home-reviews {
    padding: 20px 0 28px;
    margin-bottom: 24px;
  }

  .gota-home-section-title {
    font-size: 22px;
  }

  .gota-review-card {
    width: 285px !important;
  }

  .gota-reviews-swiper .swiper-button-next,
  .gota-reviews-swiper .swiper-button-prev {
    display: none;
  }
}

/* =========================================================
   HOME · EXPLORÁ POR ZONA
   ========================================================= */

.gota-home-zones {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto 40px;
  padding: 32px 0;
}

.gota-home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  flex-shrink: 0;

  color: #172C6D !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition: gap .15s ease;
}

.gota-home-section-link:hover {
  gap: 9px;
}

.gota-home-zones__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gota-home-zone {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  min-height: 46px;
  padding: 8px 16px 8px 10px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;

  color: #172C6D !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);

  transition:
    border-color .15s ease,
    background-color .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.gota-home-zone__icon {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border-radius: 9px;

  color: #172C6D;

  transition: background-color .15s ease;
}

.gota-home-zone:hover {
  background: #F8FAFF;
  border-color: #BFDBFE;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(23, 44, 109, .07);
}

.gota-home-zone:hover .gota-home-zone__icon {
  background: #DBEAFE;
}

@media (max-width: 640px) {

  .gota-home-zones {
    padding: 20px 0;
    margin-bottom: 24px;
  }

  .gota-home-section-header {
    align-items: flex-start;
    gap: 16px;
  }

  .gota-home-section-link {
    margin-top: 22px;
  }

  .gota-home-zones__list {
    gap: 8px;
  }

  .gota-home-zone {
    min-height: 44px;
    padding: 7px 13px 7px 8px;
    font-size: 13px;
  }

  .gota-home-zone__icon {
    width: 29px;
    height: 29px;
  }
}

/* =========================================================
   HOME · TU MAPA CAFETERO
   ========================================================= */

.gota-home-my-map {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto 40px;
  padding: 36px;

  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 24px;
}

.gota-home-my-map__description {
  max-width: 470px;
  margin: 10px 0 0;

  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

.gota-home-my-map__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 22px;
  min-height: 44px;
  padding: 0 18px;

  background: #172C6D;
  border-radius: 13px;

  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition:
    gap .15s ease,
    background-color .15s ease,
    transform .15s ease;
}

.gota-home-my-map__button:hover {
  gap: 11px;
  background: #1E3A8A;
  transform: translateY(-1px);
}

.gota-home-my-map__states {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gota-home-map-state {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;

  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-home-map-state__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  font-size: 16px;
}

.gota-home-map-state__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.gota-home-map-state__icon--want {
  background: #EFF6FF;
}

.gota-home-map-state__icon--visited {
  background: #F3F4F6;
  color: #172C6D;
}

.gota-home-map-state__icon--return {
  background: #FFF1F2;
  color: #E11D48;
}

.gota-home-map-state h3 {
  margin: 0;

  color: #172C6D;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.gota-home-map-state p {
  margin: 3px 0 0;

  color: #6B7280;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 768px) {

  .gota-home-my-map {
    grid-template-columns: 1fr;
    gap: 28px;

    padding: 24px;
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {

  .gota-home-my-map {
    padding: 22px;
  }

  .gota-home-my-map__button {
    width: 100%;
    justify-content: center;
  }

  .gota-home-map-state {
    padding: 12px;
  }
}

/* =========================================================
   HOME · VISTOS RECIENTEMENTE
   ========================================================= */

.gota-home-recent {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto 24px;
  padding: 32px 0;
  overflow: hidden;
}

.gota-recent-swiper {
  position: relative;
  width: 100%;
  padding: 2px 2px 38px;
}

.gota-recent-swiper .swiper-slide {
  border-radius: 18px;
  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;

  box-shadow: 0 4px 16px rgba(23, 44, 109, .06);
}

.gota-recent-swiper .swiper-button-next,
.gota-recent-swiper .swiper-button-prev {
  color: #172C6D;
}

.gota-recent-swiper .swiper-pagination-bullet-active {
  background: #172C6D;
}

@media (max-width: 640px) {

  .gota-home-recent {
    padding: 20px 0;
    margin-bottom: 16px;
  }

  .gota-recent-swiper .swiper-button-next,
  .gota-recent-swiper .swiper-button-prev {
    display: none;
  }
}

/* =========================================================
   HOME · MAPA
   ========================================================= */

.gota-home-map {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px 0 16px;
}

.gota-home-map__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;

  margin-bottom: 14px;
}

.gota-home-map__input-wrap {
  min-width: 0;
  height: 46px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 0 14px;

  background: #FFFFFF;
  border: 1px solid #DCE3EC;
  border-radius: 13px;

  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.gota-home-map__input-wrap:focus-within {
  border-color: #93C5FD;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, .18);
}

.gota-home-map__input-wrap i {
  flex-shrink: 0;
  color: #94A3B8;
  font-size: 13px;
}

.gota-home-map__input {
  width: 100%;
  min-width: 0;

  padding: 0;

  background: transparent;
  border: 0;
  outline: 0;

  color: #172C6D;
  font: inherit;
  font-size: 14px;
}

.gota-home-map__input::placeholder {
  color: #9CA3AF;
}

.gota-home-map__button,
.gota-home-map__location-button {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 17px;

  border-radius: 13px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color .15s ease,
    border-color .15s ease,
    transform .15s ease;
}

.gota-home-map__button {
  background: #172C6D;
  border: 1px solid #172C6D;
  color: #FFFFFF;
}

.gota-home-map__button:hover {
  background: #1E3A8A;
  transform: translateY(-1px);
}

.gota-home-map__location-button {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #172C6D;
}

.gota-home-map__location-button:hover {
  background: #DBEAFE;
  border-color: #93C5FD;
  transform: translateY(-1px);
}

.gota-home-map__frame {
  width: 100%;

  padding: 5px;

  background: #FFFFFF;
  border: 1px solid #DCE3EC;
  border-radius: 20px;

  box-shadow: 0 5px 18px rgba(23, 44, 109, .06);

  overflow: hidden;
}

#home-map {
  width: 100%;
  height: 390px;

  border-radius: 15px;

  z-index: 0;
}

.gota-home-map__nearby {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;

  margin-top: 14px;
}

.gota-home-map__nearby:empty {
  display: none;
}

@media (max-width: 768px) {

  .gota-home-map__search {
    grid-template-columns: 1fr 1fr;
  }

  .gota-home-map__input-wrap {
    grid-column: 1 / -1;
  }

  .gota-home-map__nearby {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {

  .gota-home-map {
    padding: 20px 0;
    margin-bottom: 24px;
  }

  #home-map {
    height: 330px;
  }

  .gota-home-map__button,
  .gota-home-map__location-button {
    padding: 0 12px;
  }

  .gota-home-map__nearby {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   NAV · IDENTIDAD GOTA
   ========================================================= */

.gota-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #172C6D !important;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.gota-nav-brand__logo {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 11px;
}

.gota-nav-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Links principales */

.site-nav a:not(.gota-nav-brand) {
  transition:
    color .15s ease,
    background-color .15s ease;
}

.site-nav a:not(.gota-nav-brand):hover {
  color: #172C6D;
}

/* Acción de cerrar sesión */

.site-nav button[type="submit"] {
  transition:
    color .15s ease,
    background-color .15s ease;
}

@media (max-width: 640px) {

  .gota-nav-brand {
    font-size: 20px;
  }

  .gota-nav-brand__logo {
    width: 36px;
    height: 36px;
  }
}

/* =========================================================
   HOME · DESCUBRIMIENTO RÁPIDO
   ========================================================= */

.gota-home-discovery {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto 40px;
  padding: 32px 0;
}

.gota-home-discovery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gota-home-discovery-card {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;

  color: inherit !important;
  text-decoration: none;

  box-shadow: 0 3px 12px rgba(23, 44, 109, .05);

  transition:
    transform .15s ease,
    border-color .15s ease,
    box-shadow .15s ease,
    background-color .15s ease;
}

.gota-home-discovery-card:hover {
  background: #F8FAFF;
  border-color: #BFDBFE;
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(23, 44, 109, .08);
}

.gota-home-discovery-card__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 11px;

  background: #EFF6FF;
  border-radius: 13px;

  color: #172C6D;
  font-size: 17px;
}

.gota-home-discovery-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gota-home-discovery-card__content {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gota-home-discovery-card__content strong {
  color: #172C6D;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.gota-home-discovery-card__content > span {
  color: #6B7280;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 900px) {

  .gota-home-discovery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {

  .gota-home-discovery {
    padding: 20px 0;
    margin-bottom: 24px;
  }

  .gota-home-discovery__grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .gota-home-discovery-card {
    padding: 13px;
  }

  .gota-home-discovery-card__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* =========================================================
   CAFÉS · CABECERA Y BUSCADOR
   ========================================================= */

.gota-cafe-list-header {
  margin-bottom: 28px;
}

.gota-cafe-list-header__intro {
  margin-bottom: 22px;
}

.gota-cafe-list-header__title {
  margin: 5px 0 7px;

  color: #172C6D;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gota-cafe-list-header__description {
  max-width: 650px;
  margin: 0;

  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
}


/* Buscador */

.gota-cafe-list-search {
  width: 100%;
  max-width: 680px;

  display: flex;
  align-items: stretch;
  gap: 10px;
}

.gota-cafe-list-search__field {
  position: relative;
  flex: 1;
  min-width: 0;
}

.gota-cafe-list-search__icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);

  color: #94A3B8;
  font-size: 14px;

  pointer-events: none;
}

.gota-cafe-list-search__input {
  width: 100%;
  height: 46px;

  padding: 0 16px 0 50px !important;

  background: #FFFFFF;
  border: 1px solid #DCE3EC;
  border-radius: 13px;

  color: #172C6D;
  font-size: 14px;

  outline: none;

  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);

  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-list-search__input::placeholder {
  color: #94A3B8;
}

.gota-cafe-list-search__input:focus {
  border-color: #93B4E8;
  box-shadow: 0 0 0 3px rgba(191, 219, 254, .45);
}

.gota-cafe-list-search__button {
  height: 46px;
  flex: 0 0 auto;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #172C6D;
  border: 1px solid #172C6D;
  border-radius: 13px;

  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background-color .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-list-search__button:hover {
  background: #1E3A8A;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(23, 44, 109, .16);
}

@media (max-width: 640px) {

  .gota-cafe-list-header__title {
    font-size: 26px;
  }

  .gota-cafe-list-search {
    gap: 8px;
  }

  .gota-cafe-list-search__button {
    padding: 0 17px;
  }
}

/* =========================================================
   CAFÉS · PANEL DE FILTROS
   ========================================================= */

.gota-cafe-filters {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 18px;

  box-shadow: 0 4px 14px rgba(23, 44, 109, .05);
}

.gota-cafe-filters__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 18px;
  padding-bottom: 14px;

  border-bottom: 1px solid #EEF2F7;
}

.gota-cafe-filters__kicker {
  display: block;

  margin-bottom: 3px;

  color: #64748B;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gota-cafe-filters__title {
  margin: 0;

  color: #172C6D;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.gota-cafe-filters__close {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;

  color: #64748B;
  font-size: 22px;
  line-height: 1;

  cursor: pointer;
}

.gota-cafe-filters__close:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #172C6D;
}

.gota-cafe-filters__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 1023px) {

  .gota-cafe-filters {
    border-radius: 0 18px 18px 0;
    padding: 20px 18px;
  }
}

/* =========================================================
   CAFÉS · SELECTS DEL PANEL DE FILTROS
   ========================================================= */

.gota-cafe-filters__control {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gota-cafe-filters__label {
  color: #334155;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.gota-cafe-filters__select-wrap {
  position: relative;
}

.gota-cafe-filters__select-wrap > i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);

  color: #64748B;
  font-size: 13px;

  pointer-events: none;
}

.gota-cafe-filters__select {
  width: 100%;
  height: 42px;

  padding: 0 36px 0 38px;

  appearance: none;

  background:
    linear-gradient(45deg, transparent 50%, #64748B 50%) calc(100% - 17px) 18px / 5px 5px no-repeat,
    linear-gradient(135deg, #64748B 50%, transparent 50%) calc(100% - 12px) 18px / 5px 5px no-repeat,
    #FFFFFF;

  border: 1px solid #DCE3EC;
  border-radius: 11px;

  color: #172C6D;
  font-size: 13px;
  font-weight: 500;

  outline: none;

  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    background-color .15s ease;
}

.gota-cafe-filters__select:hover {
  border-color: #BFDBFE;
  background-color: #F8FAFF;
}

.gota-cafe-filters__select:focus {
  border-color: #93B4E8;
  box-shadow: 0 0 0 3px rgba(191, 219, 254, .4);
}

/* =========================================================
   CAFÉS · GRUPOS Y OPCIONES DE FILTROS
   ========================================================= */

.gota-cafe-filters__groups {
  display: flex;
  flex-direction: column;
  gap: 22px;

  margin: 0;
  padding: 0;

  border: 0;
}

.gota-cafe-filter-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.gota-cafe-filter-group__header {
  display: flex;
  align-items: center;
  gap: 9px;
}

.gota-cafe-filter-group__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 7px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 9px;

  color: #172C6D;
  font-size: 12px;
}

.gota-cafe-filter-group__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gota-cafe-filter-group__title {
  color: #172C6D;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.gota-cafe-filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gota-cafe-filter-option {
  position: relative;

  display: flex;
  align-items: center;
  gap: 9px;

  min-height: 34px;
  padding: 5px 7px;

  border-radius: 9px;

  cursor: pointer;

  transition: background-color .15s ease;
}

.gota-cafe-filter-option:hover {
  background: #F8FAFF;
}

.gota-cafe-filter-option > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gota-cafe-filter-option__check {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 5px;

  color: transparent;
  font-size: 9px;

  transition:
    background-color .15s ease,
    border-color .15s ease,
    color .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-filter-option > input:checked
  + .gota-cafe-filter-option__check {
  background: #172C6D;
  border-color: #172C6D;
  color: #FFFFFF;
}

.gota-cafe-filter-option > input:focus-visible
  + .gota-cafe-filter-option__check {
  box-shadow: 0 0 0 3px rgba(191, 219, 254, .55);
}

.gota-cafe-filter-option__label {
  color: #475569;
  font-size: 12.5px;
  line-height: 1.4;
}

/* =========================================================
   CAFÉS · ACCIONES DE FILTROS
   ========================================================= */

.gota-cafe-filters__submit {
  width: 100%;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 18px;

  background: #172C6D;
  border: 1px solid #172C6D;
  border-radius: 12px;

  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background-color .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-filters__submit:hover {
  background: #1E3A8A;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(23, 44, 109, .15);
}


/* Botón flotante · mobile */

.gota-cafe-filters-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1001;

  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 18px;

  background: #172C6D;
  border: 1px solid #172C6D;
  border-radius: 999px;

  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;

  box-shadow: 0 8px 24px rgba(23, 44, 109, .22);

  cursor: pointer;
}

.gota-cafe-filters-toggle i {
  font-size: 12px;
}

.gota-cafe-filters-toggle:hover {
  background: #1E3A8A;
}

/* =========================================================
   CAFÉS · ACCESO AL MAPA
   ========================================================= */

.gota-cafe-list-map-action {
  display: flex;
  justify-content: flex-end;

  margin-bottom: 18px;
}

.gota-cafe-list-map-link {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 16px;

  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;

  color: #172C6D;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 2px 8px rgba(23, 44, 109, .05);

  transition:
    background-color .15s ease,
    border-color .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-list-map-link i {
  font-size: 13px;
}

.gota-cafe-list-map-link:hover {
  background: #EFF6FF;
  border-color: #93C5FD;
  color: #172C6D;

  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(23, 44, 109, .10);
}

/* =========================================================
   CAFÉS · CARD BASE
   ========================================================= */

.gota-cafe-card {
  display: flex;
  flex-direction: column;

  min-width: 0;
  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;

  box-shadow: 0 4px 14px rgba(23, 44, 109, .05);

  transition:
    transform .15s ease,
    border-color .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-card:hover {
  transform: translateY(-2px);
  border-color: #BFDBFE;
  box-shadow: 0 8px 20px rgba(23, 44, 109, .09);
}

.gota-cafe-card__media {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #F1F5F9;
}

.gota-cafe-card__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

@media (max-width: 640px) {

  .gota-cafe-card__media {
    aspect-ratio: 16 / 10;
  }
}

/* =========================================================
   CAFÉS · CARD · CONTENIDO PRINCIPAL
   ========================================================= */

.gota-cafe-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 16px;
}

.gota-cafe-card__main {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.gota-cafe-card__heading {
  display: block;
  min-width: 0;

  color: inherit;
  text-decoration: none;
}

.gota-cafe-card__heading:hover .gota-cafe-card__title {
  color: #1E3A8A;
}

.gota-cafe-card__title {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;

  transition: color .15s ease;
}

.gota-cafe-card__location {
  margin: 4px 0 0;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.45;
}

.gota-cafe-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;

  min-height: 25px;
}

.gota-cafe-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: #172C6D;
  font-size: 13px;
  font-weight: 700;
}

.gota-cafe-card__rating img {
  width: 18px;
  height: 18px;

  object-fit: contain;
}

.gota-cafe-card__reviews {
  padding-left: 9px;

  border-left: 1px solid #E2E8F0;

  color: #94A3B8;
  font-size: 11.5px;
  line-height: 1.3;
}

/* =========================================================
   CAFÉS · CARD · ACCIONES
   ========================================================= */

.gota-cafe-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gota-cafe-card__price {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 10px;

  background: #F8FAFF;
  border: 1px solid #DBEAFE;
  border-radius: 10px;

  color: #475569;
  font-size: 12px;
  line-height: 1.35;
}

.gota-cafe-card__price img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.gota-cafe-card__price strong {
  color: #172C6D;
  font-weight: 700;
}

.gota-cafe-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gota-cafe-card__tag {
  display: inline-flex;
  align-items: center;

  min-height: 25px;
  padding: 4px 9px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #1E3A8A;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
}

.gota-cafe-card__footer {
  display: flex;
  justify-content: flex-end;

  padding-top: 2px;
}

.gota-cafe-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #172C6D;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;

  transition:
    color .15s ease,
    gap .15s ease;
}

.gota-cafe-card__link i {
  font-size: 10px;
}

.gota-cafe-card__link:hover {
  gap: 10px;
  color: #1E3A8A;
}

/* =========================================================
   CAFÉS · CONTROLES DE FILTROS SOLO MOBILE
   ========================================================= */

@media (min-width: 1024px) {
  .gota-cafe-filters__close,
  .gota-cafe-filters-toggle {
    display: none;
  }
}

.gota-cafe-list-search__button,
.gota-cafe-filters__submit {
  background: #172C6D !important;
  border-color: #172C6D !important;
  color: #FFFFFF !important;
}

.gota-cafe-list-search__button:hover,
.gota-cafe-filters__submit:hover {
  background: #1E3A8A !important;
  border-color: #1E3A8A !important;
  color: #FFFFFF !important;
}

/* =========================================================
   CAFÉ DETAIL · CONTENEDOR GENERAL
   ========================================================= */

.gota-cafe-detail {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px 48px;

  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 640px) {
  .gota-cafe-detail {
    padding: 0 14px 36px;
    gap: 24px;
  }
}

/* =========================================================
   CAFÉ DETAIL · HERO PRINCIPAL
   ========================================================= */

.gota-cafe-detail-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gota-cafe-detail-hero__main {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gota-cafe-detail-hero__title {
  margin: 0;

  color: #172C6D;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.gota-cafe-detail-hero__location {
  margin: 0;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #64748B;
  font-size: 14px;
  line-height: 1.4;
}

.gota-cafe-detail-hero__location i {
  color: #2563EB;
  font-size: 12px;
}

.gota-cafe-detail-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gota-cafe-detail-stat {
  min-width: 150px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 11px 13px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 13px;

  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-stat > img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.gota-cafe-detail-stat > i {
  width: 22px;

  color: #172C6D;
  font-size: 15px;
  text-align: center;
}

.gota-cafe-detail-stat > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.gota-cafe-detail-stat strong {
  color: #172C6D;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.gota-cafe-detail-stat span {
  color: #94A3B8;
  font-size: 10.5px;
  line-height: 1.25;
}

.gota-cafe-detail-hero__community {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;

  padding-top: 13px;

  border-top: 1px solid #EEF2F7;

  color: #64748B;
  font-size: 12px;
  line-height: 1.4;
}

.gota-cafe-detail-hero__community span {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .gota-cafe-detail-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gota-cafe-detail-stat {
    min-width: 0;
  }

  .gota-cafe-detail-stat:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   CAFÉ DETAIL · ESTADO EN MI MAPA
   ========================================================= */

.gota-cafe-detail-map-state {
  padding: 18px;

  background: #F8FAFF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
}

.gota-cafe-detail-map-state__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gota-cafe-detail-map-state__icon {
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 11px;
}

.gota-cafe-detail-map-state__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.gota-cafe-detail-map-state__title {
  margin: 0;

  color: #172C6D;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.gota-cafe-detail-map-state__description {
  margin: 4px 0 0;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.45;
}

.gota-cafe-detail-map-state__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;

  margin-top: 16px;
}

.gota-cafe-detail-map-state__options form {
  margin: 0;
}

.gota-cafe-detail-map-option {
  width: 100%;
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 12px;

  background: #FFFFFF;
  border: 1px solid #DCE3EC;
  border-radius: 12px;

  color: #475569;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 600;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease,
    color .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-detail-map-option:hover {
  border-color: #BFDBFE;
  color: #172C6D;
  box-shadow: 0 3px 10px rgba(23, 44, 109, .06);
}

.gota-cafe-detail-map-option--active {
  background: #172C6D;
  border-color: #172C6D;
  color: #FFFFFF;
}

.gota-cafe-detail-map-option--active:hover {
  background: #1E3A8A;
  border-color: #1E3A8A;
  color: #FFFFFF;
}

.gota-cafe-detail-map-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gota-cafe-detail-map-option__icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.gota-cafe-detail-map-option--active
.gota-cafe-detail-map-option__icon img {
  filter: brightness(0) invert(1);
}

.gota-cafe-detail-map-option__icon i {
  font-size: 13px;
}

.gota-cafe-detail-map-state__login {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 15px;

  color: #172C6D;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.gota-cafe-detail-map-state__login:hover {
  color: #1E3A8A;
}

@media (max-width: 640px) {
  .gota-cafe-detail-map-state {
    padding: 15px;
  }

  .gota-cafe-detail-map-state__options {
    grid-template-columns: 1fr;
  }

  .gota-cafe-detail-map-option {
    justify-content: flex-start;
  }
}

/* =========================================================
   CAFÉ DETAIL · COLECCIÓN
   ========================================================= */

.gota-cafe-detail-collection {
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;

  box-shadow: 0 3px 12px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-collection__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.gota-cafe-detail-collection__title {
  margin: 0;

  color: #172C6D;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.gota-cafe-detail-collection__description {
  margin: 4px 0 0;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.45;
}

.gota-cafe-detail-collection__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 16px;
}

.gota-cafe-detail-collection__options form {
  margin: 0;
}

.gota-cafe-detail-collection-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  min-height: 38px;
  padding: 8px 11px;

  background: #F8FAFF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #475569;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease,
    color .15s ease,
    transform .15s ease;
}

.gota-cafe-detail-collection-option i {
  color: #172C6D;
  font-size: 12px;
}

.gota-cafe-detail-collection-option:hover {
  transform: translateY(-1px);
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #172C6D;
}

.gota-cafe-detail-collection__saved {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 14px;
  padding: 8px 11px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 12px;
  font-weight: 600;
}

.gota-cafe-detail-collection__saved i {
  font-size: 12px;
}

@media (max-width: 640px) {
  .gota-cafe-detail-collection {
    padding: 15px;
  }

  .gota-cafe-detail-collection__options {
    gap: 7px;
  }
}

/* =========================================================
   CAFÉ DETAIL · NOTA PERSONAL
   ========================================================= */

.gota-cafe-detail-note {
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;

  box-shadow: 0 3px 12px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-note__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.gota-cafe-detail-note__title {
  margin: 0;

  color: #172C6D;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.gota-cafe-detail-note__description {
  margin: 4px 0 0;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.45;
}

.gota-cafe-detail-note__private {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  flex: 0 0 auto;

  padding: 6px 9px;

  background: #F8FAFF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 600;
}

.gota-cafe-detail-note__private i {
  color: #172C6D;
  font-size: 9px;
}

.gota-cafe-detail-note__saved {
  margin-top: 16px;
  padding: 14px;

  background: #F8FAFF;
  border: 1px solid #E2E8F0;
  border-radius: 13px;
}

.gota-cafe-detail-note__text {
  margin: 0;

  color: #475569;
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
}

.gota-cafe-detail-note__edit {
  margin-top: 10px;
  padding: 0;

  background: transparent;
  border: 0;

  color: #64748B;
  font-size: 11.5px;
  font-weight: 600;

  cursor: pointer;
}

.gota-cafe-detail-note__edit:hover {
  color: #172C6D;
}

.gota-cafe-detail-note__form {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin-top: 16px;
}

.gota-cafe-detail-note__form.hidden {
  display: none;
}

.gota-cafe-detail-note__textarea {
  width: 100%;
  min-height: 82px;
  max-height: 150px;

  padding: 12px 13px !important;

  background: #FFFFFF;
  border: 1px solid #DCE3EC;
  border-radius: 12px;

  color: #334155;
  font-size: 13px;
  line-height: 1.5;

  resize: vertical;
  outline: none;

  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-detail-note__textarea::placeholder {
  color: #94A3B8;
}

.gota-cafe-detail-note__textarea:focus {
  border-color: #93C5FD;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .10);
}

.gota-cafe-detail-note__form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gota-cafe-detail-note__hint {
  color: #94A3B8;
  font-size: 10.5px;
}

.gota-cafe-detail-note__save {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 36px;
  padding: 8px 12px;

  background: #172C6D;
  border: 1px solid #172C6D;
  border-radius: 10px;

  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease;
}

.gota-cafe-detail-note__save:hover {
  background: #1E3A8A;
  border-color: #1E3A8A;
}

@media (max-width: 640px) {
  .gota-cafe-detail-note {
    padding: 15px;
  }

  .gota-cafe-detail-note__header {
    flex-direction: column;
    gap: 10px;
  }

  .gota-cafe-detail-note__form-footer {
    align-items: flex-end;
  }
}

/* =========================================================
   CAFÉ DETAIL · SEGUNDA IMPRESIÓN
   ========================================================= */

.gota-cafe-detail-second-impression {
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;

  box-shadow: 0 3px 12px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-second-impression__title {
  margin: 0;

  color: #172C6D;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.gota-cafe-detail-second-impression__description {
  margin: 4px 0 0;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.45;
}

.gota-cafe-detail-second-impression__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;

  margin-top: 16px;
}

.gota-cafe-detail-second-impression__options form {
  margin: 0;
}

.gota-cafe-detail-second-impression-option {
  width: 100%;
  min-height: 84px;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 13px;

  background: #F8FAFF;
  border: 1px solid #DBEAFE;
  border-radius: 13px;

  color: #475569;
  text-align: left;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.gota-cafe-detail-second-impression-option:hover {
  transform: translateY(-1px);

  background: #EFF6FF;
  border-color: #BFDBFE;

  box-shadow: 0 4px 12px rgba(23, 44, 109, .06);
}

.gota-cafe-detail-second-impression-option > i {
  width: 18px;

  flex: 0 0 auto;

  margin-top: 2px;

  color: #172C6D;
  font-size: 14px;
  text-align: center;
}

.gota-cafe-detail-second-impression-option > img {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;

  margin-top: 1px;

  object-fit: contain;
}

.gota-cafe-detail-second-impression-option > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gota-cafe-detail-second-impression-option strong {
  color: #172C6D;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 700;
}

.gota-cafe-detail-second-impression-option small {
  color: #64748B;
  font-size: 10.5px;
  line-height: 1.4;
}

.gota-cafe-detail-second-impression__saved {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 14px;
  padding: 9px 11px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 12px;
  font-weight: 600;
}

.gota-cafe-detail-second-impression__saved i {
  font-size: 12px;
}

.gota-cafe-detail-second-impression__saved img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .gota-cafe-detail-second-impression__options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gota-cafe-detail-second-impression {
    padding: 15px;
  }
}

/* =========================================================
   CAFÉ DETAIL · RESUMEN + BREADCRUMB + ACCIONES
   ========================================================= */

.gota-cafe-detail-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;

  padding-top: 4px;
}

.gota-cafe-detail-summary__description {
  margin: 0;

  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.gota-cafe-detail-summary__one-liner {
  margin: 0;

  color: #172C6D;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  font-style: italic;
}

.gota-cafe-detail-breadcrumb {
  padding-top: 2px;
}

.gota-cafe-detail-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.gota-cafe-detail-breadcrumb li {
  color: #94A3B8;
  font-size: 11.5px;
  line-height: 1.4;
}

.gota-cafe-detail-breadcrumb a {
  color: #64748B;
  text-decoration: none;
}

.gota-cafe-detail-breadcrumb a:hover {
  color: #172C6D;
}

.gota-cafe-detail-breadcrumb li[aria-current="page"] {
  color: #172C6D;
  font-weight: 600;
}

.gota-cafe-detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;

  padding-top: 4px;
}

.gota-cafe-detail-hero-actions__primary,
.gota-cafe-detail-hero-actions__secondary {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 14px;

  border-radius: 11px;

  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 700;

  text-decoration: none;

  transition:
    background .15s ease,
    border-color .15s ease,
    color .15s ease,
    transform .15s ease;
}

.gota-cafe-detail-hero-actions__primary {
  background: #172C6D;
  border: 1px solid #172C6D;

  color: #FFFFFF;
}

.gota-cafe-detail-hero-actions__primary:hover {
  transform: translateY(-1px);

  background: #1E3A8A;
  border-color: #1E3A8A;

  color: #FFFFFF;
}

.gota-cafe-detail-hero-actions__primary img {
  width: 17px;
  height: 17px;

  object-fit: contain;

  filter: brightness(0) invert(1);
}

.gota-cafe-detail-hero-actions__secondary {
  background: #FFFFFF;
  border: 1px solid #DCE3EC;

  color: #475569;
}

.gota-cafe-detail-hero-actions__secondary:hover {
  transform: translateY(-1px);

  background: #F8FAFF;
  border-color: #BFDBFE;

  color: #172C6D;
}

.gota-cafe-detail-hero-actions__secondary i {
  font-size: 10px;
}

@media (max-width: 640px) {
  .gota-cafe-detail-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gota-cafe-detail-hero-actions__primary,
  .gota-cafe-detail-hero-actions__secondary {
    width: 100%;
  }
}

/* =========================================================
   CAFÉ DETAIL · ¿ESTE LUGAR VA CON VOS?
   ========================================================= */

.gota-cafe-detail-discovery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 20px;
}

.gota-cafe-detail-discovery__header {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gota-cafe-detail-discovery__title {
  margin: 0;
  color: #172C6D;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gota-cafe-detail-discovery__description {
  margin: 0;
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

/* Los módulos internos pasan a sentirse parte de una misma sección */
.gota-cafe-detail-discovery > section {
  margin-top: 0 !important;
}

.gota-cafe-detail-discovery .surface {
  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 16px !important;
  box-shadow: none !important;
}

@media (max-width: 640px) {
  .gota-cafe-detail-discovery {
    padding: 20px 16px;
    gap: 16px;
    border-radius: 16px;
  }
}

/* =========================================================
   CAFÉ DETAIL · RESEÑA DESTACADA
   ========================================================= */

.gota-cafe-detail-featured-review {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gota-cafe-detail-featured-review__card {
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-featured-review__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: #64748B;
  font-size: 12px;
}

.gota-cafe-detail-featured-review__meta strong {
  color: #172C6D;
  font-size: 13px;
}

.gota-cafe-detail-featured-review__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: #172C6D;
  font-weight: 700;
}

.gota-cafe-detail-featured-review__rating img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.gota-cafe-detail-featured-review__text {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .gota-cafe-detail-featured-review__card {
    padding: 16px;
  }

  .gota-cafe-detail-featured-review__rating {
    margin-left: 0;
  }
}

/* =========================================================
   CAFÉ DETAIL · HUELLAS
   ========================================================= */

.gota-cafe-detail-whisper {
  position: relative;
  width: 220px;
  min-height: 140px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;

  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-whisper__icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border-radius: 10px;
  color: #172C6D;
  font-size: 14px;
}

.gota-cafe-detail-whisper__text {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
}

.gota-cafe-detail-whisper__report {
  margin-top: auto;
}

.gota-cafe-detail-whisper__report button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #94A3B8;
  font-size: 10px;
  cursor: pointer;
}

.gota-cafe-detail-whisper__report button:hover {
  color: #64748B;
}

@media (max-width: 640px) {
  .gota-cafe-detail-whisper {
    width: 100%;
    min-height: 0;
  }
}

/* =========================================================
   CAFÉ DETAIL · BLOQUE HUELLAS
   ========================================================= */

.gota-cafe-detail-whispers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;

  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
}

.gota-cafe-detail-whispers__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.gota-cafe-detail-whispers__title {
  margin: 5px 0 0;
  color: #172C6D;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gota-cafe-detail-whispers__description {
  margin: 7px 0 0;
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

.gota-cafe-detail-whispers__count {
  flex-shrink: 0;
  padding: 6px 10px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .gota-cafe-detail-whispers {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .gota-cafe-detail-whispers__header {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================================
   CAFÉ DETAIL · INFORMACIÓN PRÁCTICA
   ========================================================= */

.gota-cafe-detail-info {
  display: flex;
  flex-direction: column;
  gap: 20px;

  padding: 28px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-info__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gota-cafe-detail-info__title {
  margin: 0;
  color: #172C6D;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gota-cafe-detail-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

@media (max-width: 640px) {
  .gota-cafe-detail-info {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .gota-cafe-detail-info__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CAFÉ DETAIL · INFORMACIÓN PRÁCTICA · ÍTEMS + ACCIONES
   ========================================================= */

.gota-cafe-detail-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gota-cafe-detail-info-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 10px;

  color: #172C6D;
  font-size: 14px;
}

.gota-cafe-detail-info-item > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gota-cafe-detail-info-item strong {
  color: #172C6D;
  font-size: 13px;
  font-weight: 700;
}

.gota-cafe-detail-info-item span,
.gota-cafe-detail-info-item a {
  color: #64748B;
  font-size: 13px;
  line-height: 1.45;
}

.gota-cafe-detail-info-item a:hover {
  color: #172C6D;
  text-decoration: underline;
}

.gota-cafe-detail-info-actions {
  grid-column: 1 / -1;

  display: flex;
  flex-direction: column;
  gap: 14px;

  padding-top: 18px;
  border-top: 1px solid #E5E7EB;
}

.gota-cafe-detail-info-actions__main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gota-cafe-detail-info-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 40px;
  padding: 10px 14px;

  background: #FFFFFF !important;
  border: 1px solid #BFDBFE !important;
  border-radius: 12px !important;

  color: #172C6D !important;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
}

.gota-cafe-detail-info-action:hover {
  background: #EFF6FF !important;
}

.gota-cafe-detail-info-action--primary {
  background: #172C6D !important;
  border-color: #172C6D !important;
  color: #FFFFFF !important;
}

.gota-cafe-detail-info-action--primary:hover {
  background: #1E3A8A !important;
}

.gota-cafe-detail-info-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  padding: 12px;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
}

.gota-cafe-detail-info-share.hidden {
  display: none;
}

.gota-cafe-detail-info-share__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 10px;
  background: #FFFFFF !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 9px !important;

  color: #475569 !important;
  font-size: 12px;
  font-weight: 600;
}

.gota-cafe-detail-info-share__item:hover {
  color: #172C6D !important;
  border-color: #BFDBFE !important;
}

.gota-cafe-detail-info-actions__secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.gota-cafe-detail-info-actions__secondary a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #64748B;
  font-size: 12px;
  font-weight: 500;
}

.gota-cafe-detail-info-actions__secondary a:hover {
  color: #172C6D;
}

@media (max-width: 640px) {
  .gota-cafe-detail-info-actions__main {
    flex-direction: column;
  }

  .gota-cafe-detail-info-action {
    width: 100%;
  }

  .gota-cafe-detail-info-actions__secondary {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================================
   CAFÉ DETAIL · UBICACIÓN
   ========================================================= */

.gota-cafe-detail-location {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 28px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-location__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.gota-cafe-detail-location__title {
  margin: 5px 0 0;
  color: #172C6D;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gota-cafe-detail-location__address {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;

  color: #64748B;
  font-size: 13px;
  line-height: 1.5;
}

.gota-cafe-detail-location__address i {
  color: #2563EB;
  font-size: 12px;
}

.gota-cafe-detail-location__toggle {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 40px;
  padding: 10px 14px;

  background: #EFF6FF !important;
  border: 1px solid #BFDBFE !important;
  border-radius: 12px !important;

  color: #172C6D !important;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
}

.gota-cafe-detail-location__toggle:hover {
  background: #DBEAFE !important;
}

.gota-cafe-detail-location__map-container {
  overflow: hidden;
  border-radius: 16px;
}

.gota-cafe-detail-location__map-container.hidden {
  display: none;
}

.gota-cafe-detail-location__map {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}

@media (max-width: 640px) {
  .gota-cafe-detail-location {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .gota-cafe-detail-location__header {
    flex-direction: column;
    gap: 14px;
  }

  .gota-cafe-detail-location__toggle {
    width: 100%;
  }

  .gota-cafe-detail-location__map {
    height: 300px;
  }
}

/* =========================================================
   CAFÉ DETAIL · SOBRE ESTE LUGAR
   ========================================================= */

.gota-cafe-detail-about {
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 24px 28px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-about__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gota-cafe-detail-about__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gota-cafe-detail-about__description {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.gota-cafe-detail-about__description--collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.gota-cafe-detail-about__toggle {
  align-self: flex-start;

  padding: 0;
  border: 0;
  background: transparent;

  color: #172C6D;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
}

.gota-cafe-detail-about__toggle:hover {
  text-decoration: underline;
}

.gota-cafe-detail-about__one-liner {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #EEF2F7;

  color: #64748B;
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 640px) {
  .gota-cafe-detail-about {
    padding: 20px 16px;
    border-radius: 16px;
  }
}

/* =========================================================
   CAFÉ DETAIL · FEATURES
   ========================================================= */

.gota-cafe-detail-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gota-cafe-detail-feature {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px 12px;

  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;

  color: #334155;
  font-size: 13px;
  line-height: 1.35;
}

.gota-cafe-detail-feature i {
  width: 18px;
  flex-shrink: 0;

  color: #172C6D;
  font-size: 13px;
  text-align: center;
}

.gota-cafe-detail-feature span {
  min-width: 0;
}

@media (max-width: 640px) {
  .gota-cafe-detail-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =========================================================
   CAFÉ DETAIL · DISCOVERY · LAYOUT
   ========================================================= */

.gota-cafe-detail-discovery__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.gota-cafe-detail-discovery__column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gota-cafe-detail-discovery-card {
  min-width: 0;
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
}

.gota-cafe-detail-discovery-card__title {
  margin: 0 0 14px;

  color: #172C6D;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

/* TAGS */

.gota-cafe-detail-tags {
  margin: 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  list-style: none;
}

.gota-cafe-detail-tag {
  display: inline-flex;
  align-items: center;

  padding: 7px 10px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #334155;
  font-size: 12px;
  line-height: 1.3;
}

.gota-cafe-detail-tags__empty {
  color: #94A3B8;
  font-size: 13px;
}

.gota-cafe-detail-tags-more {
  margin-top: 12px;
}

.gota-cafe-detail-tags-more summary {
  width: fit-content;

  color: #172C6D;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.gota-cafe-detail-tags--more {
  margin-top: 10px;
}

/* SENSORIAL */

.gota-cafe-detail-sensory__summary {
  margin: -6px 0 0;

  color: #64748B;
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

.gota-cafe-detail-sensory__meta {
  margin: 10px 0 0;

  color: #94A3B8;
  font-size: 11px;
  line-height: 1.4;
}

.gota-cafe-detail-sensory__chart {
  position: relative;
  width: 100%;
  height: 180px;
  margin-top: 12px;
}

.gota-cafe-detail-sensory__empty {
  margin: 0;

  color: #94A3B8;
  font-size: 13px;
}

/* MOBILE */

@media (max-width: 760px) {
  .gota-cafe-detail-discovery__layout {
    grid-template-columns: 1fr;
  }

  .gota-cafe-detail-discovery-card {
    padding: 16px;
  }

  .gota-cafe-detail-sensory__chart {
    height: 200px;
  }
}

/* =========================================================
   CAFÉ DETAIL · EXPERIENCIAS DE LA COMUNIDAD
   ========================================================= */

.gota-cafe-detail-reviews {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 28px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(23, 44, 109, .04);
}

.gota-cafe-detail-reviews__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.gota-cafe-detail-reviews__title {
  margin: 5px 0 0;
  color: #172C6D;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gota-cafe-detail-reviews__description {
  margin: 7px 0 0;
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

.gota-cafe-detail-reviews__count {
  flex-shrink: 0;

  padding: 6px 10px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 11px;
  font-weight: 600;
}

.gota-cafe-detail-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;

  margin-top: 2px;
}

.gota-cafe-detail-reviews__empty {
  grid-column: 1 / -1;

  margin: 0;
  padding: 18px;

  background: #F8FAFC;
  border: 1px solid #EEF2F7;
  border-radius: 14px;

  color: #94A3B8;
  font-size: 13px;
  text-align: center;
}

.gota-cafe-detail-reviews__toggle {
  align-self: flex-start;

  min-height: 38px;
  padding: 9px 13px;

  background: #EFF6FF !important;
  border: 1px solid #BFDBFE !important;
  border-radius: 11px !important;

  color: #172C6D !important;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.gota-cafe-detail-reviews__toggle:hover {
  background: #DBEAFE !important;
}

@media (max-width: 760px) {
  .gota-cafe-detail-reviews {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .gota-cafe-detail-reviews__header {
    flex-direction: column;
    gap: 10px;
  }

  .gota-cafe-detail-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CAFÉ DETAIL · REVIEW CARD
   ========================================================= */

.gota-review-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
}

.gota-review-card__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.gota-review-card__avatar {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #EFF6FF;

  color: #172C6D;
  font-size: 13px;
  font-weight: 700;
}

.gota-review-card__identity {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gota-review-card__user {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #172C6D;
  font-size: 13px;
}

.gota-review-card__date {
  color: #94A3B8;
  font-size: 11px;
}

.gota-review-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 6px 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;

  color: #172C6D;
  font-size: 12px;
}

.gota-review-card__rating img {
  width: 16px;
  height: 16px;
}

.gota-review-card__body {
  margin-top: 14px;
}

.gota-review-card__comment {
  margin: 0;

  color: #475569;
  font-size: 13px;
  line-height: 1.65;
}

.gota-review-card__plan {
  width: fit-content;

  margin-top: 12px;
  padding: 7px 10px;

  display: flex;
  align-items: center;
  gap: 5px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #475569;
  font-size: 11px;
}

.gota-review-card__plan strong {
  color: #172C6D;
}

.gota-review-card__tags {
  margin-top: 10px;

  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gota-review-card__tag {
  padding: 5px 8px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 999px;

  color: #64748B;
  font-size: 10.5px;
}

.gota-review-card__footer {
  margin-top: 14px;
  padding-top: 12px;

  display: flex;
  align-items: center;
  gap: 8px;

  border-top: 1px solid #EEF2F7;
}

.gota-review-card__like,
.gota-review-card__more {
  min-height: 32px;
  padding: 6px 9px;

  display: inline-flex;
  align-items: center;
  gap: 4px;

  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 9px !important;

  color: #64748B !important;
  font-size: 11px;
  font-weight: 600;

  cursor: pointer;
}

.gota-review-card__like--active {
  background: #EFF6FF !important;
  border-color: #BFDBFE !important;
  color: #172C6D !important;
}

.gota-review-card__more:hover,
.gota-review-card__like:hover {
  background: #F8FAFC !important;
}

.gota-review-card__report {
  margin-left: auto;

  color: #94A3B8;
  font-size: 10.5px;
  text-decoration: none;
}

.gota-review-card__report:hover {
  color: #64748B;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .gota-review-card {
    padding: 16px;
  }
}

/* =========================================================
   NAVBAR · VOLVER
   ========================================================= */

.gota-nav-back {
  align-items: center;
  gap: 7px;

  min-height: 36px;
  padding: 7px 10px;

  border-radius: 10px;

  color: #64748B !important;
  font-size: 12px;
  font-weight: 600;

  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.gota-nav-back i {
  font-size: 11px;
}

.gota-nav-back:hover {
  background: #EFF6FF;
  color: #172C6D !important;
}

/* =========================================================
   NAVBAR · DESKTOP
   ========================================================= */

.gota-nav-desktop {
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  width: 100%;
  margin-left: 18px;
}

.gota-nav-desktop__main,
.gota-nav-desktop__account {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gota-nav-link,
.gota-nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-height: 36px;
  padding: 7px 10px;

  border-radius: 10px;

  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.gota-nav-link {
  color: #475569 !important;
}

.gota-nav-link:hover {
  background: #EFF6FF;
  color: #172C6D !important;
}

.gota-nav-link i {
  font-size: 11px;
}

.gota-nav-link--map {
  color: #172C6D !important;
}

.gota-nav-link--muted {
  color: #94A3B8 !important;
}

.gota-nav-link--muted:hover {
  background: #F8FAFC;
  color: #64748B !important;
}

.gota-nav-action {
  border: 1px solid transparent;
}

.gota-nav-action--primary {
  background: #172C6D;
  border-color: #172C6D;
  color: #FFFFFF !important;
}

.gota-nav-action--primary:hover {
  background: #203983;
  border-color: #203983;
  color: #FFFFFF !important;
}

.gota-nav-action--secondary {
  background: #FFFFFF;
  border-color: #BFDBFE;
  color: #172C6D !important;
}

.gota-nav-action--secondary:hover {
  background: #EFF6FF;
  color: #172C6D !important;
}

@media (max-width: 1180px) {
  .gota-nav-desktop {
    gap: 10px;
    margin-left: 10px;
  }

  .gota-nav-desktop__main,
  .gota-nav-desktop__account {
    gap: 3px;
  }

  .gota-nav-link,
  .gota-nav-action {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 11px;
  }
}

/* =========================================================
   NAVBAR · MOBILE
   ========================================================= */

.gota-mobile-menu {
  background: #FFFFFF;
  color: #172C6D;
  overflow-y: auto;
}

.gota-mobile-menu__header {
  position: sticky;
  top: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 18px;

  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #E2E8F0;
  backdrop-filter: blur(10px);
}

.gota-mobile-menu__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #172C6D !important;
  font-size: 18px;
  font-weight: 700;
}

.gota-mobile-menu__brand img {
  width: 28px;
  height: 28px;
}

.gota-mobile-menu__close {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 11px;

  color: #64748B;
  cursor: pointer;
}

.gota-mobile-menu__close:hover {
  background: #EFF6FF;
  color: #172C6D;
}

.gota-mobile-menu__body {
  display: flex;
  flex-direction: column;

  min-height: calc(100vh - 71px);
  padding: 16px 18px 24px;
}

.gota-mobile-menu__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gota-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 46px;
  padding: 10px 12px;

  border-radius: 12px;

  color: #475569 !important;
  font-size: 14px;
  font-weight: 600;

  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.gota-mobile-menu__link i {
  width: 18px;

  color: #172C6D;
  font-size: 14px;
  text-align: center;
}

.gota-mobile-menu__link:hover {
  background: #EFF6FF;
  color: #172C6D !important;
}

.gota-mobile-menu__divider {
  height: 1px;
  margin: 14px 0;

  background: #E2E8F0;
}

.gota-mobile-menu__action {
  min-height: 44px;
  margin-top: 6px;
  padding: 10px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;

  color: #172C6D !important;
  font-size: 13px;
  font-weight: 700;
}

.gota-mobile-menu__action--primary {
  background: #172C6D;
  border-color: #172C6D;

  color: #FFFFFF !important;
}

.gota-mobile-menu__action:hover {
  background: #DBEAFE;
  color: #172C6D !important;
}

.gota-mobile-menu__action--primary:hover {
  background: #203983;
  border-color: #203983;

  color: #FFFFFF !important;
}

.gota-mobile-menu__footer {
  margin-top: auto;
  padding-top: 24px;
}

.gota-mobile-menu__logout {
  display: inline-flex;
  align-items: center;

  padding: 8px 2px;

  color: #94A3B8 !important;
  font-size: 12px;
  font-weight: 600;
}

.gota-mobile-menu__logout:hover {
  color: #64748B !important;
}

/* =========================================================
   NAVBAR · HEADER GENERAL
   ========================================================= */

.gota-site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid #E2E8F0 !important;
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.gota-site-header__inner {
  width: 100%;
  max-width: 1280px;
  min-height: 64px;

  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gota-site-header__menu {
  flex: 0 0 auto;

  width: 40px;
  height: 40px;
  padding: 0;

  align-items: center;
  justify-content: center;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 11px;

  color: #172C6D;

  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.gota-site-header__menu:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.gota-site-header__menu i {
  font-size: 17px;
}


/* Marca */

.gota-nav-brand {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #172C6D !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.gota-nav-brand__logo {
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 11px;
}

.gota-nav-brand__logo img {
  width: 22px;
  height: 22px;
}


/* Desktop */

@media (min-width: 1024px) {
  .gota-site-header__inner {
    min-height: 68px;
  }
}


/* Mobile */

@media (max-width: 1023px) {
  .gota-site-header__inner {
    min-height: 60px;
    padding: 0 14px;
  }

  .gota-nav-brand {
    font-size: 19px;
  }

  .gota-nav-brand__logo {
    width: 34px;
    height: 34px;
  }

  .gota-site-header__menu {
    display: inline-flex;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.gota-footer {
  margin-top: 48px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

.gota-footer__inner {
  width: 100%;
  max-width: 1152px;

  margin: 0 auto;
  padding: 28px 16px 22px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.gota-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gota-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  width: fit-content;

  color: #172C6D !important;
  font-size: 18px;
  font-weight: 700;
}

.gota-footer__logo-icon {
  width: 32px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
}

.gota-footer__logo-icon img {
  width: 20px;
  height: 20px;
}

.gota-footer__tagline {
  margin: 0;

  color: #64748B;
  font-size: 12px;
  line-height: 1.5;
}

.gota-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.gota-footer__links a {
  color: #64748B !important;
  font-size: 12px;
  font-weight: 600;
}

.gota-footer__links a:hover {
  color: #172C6D !important;
}

.gota-footer__bottom {
  width: 100%;
  max-width: 1152px;

  margin: 0 auto;
  padding: 14px 16px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid #EEF2F7;

  color: #94A3B8;
  font-size: 10.5px;
}

.gota-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.gota-footer__legal a {
  color: #94A3B8 !important;
}

.gota-footer__legal a:hover {
  color: #64748B !important;
}

@media (max-width: 640px) {
  .gota-footer {
    margin-top: 36px;
  }

  .gota-footer__inner {
    padding: 24px 16px 20px;

    flex-direction: column;
    gap: 22px;
  }

  .gota-footer__links {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .gota-footer__bottom {
    padding: 14px 16px 20px;

    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gota-footer__legal {
    justify-content: flex-start;
    gap: 12px;
  }
}

/* =========================================================
   CAFÉ DETAIL · HUELLAS · FORMULARIO
   ========================================================= */

.gota-cafe-detail-whispers-form {
  display: flex;
  flex-direction: column;
  gap: 14px;

  margin-bottom: 22px;
}

.gota-cafe-detail-whispers-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gota-cafe-detail-whispers-form__input {
  width: 100%;
  min-height: 44px;

  padding: 10px 12px;

  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 12px !important;

  color: #334155 !important;
  font-size: 13px;

  box-shadow: none !important;
}

.gota-cafe-detail-whispers-form__input::placeholder {
  color: #94A3B8;
}

.gota-cafe-detail-whispers-form__input:focus {
  outline: none !important;

  border-color: #93C5FD !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10) !important;
}

.gota-cafe-detail-whispers-form__hint {
  color: #94A3B8;
  font-size: 10.5px;
  line-height: 1.4;
}

.gota-cafe-detail-whispers-form__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gota-cafe-detail-whispers-form__suggestions span {
  display: inline-flex;
  align-items: center;

  padding: 6px 9px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 999px;

  color: #64748B;
  font-size: 11px;
  line-height: 1.2;
}

.gota-cafe-detail-whispers-form__submit {
  width: fit-content;
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 8px 12px;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;
  border-radius: 11px !important;

  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.gota-cafe-detail-whispers-form__submit:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

.gota-cafe-detail-whispers-form__submit i {
  font-size: 11px;
}

@media (max-width: 640px) {
  .gota-cafe-detail-whispers-form__submit {
    width: 100%;
  }
}

/* CAFÉ DETAIL · HUELLAS · ESTADO VACÍO */

.gota-cafe-detail-whispers__empty {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 14px 16px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;

  color: #94A3B8;
  font-size: 12px;
  line-height: 1.5;
}

.gota-cafe-detail-whispers__empty i {
  color: #172C6D;
  font-size: 13px;
}

/* =========================================================
   CAFÉ DETAIL · MODAL QR
   ========================================================= */

.gota-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 2147485000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}

.gota-qr-modal.hidden {
  display: none;
}

.gota-qr-modal__dialog {
  position: relative;

  width: 100%;
  max-width: 380px;

  padding: 26px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;

  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);

  text-align: center;
}

.gota-qr-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;

  color: #64748B;
  cursor: pointer;
}

.gota-qr-modal__close:hover {
  background: #EFF6FF;
  color: #172C6D;
}

.gota-qr-modal__icon {
  width: 46px;
  height: 46px;

  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;
}

.gota-qr-modal__icon img {
  width: 26px;
  height: 26px;
}

.gota-qr-modal__title {
  margin: 0;

  color: #172C6D;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

.gota-qr-modal__description {
  margin: 8px auto 18px;

  max-width: 300px;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.55;
}

.gota-qr-modal__image-wrap {
  width: 100%;

  display: flex;
  justify-content: center;

  margin-bottom: 18px;
}

.gota-qr-modal__image {
  width: 220px;
  max-width: 100%;
  height: auto;

  padding: 10px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;

  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.gota-qr-modal__download {
  width: 100%;
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 9px 12px;

  background: #172C6D !important;
  border: 1px solid #172C6D;
  border-radius: 12px;

  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;
}

.gota-qr-modal__download:hover {
  background: #203983 !important;
  color: #FFFFFF !important;
}

@media (max-width: 640px) {
  .gota-qr-modal {
    padding: 14px;
  }

  .gota-qr-modal__dialog {
    padding: 22px 18px;
    border-radius: 17px;
  }

  .gota-qr-modal__image {
    width: 200px;
  }
}

/* =========================================================
   MI MAPA CAFETERO · HEADER
   ========================================================= */

.gota-my-map-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  margin-bottom: 46px;
}

.gota-my-map-header__icon {
  width: 44px;
  height: 44px;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;

  color: #172C6D;
}

.gota-my-map-header__icon i {
  font-size: 17px;
}

.gota-my-map-header__content {
  min-width: 0;
}

.gota-my-map-header__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gota-my-map-header__title {
  margin: 0;

  color: #172C6D;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 800;
}

.gota-my-map-header__description {
  margin: 9px 0 0;

  color: #64748B;
  font-size: 14px;
  line-height: 1.55;
}

.gota-my-map-header__description strong {
  color: #172C6D;
  font-weight: 700;
}

@media (max-width: 640px) {
  .gota-my-map-header {
    gap: 12px;
    margin-bottom: 34px;
  }

  .gota-my-map-header__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .gota-my-map-header__title {
    font-size: 27px;
  }

  .gota-my-map-header__description {
    font-size: 13px;
  }
}

/* =========================================================
   MI MAPA CAFETERO · SECCIONES
   ========================================================= */

.gota-my-map-section {
  margin-bottom: 56px;
}

.gota-my-map-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 22px;
}

.gota-my-map-section__kicker {
  display: block;

  margin-bottom: 5px;

  color: #94A3B8;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gota-my-map-section__title {
  margin: 0;

  color: #172C6D;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 750;
}

.gota-my-map-section__count {
  min-width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 10px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .gota-my-map-section {
    margin-bottom: 42px;
  }

  .gota-my-map-section__header {
    align-items: center;
    margin-bottom: 18px;
  }

  .gota-my-map-section__title {
    font-size: 20px;
  }

  .gota-my-map-section__count {
    min-width: 32px;
    height: 32px;
  }
}

/* =========================================================
   MI MAPA CAFETERO · ESTADOS VACÍOS
   ========================================================= */

.gota-my-map-empty {
  display: flex;
  align-items: center;
  gap: 10px;

  min-height: 58px;

  padding: 14px 16px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.5;
}

.gota-my-map-empty i {
  flex: 0 0 auto;

  color: #172C6D;
  font-size: 14px;
}

/* =========================================================
   MI MAPA CAFETERO · CARD · MEDIA
   ========================================================= */

.gota-my-map-card {
  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.gota-my-map-card:hover {
  transform: translateY(-2px);

  border-color: #CBD5E1;

  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.gota-my-map-card__media {
  position: relative;

  display: block;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #F8FAFC;
}

.gota-my-map-card__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.gota-my-map-card__rating,
.gota-my-map-card__time {
  position: absolute;
  top: 10px;

  min-height: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 10px;

  backdrop-filter: blur(8px);

  color: #475569;

  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
}

.gota-my-map-card__rating {
  left: 10px;

  gap: 4px;

  padding: 5px 8px;
}

.gota-my-map-card__rating img {
  width: 17px;
  height: 17px;

  object-fit: contain;
}

.gota-my-map-card__rating strong {
  color: #172C6D;
  font-size: 12px;
  font-weight: 800;
}

.gota-my-map-card__rating span {
  color: #94A3B8;
  font-size: 10px;
  font-weight: 600;
}

.gota-my-map-card__time {
  right: 10px;

  padding: 5px 8px;

  font-size: 10.5px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .gota-my-map-card__media {
    aspect-ratio: 16 / 10;
  }
}

/* =========================================================
   MI MAPA CAFETERO · CARD · CONTENIDO + ESTADO
   ========================================================= */

.gota-my-map-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 16px;
}

.gota-my-map-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gota-my-map-card__title {
  margin: 0;

  color: #172C6D;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.gota-my-map-card__location {
  display: flex;
  align-items: center;
  gap: 5px;

  margin: 5px 0 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.4;
}

.gota-my-map-card__location i {
  color: #94A3B8;
  font-size: 10px;
}

.gota-my-map-card__status {
  flex: 0 0 auto;

  min-height: 30px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 5px 9px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.gota-my-map-card__status img {
  width: 15px;
  height: 15px;

  object-fit: contain;
}

.gota-my-map-card__status i {
  font-size: 10px;
}

@media (max-width: 640px) {
  .gota-my-map-card__body {
    padding: 14px;
  }

  .gota-my-map-card__title {
    font-size: 17px;
  }
}

/* =========================================================
   MI MAPA CAFETERO · CARD · NOTA + COLECCIÓN
   ========================================================= */

.gota-my-map-card__note {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  padding: 11px 12px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}

.gota-my-map-card__note i {
  margin-top: 2px;

  flex: 0 0 auto;

  color: #93A4C4;
  font-size: 10px;
}

.gota-my-map-card__note p {
  margin: 0;

  color: #475569;
  font-size: 11.5px;
  line-height: 1.5;
}

.gota-my-map-card__collection {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #64748B;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
}

.gota-my-map-card__collection i {
  color: #172C6D;
  font-size: 10px;
}

/* =========================================================
   MI MAPA CAFETERO · CARD · SEGUNDA IMPRESIÓN
   ========================================================= */

.gota-my-map-card__impression {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 9px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 999px;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 600;
}

.gota-my-map-card__impression i {
  color: #172C6D;
  font-size: 10px;
}

/* =========================================================
   MI MAPA CAFETERO · CARD · CTA
   ========================================================= */

.gota-my-map-card__cta {
  width: 100%;
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  padding: 9px 11px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 11px;

  color: #172C6D !important;
  font-size: 11.5px;
  font-weight: 700;

  transition:
    background .15s ease,
    border-color .15s ease;
}

.gota-my-map-card__cta:hover {
  background: #DBEAFE;
  border-color: #93C5FD;
  color: #172C6D !important;
}

.gota-my-map-card__cta i {
  font-size: 10px;
}

/* =========================================================
   MAPA DE CAFÉS · LAYOUT + HEADER
   ========================================================= */

.gota-map-page {
  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
  padding: 34px 20px 48px;
}

.gota-map-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  margin-bottom: 30px;
}

.gota-map-header__icon {
  width: 44px;
  height: 44px;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;

  color: #172C6D;
}

.gota-map-header__icon i {
  font-size: 17px;
}

.gota-map-header__content {
  min-width: 0;
}

.gota-map-header__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gota-map-header__title {
  margin: 0;

  color: #172C6D;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 800;
}

.gota-map-header__description {
  max-width: 620px;

  margin: 9px 0 0;

  color: #64748B;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .gota-map-page {
    padding: 28px 18px 40px;
  }

  .gota-map-header {
    gap: 12px;
    margin-bottom: 24px;
  }

  .gota-map-header__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .gota-map-header__title {
    font-size: 27px;
  }

  .gota-map-header__description {
    font-size: 13px;
  }
}

/* =========================================================
   MAPA DE CAFÉS · CONTROLES
   ========================================================= */

.gota-map-controls {
  margin-bottom: 26px;
}

.gota-map-search {
  max-width: 680px;

  display: flex;
  align-items: stretch;
  gap: 9px;
}

.gota-map-search__field {
  position: relative;

  flex: 1;
  min-width: 0;
}

.gota-map-search__field i {
  position: absolute;
  top: 50%;
  left: 13px;

  transform: translateY(-50%);

  color: #94A3B8;
  font-size: 12px;

  pointer-events: none;
}

.gota-map-search__field input {
  width: 100%;
  min-height: 44px;

  padding: 10px 12px 10px 36px !important;

  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 12px !important;

  color: #334155 !important;
  font-size: 12.5px;

  box-shadow: none !important;
}

.gota-map-search__field input::placeholder {
  color: #94A3B8;
}

.gota-map-search__field input:focus {
  outline: none !important;

  border-color: #93C5FD !important;

  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10) !important;
}

.gota-map-search__submit {
  min-width: 92px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;
  border-radius: 12px !important;

  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.gota-map-search__submit:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

.gota-map-search__error {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 7px;

  margin-top: 9px;

  color: #B91C1C;
  font-size: 11px;
  font-weight: 600;
}

.gota-map-search__error.hidden {
  display: none;
}

.gota-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin-top: 14px;
}

.gota-map-action {
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 8px 12px;

  border-radius: 11px;

  font-size: 11.5px;
  font-weight: 700;

  cursor: pointer;
}

.gota-map-action i {
  font-size: 11px;
}

.gota-map-action small {
  color: inherit;
  opacity: .65;
  font-size: 9.5px;
  font-weight: 700;
}

.gota-map-action--primary {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;

  color: #172C6D;
}

.gota-map-action--primary:hover {
  background: #DBEAFE;
}

.gota-map-action--secondary {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;

  color: #64748B;
}

.gota-map-action--secondary:hover {
  background: #F8FAFC;
  color: #172C6D;
}

@media (max-width: 640px) {
  .gota-map-search {
    flex-direction: column;
  }

  .gota-map-search__submit {
    width: 100%;
  }

  .gota-map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gota-map-action {
    width: 100%;
  }
}

/* =========================================================
   MAPA DE CAFÉS · FILTROS
   ========================================================= */

.gota-map-filters {
  margin-bottom: 26px;
}

.gota-map-filters__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 12px;
}

.gota-map-filters__kicker {
  display: block;

  margin-bottom: 4px;

  color: #94A3B8;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gota-map-filters__title {
  margin: 0;

  color: #172C6D;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 750;
}

.gota-map-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gota-map-filter {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  min-height: 34px;

  padding: 7px 10px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 999px;

  color: #64748B;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease,
    color .15s ease;
}

.gota-map-filter:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #172C6D;
}

.gota-map-filter input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.gota-map-filter i {
  color: #94A3B8;
  font-size: 10px;
}

.gota-map-filter img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.gota-map-filter:has(input:checked) {
  background: #EFF6FF;
  border-color: #93C5FD;
  color: #172C6D;
}

.gota-map-filter:has(input:checked) i {
  color: #172C6D;
}

@media (max-width: 640px) {
  .gota-map-filters {
    margin-bottom: 22px;
  }

  .gota-map-filters__title {
    font-size: 17px;
  }

  .gota-map-filters__list {
    gap: 7px;
  }

  .gota-map-filter {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 10.5px;
  }
}

/* =========================================================
   MAPA DE CAFÉS · EXPLORADOR
   ========================================================= */

.gota-map-explorer {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
}

.gota-map-results-panel,
.gota-map-canvas {
  min-width: 0;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.gota-map-results-panel {
  display: flex;
  flex-direction: column;

  overflow: hidden;
}

.gota-map-results-panel__header {
  padding: 16px 16px 13px;

  border-bottom: 1px solid #E2E8F0;
}

.gota-map-results-panel__kicker {
  display: block;

  margin-bottom: 4px;

  color: #94A3B8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gota-map-results-panel__title {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 750;
}

.gota-map-results-panel__list {
  height: 600px;

  overflow-y: auto;

  padding: 10px;
}

.gota-map-results-panel__list::-webkit-scrollbar {
  width: 7px;
}

.gota-map-results-panel__list::-webkit-scrollbar-track {
  background: transparent;
}

.gota-map-results-panel__list::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 999px;
}

.gota-map-canvas {
  overflow: hidden;
}

.gota-map-canvas__map {
  width: 100%;
  height: 100%;
  min-height: 654px;
}

@media (max-width: 1024px) {
  .gota-map-explorer {
    grid-template-columns: 1fr;
  }

  .gota-map-canvas {
    order: -1;
  }

  .gota-map-canvas__map {
    min-height: 500px;
  }

  .gota-map-results-panel__list {
    height: auto;
    max-height: 520px;
  }
}

@media (max-width: 640px) {
  .gota-map-explorer {
    gap: 14px;
  }

  .gota-map-results-panel,
  .gota-map-canvas {
    border-radius: 15px;
  }

  .gota-map-results-panel__header {
    padding: 14px;
  }

  .gota-map-results-panel__list {
    padding: 8px;
    max-height: 460px;
  }

  .gota-map-canvas__map {
    min-height: 420px;
  }
}

/* =========================================================
   MAPA DE CAFÉS · CARD DE RESULTADO
   ========================================================= */

.gota-map-result-card {
  margin-bottom: 8px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;

  transition:
    border-color .15s ease,
    background .15s ease;
}

.gota-map-result-card:last-child {
  margin-bottom: 0;
}

.gota-map-result-card:hover {
  background: #F8FAFC;
  border-color: #BFDBFE;
}

.gota-map-result-card__content {
  padding: 12px;
}

.gota-map-result-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gota-map-result-card__title {
  margin: 0;

  color: #172C6D;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 750;
}

.gota-map-result-card__address {
  display: flex;
  align-items: flex-start;
  gap: 5px;

  margin: 5px 0 0;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.45;
}

.gota-map-result-card__address i {
  flex: 0 0 auto;

  margin-top: 2px;

  color: #94A3B8;
  font-size: 9px;
}

.gota-map-result-card__icon {
  width: 23px;
  height: 23px;

  flex: 0 0 auto;

  object-fit: contain;
}

.gota-map-result-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 11px;

  color: #172C6D !important;
  font-size: 10.5px;
  font-weight: 700;
}

.gota-map-result-card__cta i {
  font-size: 9px;

  transition: transform .15s ease;
}

.gota-map-result-card__cta:hover {
  color: #203983 !important;
}

.gota-map-result-card__cta:hover i {
  transform: translateX(2px);
}

/* =========================================================
   MAPA DE CAFÉS · MARCADORES
   ========================================================= */

.gota-map-marker {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50%;

  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.20);
}

/* =========================================================
   MAPA DE CAFÉS · POPUP
   ========================================================= */

.gota-map-canvas .leaflet-popup-content-wrapper {
  padding: 0;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;

  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}

.gota-map-canvas .leaflet-popup-content {
  width: 220px !important;

  margin: 0 !important;
}

.gota-map-canvas .leaflet-popup-tip {
  background: #FFFFFF;
}

.gota-map-popup {
  padding: 13px;
}

.gota-map-popup__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gota-map-popup__heading img {
  width: 22px;
  height: 22px;

  flex: 0 0 auto;

  object-fit: contain;
}

.gota-map-popup__heading strong {
  color: #172C6D;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 750;
}

.gota-map-popup__address {
  display: flex;
  align-items: flex-start;
  gap: 5px;

  margin: 8px 0 0;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.45;
}

.gota-map-popup__address i {
  flex: 0 0 auto;

  margin-top: 2px;

  color: #94A3B8;
  font-size: 9px;
}

.gota-map-popup__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 11px;

  color: #172C6D !important;
  font-size: 10.5px;
  font-weight: 700;
}

.gota-map-popup__cta i {
  font-size: 9px;
}

/* =========================================================
   MI CUENTA
   ========================================================= */

.gota-account {
  width: min(100% - 32px, 620px);
  margin: 54px auto 70px;
}

.gota-account__header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 28px;
}

.gota-account__header-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;
  color: #172C6D;
}

.gota-account__kicker {
  display: block;
  margin-bottom: 4px;
  color: #64748B;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-account__title {
  margin: 0;
  color: #172C6D;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-account__description {
  margin: 7px 0 0;
  color: #64748B;
  font-size: 13px;
  line-height: 1.5;
}

.gota-account-card {
  padding: 18px;
  margin-bottom: 14px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.gota-account-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gota-account-card__label {
  color: #64748B;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gota-account-card__value {
  margin: 9px 0 0;
  color: #172C6D;
  font-size: 15px;
  font-weight: 700;
}

.gota-account-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.gota-account-status--verified {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
}

.gota-account-status--pending {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #A16207;
}

.gota-account-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: #172C6D !important;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .gota-account {
    width: min(100% - 28px, 620px);
    margin-top: 36px;
  }

  .gota-account__title {
    font-size: 27px;
  }
}

/* =========================================================
   MI CUENTA · FORM
   ========================================================= */

.gota-account-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.gota-account-form__input {
  width: 100%;
  min-height: 44px;

  padding: 10px 12px;

  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 12px !important;

  color: #334155 !important;
  font-size: 13px;

  box-shadow: none !important;
}

.gota-account-form__input:focus {
  outline: none !important;

  border-color: #93C5FD !important;

  box-shadow: 0 0 0 3px rgba(59, 130, 246, .10) !important;
}

.gota-account-form__submit {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 12px;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;
  border-radius: 11px !important;

  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.gota-account-form__submit:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

/* =========================================================
   MI CUENTA · ACCIONES
   ========================================================= */

.gota-account-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin-top: 20px;
}

.gota-account-action {
  display: flex;
  align-items: center;
  gap: 11px;

  padding: 13px 14px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;

  color: #172C6D !important;

  transition:
    background .15s ease,
    border-color .15s ease;
}

.gota-account-action:hover {
  background: #F8FAFC;
  border-color: #BFDBFE;
}

.gota-account-action__icon {
  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border-radius: 10px;

  color: #172C6D;
  font-size: 11px;
}

.gota-account-action__content {
  min-width: 0;

  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.gota-account-action__content strong {
  color: #172C6D;
  font-size: 12px;
  font-weight: 700;
}

.gota-account-action__content span {
  color: #94A3B8;
  font-size: 10.5px;
  line-height: 1.4;
}

.gota-account-action__arrow {
  flex: 0 0 auto;

  color: #94A3B8;
  font-size: 9px;
}

.gota-account-action--logout .gota-account-action__icon {
  background: #FEF2F2;
  color: #B91C1C;
}

.gota-account-action--logout:hover {
  background: #FFF7F7;
  border-color: #FECACA;
}

/* =========================================================
   CAMBIAR AVATAR
   ========================================================= */

.gota-avatar-page {
  width: min(100% - 32px, 560px);
  margin: 54px auto 70px;
}

.gota-avatar-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 26px;
}

.gota-avatar-header__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;

  color: #172C6D;
}

.gota-avatar-header__icon i {
  font-size: 17px;
}

.gota-avatar-header__kicker {
  display: block;
  margin-bottom: 4px;

  color: #64748B;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-avatar-header__title {
  margin: 0;

  color: #172C6D;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-avatar-header__description {
  margin: 7px 0 0;

  color: #64748B;
  font-size: 13px;
  line-height: 1.5;
}

/* AVATAR ACTUAL */

.gota-avatar-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  padding: 20px;
  margin-bottom: 14px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
}

.gota-avatar-current__label {
  color: #64748B;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-avatar-current__image {
  width: 112px;
  height: 112px;

  display: block;
  object-fit: cover;

  background: #FFFFFF;
  border: 4px solid #FFFFFF;
  border-radius: 50%;

  box-shadow: 0 4px 14px rgba(15, 23, 42, .10);
}

/* FORMULARIO */

.gota-avatar-card {
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;

  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.gota-avatar-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gota-avatar-form__fields p {
  display: flex;
  flex-direction: column;
  gap: 7px;

  margin: 0 0 12px;
}

.gota-avatar-form__fields p:last-child {
  margin-bottom: 0;
}

.gota-avatar-form__fields label {
  color: #64748B;
  font-size: 11px;
  font-weight: 700;
}

.gota-avatar-form__fields input[type="file"] {
  width: 100%;

  padding: 9px;

  background: #F8FAFC;
  border: 1px solid #DBEAFE;
  border-radius: 11px;

  color: #64748B;
  font-size: 11px;
}

.gota-avatar-form__fields input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 7px 10px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 8px;

  color: #172C6D;
  font-size: 10.5px;
  font-weight: 700;

  cursor: pointer;
}

.gota-avatar-form__fields a {
  color: #172C6D !important;
  font-size: 11px;
}

.gota-avatar-form__submit {
  width: 100%;
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 9px 12px;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;
  border-radius: 11px !important;

  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.gota-avatar-form__submit:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

@media (max-width: 640px) {
  .gota-avatar-page {
    width: min(100% - 28px, 560px);
    margin-top: 36px;
  }

  .gota-avatar-header {
    gap: 12px;
  }

  .gota-avatar-header__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .gota-avatar-header__title {
    font-size: 27px;
  }

  .gota-avatar-current__image {
    width: 96px;
    height: 96px;
  }
}

/* =========================================================
   PERFIL
   ========================================================= */

.gota-profile-page {
  width: min(100% - 32px, 620px);
  margin: 54px auto 70px;
}

/* HEADER */

.gota-profile-header {
  display: flex;
  align-items: center;
  gap: 17px;

  margin-bottom: 24px;
}

.gota-profile-header__avatar,
.gota-profile-header__avatar-placeholder {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;

  border-radius: 50%;
}

.gota-profile-header__avatar {
  display: block;
  object-fit: cover;

  background: #FFFFFF;
  border: 3px solid #FFFFFF;

  box-shadow:
    0 0 0 1px #BFDBFE,
    0 4px 14px rgba(15, 23, 42, .08);
}

.gota-profile-header__avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;

  color: #172C6D;
  font-size: 22px;
}

.gota-profile-header__content {
  min-width: 0;
}

.gota-profile-header__kicker {
  display: block;

  margin-bottom: 3px;

  color: #64748B;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-profile-header__title {
  margin: 0;

  color: #172C6D;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;

  overflow-wrap: anywhere;
}

.gota-profile-header__description {
  margin: 6px 0 0;

  color: #64748B;
  font-size: 12px;
  line-height: 1.5;
}

/* DATOS */

.gota-profile-card {
  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;

  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.gota-profile-field {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 15px 17px;

  border-bottom: 1px solid #F1F5F9;
}

.gota-profile-field:last-child {
  border-bottom: 0;
}

.gota-profile-field__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border-radius: 10px;

  color: #172C6D;
  font-size: 11px;
}

.gota-profile-field > div:last-child {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gota-profile-field__label {
  color: #94A3B8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gota-profile-field__value {
  color: #334155;
  font-size: 13px;
  font-weight: 700;

  overflow-wrap: anywhere;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-profile-page {
    width: min(100% - 28px, 620px);
    margin-top: 36px;
  }

  .gota-profile-header {
    gap: 14px;
  }

  .gota-profile-header__avatar,
  .gota-profile-header__avatar-placeholder {
    width: 62px;
    height: 62px;
  }

  .gota-profile-header__title {
    font-size: 25px;
  }

}

/* =========================================================
   AGREGAR CAFETERÍA
   ========================================================= */

.gota-create-cafe {
  width: min(100% - 32px, 1080px);
  margin: 54px auto 72px;
}

.gota-create-cafe__header {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  max-width: 720px;
  margin-bottom: 30px;
}

.gota-create-cafe__header-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;
}

.gota-create-cafe__header-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.gota-create-cafe__header-content {
  min-width: 0;
}

.gota-create-cafe__kicker {
  display: block;
  margin-bottom: 4px;

  color: #64748B;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-create-cafe__title {
  margin: 0;

  color: #172C6D;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-create-cafe__description {
  max-width: 580px;
  margin: 7px 0 0;

  color: #64748B;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 640px) {

  .gota-create-cafe {
    width: min(100% - 28px, 1080px);
    margin-top: 36px;
  }

  .gota-create-cafe__header {
    gap: 12px;
    margin-bottom: 24px;
  }

  .gota-create-cafe__header-icon {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .gota-create-cafe__header-icon img {
    width: 22px;
    height: 22px;
  }

  .gota-create-cafe__title {
    font-size: 27px;
  }

}

/* =========================================================
   AGREGAR CAFETERÍA · SECCIONES Y CAMPOS
   ========================================================= */

.gota-create-section {
  padding: 22px;
  margin-bottom: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  box-shadow: 0 2px 10px rgba(15, 23, 42, .035);
}

.gota-create-section__header {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  padding-bottom: 17px;
  margin-bottom: 19px;

  border-bottom: 1px solid #F1F5F9;
}

.gota-create-section__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border-radius: 10px;

  color: #172C6D;
  font-size: 11px;
}

.gota-create-section__title {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}

.gota-create-section__description {
  margin: 3px 0 0;

  color: #94A3B8;
  font-size: 11px;
  line-height: 1.45;
}


/* GRID */

.gota-create-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.gota-create-field {
  min-width: 0;
}

.gota-create-field--full {
  grid-column: 1 / -1;
}


/* LABELS */

.gota-create-field__label {
  display: block;

  margin-bottom: 6px;

  color: #475569;
  font-size: 11px;
  font-weight: 700;
}


/* INPUTS */

.gota-create-field__input {
  width: 100% !important;
  min-height: 44px;

  padding: 10px 12px !important;

  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 11px !important;

  color: #334155 !important;
  font-size: 12px !important;

  box-shadow: none !important;
}

.gota-create-field__input:focus {
  outline: none !important;

  border-color: #93C5FD !important;

  box-shadow:
    0 0 0 3px rgba(59, 130, 246, .10) !important;
}

.gota-create-field__input::placeholder {
  color: #CBD5E1;
}


/* TEXTAREA */

textarea.gota-create-field__textarea {
  min-height: 105px;

  resize: vertical;
}


/* SELECT */

select.gota-create-field__input {
  cursor: pointer;
}


/* AYUDAS */

.gota-create-field__help {
  margin: 5px 0 0;

  color: #94A3B8;
  font-size: 10px;
  line-height: 1.4;
}


/* ERRORES */

.gota-create-field__error {
  margin: 5px 0 0;

  color: #B91C1C;
  font-size: 10.5px;
  font-weight: 600;
}


/* MOBILE */

@media (max-width: 700px) {

  .gota-create-section {
    padding: 17px;
    border-radius: 16px;
  }

  .gota-create-fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gota-create-field--full {
    grid-column: auto;
  }

}

/* =========================================================
   AGREGAR CAFETERÍA · FOTOS
   ========================================================= */

.gota-create-photo-error {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 12px;
  margin-bottom: 16px;

  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;

  color: #B91C1C;
  font-size: 11px;
  font-weight: 600;
}

.gota-create-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gota-create-photo {
  min-width: 0;
}

.gota-create-photo__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  margin-bottom: 7px;

  color: #475569;
  font-size: 11px;
  font-weight: 700;
}

.gota-create-photo__required,
.gota-create-photo__optional {
  padding: 4px 7px;

  border-radius: 999px;

  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.gota-create-photo__required {
  background: #EFF6FF;
  color: #172C6D;
}

.gota-create-photo__optional {
  background: #F8FAFC;
  color: #94A3B8;
}


/* ÁREA DE CARGA */

.gota-create-photo__upload {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 3;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #F8FAFC;
  border: 1.5px dashed #BFDBFE;
  border-radius: 13px;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease;
}

.gota-create-photo__upload:hover {
  background: #EFF6FF;
  border-color: #93C5FD;
}

.gota-create-photo__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 16px;

  text-align: center;
}

.gota-create-photo__upload-icon {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 8px;

  background: #EFF6FF;
  border-radius: 10px;

  color: #172C6D;
  font-size: 13px;
}

.gota-create-photo__placeholder strong {
  color: #172C6D;
  font-size: 11px;
  font-weight: 700;
}

.gota-create-photo__placeholder > span {
  max-width: 180px;
  margin-top: 4px;

  color: #94A3B8;
  font-size: 9.5px;
  line-height: 1.4;
}


/* PREVIEW */

.gota-create-photo__preview {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* TÍTULO DE FOTO */

.gota-create-photo__title {
  margin-top: 9px;
}

.gota-create-photo__title label {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9.5px;
  font-weight: 700;
}


/* MOBILE */

@media (max-width: 800px) {

  .gota-create-photos {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gota-create-photo__upload {
    aspect-ratio: 16 / 9;
  }

}

/* =========================================================
   AGREGAR CAFETERÍA · CARACTERÍSTICAS
   ========================================================= */

.gota-create-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gota-create-feature {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  min-height: 36px;
  padding: 7px 11px;

  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #475569;

  cursor: pointer;
  user-select: none;

  transition:
    background .15s ease,
    border-color .15s ease,
    color .15s ease;
}

.gota-create-feature:hover {
  background: #F8FAFC;
  border-color: #BFDBFE;
}

.gota-create-feature input[type="checkbox"] {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.gota-create-feature__check {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 50%;

  color: transparent;
  font-size: 7px;

  transition:
    background .15s ease,
    border-color .15s ease,
    color .15s ease;
}

.gota-create-feature__label {
  font-size: 10.5px;
  font-weight: 600;
}


/* SELECCIONADO */

.gota-create-feature:has(input:checked) {
  background: #EFF6FF;
  border-color: #93C5FD;

  color: #172C6D;
}

.gota-create-feature:has(input:checked)
.gota-create-feature__check {
  background: #172C6D;
  border-color: #172C6D;

  color: #FFFFFF;
}


/* ACCESIBILIDAD */

.gota-create-feature:has(input:focus-visible) {
  outline: 3px solid rgba(59, 130, 246, .12);
  outline-offset: 2px;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-create-features {
    gap: 7px;
  }

  .gota-create-feature {
    min-height: 34px;
    padding: 6px 10px;
  }

}

/* =========================================================
   AGREGAR CAFETERÍA · UBICACIÓN Y GUARDAR
   ========================================================= */

.gota-create-location-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  padding: 10px 12px;
  margin-bottom: 17px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 10px;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.45;
}

.gota-create-location-note i {
  margin-top: 2px;
  color: #172C6D;
}


/* MAPA */

.gota-create-map-section {
  overflow: hidden;

  margin-bottom: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  box-shadow: 0 2px 10px rgba(15, 23, 42, .035);
}

.gota-create-map-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 17px 20px;

  border-bottom: 1px solid #F1F5F9;
}

.gota-create-map-section__kicker {
  display: block;
  margin-bottom: 3px;

  color: #94A3B8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-create-map-section__title {
  margin: 0;

  color: #172C6D;
  font-size: 14px;
  font-weight: 800;
}


/* BOTÓN MOSTRAR MAPA */

.gota-create-map-toggle {
  display: none;

  align-items: center;
  justify-content: center;
  gap: 7px;

  min-height: 36px;
  padding: 7px 11px;

  background: #EFF6FF !important;
  border: 1px solid #BFDBFE !important;
  border-radius: 10px !important;

  color: #172C6D !important;
  font-size: 10.5px;
  font-weight: 700;

  cursor: pointer;
}


/* CTA FINAL */

.gota-create-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 18px 20px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
}

.gota-create-submit__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gota-create-submit__text strong {
  color: #172C6D;
  font-size: 12px;
  font-weight: 800;
}

.gota-create-submit__text span {
  color: #64748B;
  font-size: 10.5px;
}


/* BOTÓN GUARDAR */

.gota-create-submit__button {
  min-height: 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 9px 15px;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;
  border-radius: 11px !important;

  color: #FFFFFF !important;
  font-size: 11.5px;
  font-weight: 700;

  cursor: pointer;
}

.gota-create-submit__button:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

.gota-create-submit__button img {
  width: 20px;
  height: 20px;

  object-fit: contain;

  /* El asset es oscuro y el botón también: lo llevamos a blanco */
  filter: brightness(0) invert(1);
}

.gota-create-submit__button > i {
  font-size: 9px;
}


/* MOBILE */

@media (max-width: 767px) {

  .gota-create-map-section {
    border-radius: 16px;
  }

  .gota-create-map-section__header {
    align-items: flex-start;
    padding: 15px 16px;
  }

  .gota-create-map-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .gota-create-submit {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;

    padding: 16px;
  }

  .gota-create-submit__button {
    width: 100%;
  }

}

/* =========================================================
   EDITAR CAFETERÍA
   ========================================================= */

/* MENSAJES */

.gota-edit-cafe-messages {
  margin-bottom: 18px;
}

.gota-edit-cafe-message {
  padding: 10px 12px;
  margin-bottom: 8px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;

  color: #475569;
  font-size: 11px;
  line-height: 1.45;
}

.gota-edit-cafe-message--error {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #B91C1C;
}

.gota-edit-cafe-message--success {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #15803D;
}


/* FOTOS */

.gota-edit-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gota-edit-photo {
  min-width: 0;
}

.gota-edit-photo__preview {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 13px;
}

.gota-edit-photo__preview img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.gota-edit-photo__empty {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: #94A3B8;
}

.gota-edit-photo__empty i {
  color: #BFDBFE;
  font-size: 24px;
}

.gota-edit-photo__empty span {
  font-size: 10px;
  font-weight: 600;
}

.gota-edit-photo__hidden-preview {
  display: none !important;
}


/* ELIMINAR */

.gota-edit-photo__delete {
  min-height: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-top: 8px;
  padding: 5px 9px;

  background: #FEF2F2 !important;
  border: 1px solid #FECACA !important;
  border-radius: 8px !important;

  color: #B91C1C !important;
  font-size: 9.5px;
  font-weight: 700;

  cursor: pointer;
}

.gota-edit-photo__delete:hover {
  background: #FEE2E2 !important;
}


/* CAMBIAR FOTO */

.gota-edit-photo__change {
  display: block;

  margin: 11px 0 5px;

  color: #64748B;
  font-size: 9.5px;
  font-weight: 700;
}

.gota-edit-photo__input {
  width: 100%;

  padding: 7px;

  background: #F8FAFC !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 10px !important;

  color: #64748B;
  font-size: 9.5px;
}

.gota-edit-photo__input::file-selector-button {
  margin-right: 8px;
  padding: 6px 8px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 7px;

  color: #172C6D;
  font-size: 9.5px;
  font-weight: 700;

  cursor: pointer;
}


/* MOBILE */

@media (max-width: 800px) {

  .gota-edit-photos {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gota-edit-photo__preview {
    aspect-ratio: 16 / 9;
  }

}

/* =========================================================
   CREAR RESEÑA
   ========================================================= */

.gota-review-create {
  width: min(100% - 32px, 820px);
  margin: 46px auto 80px;
}


/* VOLVER */

.gota-review-create__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 22px;

  color: #64748B !important;
  font-size: 10.5px;
  font-weight: 700;
}

.gota-review-create__back:hover {
  color: #172C6D !important;
}

.gota-review-create__back i {
  font-size: 9px;
}


/* HEADER */

.gota-review-create__header {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  margin-bottom: 26px;
}

.gota-review-create__header-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;
}

.gota-review-create__header-icon img {
  width: 25px;
  height: 25px;

  object-fit: contain;
}

.gota-review-create__header-content {
  min-width: 0;
}

.gota-review-create__kicker {
  display: block;

  margin-bottom: 4px;

  color: #64748B;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-review-create__title {
  margin: 0;

  color: #172C6D;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-review-create__description {
  max-width: 650px;

  margin: 7px 0 0;

  color: #64748B;
  font-size: 12px;
  line-height: 1.55;
}

.gota-review-create__description strong {
  color: #475569;
  font-weight: 700;
}


/* =========================================================
   PROGRESO
   ========================================================= */

.gota-review-progress {
  display: flex;
  align-items: center;

  padding: 14px 17px;
  margin-bottom: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
}

.gota-review-progress__step {
  display: flex;
  align-items: center;
  gap: 9px;

  min-width: 0;

  opacity: .45;

  transition: opacity .2s ease;
}

.gota-review-progress__step > span {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #F1F5F9;
  border-radius: 50%;

  color: #64748B;
  font-size: 9px;
  font-weight: 800;
}

.gota-review-progress__step > div {
  display: flex;
  flex-direction: column;
}

.gota-review-progress__step strong {
  color: #475569;
  font-size: 10.5px;
  font-weight: 700;
}

.gota-review-progress__step small {
  margin-top: 1px;

  color: #94A3B8;
  font-size: 8.5px;
}

.gota-review-progress__step--active {
  opacity: 1;
}

.gota-review-progress__step--active > span {
  background: #172C6D;
  color: #FFFFFF;
}

.gota-review-progress__step--active strong {
  color: #172C6D;
}

.gota-review-progress__step--done {
  opacity: .75;
}

.gota-review-progress__step--done > span {
  background: #DBEAFE;
  color: #172C6D;
}

.gota-review-progress__line {
  height: 1px;
  flex: 1;

  margin: 0 15px;

  background: #E2E8F0;
}


/* =========================================================
   ERRORES
   ========================================================= */

.gota-review-error-summary {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  padding: 11px 13px;
  margin-bottom: 16px;

  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 11px;

  color: #B91C1C;
  font-size: 10.5px;
  line-height: 1.45;
}

.gota-review-field-error {
  margin: 7px 0 0;

  color: #B91C1C;
  font-size: 10px;
  font-weight: 600;
}


/* =========================================================
   PASOS
   ========================================================= */

.gota-review-step {
  padding: 23px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  box-shadow: 0 2px 10px rgba(15, 23, 42, .035);
}

.gota-review-step__heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding-bottom: 19px;
  margin-bottom: 4px;

  border-bottom: 1px solid #F1F5F9;
}

.gota-review-step__number {
  min-width: 31px;

  color: #93C5FD;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.gota-review-step__title {
  margin: 0;

  color: #172C6D;
  font-size: 18px;
  font-weight: 800;
}

.gota-review-step__description {
  margin: 4px 0 0;

  color: #94A3B8;
  font-size: 10.5px;
  line-height: 1.45;
}


/* =========================================================
   BLOQUES
   ========================================================= */

.gota-review-block {
  padding: 21px 0;

  border-bottom: 1px solid #F1F5F9;
}

.gota-review-block--compact {
  border-bottom: 0;
}

.gota-review-block__heading {
  margin-bottom: 13px;
}

.gota-review-block__title {
  margin: 0;

  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.gota-review-block__help {
  margin: 4px 0 0;

  color: #94A3B8;
  font-size: 10px;
  line-height: 1.45;
}

.gota-review-title-with-badge {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.gota-review-optional {
  padding: 3px 7px;

  background: #F8FAFC;
  border-radius: 999px;

  color: #94A3B8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}


/* =========================================================
   RATING
   ========================================================= */

.gota-review-rating {
  display: flex;
  gap: 8px;
}

.gota-review-rating__input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.gota-review-rating__cup {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease,
    transform .15s ease,
    opacity .15s ease;
}

.gota-review-rating__cup:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
  transform: translateY(-1px);
}

.gota-review-rating__cup img {
  width: 27px;
  height: 27px;

  object-fit: contain;

  opacity: .25;
  filter: grayscale(1);

  transition:
    opacity .15s ease,
    filter .15s ease;
}

.gota-review-rating__cup.active {
  background: #EFF6FF;
  border-color: #93C5FD;
}

.gota-review-rating__cup.active img {
  opacity: 1;
  filter: none;
}

.gota-review-rating__cup.dim img {
  opacity: .2;
}

.gota-review-rating__feedback {
  min-height: 17px;

  margin: 8px 0 0;

  color: #64748B;
  font-size: 10px;
  font-style: italic;
}

@keyframes gotaReviewCupPop {

  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.13);
  }

  100% {
    transform: scale(1);
  }

}

.gota-review-rating__cup--pop {
  animation: gotaReviewCupPop .22s ease;
}


/* =========================================================
   PLANES
   ========================================================= */

.gota-review-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gota-review-plan {
  position: relative;

  display: flex;
  align-items: center;
  gap: 9px;

  min-height: 45px;
  padding: 10px 11px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 11px;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease;
}

.gota-review-plan:hover {
  background: #F8FAFC;
  border-color: #BFDBFE;
}

.gota-review-plan input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.gota-review-plan__radio {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 50%;

  color: transparent;
  font-size: 7px;
}

.gota-review-plan__label {
  color: #475569;
  font-size: 10.5px;
  font-weight: 600;
}

.gota-review-plan:has(input:checked) {
  background: #EFF6FF;
  border-color: #93C5FD;
}

.gota-review-plan:has(input:checked)
.gota-review-plan__radio {
  background: #172C6D;
  border-color: #172C6D;
  color: #FFFFFF;
}

.gota-review-plan:has(input:checked)
.gota-review-plan__label {
  color: #172C6D;
}


/* =========================================================
   COMENTARIO
   ========================================================= */

.gota-review-comment-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 6px;

  color: #94A3B8;
  font-size: 9px;
}

.gota-review-textarea {
  width: 100% !important;
  min-height: 125px;

  padding: 11px 12px !important;

  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 11px !important;

  color: #334155 !important;
  font-size: 11.5px !important;
  line-height: 1.55;

  resize: vertical;

  box-shadow: none !important;
}

.gota-review-textarea:focus {
  outline: none !important;

  border-color: #93C5FD !important;

  box-shadow:
    0 0 0 3px rgba(59, 130, 246, .10) !important;
}

.gota-review-textarea::placeholder {
  color: #CBD5E1;
}


/* =========================================================
   PRECIO
   ========================================================= */

.gota-review-price {
  position: relative;

  max-width: 240px;
}

.gota-review-price__symbol {
  position: absolute;
  top: 50%;
  left: 12px;

  transform: translateY(-50%);

  color: #64748B;
  font-size: 12px;
  font-weight: 700;
}

.gota-review-price__input {
  width: 100% !important;
  min-height: 43px;

  padding: 9px 11px 9px 27px !important;

  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 11px !important;

  color: #334155 !important;
  font-size: 11.5px !important;

  box-shadow: none !important;
}

.gota-review-price__input:focus {
  outline: none !important;
  border-color: #93C5FD !important;

  box-shadow:
    0 0 0 3px rgba(59, 130, 246, .10) !important;
}


/* =========================================================
   TOP TAGS
   ========================================================= */

.gota-review-popular {
  padding: 16px;
  margin: 20px 0 16px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 13px;
}

.gota-review-popular__kicker {
  display: block;

  margin-bottom: 9px;

  color: #64748B;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-review-popular__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gota-review-popular-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  min-height: 30px;
  padding: 5px 9px;

  background: #FFFFFF !important;
  border: 1px solid #BFDBFE !important;
  border-radius: 999px !important;

  color: #475569 !important;
  font-size: 9.5px;
  font-weight: 600;

  cursor: pointer;
}

.gota-review-popular-tag small {
  color: #94A3B8;
  font-size: 8px;
}

.gota-review-popular-tag--active {
  background: #172C6D !important;
  border-color: #172C6D !important;
  color: #FFFFFF !important;
}

.gota-review-popular-tag--active small {
  color: #DBEAFE;
}

@keyframes gotaReviewTagPop {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }

}

.gota-review-popular-tag--pop {
  animation: gotaReviewTagPop .18s ease;
}


/* =========================================================
   TODAS LAS ETIQUETAS
   ========================================================= */

.gota-review-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;

  margin-top: 18px;
}

.gota-review-tag {
  position: relative;

  display: flex;
  align-items: center;
  gap: 8px;

  min-height: 42px;
  padding: 9px 10px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;

  cursor: pointer;

  transition:
    background .15s ease,
    border-color .15s ease;
}

.gota-review-tag:hover {
  background: #F8FAFC;
  border-color: #BFDBFE;
}

.gota-review-tag input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.gota-review-tag__check {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 5px;

  color: transparent;
  font-size: 7px;
}

.gota-review-tag__label {
  color: #475569;
  font-size: 10px;
  font-weight: 600;
}

.gota-review-tag:has(input:checked) {
  background: #EFF6FF;
  border-color: #93C5FD;
}

.gota-review-tag:has(input:checked)
.gota-review-tag__check {
  background: #172C6D;
  border-color: #172C6D;
  color: #FFFFFF;
}

.gota-review-tag:has(input:checked)
.gota-review-tag__label {
  color: #172C6D;
}


/* =========================================================
   ACCIONES
   ========================================================= */

.gota-review-step__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;

  padding-top: 22px;
  margin-top: 4px;

  border-top: 1px solid #F1F5F9;
}

.gota-review-step__actions--end {
  justify-content: flex-end;
}

.gota-review-primary-button,
.gota-review-secondary-button {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 9px 14px;

  border-radius: 10px !important;

  font-size: 10.5px;
  font-weight: 700;

  cursor: pointer;
}

.gota-review-primary-button {
  background: #172C6D !important;
  border: 1px solid #172C6D !important;

  color: #FFFFFF !important;
}

.gota-review-primary-button:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

.gota-review-primary-button:disabled {
  opacity: .7;
  cursor: wait;
}

.gota-review-primary-button img {
  width: 19px;
  height: 19px;

  object-fit: contain;

  filter: brightness(0) invert(1);
}

.gota-review-secondary-button {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;

  color: #64748B !important;
}

.gota-review-secondary-button:hover {
  background: #F8FAFC !important;
  border-color: #BFDBFE !important;

  color: #172C6D !important;
}


/* LOADING */

.gota-review-submit-spinner {
  width: 13px;
  height: 13px;

  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #FFFFFF;
  border-radius: 50%;

  animation: gotaReviewSpin .65s linear infinite;
}

@keyframes gotaReviewSpin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   BORRADOR
   ========================================================= */

.gota-review-draft-status {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 5px;

  padding: 6px 9px;

  background: #172C6D;
  border-radius: 999px;

  color: #FFFFFF;
  font-size: 8.5px;
  font-weight: 700;

  opacity: 0;
  transform: translateY(5px);

  pointer-events: none;

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.gota-review-draft-status--visible {
  opacity: 1;
  transform: translateY(0);
}


/* FEEDBACK CAMBIO DE PASO */

.gota-review-step-feedback {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 2000;

  padding: 7px 11px;

  background: #172C6D;
  border-radius: 999px;

  color: #FFFFFF;
  font-size: 9.5px;
  font-weight: 700;

  opacity: 0;
  transform: translate(-50%, -5px);

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.gota-review-step-feedback--visible {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .gota-review-create {
    width: min(100% - 28px, 820px);
    margin-top: 30px;
  }

  .gota-review-create__back {
    margin-bottom: 18px;
  }

  .gota-review-create__header {
    gap: 12px;
  }

  .gota-review-create__header-icon {
    width: 41px;
    height: 41px;

    border-radius: 12px;
  }

  .gota-review-create__header-icon img {
    width: 22px;
    height: 22px;
  }

  .gota-review-create__title {
    font-size: 27px;
  }


  /* PROGRESO */

  .gota-review-progress {
    padding: 12px;
  }

  .gota-review-progress__step small {
    display: none;
  }

  .gota-review-progress__step strong {
    font-size: 9.5px;
  }

  .gota-review-progress__line {
    margin: 0 9px;
  }


  /* CARD */

  .gota-review-step {
    padding: 17px;

    border-radius: 16px;
  }


  /* RATING */

  .gota-review-rating {
    gap: 6px;
  }

  .gota-review-rating__cup {
    width: 43px;
    height: 43px;
  }

  .gota-review-rating__cup img {
    width: 25px;
    height: 25px;
  }


  /* PLANES */

  .gota-review-plans {
    grid-template-columns: 1fr;
  }


  /* TAGS */

  .gota-review-tags {
    grid-template-columns: 1fr;
  }


  /* ACCIONES */

  .gota-review-step__actions {
    flex-direction: column-reverse;
  }

  .gota-review-step__actions--end {
    flex-direction: column;
  }

  .gota-review-primary-button,
  .gota-review-secondary-button {
    width: 100%;
  }

}

/* =========================================================
   AUTH · LOGIN
   ========================================================= */

.gota-auth-page {
  width: min(100% - 32px, 460px);
  margin: 54px auto 72px;
}

.gota-auth-card {
  padding: 26px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;

  box-shadow: 0 4px 18px rgba(15, 23, 42, .05);
}


/* HEADER */

.gota-auth-header {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 24px;

  text-align: center;
}

.gota-auth-header__icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 13px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-auth-header__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.gota-auth-header__kicker {
  margin-bottom: 4px;

  color: #64748B;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-auth-header__title {
  margin: 0;

  color: #172C6D;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-auth-header__description {
  max-width: 360px;

  margin: 8px 0 0;

  color: #64748B;
  font-size: 11px;
  line-height: 1.5;
}


/* GOOGLE */

.gota-auth-google {
  width: 100%;
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 9px 12px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 11px;

  color: #334155 !important;
  font-size: 11px;
  font-weight: 700;

  transition:
    background .15s ease,
    border-color .15s ease;
}

.gota-auth-google:hover {
  background: #F8FAFC;
  border-color: #BFDBFE;
}

.gota-auth-google i {
  color: #EA4335;
  font-size: 14px;
}


/* DIVISOR */

.gota-auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 18px 0;
}

.gota-auth-divider > span {
  height: 1px;
  flex: 1;

  background: #E2E8F0;
}

.gota-auth-divider small {
  color: #94A3B8;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* FORM */

.gota-auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gota-auth-field {
  min-width: 0;
}

.gota-auth-field__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gota-auth-field__label {
  display: block;

  margin-bottom: 6px;

  color: #475569;
  font-size: 10.5px;
  font-weight: 700;
}

.gota-auth-field__forgot {
  margin-bottom: 6px;

  color: #64748B !important;
  font-size: 9px;
  font-weight: 700;
}

.gota-auth-field__forgot:hover {
  color: #172C6D !important;
}

.gota-auth-field__input {
  width: 100% !important;
  min-height: 44px;

  padding: 10px 12px !important;

  background: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 11px !important;

  color: #334155 !important;
  font-size: 11.5px !important;

  box-shadow: none !important;
}

.gota-auth-field__input:focus {
  outline: none !important;

  border-color: #93C5FD !important;

  box-shadow:
    0 0 0 3px rgba(59, 130, 246, .10) !important;
}

.gota-auth-field__input::placeholder {
  color: #CBD5E1;
}


/* SUBMIT */

.gota-auth-submit {
  width: 100%;
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 2px;
  padding: 9px 13px;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;
  border-radius: 11px !important;

  color: #FFFFFF !important;
  font-size: 11.5px;
  font-weight: 700;

  cursor: pointer;
}

.gota-auth-submit:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

.gota-auth-submit i {
  font-size: 9px;
}


/* FOOTER */

.gota-auth-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;

  padding-top: 18px;
  margin-top: 19px;

  border-top: 1px solid #F1F5F9;

  color: #94A3B8;
  font-size: 9.5px;
}

.gota-auth-footer a {
  color: #172C6D !important;
  font-weight: 700;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-auth-page {
    width: min(100% - 28px, 460px);
    margin-top: 34px;
  }

  .gota-auth-card {
    padding: 21px 17px;
    border-radius: 17px;
  }

  .gota-auth-header__title {
    font-size: 25px;
  }

}

/* =========================================================
   AUTH · ERRORES Y AYUDAS
   ========================================================= */

.gota-auth-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  padding: 10px 12px;
  margin-bottom: 16px;

  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;

  color: #B91C1C;
  font-size: 9.5px;
  line-height: 1.45;
}

.gota-auth-error p {
  margin: 0;
}

.gota-auth-field__error {
  margin-top: 5px;

  color: #B91C1C;
  font-size: 9px;
  line-height: 1.4;
}

.gota-auth-field__error p {
  margin: 0;
}

.gota-auth-field__help {
  margin-top: 6px;

  color: #94A3B8;
  font-size: 8.5px;
  line-height: 1.45;
}

.gota-auth-field__help ul {
  margin: 4px 0 0;
  padding-left: 16px;
}

.gota-auth-field__help li {
  margin: 2px 0;
}

.gota-auth-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gota-auth-footer a i {
  font-size: 8px;
}

/* =========================================================
   SOBRE GOTA
   ========================================================= */

.gota-about {
  width: min(100% - 32px, 840px);
  margin: 52px auto 80px;
}


/* HERO */

.gota-about__hero {
  max-width: 690px;
  margin-bottom: 40px;
}

.gota-about__icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-about__icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.gota-about__kicker {
  display: block;

  margin-bottom: 6px;

  color: #64748B;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-about__title {
  margin: 0;

  color: #172C6D;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
}

.gota-about__lead {
  max-width: 650px;

  margin: 12px 0 0;

  color: #64748B;
  font-size: 13px;
  line-height: 1.65;
}


/* SECCIONES */

.gota-about__section {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;

  padding: 26px 0;

  border-top: 1px solid #E2E8F0;
}

.gota-about__section-number {
  padding-top: 3px;

  color: #93C5FD;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.gota-about__section-content {
  max-width: 690px;
}

.gota-about__section-content h2 {
  margin: 0 0 9px;

  color: #172C6D;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.gota-about__section-content p {
  margin: 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.7;
}

.gota-about__section-content p + p {
  margin-top: 9px;
}


/* BLOQUE MAPA */

.gota-about__highlight {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;

  padding: 22px;
  margin: 10px 0 12px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 17px;
}

.gota-about__highlight-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;

  color: #172C6D;
  font-size: 13px;
}

.gota-about__highlight-kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-about__highlight h2 {
  max-width: 650px;

  margin: 0;

  color: #172C6D;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
}

.gota-about__highlight p {
  max-width: 620px;

  margin: 8px 0 0;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.6;
}

.gota-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 15px;
  padding: 8px 12px;

  background: #172C6D !important;
  border: 1px solid #172C6D;
  border-radius: 9px;

  color: #FFFFFF !important;
  font-size: 9.5px;
  font-weight: 700;
}

.gota-about__cta:hover {
  background: #203983 !important;
}

.gota-about__cta i {
  font-size: 8px;
}


/* CONTACTO */

.gota-about__contact {
  padding: 22px;
  margin-top: 12px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 17px;
}

.gota-about__contact-kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-about__contact h2 {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  font-weight: 800;
}

.gota-about__contact > p {
  max-width: 620px;

  margin: 7px 0 0;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.6;
}

.gota-about__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 15px;
}

.gota-about__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  min-height: 35px;
  padding: 7px 10px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 9px;

  color: #475569 !important;
  font-size: 9.5px;
  font-weight: 700;
}

.gota-about__contact-link:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;

  color: #172C6D !important;
}

.gota-about__contact-link i {
  color: #172C6D;
  font-size: 11px;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-about {
    width: min(100% - 28px, 840px);
    margin-top: 34px;
  }

  .gota-about__hero {
    margin-bottom: 30px;
  }

  .gota-about__title {
    font-size: 29px;
  }

  .gota-about__lead {
    font-size: 12px;
  }

  .gota-about__section {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;

    padding: 22px 0;
  }

  .gota-about__highlight {
    grid-template-columns: 1fr;
    gap: 11px;

    padding: 17px;
  }

  .gota-about__contact {
    padding: 17px;
  }

  .gota-about__contact-links {
    flex-direction: column;
  }

  .gota-about__contact-link {
    width: 100%;
  }

}

/* =========================================================
   CONTACTO
   ========================================================= */

.gota-contact {
  width: min(100% - 32px, 880px);
  margin: 52px auto 80px;
}


/* HEADER */

.gota-contact__header {
  max-width: 610px;
  margin-bottom: 28px;
}

.gota-contact__icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-contact__icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.gota-contact__kicker {
  display: block;

  margin-bottom: 6px;

  color: #64748B;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gota-contact__title {
  margin: 0;

  color: #172C6D;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
}

.gota-contact__description {
  margin: 11px 0 0;

  color: #64748B;
  font-size: 12.5px;
  line-height: 1.65;
}


/* LAYOUT */

.gota-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(230px, .85fr);
  gap: 16px;
  align-items: start;
}


/* FORM CARD */

.gota-contact__card {
  padding: 22px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 17px;
}

.gota-contact__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gota-contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gota-contact__field label {
  color: #334155;
  font-size: 9.5px;
  font-weight: 700;
}

.gota-contact__field input,
.gota-contact__field textarea {
  width: 100%;

  padding: 10px 11px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 9px !important;
  outline: none !important;

  color: #172C6D !important;
  font-size: 10.5px !important;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.gota-contact__field textarea {
  min-height: 130px;
  resize: vertical;
}

.gota-contact__field input::placeholder,
.gota-contact__field textarea::placeholder {
  color: #94A3B8;
}

.gota-contact__field input:focus,
.gota-contact__field textarea:focus {
  border-color: #93C5FD !important;
  box-shadow: 0 0 0 3px rgba(191, 219, 254, .4) !important;
}


/* SUBMIT */

.gota-contact__submit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 39px;
  margin-top: 2px;
  padding: 9px 14px;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;
  border-radius: 9px !important;

  color: #FFFFFF !important;
  font-size: 10px !important;
  font-weight: 700 !important;

  cursor: pointer;

  transition: background .2s ease;
}

.gota-contact__submit:hover {
  background: #203983 !important;
}

.gota-contact__submit i {
  font-size: 8px;
}


/* SUCCESS */

.gota-contact__success {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;

  margin-top: 18px;
  padding: 13px;

  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 11px;
}

.gota-contact__success-icon {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #DCFCE7;
  border-radius: 9px;

  color: #15803D;
  font-size: 10px;
}

.gota-contact__success strong {
  display: block;

  color: #166534;
  font-size: 10px;
  font-weight: 800;
}

.gota-contact__success p {
  margin: 3px 0 0;

  color: #4B5563;
  font-size: 9.5px;
  line-height: 1.55;
}

.gota-contact__success a {
  color: #166534 !important;
  font-weight: 700;
}


/* ASIDE */

.gota-contact__aside {
  padding: 19px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 17px;
}

.gota-contact__aside-kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-contact__aside h2 {
  margin: 0;

  color: #172C6D;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.gota-contact__aside > p {
  margin: 7px 0 0;

  color: #64748B;
  font-size: 9.5px;
  line-height: 1.55;
}


/* CHANNELS */

.gota-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 8px;

  margin-top: 15px;
}

.gota-contact__channel {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;

  padding: 9px;

  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 10px;

  text-decoration: none !important;
}

.gota-contact__channel:hover {
  border-color: #93C5FD;
}

.gota-contact__channel-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border-radius: 9px;

  color: #172C6D;
  font-size: 11px;
}

.gota-contact__channel span {
  display: block;

  color: #94A3B8;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.gota-contact__channel strong {
  display: block;

  margin-top: 1px;

  color: #172C6D;
  font-size: 9.5px;
  font-weight: 700;

  word-break: break-word;
}


/* MOBILE */

@media (max-width: 700px) {

  .gota-contact {
    width: min(100% - 28px, 880px);
    margin-top: 34px;
  }

  .gota-contact__title {
    font-size: 29px;
  }

  .gota-contact__description {
    font-size: 12px;
  }

  .gota-contact__layout {
    grid-template-columns: 1fr;
  }

  .gota-contact__card,
  .gota-contact__aside {
    padding: 17px;
  }

}

/* =========================================================
   ACCIONES DESTRUCTIVAS
   ========================================================= */

.gota-danger-page {
  width: min(100% - 32px, 520px);
  margin: 70px auto 90px;
}

.gota-danger-card {
  padding: 26px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
}

.gota-danger-card__icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;

  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 13px;

  color: #DC2626;
  font-size: 15px;
}

.gota-danger-card__kicker {
  display: block;

  margin-bottom: 5px;

  color: #DC2626;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-danger-card__title {
  margin: 0;

  color: #172C6D;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}

.gota-danger-card__description {
  margin: 9px 0 0;

  color: #64748B;
  font-size: 11px;
  line-height: 1.65;
}

.gota-danger-card__description strong {
  color: #334155;
  font-weight: 700;
}


/* ACCIONES */

.gota-danger-card__actions {
  display: flex;
  gap: 8px;

  margin-top: 22px;
}

.gota-danger-card__delete,
.gota-danger-card__cancel {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 9px 14px;

  border-radius: 9px !important;

  font-size: 9.5px !important;
  font-weight: 700 !important;

  text-decoration: none !important;

  transition:
    background .2s ease,
    border-color .2s ease;
}

.gota-danger-card__delete {
  flex: 1;

  background: #DC2626 !important;
  border: 1px solid #DC2626 !important;

  color: #FFFFFF !important;

  cursor: pointer;
}

.gota-danger-card__delete:hover {
  background: #B91C1C !important;
  border-color: #B91C1C !important;
}

.gota-danger-card__delete i {
  font-size: 9px;
}

.gota-danger-card__cancel {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;

  color: #475569 !important;
}

.gota-danger-card__cancel:hover {
  background: #F8FAFC !important;
  border-color: #94A3B8 !important;
}


/* MOBILE */

@media (max-width: 520px) {

  .gota-danger-page {
    width: min(100% - 28px, 520px);
    margin-top: 42px;
  }

  .gota-danger-card {
    padding: 20px;
  }

  .gota-danger-card__title {
    font-size: 20px;
  }

  .gota-danger-card__actions {
    flex-direction: column;
  }

  .gota-danger-card__delete,
  .gota-danger-card__cancel {
    width: 100%;
  }

}

/* =========================================================
   SUBIR / ACTUALIZAR FOTOS
   ========================================================= */

.gota-photos-page {
  width: min(100% - 32px, 780px);
  margin: 52px auto 80px;
}

.gota-photos-header {
  max-width: 620px;
  margin-bottom: 26px;
}

.gota-photos-header__icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;

  color: #172C6D;
  font-size: 15px;
}

.gota-photos-header__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-photos-header__title {
  margin: 0;

  color: #172C6D;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
}

.gota-photos-header__description {
  margin: 9px 0 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.65;
}


/* MENSAJES */

.gota-photos-messages {
  margin-bottom: 14px;
}

.gota-photos-message {
  padding: 11px 13px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;

  color: #475569;
  font-size: 10px;
}

.gota-photos-message--success {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #166534;
}

.gota-photos-message--error {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #B91C1C;
}


/* CARD */

.gota-photos-card {
  padding: 22px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
}


/* ITEM */

.gota-photos-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: center;

  padding: 18px 0;
}

.gota-photos-item + .gota-photos-item {
  border-top: 1px solid #E2E8F0;
}

.gota-photos-item__kicker {
  display: block;

  margin-bottom: 4px;

  color: #94A3B8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-photos-item__label {
  display: block;

  color: #172C6D;
  font-size: 13px;
  font-weight: 800;
}

.gota-photos-item__description {
  margin: 4px 0 10px;

  color: #64748B;
  font-size: 9.5px;
  line-height: 1.55;
}

.gota-photos-item__input input[type="file"] {
  width: 100%;

  color: #475569;
  font-size: 9px;
}


/* PREVIEW */

.gota-photos-item__preview,
.gota-photos-item__empty {
  width: 150px;
  aspect-ratio: 4 / 3;

  border-radius: 12px;
  overflow: hidden;
}

.gota-photos-item__preview {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.gota-photos-item__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gota-photos-item__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: #F8FAFC;
  border: 1px dashed #CBD5E1;

  color: #94A3B8;
}

.gota-photos-item__empty i {
  font-size: 16px;
}

.gota-photos-item__empty span {
  font-size: 8.5px;
  font-weight: 700;
}


/* ACCIONES */

.gota-photos-actions {
  display: flex;
  gap: 8px;

  padding-top: 18px;
  margin-top: 3px;

  border-top: 1px solid #E2E8F0;
}

.gota-photos-actions__save,
.gota-photos-actions__cancel {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 9px 14px;

  border-radius: 9px !important;

  font-size: 9.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.gota-photos-actions__save {
  flex: 1;

  background: #172C6D !important;
  border: 1px solid #172C6D !important;

  color: #FFFFFF !important;

  cursor: pointer;
}

.gota-photos-actions__save:hover {
  background: #203983 !important;
}

.gota-photos-actions__cancel {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;

  color: #475569 !important;
}

.gota-photos-actions__cancel:hover {
  background: #F8FAFC !important;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-photos-page {
    width: min(100% - 28px, 780px);
    margin-top: 34px;
  }

  .gota-photos-header__title {
    font-size: 25px;
  }

  .gota-photos-card {
    padding: 17px;
  }

  .gota-photos-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gota-photos-item__preview,
  .gota-photos-item__empty {
    width: 100%;
    max-width: 230px;
  }

  .gota-photos-actions {
    flex-direction: column;
  }

  .gota-photos-actions__save,
  .gota-photos-actions__cancel {
    width: 100%;
  }

}

/* =========================================================
   PANEL DEL DUEÑO
   ========================================================= */

.gota-owner {
  width: min(100% - 32px, 1080px);
  margin: 52px auto 80px;
}


/* HEADER */

.gota-owner-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  max-width: 720px;
  margin-bottom: 28px;
}

.gota-owner-header__icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-owner-header__icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.gota-owner-header__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-owner-header__title {
  margin: 0;

  color: #172C6D;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-owner-header__description {
  margin: 8px 0 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.6;
}


/* ACCESOS */

.gota-owner-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;

  margin-bottom: 40px;
}

.gota-owner-action {
  position: relative;

  min-height: 112px;
  padding: 15px;

  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 10px;
  align-items: start;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;

  text-decoration: none !important;

  transition:
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.gota-owner-action:hover {
  border-color: #BFDBFE;

  transform: translateY(-1px);

  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.gota-owner-action--primary {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.gota-owner-action__icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 10px;

  color: #172C6D;
  font-size: 11px;
}

.gota-owner-action--primary .gota-owner-action__icon {
  background: #FFFFFF;
}

.gota-owner-action strong {
  display: block;

  padding-right: 14px;

  color: #172C6D;
  font-size: 10.5px;
  font-weight: 800;
}

.gota-owner-action span {
  display: block;

  margin-top: 4px;

  color: #64748B;
  font-size: 8.5px;
  line-height: 1.45;
}

.gota-owner-action__arrow {
  position: absolute;
  top: 16px;
  right: 14px;

  color: #94A3B8;
  font-size: 8px;
}


/* EMPTY */

.gota-owner-empty {
  padding: 42px 22px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  text-align: center;
}

.gota-owner-empty__icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 14px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-owner-empty__icon img {
  width: 28px;
  height: 28px;
}

.gota-owner-empty h2 {
  margin: 0;

  color: #172C6D;
  font-size: 18px;
  font-weight: 800;
}

.gota-owner-empty p {
  max-width: 420px;
  margin: 7px auto 0;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.6;
}

.gota-owner-empty__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 16px;
  padding: 9px 13px;

  background: #172C6D !important;
  border: 1px solid #172C6D;
  border-radius: 9px;

  color: #FFFFFF !important;
  font-size: 9.5px;
  font-weight: 700;

  text-decoration: none !important;
}


/* CAFETERÍAS */

.gota-owner-cafes {
  margin-top: 8px;
}

.gota-owner-cafes__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 12px;
}

.gota-owner-cafes__kicker {
  display: block;

  margin-bottom: 3px;

  color: #64748B;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-owner-cafes__heading h2 {
  margin: 0;

  color: #172C6D;
  font-size: 20px;
  font-weight: 800;
}

.gota-owner-cafes__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}


/* CAFÉ CARD */

.gota-owner-cafe {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);

  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 17px;
}

.gota-owner-cafe__media {
  min-height: 100%;

  background: #F8FAFC;
}

.gota-owner-cafe__media > img {
  width: 100%;
  height: 100%;
  min-height: 250px;

  display: block;

  object-fit: cover;
}

.gota-owner-cafe__no-photo {
  min-height: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: #94A3B8;
}

.gota-owner-cafe__no-photo img {
  width: 31px;
  height: 31px;

  opacity: .75;
}

.gota-owner-cafe__no-photo span {
  font-size: 8.5px;
  font-weight: 700;
}

.gota-owner-cafe__body {
  padding: 20px;
}

.gota-owner-cafe__plan {
  display: inline-flex;

  margin-bottom: 5px;
  padding: 4px 7px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #172C6D;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gota-owner-cafe__top h3 {
  margin: 0;

  color: #172C6D;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.gota-owner-cafe__location {
  display: flex;
  align-items: center;
  gap: 5px;

  margin: 6px 0 0;

  color: #64748B;
  font-size: 9.5px;
  line-height: 1.45;
}

.gota-owner-cafe__location i {
  color: #94A3B8;
  font-size: 8px;
}


/* MÉTRICAS */

.gota-owner-cafe__metrics {
  display: flex;
  gap: 8px;

  margin-top: 14px;
}

.gota-owner-cafe__metric {
  min-width: 95px;

  padding: 9px 11px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
}

.gota-owner-cafe__metric span {
  display: block;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.gota-owner-cafe__metric strong {
  display: block;

  margin-top: 2px;

  color: #172C6D;
  font-size: 14px;
  font-weight: 800;
}


/* PERCEPCIÓN */

.gota-owner-cafe__perception {
  padding-top: 14px;
  margin-top: 14px;

  border-top: 1px solid #E2E8F0;
}

.gota-owner-cafe__section-label {
  display: block;

  color: #64748B;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gota-owner-cafe__tag-groups {
  display: flex;
  flex-direction: column;
  gap: 8px;

  margin-top: 8px;
}

.gota-owner-cafe__tag-category {
  display: block;

  margin-bottom: 4px;

  color: #64748B;
  font-size: 8px;
  font-weight: 700;
}

.gota-owner-cafe__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.gota-owner-cafe__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 4px 7px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;

  color: #334155;
  font-size: 8px;
  font-weight: 600;
}

.gota-owner-cafe__tag small {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 16px;
  height: 16px;
  padding: 0 4px;

  background: #FFFFFF;
  border-radius: 999px;

  color: #172C6D;
  font-size: 7px;
  font-weight: 800;
}


/* PLAN */

.gota-owner-cafe__plan-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;

  padding-top: 14px;
  margin-top: 14px;

  border-top: 1px solid #E2E8F0;
}

.gota-owner-cafe__current-plan {
  display: block;

  margin-top: 3px;

  color: #172C6D;
  font-size: 10px;
  font-weight: 800;
}

.gota-owner-cafe__plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.gota-owner-cafe__plan-actions form {
  margin: 0;
}

.gota-owner-cafe__plan-button {
  min-height: 30px;

  padding: 6px 9px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 8px !important;

  color: #475569 !important;
  font-size: 8px !important;
  font-weight: 700 !important;

  cursor: pointer;
}

.gota-owner-cafe__plan-button:hover {
  background: #EFF6FF !important;
  border-color: #BFDBFE !important;

  color: #172C6D !important;
}


/* ACCIONES */

.gota-owner-cafe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;

  padding-top: 14px;
  margin-top: 14px;

  border-top: 1px solid #E2E8F0;
}

.gota-owner-cafe__action {
  min-height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 7px 10px;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1;
  border-radius: 8px;

  color: #475569 !important;
  font-size: 8.5px;
  font-weight: 700;

  text-decoration: none !important;
}

.gota-owner-cafe__action:hover {
  background: #EFF6FF !important;
  border-color: #BFDBFE;

  color: #172C6D !important;
}

.gota-owner-cafe__action--danger {
  margin-left: auto;

  border-color: #FECACA;

  color: #DC2626 !important;
}

.gota-owner-cafe__action--danger:hover {
  background: #FEF2F2 !important;
  border-color: #FCA5A5;

  color: #B91C1C !important;
}


/* TOAST */

.gota-owner-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9999;

  max-width: calc(100% - 30px);

  padding: 10px 14px;

  background: #172C6D;
  border-radius: 10px;

  color: #FFFFFF;
  font-size: 9.5px;
  font-weight: 700;

  box-shadow: 0 10px 30px rgba(15, 23, 42, .18);

  opacity: 0;
  transform: translate(-50%, 8px);

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.gota-owner-toast--visible {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* TABLET */

@media (max-width: 900px) {

  .gota-owner-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 680px) {

  .gota-owner {
    width: min(100% - 28px, 1080px);
    margin-top: 34px;
  }

  .gota-owner-header__title {
    font-size: 26px;
  }

  .gota-owner-actions {
    grid-template-columns: 1fr;
  }

  .gota-owner-action {
    min-height: 88px;
  }

  .gota-owner-cafe {
    grid-template-columns: 1fr;
  }

  .gota-owner-cafe__media > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .gota-owner-cafe__no-photo {
    min-height: 170px;
  }

  .gota-owner-cafe__body {
    padding: 17px;
  }

  .gota-owner-cafe__plan-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .gota-owner-cafe__metrics {
    width: 100%;
  }

  .gota-owner-cafe__metric {
    flex: 1;
    min-width: 0;
  }

  .gota-owner-cafe__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gota-owner-cafe__action {
    width: 100%;
  }

  .gota-owner-cafe__action--danger {
    margin-left: 0;
  }

}

/* =========================================================
   RESEÑAS — PANEL DEL DUEÑO
   ========================================================= */

.gota-owner-reviews {
  width: min(100% - 32px, 980px);
  margin: 52px auto 80px;
}


/* HEADER */

.gota-owner-reviews__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  max-width: 700px;
  margin-bottom: 30px;
}

.gota-owner-reviews__header-icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-owner-reviews__header-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.gota-owner-reviews__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-owner-reviews__title {
  margin: 0;

  color: #172C6D;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-owner-reviews__description {
  margin: 8px 0 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.6;
}


/* CAFETERÍAS */

.gota-owner-reviews__cafes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gota-owner-reviews__cafe {
  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
}


/* HEADER CAFÉ */

.gota-owner-reviews__cafe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 17px 19px;

  border-bottom: 1px solid #E2E8F0;
}

.gota-owner-reviews__cafe-main {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 12px;
}

.gota-owner-reviews__cafe-photo,
.gota-owner-reviews__cafe-placeholder {
  flex: 0 0 auto;

  width: 62px;
  height: 62px;

  border-radius: 11px;
}

.gota-owner-reviews__cafe-photo {
  object-fit: cover;
}

.gota-owner-reviews__cafe-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
}

.gota-owner-reviews__cafe-placeholder img {
  width: 25px;
  height: 25px;
  opacity: .75;
}

.gota-owner-reviews__cafe-label {
  display: block;

  margin-bottom: 3px;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-owner-reviews__cafe-info h2 {
  margin: 0;

  color: #172C6D;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.gota-owner-reviews__cafe-info p {
  display: flex;
  align-items: center;
  gap: 5px;

  margin: 4px 0 0;

  color: #64748B;
  font-size: 8.5px;
}

.gota-owner-reviews__cafe-info p i {
  color: #94A3B8;
  font-size: 7px;
}

.gota-owner-reviews__public-link {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 9px;

  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 8px;

  color: #475569 !important;
  font-size: 8.5px;
  font-weight: 700;

  text-decoration: none !important;
}

.gota-owner-reviews__public-link:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;

  color: #172C6D !important;
}

.gota-owner-reviews__public-link i {
  font-size: 7px;
}


/* RESUMEN */

.gota-owner-reviews__summary {
  display: flex;
  gap: 8px;

  padding: 12px 19px;

  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.gota-owner-reviews__summary-item {
  min-width: 95px;
}

.gota-owner-reviews__summary-item > span {
  display: block;

  color: #94A3B8;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gota-owner-reviews__summary-item > strong {
  display: block;

  margin-top: 2px;

  color: #172C6D;
  font-size: 13px;
  font-weight: 800;
}

.gota-owner-reviews__rating {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-top: 2px;
}

.gota-owner-reviews__rating img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.gota-owner-reviews__rating strong {
  color: #172C6D;
  font-size: 13px;
  font-weight: 800;
}


/* LISTA */

.gota-owner-reviews__list {
  padding: 0 19px;
}

.gota-owner-review {
  padding: 18px 0;
}

.gota-owner-review + .gota-owner-review {
  border-top: 1px solid #E2E8F0;
}


/* REVIEW HEADER */

.gota-owner-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gota-owner-review__user {
  color: #334155;
  font-size: 10px;
  font-weight: 800;
}

.gota-owner-review__date {
  margin-left: 6px;

  color: #94A3B8;
  font-size: 8px;
}

.gota-owner-review__rating {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  gap: 4px;

  padding: 4px 7px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
}

.gota-owner-review__rating img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.gota-owner-review__rating strong {
  color: #172C6D;
  font-size: 9px;
  font-weight: 800;
}


/* COMENTARIO */

.gota-owner-review__comment {
  max-width: 720px;

  margin: 9px 0 0;

  color: #475569;
  font-size: 10.5px;
  line-height: 1.65;
}

.gota-owner-review__comment--empty {
  color: #94A3B8;
  font-style: italic;
}


/* RESPUESTA */

.gota-owner-review__reply {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;

  max-width: 720px;

  margin-top: 12px;
  padding: 11px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 11px;
}

.gota-owner-review__reply-icon {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FFFFFF;
  border-radius: 8px;
}

.gota-owner-review__reply-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.gota-owner-review__reply span {
  display: block;

  color: #172C6D;
  font-size: 8px;
  font-weight: 800;
}

.gota-owner-review__reply p {
  margin: 3px 0 0;

  color: #475569;
  font-size: 9.5px;
  line-height: 1.55;
}


/* RESPONDER */

.gota-owner-review__reply-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 11px;
  padding: 6px 9px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 8px !important;

  color: #475569 !important;
  font-size: 8.5px !important;
  font-weight: 700 !important;

  cursor: pointer;
}

.gota-owner-review__reply-toggle:hover {
  background: #EFF6FF !important;
  border-color: #BFDBFE !important;

  color: #172C6D !important;
}

.gota-owner-review__reply-toggle i {
  font-size: 8px;
}


/* FORM RESPUESTA */

.gota-owner-review__reply-form {
  max-width: 720px;

  margin-top: 11px;
  padding: 12px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 11px;
}

.gota-owner-review__reply-form[hidden] {
  display: none !important;
}

.gota-owner-review__reply-form label {
  display: block;

  margin-bottom: 5px;

  color: #334155;
  font-size: 8.5px;
  font-weight: 700;
}

.gota-owner-review__reply-form textarea {
  width: 100%;

  min-height: 80px;
  padding: 9px 10px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 8px !important;
  outline: none !important;

  color: #334155 !important;
  font-size: 9.5px !important;
  line-height: 1.55;

  resize: vertical;
}

.gota-owner-review__reply-form textarea:focus {
  border-color: #93C5FD !important;
  box-shadow: 0 0 0 3px rgba(191, 219, 254, .4) !important;
}

.gota-owner-review__reply-actions {
  display: flex;
  gap: 6px;

  margin-top: 8px;
}

.gota-owner-review__reply-save,
.gota-owner-review__reply-cancel {
  min-height: 31px;

  padding: 6px 10px !important;

  border-radius: 8px !important;

  font-size: 8.5px !important;
  font-weight: 700 !important;

  cursor: pointer;
}

.gota-owner-review__reply-save {
  background: #172C6D !important;
  border: 1px solid #172C6D !important;

  color: #FFFFFF !important;
}

.gota-owner-review__reply-save:hover {
  background: #203983 !important;
}

.gota-owner-review__reply-cancel {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;

  color: #475569 !important;
}


/* EMPTY */

.gota-owner-reviews__empty {
  padding: 42px 22px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  text-align: center;
}

.gota-owner-reviews__empty-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 13px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-owner-reviews__empty-icon img {
  width: 28px;
  height: 28px;
}

.gota-owner-reviews__empty h2 {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  font-weight: 800;
}

.gota-owner-reviews__empty p {
  max-width: 420px;

  margin: 7px auto 0;

  color: #64748B;
  font-size: 10px;
  line-height: 1.6;
}

.gota-owner-reviews__empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 15px;
  padding: 8px 12px;

  background: #172C6D !important;
  border-radius: 9px;

  color: #FFFFFF !important;
  font-size: 9px;
  font-weight: 700;

  text-decoration: none !important;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-owner-reviews {
    width: min(100% - 28px, 980px);
    margin-top: 34px;
  }

  .gota-owner-reviews__title {
    font-size: 26px;
  }

  .gota-owner-reviews__cafe-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .gota-owner-reviews__public-link {
    margin-left: 74px;
  }

  .gota-owner-reviews__summary,
  .gota-owner-reviews__list {
    padding-left: 15px;
    padding-right: 15px;
  }

  .gota-owner-review__header {
    align-items: flex-start;
  }

  .gota-owner-review__date {
    display: block;
    margin: 2px 0 0;
  }

  .gota-owner-review__reply-actions {
    flex-direction: column;
  }

  .gota-owner-review__reply-save,
  .gota-owner-review__reply-cancel {
    width: 100%;
  }

}

/* =========================================================
   ANALÍTICAS — DUEÑOS
   ========================================================= */

.gota-analytics {
  width: min(100% - 32px, 980px);
  margin: 52px auto 80px;
}


/* HEADER */

.gota-analytics__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;

  margin-bottom: 28px;
}

.gota-analytics__header-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  max-width: 640px;
}

.gota-analytics__header-icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-analytics__header-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.gota-analytics__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-analytics__title {
  margin: 0;

  color: #172C6D;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-analytics__description {
  margin: 8px 0 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.6;
}


/* SELECTOR */

.gota-analytics__selector {
  flex: 0 0 auto;
}

.gota-analytics__selector label {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gota-analytics__selector select {
  min-width: 190px;

  padding: 8px 30px 8px 10px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 9px !important;

  color: #334155 !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;

  outline: none;
}

.gota-analytics__selector select:focus {
  border-color: #93C5FD !important;
  box-shadow: 0 0 0 3px rgba(191, 219, 254, .35);
}


/* CAFÉ ACTUAL */

.gota-analytics__current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 12px;
  padding: 11px 13px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 11px;
}

.gota-analytics__current-label {
  display: block;

  color: #64748B;
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.gota-analytics__current strong {
  display: block;

  margin-top: 2px;

  color: #172C6D;
  font-size: 11px;
  font-weight: 800;
}

.gota-analytics__public-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #172C6D !important;
  font-size: 8.5px;
  font-weight: 700;

  text-decoration: none !important;
}

.gota-analytics__public-link i {
  font-size: 7px;
}


/* KPIs */

.gota-analytics__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;

  margin-bottom: 14px;
}

.gota-analytics__kpi {
  min-height: 98px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
}

.gota-analytics__kpi-icon {
  flex: 0 0 auto;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 10px;

  color: #172C6D;
  font-size: 11px;
}

.gota-analytics__kpi span {
  display: block;

  color: #64748B;
  font-size: 8px;
  font-weight: 700;
}

.gota-analytics__kpi strong {
  display: block;

  margin-top: 3px;

  color: #172C6D;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}


/* GRÁFICO */

.gota-analytics__chart-card {
  padding: 19px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
}

.gota-analytics__chart-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;

  margin-bottom: 20px;
}

.gota-analytics__chart-kicker {
  display: block;

  margin-bottom: 3px;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-analytics__chart-heading h2 {
  margin: 0;

  color: #172C6D;
  font-size: 15px;
  font-weight: 800;
}

.gota-analytics__chart-legend {
  display: flex;
  align-items: center;
  gap: 5px;

  color: #64748B;
  font-size: 8px;
  font-weight: 600;
}

.gota-analytics__chart-legend span {
  width: 18px;
  height: 2px;

  display: block;

  background: #172C6D;
  border-radius: 999px;
}

.gota-analytics__chart {
  position: relative;

  width: 100%;
  height: 310px;
}


/* EMPTY */

.gota-analytics__empty {
  padding: 42px 22px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  text-align: center;
}

.gota-analytics__empty-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 13px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-analytics__empty-icon img {
  width: 28px;
  height: 28px;
}

.gota-analytics__empty h2 {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  font-weight: 800;
}

.gota-analytics__empty p {
  max-width: 420px;

  margin: 7px auto 0;

  color: #64748B;
  font-size: 10px;
  line-height: 1.6;
}

.gota-analytics__empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 15px;
  padding: 8px 12px;

  background: #172C6D !important;
  border-radius: 9px;

  color: #FFFFFF !important;
  font-size: 9px;
  font-weight: 700;

  text-decoration: none !important;
}


/* MOBILE */

@media (max-width: 680px) {

  .gota-analytics {
    width: min(100% - 28px, 980px);
    margin-top: 34px;
  }

  .gota-analytics__header {
    flex-direction: column;
    align-items: stretch;
  }

  .gota-analytics__title {
    font-size: 26px;
  }

  .gota-analytics__selector select {
    width: 100%;
  }

  .gota-analytics__kpis {
    grid-template-columns: 1fr;
  }

  .gota-analytics__kpi {
    min-height: 82px;
  }

  .gota-analytics__chart-card {
    padding: 15px;
  }

  .gota-analytics__chart {
    height: 260px;
  }

  .gota-analytics__current {
    align-items: flex-start;
  }

}

/* =========================================================
   PLANES — DUEÑOS
   ========================================================= */

.gota-plans {
  width: min(100% - 32px, 980px);
  margin: 52px auto 80px;
}


/* HEADER */

.gota-plans__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  max-width: 720px;
  margin-bottom: 30px;
}

.gota-plans__header-icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-plans__header-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.gota-plans__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-plans__title {
  margin: 0;

  color: #172C6D;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-plans__description {
  max-width: 620px;

  margin: 8px 0 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.6;
}


/* CAFETERÍAS */

.gota-plans__cafes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gota-plans__cafe {
  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
}

.gota-plans__cafe-header {
  padding: 16px 18px;

  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.gota-plans__cafe-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gota-plans__cafe-photo,
.gota-plans__cafe-placeholder {
  flex: 0 0 auto;

  width: 60px;
  height: 60px;

  border-radius: 11px;
}

.gota-plans__cafe-photo {
  object-fit: cover;
}

.gota-plans__cafe-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
}

.gota-plans__cafe-placeholder img {
  width: 25px;
  height: 25px;

  opacity: .75;
}

.gota-plans__cafe-label {
  display: block;

  margin-bottom: 3px;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-plans__cafe h2 {
  margin: 0;

  color: #172C6D;
  font-size: 16px;
  font-weight: 800;
}

.gota-plans__cafe-header p {
  margin: 4px 0 0;

  color: #64748B;
  font-size: 8.5px;
}

.gota-plans__cafe-header p strong {
  color: #334155;
}


/* GRID */

.gota-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;

  padding: 18px;
}


/* PLAN CARD */

.gota-plan-card {
  min-height: 250px;

  display: flex;
  flex-direction: column;

  padding: 16px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
}

.gota-plan-card--active {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.gota-plan-card__top {
  flex: 1;
}

.gota-plan-card__eyebrow {
  display: block;

  margin-bottom: 5px;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gota-plan-card h3 {
  margin: 0;

  color: #172C6D;
  font-size: 15px;
  font-weight: 800;
}

.gota-plan-card p {
  margin: 7px 0 0;

  color: #64748B;
  font-size: 9px;
  line-height: 1.55;
}


/* BENEFICIOS */

.gota-plan-card__benefit {
  display: flex;
  align-items: baseline;
  gap: 4px;

  margin: 17px 0 12px;
}

.gota-plan-card__benefit strong {
  color: #172C6D;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.gota-plan-card__benefit span {
  color: #64748B;
  font-size: 8px;
  font-weight: 600;
}


/* STATUS */

.gota-plan-card__status {
  display: flex;
  align-items: center;
  gap: 5px;

  margin: 17px 0 12px;

  color: #172C6D;
  font-size: 8.5px;
  font-weight: 700;
}

.gota-plan-card__status i {
  font-size: 9px;
}


/* FORM */

.gota-plan-card__form {
  margin: 0;
}


/* BUTTONS */

.gota-plan-card__button {
  width: 100%;
  min-height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 7px 10px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 8px !important;

  color: #475569 !important;
  font-size: 8.5px !important;
  font-weight: 700 !important;

  text-decoration: none !important;
  cursor: pointer;
}

.gota-plan-card__button:hover {
  background: #EFF6FF !important;
  border-color: #BFDBFE !important;

  color: #172C6D !important;
}

.gota-plan-card__button--primary {
  background: #172C6D !important;
  border-color: #172C6D !important;

  color: #FFFFFF !important;
}

.gota-plan-card__button--primary:hover {
  background: #203983 !important;
  border-color: #203983 !important;

  color: #FFFFFF !important;
}

.gota-plan-card__button--disabled {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;

  color: #94A3B8 !important;

  cursor: not-allowed;
}

.gota-plan-card__button--disabled:hover {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;

  color: #94A3B8 !important;
}


/* EMPTY */

.gota-plans__empty {
  padding: 42px 22px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  text-align: center;
}

.gota-plans__empty-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 13px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-plans__empty-icon img {
  width: 28px;
  height: 28px;
}

.gota-plans__empty h2 {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  font-weight: 800;
}

.gota-plans__empty p {
  max-width: 420px;

  margin: 7px auto 0;

  color: #64748B;
  font-size: 10px;
  line-height: 1.6;
}

.gota-plans__empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 15px;
  padding: 8px 12px;

  background: #172C6D !important;
  border-radius: 9px;

  color: #FFFFFF !important;
  font-size: 9px;
  font-weight: 700;

  text-decoration: none !important;
}


/* TABLET */

@media (max-width: 820px) {

  .gota-plans__grid {
    grid-template-columns: 1fr;
  }

  .gota-plan-card {
    min-height: 0;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .gota-plans {
    width: min(100% - 28px, 980px);
    margin-top: 34px;
  }

  .gota-plans__title {
    font-size: 26px;
  }

  .gota-plans__grid {
    padding: 14px;
  }

  .gota-plans__cafe-header {
    padding: 14px;
  }

}

/* =========================================================
   ÚLTIMAS EXPERIENCIAS
   ========================================================= */

.gota-review-list {
  width: min(100% - 32px, 920px);
  margin: 52px auto 80px;
}


/* HEADER */

.gota-review-list__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  max-width: 680px;
  margin-bottom: 28px;
}

.gota-review-list__header-icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-review-list__header-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.gota-review-list__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-review-list__title {
  margin: 0;

  color: #172C6D;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-review-list__description {
  margin: 8px 0 0;

  color: #64748B;
  font-size: 11.5px;
  line-height: 1.6;
}


/* OWNER */

.gota-review-list__owner-action {
  margin: -4px 0 20px 62px;
}

.gota-review-list__owner-action a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 10px;

  background: #172C6D !important;
  border-radius: 8px;

  color: #FFFFFF !important;
  font-size: 8.5px;
  font-weight: 700;

  text-decoration: none !important;
}


/* LIST */

.gota-review-list__reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* CARD */

.gota-review-list__card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);

  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
}

.gota-review-list__media {
  min-height: 190px;

  display: block;

  background: #F8FAFC;
  text-decoration: none;
}

.gota-review-list__media > img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.gota-review-list__placeholder {
  width: 100%;
  height: 100%;
  min-height: 190px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
}

.gota-review-list__placeholder img {
  width: 32px;
  height: 32px;

  opacity: .7;
}

.gota-review-list__body {
  padding: 17px 18px;
}

.gota-review-list__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gota-review-list__user {
  color: #334155;
  font-size: 9px;
  font-weight: 800;
}

.gota-review-list__context {
  margin-left: 3px;

  color: #94A3B8;
  font-size: 8.5px;
}

.gota-review-list__rating {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  gap: 4px;

  padding: 4px 7px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
}

.gota-review-list__rating img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.gota-review-list__rating strong {
  color: #172C6D;
  font-size: 9px;
  font-weight: 800;
}

.gota-review-list__cafe {
  display: inline-block;

  margin-top: 5px;

  color: #172C6D !important;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;

  text-decoration: none !important;
}

.gota-review-list__cafe:hover {
  text-decoration: underline !important;
}

.gota-review-list__location {
  display: flex;
  align-items: center;
  gap: 5px;

  margin: 4px 0 0;

  color: #94A3B8;
  font-size: 8px;
}

.gota-review-list__location i {
  font-size: 7px;
}

.gota-review-list__comment {
  margin: 12px 0 0;

  color: #475569;
  font-size: 10.5px;
  line-height: 1.65;
}

.gota-review-list__comment--empty {
  color: #94A3B8;
  font-style: italic;
}

.gota-review-list__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding-top: 12px;
  margin-top: 13px;

  border-top: 1px solid #E2E8F0;
}

.gota-review-list__date {
  color: #94A3B8;
  font-size: 7.5px;
}

.gota-review-list__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: #172C6D !important;
  font-size: 8px;
  font-weight: 700;

  text-decoration: none !important;
}

.gota-review-list__more i {
  font-size: 7px;
}


/* EMPTY */

.gota-review-list__empty {
  padding: 42px 22px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;

  text-align: center;
}

.gota-review-list__empty-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 13px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-review-list__empty-icon img {
  width: 28px;
  height: 28px;
}

.gota-review-list__empty h2 {
  margin: 0;

  color: #172C6D;
  font-size: 17px;
  font-weight: 800;
}

.gota-review-list__empty p {
  max-width: 420px;

  margin: 7px auto 0;

  color: #64748B;
  font-size: 10px;
  line-height: 1.6;
}

.gota-review-list__empty-cta {
  display: inline-flex;

  margin-top: 15px;
  padding: 8px 12px;

  background: #172C6D !important;
  border-radius: 9px;

  color: #FFFFFF !important;
  font-size: 9px;
  font-weight: 700;

  text-decoration: none !important;
}


/* RECIENTES */

.gota-review-list__recent {
  margin-top: 42px;
  padding-top: 26px;

  border-top: 1px solid #E2E8F0;
}

.gota-review-list__recent[hidden] {
  display: none !important;
}

.gota-review-list__recent-heading {
  margin-bottom: 13px;
}

.gota-review-list__recent-kicker {
  display: block;

  margin-bottom: 3px;

  color: #94A3B8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-review-list__recent-heading h2 {
  margin: 0;

  color: #172C6D;
  font-size: 18px;
  font-weight: 800;
}

.gota-review-list__swiper {
  position: relative;

  overflow: hidden;

  padding: 3px 2px 30px;
}

.gota-review-list__recent-card {
  width: 250px !important;
  height: auto;
}

.gota-review-list__recent-link {
  height: 100%;

  display: block;

  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 13px;

  color: inherit !important;
  text-decoration: none !important;
}

.gota-review-list__recent-image,
.gota-review-list__recent-placeholder {
  width: 100%;
  height: 125px;
}

.gota-review-list__recent-image {
  display: block;

  object-fit: cover;
}

.gota-review-list__recent-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
}

.gota-review-list__recent-placeholder img {
  width: 28px;
  height: 28px;

  opacity: .7;
}

.gota-review-list__recent-body {
  padding: 11px;
}

.gota-review-list__recent-body strong {
  display: block;

  overflow: hidden;

  color: #172C6D;
  font-size: 10px;
  font-weight: 800;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.gota-review-list__recent-body span {
  display: block;

  margin-top: 3px;

  color: #64748B;
  font-size: 8.5px;
}

.gota-review-list__recent-body small {
  display: block;

  margin-top: 2px;

  overflow: hidden;

  color: #94A3B8;
  font-size: 7.5px;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.gota-review-list__recent .swiper-button-next,
.gota-review-list__recent .swiper-button-prev {
  width: 29px;
  height: 29px;

  margin-top: -28px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50%;

  color: #172C6D;
}

.gota-review-list__recent .swiper-button-next::after,
.gota-review-list__recent .swiper-button-prev::after {
  font-size: 9px;
  font-weight: 800;
}

.gota-review-list__recent .swiper-pagination-bullet-active {
  background: #172C6D;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-review-list {
    width: min(100% - 28px, 920px);
    margin-top: 34px;
  }

  .gota-review-list__title {
    font-size: 26px;
  }

  .gota-review-list__owner-action {
    margin-left: 0;
  }

  .gota-review-list__card {
    grid-template-columns: 1fr;
  }

  .gota-review-list__media {
    min-height: 0;
  }

  .gota-review-list__media > img,
  .gota-review-list__placeholder {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .gota-review-list__body {
    padding: 15px;
  }

  .gota-review-list__context {
    display: block;
    margin: 2px 0 0;
  }

  .gota-review-list__recent-card {
    width: 220px !important;
  }

}

/* =========================================================
   REPORTAR RESEÑA
   ========================================================= */

.gota-report-page {
  width: min(100% - 32px, 620px);
  margin: 52px auto 80px;
}


/* HEADER */

.gota-report-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-bottom: 22px;
}

.gota-report-header__icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;

  color: #172C6D;
  font-size: 15px;
}

.gota-report-header__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-report-header__title {
  margin: 0;

  color: #172C6D;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-report-header__description {
  margin: 7px 0 0;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.6;
}


/* REVIEW */

.gota-report-review {
  padding: 15px;

  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 13px;
}

.gota-report-review__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gota-report-review__label {
  display: block;

  margin-bottom: 3px;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gota-report-review__header > div > strong {
  color: #334155;
  font-size: 9.5px;
  font-weight: 800;
}

.gota-report-review__rating {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  gap: 4px;

  padding: 4px 7px;

  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
}

.gota-report-review__rating img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.gota-report-review__rating strong {
  color: #172C6D;
  font-size: 9px;
  font-weight: 800;
}

.gota-report-review__comment {
  margin: 10px 0 0;

  color: #475569;
  font-size: 10px;
  line-height: 1.65;
}

.gota-report-review__comment--empty {
  color: #94A3B8;
  font-style: italic;
}


/* FORM */

.gota-report-form {
  margin-top: 14px;
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
}

.gota-report-field + .gota-report-field {
  margin-top: 17px;
}

.gota-report-field label {
  display: block;

  color: #334155;
  font-size: 9px;
  font-weight: 800;
}

.gota-report-field label span {
  margin-left: 3px;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 600;
}

.gota-report-field__help {
  margin: 3px 0 7px;

  color: #94A3B8;
  font-size: 8px;
  line-height: 1.5;
}


/* INPUTS */

.gota-report-field select,
.gota-report-field textarea,
.gota-report-field input {
  width: 100%;

  padding: 9px 10px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 8px !important;

  color: #334155 !important;
  font-size: 9.5px !important;

  outline: none !important;
}

.gota-report-field textarea {
  min-height: 105px;

  line-height: 1.55;

  resize: vertical;
}

.gota-report-field select:focus,
.gota-report-field textarea:focus,
.gota-report-field input:focus {
  border-color: #93C5FD !important;

  box-shadow:
    0 0 0 3px rgba(191, 219, 254, .35) !important;
}


/* ERRORS */

.gota-report-field__error,
.gota-report-form__general-error {
  margin-top: 6px;

  color: #DC2626;
  font-size: 8px;
  line-height: 1.5;
}

.gota-report-field__error ul,
.gota-report-form__general-error ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.gota-report-form__general-error {
  margin: 0 0 14px;
  padding: 9px 10px;

  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
}


/* ACTIONS */

.gota-report-actions {
  display: flex;
  align-items: center;
  gap: 7px;

  padding-top: 17px;
  margin-top: 18px;

  border-top: 1px solid #E2E8F0;
}

.gota-report-actions__submit,
.gota-report-actions__cancel {
  min-height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 7px 11px !important;

  border-radius: 8px !important;

  font-size: 8.5px !important;
  font-weight: 700 !important;

  text-decoration: none !important;
}

.gota-report-actions__submit {
  background: #172C6D !important;
  border: 1px solid #172C6D !important;

  color: #FFFFFF !important;

  cursor: pointer;
}

.gota-report-actions__submit:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

.gota-report-actions__cancel {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1;

  color: #475569 !important;
}

.gota-report-actions__cancel:hover {
  background: #F8FAFC !important;
}


/* MOBILE */

@media (max-width: 640px) {

  .gota-report-page {
    width: min(100% - 28px, 620px);
    margin-top: 34px;
  }

  .gota-report-header__title {
    font-size: 25px;
  }

  .gota-report-form {
    padding: 15px;
  }

  .gota-report-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gota-report-actions__submit,
  .gota-report-actions__cancel {
    width: 100%;
  }

}

/* =========================================================
   FOUNDER ANALYTICS
   ========================================================= */

.gota-founder {
  width: min(100% - 32px, 1180px);
  margin: 48px auto 80px;
}


/* HEADER */

.gota-founder__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  max-width: 700px;
  margin-bottom: 26px;
}

.gota-founder__header-icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 15px;
}

.gota-founder__header-icon img {
  width: 27px;
  height: 27px;
}

.gota-founder__kicker {
  display: block;

  margin-bottom: 5px;

  color: #64748B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gota-founder__title {
  margin: 0;

  color: #172C6D;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.gota-founder__description {
  margin: 7px 0 0;

  color: #64748B;
  font-size: 10.5px;
  line-height: 1.6;
}


/* SECTIONS */

.gota-founder__tool,
.gota-founder__section {
  margin-top: 18px;
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
}

.gota-founder__tool {
  background: #F8FAFC;
}

.gota-founder__section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 13px;
}

.gota-founder__section-heading span {
  display: block;

  margin-bottom: 3px;

  color: #94A3B8;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gota-founder__section-heading h2 {
  margin: 0;

  color: #172C6D;
  font-size: 15px;
  font-weight: 800;
}


/* KPIs */

.gota-founder__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;

  margin: 18px 0;
}

.gota-founder__kpi {
  padding: 15px;

  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 13px;
}

.gota-founder__kpi span {
  display: block;

  color: #64748B;
  font-size: 8px;
  font-weight: 700;
}

.gota-founder__kpi strong {
  display: block;

  margin-top: 4px;

  color: #172C6D;
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
}


/* FORMS */

.gota-founder__qr-form,
.gota-founder__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.gota-founder__field {
  min-width: 120px;
}

.gota-founder__field--zone {
  flex: 1;
  min-width: 190px;
}

.gota-founder__field label {
  display: block;

  margin-bottom: 4px;

  color: #475569;
  font-size: 8px;
  font-weight: 700;
}

.gota-founder__field label span {
  color: #94A3B8;
  font-weight: 500;
}

.gota-founder__field input,
.gota-founder__field select {
  width: 100%;

  padding: 7px 9px !important;

  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 7px !important;

  color: #334155 !important;
  font-size: 8.5px !important;
}

.gota-founder__hint {
  margin: 8px 0 0;

  color: #94A3B8;
  font-size: 7.5px;
  line-height: 1.5;
}


/* BUTTONS */

.gota-founder__primary-button,
.gota-founder__secondary-button {
  min-height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  padding: 7px 10px !important;

  border-radius: 7px !important;

  font-size: 8px !important;
  font-weight: 700 !important;

  text-decoration: none !important;
}

.gota-founder__primary-button {
  background: #172C6D !important;
  border: 1px solid #172C6D !important;

  color: #FFFFFF !important;
}

.gota-founder__secondary-button {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;

  color: #475569 !important;
}


/* FILTER ROW */

.gota-founder__filters-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 14px;
}


/* TABLE */

.gota-founder__table-wrap {
  overflow-x: auto;

  border: 1px solid #E2E8F0;
  border-radius: 10px;
}

.gota-founder__table {
  width: 100%;

  border-collapse: collapse;

  font-size: 8.5px;
}

.gota-founder__table th {
  padding: 9px 10px;

  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;

  color: #64748B;
  font-size: 7.5px;
  font-weight: 700;

  text-align: left;
  white-space: nowrap;
}

.gota-founder__table td {
  padding: 9px 10px;

  border-bottom: 1px solid #F1F5F9;

  color: #475569;

  white-space: nowrap;
}

.gota-founder__table tbody tr:last-child td {
  border-bottom: 0;
}

.gota-founder__table td strong {
  color: #334155;
  font-weight: 700;
}

.gota-founder__empty-row {
  padding: 24px !important;

  color: #94A3B8 !important;

  text-align: center;
}


/* CHART */

.gota-founder__chart {
  height: 280px;
}


/* MOBILE */

@media (max-width: 760px) {

  .gota-founder {
    width: min(100% - 28px, 1180px);
    margin-top: 34px;
  }

  .gota-founder__kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gota-founder__filters-row {
    align-items: stretch;
    flex-direction: column;
  }

  .gota-founder__filters {
    align-items: stretch;
    flex-direction: column;
  }

  .gota-founder__field,
  .gota-founder__field--zone {
    width: 100%;
  }

  .gota-founder__primary-button,
  .gota-founder__secondary-button {
    width: 100%;
  }

}

@media (max-width: 430px) {

  .gota-founder__kpis {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   CAFÉ DETAIL — MI MAPA / COLECCIÓN / NOTA
   Ajuste visual final
   ========================================================= */

/* CONTENEDORES */

.gota-cafe-detail-map-state,
.gota-cafe-detail-collection,
.gota-cafe-detail-note {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: none;
}


/* ACERCAMOS VISUALMENTE LOS 3 BLOQUES */

.gota-cafe-detail-map-state {
  margin-top: 28px;
}

.gota-cafe-detail-collection,
.gota-cafe-detail-note {
  margin-top: 14px;
}


/* =========================================================
   ESTADO EN MI MAPA
   ========================================================= */

.gota-cafe-detail-map-state {
  padding: 18px 20px;
}

.gota-cafe-detail-map-state__header {
  margin-bottom: 16px;
}

.gota-cafe-detail-map-state__icon {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
}

.gota-cafe-detail-map-state__title {
  color: #172C6D;
}

.gota-cafe-detail-map-state__description {
  color: #64748B;
}


/* 3 OPCIONES */

.gota-cafe-detail-map-state__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gota-cafe-detail-map-state__options form {
  margin: 0;
}

.gota-cafe-detail-map-option {
  width: 100%;
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 10px 12px !important;

  background: #FFFFFF !important;
  border: 1px solid #BFDBFE !important;
  border-radius: 11px !important;

  color: #172C6D !important;

  font-size: 9.5px !important;
  font-weight: 700 !important;

  box-shadow: none !important;

  transition:
    background-color .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.gota-cafe-detail-map-option:hover {
  background: #EFF6FF !important;
  border-color: #93C5FD !important;

  transform: translateY(-1px);
}


/* ÍCONOS */

.gota-cafe-detail-map-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  color: #172C6D;
}

.gota-cafe-detail-map-option__icon img {
  width: 15px;
  height: 15px;

  object-fit: contain;
}


/* ESTADO ACTIVO */

.gota-cafe-detail-map-option--active {
  background: #172C6D !important;
  border-color: #172C6D !important;

  color: #FFFFFF !important;
}

.gota-cafe-detail-map-option--active:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}

.gota-cafe-detail-map-option--active
.gota-cafe-detail-map-option__icon {
  color: #FFFFFF;
}

.gota-cafe-detail-map-option--active
.gota-cafe-detail-map-option__icon img {
  filter: brightness(0) invert(1);
}


/* =========================================================
   TU COLECCIÓN
   ========================================================= */

.gota-cafe-detail-collection {
  padding: 18px 20px;
}

.gota-cafe-detail-collection__header {
  margin-bottom: 13px;
}

.gota-cafe-detail-collection__title {
  color: #172C6D;
}

.gota-cafe-detail-collection__description {
  color: #64748B;
}


/* CHIPS */

.gota-cafe-detail-collection__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gota-cafe-detail-collection__options form {
  margin: 0;
}

.gota-cafe-detail-collection-option {
  min-height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 7px 11px !important;

  background: #FFFFFF !important;
  border: 1px solid #BFDBFE !important;
  border-radius: 999px !important;

  color: #172C6D !important;

  font-size: 8.5px !important;
  font-weight: 700 !important;

  box-shadow: none !important;

  transition:
    background-color .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.gota-cafe-detail-collection-option:hover {
  background: #EFF6FF !important;
  border-color: #93C5FD !important;

  transform: translateY(-1px);
}

.gota-cafe-detail-collection-option i {
  color: #172C6D;
  font-size: 9px;
}


/* CUANDO YA ESTÁ GUARDADO */

.gota-cafe-detail-collection__saved {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 10px;

  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 9px;

  color: #172C6D;
  font-size: 8.5px;
  font-weight: 700;
}

.gota-cafe-detail-collection__saved i {
  color: #172C6D;
}


/* =========================================================
   NOTA PERSONAL
   ========================================================= */

.gota-cafe-detail-note {
  padding: 18px 20px;
}

.gota-cafe-detail-note__title {
  color: #172C6D;
}

.gota-cafe-detail-note__description {
  color: #64748B;
}

.gota-cafe-detail-note__private {
  background: #F8FAFC;
  border: 1px solid #DBEAFE;

  color: #172C6D;
}


/* TEXTAREA */

.gota-cafe-detail-note__textarea {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;

  color: #334155 !important;

  box-shadow: none !important;
}

.gota-cafe-detail-note__textarea:focus {
  border-color: #93C5FD !important;

  box-shadow:
    0 0 0 3px rgba(191, 219, 254, .35) !important;
}


/* GUARDAR */

.gota-cafe-detail-note__save {
  background: #172C6D !important;
  border-color: #172C6D !important;

  color: #FFFFFF !important;
}

.gota-cafe-detail-note__save:hover {
  background: #203983 !important;
  border-color: #203983 !important;
}


/* NOTA YA GUARDADA */

.gota-cafe-detail-note__saved {
  background: #F8FAFC;
  border-color: #E2E8F0;
}

.gota-cafe-detail-note__edit {
  color: #172C6D !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .gota-cafe-detail-map-state,
  .gota-cafe-detail-collection,
  .gota-cafe-detail-note {
    padding: 16px;
  }

  .gota-cafe-detail-map-state__options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gota-cafe-detail-map-option {
    justify-content: flex-start;

    min-height: 42px;
  }

  .gota-cafe-detail-collection__options {
    gap: 7px;
  }

}

/* =========================================================
   CAFÉ DETAIL — MI MAPA
   Más jerarquía visual
   ========================================================= */

.gota-cafe-detail-map-state {
  padding: 22px 24px;

  background:
    linear-gradient(
      135deg,
      #F8FBFF 0%,
      #EFF6FF 100%
    );

  border-color: #BFDBFE;

  box-shadow:
    0 8px 24px rgba(23, 44, 109, .05);
}

.gota-cafe-detail-map-state__header {
  margin-bottom: 20px;
}

.gota-cafe-detail-map-state__icon {
  width: 46px;
  height: 46px;

  border-radius: 13px;
}

.gota-cafe-detail-map-state__icon img {
  width: 24px;
  height: 24px;
}

.gota-cafe-detail-map-state__title {
  font-size: 18px;
  font-weight: 800;
}

.gota-cafe-detail-map-state__description {
  margin-top: 4px;

  font-size: 10.5px;
  line-height: 1.55;
}

.gota-cafe-detail-map-state__options {
  gap: 11px;
}

.gota-cafe-detail-map-option {
  min-height: 54px;

  background: rgba(255, 255, 255, .88) !important;

  border-color: #BFDBFE !important;

  font-size: 10px !important;

  box-shadow:
    0 3px 10px rgba(23, 44, 109, .035) !important;
}

.gota-cafe-detail-map-option:hover {
  background: #FFFFFF !important;

  border-color: #60A5FA !important;

  box-shadow:
    0 6px 14px rgba(23, 44, 109, .07) !important;
}

.gota-cafe-detail-map-option--active {
  background: #172C6D !important;
  border-color: #172C6D !important;

  box-shadow:
    0 6px 14px rgba(23, 44, 109, .15) !important;
}

@media (max-width: 680px) {

  .gota-cafe-detail-map-state {
    padding: 18px;
  }

  .gota-cafe-detail-map-state__title {
    font-size: 17px;
  }

  .gota-cafe-detail-map-option {
    min-height: 46px;
  }

}
