.store-hero{
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.store-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
}
.store-hero__overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,.6);
}
.store-hero__title{
  color:#fff;
  font-size:2.5rem;
  font-weight:700;
}
.store-hero__text{
  color:rgba(255,255,255,.8);
}

.store-banner__item{
  height:220px;
  display:flex;
  align-items:center;
  padding:2rem;
}

.store-area-card{
  display:block;
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:#000;
  box-shadow:0 10px 20px rgba(0,0,0,.05);
}
.store-area-card__img{
  height:120px;
  background-size:cover;
}
.store-area-card__body{
  padding:.8rem;
  text-align:center;
  font-weight:600;
}

.store-brands{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.store-brand-pill{
  padding:.5rem .9rem;
  border-radius:999px;
  background:#f1f3f5;
  font-size:.8rem;
}

.store-product-card{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 24px rgba(0,0,0,.05);
}
.store-product-card__img{
  width: 100%;
  height:200px;
  background-size:cover;
  position:relative;
}
.store-product-card__img .badge{
  position:absolute;
  top:10px;
  left:10px;
}
.store-product-card__body{
  padding:1rem;
}

.store-advisor{
  background:#8A8A8A;
  color:#fff;
  padding:2rem;
  border-radius:20px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
}

.store-bubble
{
  position: fixed;
  right: 24px;
  top: 150px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  grid-gap: 12px;
  height: 55px;
  padding: 10px 10px;
  border-radius: 1000px;
  background: rgba(245,160,65,1.9);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  transition:
    transform .14s ease,
    width .2s ease,
    opacity .2s ease,
    background .2s ease;
  will-change: transform, left, top;
  pointer-events: auto;
}

.store-bubble:hover
{
  color: #fff;
  background: rgba(230,132,23,.98);
  transform: translateY(-2px);
}

.store-bubble__icon
{
  width: 40px;
  height: 40px;
  min-width: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.2);
  font-size: 1rem;
}

.store-bubble__content
{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
    margin-right: 10px;
  transition: max-width .22s ease, opacity .18s ease;
  white-space: nowrap;
}

.store-bubble__content strong{
  font-size: .92rem;
  font-weight: 700;
}

.store-bubble__content small{
  font-size: .74rem;
  opacity: .8;
}

.store-bubble:hover .store-bubble__content,
.store-bubble.is-open .store-bubble__content{
  max-width: 240px;
  opacity: 1;
}

/* Efecto “vive” con el mouse */
.store-bubble.is-following{
  transition: transform .08s linear, left .08s linear, top .08s linear;
}

/* En móvil: fija abajo a la derecha */
@media (max-width: 991.98px){
  .store-bubble{
    left: auto !important;
    top: auto !important;
    right: 16px;
    bottom: 16px;
    transform: none !important;
  }

  .store-bubble
  {
    width: 55px!important;
    height: 55px!important;
    opacity: 1;
  }
    .store-bubble__icon
    {
        margin-left: -2px!important;
        background: rgba(255,255,255,.0);
    }

    
}



/*  */
.store-section-head {
  max-width: 720px;
}

.store-area-card {
  display: block;
  text-decoration: none;
  color: #212529;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0,0,0,.08);
}
.store-area-card__img {
  height: 130px;
  background-size: cover;
  background-position: center;
}
.store-area-card__body {
  padding: .9rem 1rem 1rem;
  text-align: center;
}
.store-area-card__body h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 0;
}

.store-brand-bubbles
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;

}

.store-brand-bubble 
{
  overflow: hidden;
  display: flex;
  width: 100%;
  max-width: 110px;
  align-items: center;
  justify-content: center;
  padding: .8rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-brand-bubble:hover 
{
  transform: translateY(-3px);

}

.store-brand-bubble img 
{
    width: 100%;
    max-width: 80px;
    border-radius: 100%;
    box-shadow: 0 5px 4px rgba(0,0,0,.08);
}

.thermal-service-mini{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  padding:1.2rem;
  box-shadow:0 12px 24px rgba(0,0,0,.04);
}
.thermal-service-mini h3{
  font-size:1rem;
  font-weight:700;
  margin-bottom:.5rem;
}
.thermal-service-mini p{
  font-size:.9rem;
  color:#6c757d;
  margin-bottom:1rem;
}

.mt_4
{
   margin-top: 20px!important;
}


.store-hidden{
  display: none !important;
}

.store-brand-bubbles{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.store-brand-bubble{

  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
  flex: 0 0 auto;
}

@media (max-width: 767px){
  .store-brand-bubbles--scroll{
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .15rem;
  }

  .store-brand-bubbles--scroll::-webkit-scrollbar{
    display: none;
  }

  .store-brand-bubble{
    width: 70px;
    height: 70px;
    padding: .7rem;
  }
}

/* ===== 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;
}

.cardTop:hover
{
   transform: translateY(-4px); 
   box-shadow: 0 5px 10px rgba(0,0,0,.2) !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;
}


.store-card__thumb {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 220px;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
}

/* Logo marca */
.store-card__brand {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 60px;
  max-height: 40px;

}

.store-card__brand img 
{
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* 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;
  }
}


.store-hidden{
  display: none !important;
}

#areaProductsGrid.store-view-list .area-product-item{
  flex: 0 0 100%;
  max-width: 100%;
}

#areaProductsGrid.store-view-list .store-product-card{
  display: flex;
  flex-direction: row;
  height: 100%;
}

#areaProductsGrid.store-view-list .store-product-card__img{
  width: 280px;
  min-width: 280px;
  height: auto;
  min-height: 220px;
}

#areaProductsGrid.store-view-list .store-product-card__body{
  flex: 1;
}

@media (max-width: 767px){
  #areaProductsGrid.store-view-list .store-product-card{
    flex-direction: column;
  }

  #areaProductsGrid.store-view-list .store-product-card__img{
    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;
}


.product-tech-note{
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8e1, #fffdf6);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.product-tech-note__icon{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 193, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a67c00;
  flex-shrink: 0;
}

.product-tech-note__title{
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #a67c00;
  margin-bottom: .2rem;
}

.product-tech-note__text{
  font-size: .95rem;
  color: #444;
  line-height: 1.4;
}


/*- Cotizador tienda -*/

.product-coverage-box,
.product-checkout-box{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}

.product-checkout-box{
  background: linear-gradient(135deg, #f8fafc, #fffdf7);
}

.product-checkout-box__line{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.product-checkout-box__line:last-child{
  border-bottom: 0;
}

#pq_discount_text{
  color: #b7791f;
}

#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;
}

#pq_checkout_total{
  color: #111827;
  font-size: 1rem;
}

#pq_checkout_discount{
  color: #b7791f;
}


.service-card {
  display: block;
  height: 100%;
  text-decoration: none;
}

.service-card__inner {
  background: linear-gradient(135deg, #FF9140, #FF7830);
  border-radius: 16px;
  padding: 28px 20px;
  height: 100%;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Icono */
.service-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0.9;
}

/* Título */
.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
    color: white;
  margin-bottom: 10px;
}

/* Texto */
.service-card__text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Hover moderno */
.service-card__inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Efecto glow sutil */
.service-card__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card__inner:hover::after {
  opacity: 1;
}

.service-card__inner:hover .service-card__icon {
  transform: scale(1.2);
}