/* =========================================================
   LACA - clon visual (DEV)
   Colores y tipografía extraídos del sitio de producción
   ========================================================= */

:root{
  --laca-heading: #475c6d;   /* color de títulos y precios */
  --laca-header-bg: #f4f4f4; /* fondo del header */
  --laca-primary: #475c6d;   /* usamos el mismo tono como color de marca hasta confirmar el oficial */
  --laca-text: #212529;
}

body{
  color: var(--laca-text);
  background: #fff;
}

h1,h2,h3,h4,h5,h6,
.laca-section-title{
  font-family: "MuseoSans-900", "Segoe UI", sans-serif; /* fuente custom del sitio: falta el @font-face real */
  color: var(--laca-heading);
}

.laca-section-title{
  letter-spacing: .5px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Header */
.laca-header{
  background: var(--laca-header-bg);
  border-bottom: 1px solid #e5e5e5;
}

.laca-navbar{
  background: #fff;
}

.laca-navbar .nav-link{
  color: var(--laca-text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .85rem;
}

.laca-navbar .nav-link.active{
  color: var(--laca-primary);
}

/* Botones marca */
.laca-btn-primary{
  background: var(--laca-primary);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: .6rem 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
}
.laca-btn-primary:hover{
  background: #364957;
  color: #fff;
}

.laca-btn-outline{
  border: 1px solid var(--laca-primary);
  color: var(--laca-primary);
  background: transparent;
  font-size: .75rem;
  font-weight: 600;
}

.laca-icon-btn{
  color: #6c757d;
  font-size: 1.1rem;
  position: relative;
}
.laca-icon-btn:hover{
  color: var(--laca-primary);
}
.laca-cart-badge{
  position: absolute;
  top: -8px;
  right: -10px;
  background: #dc3545;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero */
.laca-hero img{
  display:block;
}

/* Product cards */
.product-card{
  border: none;
  text-align: center;
}
.product-card img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-bottom: .75rem;
}
.product-card .category{
  font-size: .75rem;
  color: #8a8a8a;
  text-transform: uppercase;
}
.product-card .name{
  font-weight: 700;
  font-size: .9rem;
  min-height: 2.6em;
}
.product-card .price{
  color: var(--laca-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

/* SerLACA CTA */
.laca-serlaca-cta{
  background: var(--laca-header-bg);
}

/* Breadcrumb */
.laca-breadcrumb{
  background: var(--laca-header-bg);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.laca-breadcrumb-active{
  color: var(--laca-heading);
}

/* Filtro / sidebar mapa profesionales */
.laca-filter-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}
.laca-filter-title{
  color: var(--laca-heading);
  font-weight: 900;
  border-bottom: 2px solid var(--laca-heading);
  display: inline-block;
  padding-bottom: .4rem;
}
.laca-btn-search{
  background: var(--laca-heading);
  color: #fff;
  border: none;
}
.laca-badge-todos{
  background: #4caf7d;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 3px;
  padding: .2rem .5rem;
}
.laca-province-list{
  max-height: 260px;
  overflow-y: auto;
  font-size: .85rem;
}

/* Mapa placeholder */
.laca-map-placeholder{
  background: #e3e3e3;
  border-radius: 4px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #9a9a9a;
  text-align: center;
  padding: 1rem;
}
.laca-map-placeholder i{
  font-size: 2.5rem;
}

/* Tarjeta punto de venta */
.laca-pv-card{
  background: #f7f7f7;
  border-radius: 4px;
  padding: 1.25rem;
  position: relative;
}
.laca-pv-badge{
  position: absolute;
  top: 0;
  left: 0;
  background: var(--laca-heading);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .5rem;
}
.laca-pv-logo{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--laca-heading);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.laca-pv-nombre{
  color: var(--laca-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .95rem;
}
.laca-pv-icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2f2f2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

/* Footer */
.laca-footer{
  background: #2f2f2f;
  color: #ccc;
}
.laca-footer h6{
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.laca-footer a{
  color: #ccc;
  text-decoration: none;
  line-height: 2;
}
.laca-footer a:hover{
  color: #fff;
}
