/* === VITRINE DE LOJAS === */
.ld-lojas-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.ld-loja-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: center;
}

.ld-loja-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.ld-loja-item img {
  display: block;
  margin: 0 auto;
  max-height: 220px;
  width: 100%;
  object-fit: cover;
}

.ld-loja-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px;
}

.ld-loja-link {
  text-decoration: none;
  color: inherit;
}

.ld-loja-item .loja-instagram {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  text-align: center;
}

.ld-loja-item .loja-instagram span:first-child {
  color: #0073aa;
  font-weight: 600;
  text-align: center;
}

.ld-loja-item .loja-descricao {
  padding: 0 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* === PAGINAÇÃO === */
.ld-lojas-pagination {
  text-align: center;
  margin-top: 30px;
}

.ld-lojas-pagination a,
.ld-lojas-pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 14px;
  background: #eee;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
}

.ld-lojas-pagination .current {
  background: #0073aa;
  color: #fff;
}

/* === DETALHE DA LOJA === */
.ld-loja-detalhes {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
  text-align: center!important;
}

.ld-loja-detalhes h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.ld-loja-imagem {
  text-align: center;
  margin-bottom: 25px;
}

.ld-loja-detalhes img {
  max-width: 100%;
  border-radius: 10px;
}

.ld-loja-conteudo {
  margin-bottom: 20px;
  text-align: center;
}

.ld-loja-detalhes p a {
  color: #0073aa;
  font-weight: 600;
}

/*
.ld-loja-detalhes p a:hover {
  text-decoration: none;
}
*/


.loja-categorias {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
  
}
