/* ===== TIENDA ===== */
.store-card{
  border-radius: 20px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.store-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,.08) !important;
}

.store-card__thumb-link{
  text-decoration: none;
}

.store-card__thumb{
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
}

.store-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: .5rem .75rem;
  font-weight: 600;
}

.store-price{
  font-size: 1.15rem;
  font-weight: 700;
  color: #212529;
}

.store-item.store-hidden{
  display: none !important;
}

/* Vista lista */
.store-view-list .store-item{
  flex: 0 0 100%;
  max-width: 100%;
}

.store-view-list .store-card{
  flex-direction: row;
}

.store-view-list .store-card__thumb{
  width: 260px;
  min-width: 260px;
  height: 100%;
  min-height: 220px;
}

.store-view-list .store-card .card-body{
  flex: 1;
}

@media (max-width: 768px){
  .store-view-list .store-card{
    flex-direction: column;
  }

  .store-view-list .store-card__thumb{
    width: 100%;
    min-width: 100%;
    min-height: 220px;
  }
}

/* ===== PRODUCT DETAIL ===== */
.product-gallery__main{
  position: relative;
  height: 420px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.product-detail-badge{
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  padding: .55rem .8rem;
  font-weight: 600;
}

.product-gallery__thumbs
{
  display: flex;
  grid: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar{
  display: none;
}

.product-gallery__thumb-btn
{
       margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  flex: 0 0 90px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .18s ease, transform .18s ease;
}

.product-gallery__thumb-btn.is-active{
  border-color: #212529;
}

.product-gallery__thumb-btn:hover{
  transform: translateY(-2px);
}

.product-gallery__thumb{
  height: 74px;
  background-size: cover;
  background-position: center;
}

.product-detail-price{
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
}

.product-feature-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.product-feature-list li{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px 14px;
}

.product-feature-list li::before{
  content: "✓";
  font-weight: 700;
  margin-right: 10px;
}

.product-specs{
  display: grid;
  gap: 10px;
}

.product-specs__row{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.product-specs__label{
  font-weight: 600;
  color: #212529;
}

.product-specs__value{
  color: #6c757d;
}

@media (max-width: 768px){
  .product-gallery__main{
    height: 300px;
  }

  .product-specs__row{
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.product-coverage-box{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}

#productQuoteForm .is-invalid{
  border-color: #dc3545 !important;
}

#productQuoteForm .invalid-feedback{
  display: none;
  font-size: .75rem;
  margin-top: .25rem;
}

#productQuoteForm .is-invalid + .invalid-feedback{
  display: block;
}