/* /css/shop/shop-contacto.css
   Estilos específicos para shop-contacto.php.
   Reutiliza variables y componentes de /css/shop/shop.css
*/

.cHero{
  padding: 120px 0 26px;
  background:
    radial-gradient(1100px 650px at 10% 10%, rgba(201,139,77,.18), transparent 56%),
    radial-gradient(900px 520px at 90% 0%, rgba(139,90,43,.14), transparent 60%),
    linear-gradient(180deg, rgba(246,242,236,1), rgba(246,242,236,.65));
  border-bottom: 1px solid var(--line);
}
.cHero__inner{ padding-bottom: 12px; }

.cCrumbs{
  display:flex;
  gap: 10px;
  align-items:center;
  font-size: 14px;
  opacity: .9;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.cCrumbs__a{
  color: var(--coal);
  border-bottom: 1px solid rgba(22,18,15,.18);
}
.cCrumbs__a:hover{ border-bottom-color: rgba(22,18,15,.35); }
.cCrumbs__sep{ opacity:.55; }
.cCrumbs__cur{ opacity:.85; }

.cHero__title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.2vw, 52px);
  margin: 0 0 10px;
}
.cHero__subtitle{
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.6;
}

/* Layout */
.contactGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}
.contactPanel{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.contactPanel__head{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  justify-content: space-between;
  padding: 18px 18px 12px;
}
.contactPanel__head--right{ padding-bottom: 16px; }
.contactPanel__k{
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(22,18,15,.72);
  font-size: 13px;
}
.contactPanel__t{
  font-weight: 900;
  font-size: 18px;
  margin-top: 6px;
}
.contactPanel__d{
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 520px;
}

/* Alerts */
.alert{
  margin: 0 16px 12px;
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
}
.alert--ok{
  border-color: rgba(34, 197, 94, .28);
  background: rgba(34, 197, 94, .08);
}
.alert--bad{
  border-color: rgba(239, 68, 68, .28);
  background: rgba(239, 68, 68, .08);
}

/* Form tweaks */
.form{ padding-top: 0; }
.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 0 16px 10px;
  color: rgba(29,29,29,.82);
  font-size: 13px;
  line-height: 1.45;
}
.check input{ margin-top: 4px; }

.contactQuick{
  padding: 10px 16px 18px;
  border-top: 1px solid rgba(22,18,15,.10);
}
.contactQuick__t{
  font-weight: 800;
  font-size: 13px;
  color: rgba(22,18,15,.72);
}
.contactQuick__row{
  margin-top: 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border: 1px solid rgba(22,18,15,.14);
  background: rgba(255,255,255,.84);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(22,18,15,.86);
}
.pill:hover{
  border-color: rgba(22,18,15,.26);
}

/* Map */
.mapBox{
  margin: 0 16px 14px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(22,18,15,.14);
  background: rgba(255,255,255,.85);
  aspect-ratio: 16 / 11;
}
.mapBox iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
}

/* Info box under map */
.infoBox{
  margin: 0 16px 16px;
  border: 1px solid rgba(22,18,15,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  padding: 14px 14px;
}
.infoBox__title{
  font-weight: 900;
  margin-bottom: 10px;
}
.infoList{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.infoItem{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.infoItem__icon{
  width: 38px;
  height: 38px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(139,90,43,.16), rgba(201,139,77,.16));
  border: 1px solid rgba(22,18,15,.10);
  flex: 0 0 auto;
}
.infoItem__k{
  font-weight: 800;
  font-size: 13px;
  color: rgba(22,18,15,.70);
}
.infoItem__v{
  margin-top: 3px;
  color: rgba(22,18,15,.86);
  line-height: 1.45;
}
.infoItem__v--stack{
  display:flex;
  flex-direction: column;
  gap: 4px;
}
.infoItem a{ color: rgba(22,18,15,.86); border-bottom: 1px solid rgba(22,18,15,.18); }
.infoItem a:hover{ border-bottom-color: rgba(22,18,15,.32); }

.infoActions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .contactGrid{ grid-template-columns: 1fr; }
  .cHero{ padding-top: 110px; }
  .contactPanel__head{ flex-direction: column; align-items: stretch; }
  .contactPanel__head .btn{ align-self: flex-start; }
}
