/* xl - DESKTOP STYLES */ 
/* BOTIGUES */
.botigues-section {
  padding: 100px 80px;
  background: var(--warm-white);
}

.botigues-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

/* GRID */
.botigues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
}

.botiga-card {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.2s;
  cursor: pointer;
}

.botiga-card:hover {
  background: var(--parchment);
}

.botiga-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: rgba(0,0,0,0.07);
  margin-bottom: 16px;
  line-height: 1;
}

.botiga-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.botiga-loc {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.botiga-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
}

.botiga-link:hover {
  color: var(--brown-dark);
}

/* CARD MÉS */
.botiga-more-card {
  background: var(--brown-dark);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.botiga-more-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--brown-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.botiga-more-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(196,168,130,0.5);
}

.botiga-more-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream);
}

/* Treure estils d'enllaç de la targeta */
a.botiga-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.botiga-card .botiga-name {
  color: var(--charcoal);
}

a.botiga-card .botiga-loc {
  color: #888;
}

a.botiga-card:hover {
  background: var(--parchment);
}

/* BOTIGA DETALLS */
.botiga-detalls {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  
}

.botiga-detall {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #6b5c4e;
  line-height: 1.5;
}

.botiga-detall svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--brown-light);
}

.botiga-detall span {
  color: #6b5c4e;
	font-size:14px;
}

/* Hover estat */
a.botiga-card:hover .botiga-detall svg {
  stroke: var(--brown-corp);
}

a.botiga-card:hover .botiga-detall span {
  color: var(--brown-dark);
}

.botiga-detall a {
  color: #6b5c4e;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.botiga-detall a:hover {
  color: var(--brown-dark);
	text-decoration:underline;
}

/* TABLET */
@media (max-width: 1024px) {
  .botigues-section {
    padding: 80px 48px;
  }
  .botigues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .botigues-intro {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .botigues-section {
    padding: 60px 24px;
  }
  .botigues-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .botigues-grid {
        grid-template-columns: repeat(1, 1fr)!important;
  }
}


