
:root{
  --shop-green:#0d6047;
  --shop-dark:#073f30;
  --shop-soft:#edf6f1;
  --shop-line:#d8e5de;
  --shop-red:#e51d2a;
  --shop-ink:#17211d;
  --shop-muted:#637069;
}
.shop-overlay{
  position:fixed;inset:0;z-index:100000;display:none;align-items:center;justify-content:center;
  padding:18px;background:rgba(5,13,10,.74);backdrop-filter:blur(5px)
}
.shop-overlay.open{display:flex}
.shop-modal{
  width:min(1120px,96vw);max-height:94vh;overflow:auto;background:#fff;border-radius:24px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);position:relative
}
.shop-close{
  position:sticky;top:12px;float:right;z-index:8;width:44px;height:44px;border:0;border-radius:50%;
  background:#fff;color:#222;font-size:1.55rem;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.16);
  margin:12px 12px -56px 0
}
.shop-product-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr)}
.shop-gallery{padding:24px;background:#f5f8f6;min-height:620px}
.shop-main-media{
  position:relative;display:flex;align-items:center;justify-content:center;aspect-ratio:1/1;
  border-radius:18px;background:#fff;overflow:hidden;border:1px solid var(--shop-line)
}
.shop-main-media img,.shop-main-media video{width:100%;height:100%;object-fit:contain}
.shop-thumbs{display:flex;gap:9px;overflow-x:auto;margin-top:12px;padding-bottom:4px}
.shop-thumb{
  flex:0 0 72px;width:72px;height:72px;border:2px solid transparent;border-radius:12px;
  background:#fff;overflow:hidden;cursor:pointer;padding:0
}
.shop-thumb.active{border-color:var(--shop-green)}
.shop-thumb img,.shop-thumb video{width:100%;height:100%;object-fit:cover}
.shop-details{padding:36px 32px 30px}
.shop-labels{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:11px}
.shop-label{padding:7px 10px;border-radius:999px;background:var(--shop-soft);color:var(--shop-green);font-size:.72rem;font-weight:900}
.shop-label.sale{background:#ffe7e9;color:var(--shop-red)}
.shop-details h2{font-size:clamp(1.8rem,4vw,2.7rem);line-height:1.08;margin:0 0 12px}
.shop-subtitle{color:var(--shop-muted);line-height:1.6;margin:0 0 18px}
.shop-price-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;margin:15px 0}
.shop-price{font-size:2rem;color:var(--shop-green);font-weight:950}
.shop-old{color:#89948f;text-decoration:line-through;font-size:.95rem}
.shop-save{color:var(--shop-red);font-weight:900}
.shop-description{color:#4f5c56;line-height:1.7;white-space:pre-line}
.shop-options{margin-top:22px;padding-top:18px;border-top:1px solid var(--shop-line)}
.shop-options h3,.shop-related h3{margin:0 0 12px}
.shop-field{display:block;margin:11px 0}
.shop-field span{display:block;margin-bottom:6px;font-size:.8rem;font-weight:900;color:#40514a}
.shop-field select,.shop-field input,.shop-field textarea{
  width:100%;padding:12px 13px;border:1px solid var(--shop-line);border-radius:12px;background:#fff;font:inherit
}
.shop-accessories{display:grid;gap:8px}
.shop-accessory{
  display:flex;justify-content:space-between;gap:10px;align-items:center;padding:10px 12px;
  border:1px solid var(--shop-line);border-radius:12px;background:#fbfdfc
}
.shop-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:22px}
.shop-btn{
  border:0;border-radius:13px;padding:14px 16px;font-weight:950;cursor:pointer;text-decoration:none;
  display:flex;align-items:center;justify-content:center;gap:8px;font-size:.95rem
}
.shop-btn.primary{background:var(--shop-green);color:#fff}
.shop-btn.secondary{background:var(--shop-soft);color:var(--shop-green)}
.shop-related{padding:0 32px 32px}
.shop-related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.shop-related-card{border:1px solid var(--shop-line);border-radius:14px;overflow:hidden;background:#fff;cursor:pointer}
.shop-related-card img{width:100%;aspect-ratio:1/1;object-fit:contain;background:#f6f8f7}
.shop-related-card div{padding:10px}.shop-related-card strong{font-size:.82rem;display:block}.shop-related-card span{font-size:.78rem;color:var(--shop-green);font-weight:900}
.shop-cart-fab{
  position:fixed;right:20px;bottom:20px;z-index:90000;border:0;border-radius:999px;background:var(--shop-green);
  color:#fff;padding:14px 18px;font-weight:950;box-shadow:0 14px 34px rgba(13,96,71,.32);cursor:pointer;
  display:flex;align-items:center;gap:9px
}
.shop-cart-count{
  min-width:25px;height:25px;padding:0 6px;border-radius:999px;background:#fff;color:var(--shop-green);
  display:grid;place-items:center;font-size:.75rem
}
.shop-cart-modal{width:min(780px,96vw);padding:28px}
.shop-cart-modal h2{margin:0 0 18px}
.shop-cart-item{
  display:grid;grid-template-columns:66px 1fr auto;gap:12px;align-items:center;padding:12px 0;border-bottom:1px solid var(--shop-line)
}
.shop-cart-item img{width:66px;height:66px;object-fit:contain;border-radius:11px;background:#f5f8f6}
.shop-cart-item h4{margin:0 0 4px}.shop-cart-item small{color:var(--shop-muted)}
.shop-cart-qty{display:flex;align-items:center;gap:7px;margin-top:7px}
.shop-cart-qty button{width:28px;height:28px;border:1px solid var(--shop-line);border-radius:8px;background:#fff;cursor:pointer}
.shop-cart-price{text-align:right;font-weight:900;color:var(--shop-green)}
.shop-cart-remove{display:block;border:0;background:none;color:#c92828;cursor:pointer;margin-top:7px;margin-left:auto}
.shop-cart-total{display:flex;justify-content:space-between;align-items:center;padding:18px 0;font-size:1.25rem;font-weight:950}
.shop-empty{text-align:center;padding:40px;color:var(--shop-muted)}
.shop-checkout{display:grid;grid-template-columns:1fr 1fr;gap:11px}
.shop-checkout label{font-size:.8rem;font-weight:900}.shop-checkout input,.shop-checkout select,.shop-checkout textarea{
  display:block;width:100%;margin-top:6px;padding:12px;border:1px solid var(--shop-line);border-radius:11px;font:inherit
}
.shop-checkout .wide{grid-column:1/-1}
.shop-result{text-align:center;padding:30px}
.shop-result-number{font-size:2.3rem;color:var(--shop-green);font-weight:950}
.shop-result-total{font-size:1.7rem;font-weight:950;margin:12px 0 22px}
body.shop-locked{overflow:hidden}
.product-card-open{cursor:pointer}
@media(max-width:800px){
  .shop-overlay{padding:0;align-items:flex-end}
  .shop-modal{width:100%;max-height:96vh;border-radius:22px 22px 0 0}
  .shop-product-layout{grid-template-columns:1fr}
  .shop-gallery{min-height:auto;padding:15px}
  .shop-details{padding:24px 18px}
  .shop-related{padding:0 18px 25px}
  .shop-related-grid{grid-template-columns:repeat(2,1fr)}
  .shop-actions{grid-template-columns:1fr}
  .shop-checkout{grid-template-columns:1fr}
  .shop-checkout .wide{grid-column:auto}
  .shop-cart-modal{padding:22px 16px}
}


/* Carrito tradicional dentro del menú */
.ta-cart-menu-button{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:42px;
  padding:9px 13px;
  border:1px solid #cfe0d7;
  border-radius:999px;
  background:#fff;
  color:#0d6047;
  font:inherit;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
  transition:.2s ease
}
.ta-cart-menu-button:hover,
.ta-cart-menu-button.has-items{
  background:#0d6047;
  color:#fff;
  border-color:#0d6047
}
.ta-cart-menu-button .ta-cart-count{
  min-width:23px;
  height:23px;
  padding:0 6px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#e9f4ee;
  color:#0d6047;
  font-size:.72rem;
  font-weight:950
}
.ta-cart-menu-button.has-items .ta-cart-count,
.ta-cart-menu-button:hover .ta-cart-count{
  background:#fff;
  color:#0d6047
}
.ta-mobile-cart-button{
  width:calc(100% - 24px);
  margin:10px 12px 14px
}

/* WhatsApp global */
.ta-whatsapp-global{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:89990;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  font-size:1.7rem;
  box-shadow:0 15px 35px rgba(21,124,62,.34);
  transition:transform .2s ease,box-shadow .2s ease
}
.ta-whatsapp-global:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 20px 42px rgba(21,124,62,.42)
}

/* Paleta referencial dentro del configurador */
.shop-color-guide{
  margin:12px 0 15px
}
.shop-color-guide>span{
  display:block;
  margin-bottom:7px;
  color:#40514a;
  font-size:.8rem;
  font-weight:900
}
.shop-color-guide img{
  width:100%;
  max-height:190px;
  display:block;
  object-fit:cover;
  border-radius:13px;
  border:1px solid var(--shop-line)
}
.shop-color-guide small{
  display:block;
  margin-top:6px;
  color:var(--shop-muted);
  font-size:.72rem;
  line-height:1.4
}

@media(max-width:999px){
  .ta-menu-shell .ta-cart-menu-button{
    margin-left:auto;
    margin-right:8px;
    padding:8px 10px
  }
  .ta-menu-shell .ta-cart-menu-button span:not(.ta-cart-count){
    display:none
  }
}
@media(max-width:600px){
  .ta-whatsapp-global{
    right:14px;
    bottom:15px;
    width:54px;
    height:54px
  }
}


.shop-accessory-quantity{
  display:flex;
  align-items:center;
  justify-content:space-between
}
.shop-accessory-quantity>div:first-child{
  display:flex;
  flex-direction:column;
  gap:3px
}
.shop-accessory-quantity small{
  color:var(--shop-muted);
  font-size:.72rem
}
.shop-option-qty{
  display:flex;
  align-items:center;
  gap:7px
}
.shop-option-qty button{
  width:31px;
  height:31px;
  border:1px solid var(--shop-line);
  border-radius:9px;
  background:#fff;
  color:var(--shop-green);
  font-size:1.1rem;
  font-weight:900;
  cursor:pointer
}
.shop-option-qty input{
  width:38px;
  border:0;
  background:transparent;
  text-align:center;
  font-weight:900
}
.shop-checkout select{
  display:block;
  width:100%;
  margin-top:6px;
  padding:12px;
  border:1px solid var(--shop-line);
  border-radius:11px;
  background:#fff;
  font:inherit
}
.shop-dispatch-field input[readonly]{
  background:#edf6f1;
  color:#0d6047;
  font-weight:900
}
.shop-checkout-summary{
  padding:14px 16px;
  border:1px solid var(--shop-line);
  border-radius:14px;
  background:#f8fbf9
}
.shop-checkout-summary>div{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:7px 0
}
.shop-checkout-summary .grand{
  margin-top:5px;
  padding-top:12px;
  border-top:1px solid var(--shop-line);
  font-size:1.18rem
}

.v5-promo-image,.v5-promo-button{
  font:inherit;
  border:0;
  cursor:pointer;
}
.v5-promo-image{width:100%;padding:16px}


/* =========================================================
   V5.5.4 - Corrección definitiva de carrito y modal
   ========================================================= */

/* Botón Mi cotización: fondo completo y texto siempre legible */
.ta-menu-shell > .ta-cart-menu-button,
.ta-cart-menu-button{
  position:relative!important;
  width:auto!important;
  min-width:158px!important;
  max-width:none!important;
  height:44px!important;
  min-height:44px!important;
  margin:0!important;
  padding:0 14px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  border:1px solid #0d6047!important;
  border-radius:999px!important;
  background:#0d6047!important;
  color:#fff!important;
  font-size:.88rem!important;
  font-weight:900!important;
  line-height:1!important;
  white-space:nowrap!important;
  overflow:visible!important;
  transform:none!important;
  box-shadow:0 7px 18px rgba(13,96,71,.18)!important;
}

.ta-cart-menu-button i,
.ta-cart-menu-button > span:not(.ta-cart-count){
  position:static!important;
  display:inline-flex!important;
  color:#fff!important;
  opacity:1!important;
  visibility:visible!important;
}

.ta-cart-menu-button .ta-cart-count{
  position:static!important;
  flex:0 0 auto!important;
  min-width:24px!important;
  width:auto!important;
  height:24px!important;
  padding:0 7px!important;
  display:grid!important;
  place-items:center!important;
  border:0!important;
  border-radius:999px!important;
  background:#fff!important;
  color:#0d6047!important;
  font-size:.72rem!important;
  font-weight:950!important;
  line-height:1!important;
  transform:none!important;
}

.ta-cart-menu-button:hover,
.ta-cart-menu-button.has-items{
  background:#084d39!important;
  border-color:#084d39!important;
  color:#fff!important;
}

/* Evitar que el menú apriete o tape el carrito */
.ta-menu-shell{
  grid-template-columns:auto minmax(0,1fr) max-content!important;
  overflow:visible!important;
}

.ta-desktop-menu{
  min-width:0!important;
  overflow:visible!important;
}

/* Modal centrado respecto al viewport y con scroll seguro */
.shop-overlay{
  position:fixed!important;
  inset:0!important;
  z-index:1000000!important;
  display:none!important;
  width:100vw!important;
  height:100dvh!important;
  min-height:100vh!important;
  padding:24px!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  align-items:flex-start!important;
  justify-content:center!important;
  background:rgba(5,13,10,.78)!important;
  overscroll-behavior:contain!important;
  -webkit-overflow-scrolling:touch!important;
}

.shop-overlay.open{
  display:flex!important;
}

.shop-modal{
  position:relative!important;
  top:auto!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  transform:none!important;
  width:min(1120px,calc(100vw - 48px))!important;
  max-width:1120px!important;
  height:auto!important;
  max-height:none!important;
  margin:auto 0!important;
  overflow:visible!important;
  border-radius:24px!important;
  background:#fff!important;
}

.shop-product-layout{
  min-height:0!important;
}

.shop-gallery{
  min-height:0!important;
}

.shop-close{
  position:sticky!important;
  top:12px!important;
  right:12px!important;
  z-index:30!important;
}

/* El contenido del modal puede crecer y el overlay hace scroll */
#shopProductContent,
#shopCartContent{
  min-height:0!important;
  overflow:visible!important;
}

body.shop-locked{
  overflow:hidden!important;
}

@media(max-width:1100px){
  .ta-menu-shell > .ta-cart-menu-button,
  .ta-cart-menu-button{
    min-width:136px!important;
    padding:0 11px!important;
    font-size:.8rem!important;
  }
}

@media(max-width:999px){
  .ta-menu-shell > .ta-cart-menu-button{
    position:relative!important;
    width:46px!important;
    min-width:46px!important;
    max-width:46px!important;
    height:46px!important;
    padding:0!important;
    border-radius:50%!important;
  }

  .ta-menu-shell > .ta-cart-menu-button > span:not(.ta-cart-count){
    display:none!important;
  }

  .ta-menu-shell > .ta-cart-menu-button .ta-cart-count{
    position:absolute!important;
    top:-5px!important;
    right:-5px!important;
    min-width:21px!important;
    height:21px!important;
    padding:0 5px!important;
    border:2px solid #fff!important;
  }

  .ta-mobile-cart-button{
    width:calc(100% - 24px)!important;
    max-width:none!important;
    min-width:0!important;
    height:46px!important;
    margin:10px 12px 14px!important;
    padding:0 14px!important;
    border-radius:999px!important;
  }

  .ta-mobile-cart-button > span:not(.ta-cart-count){
    display:inline-flex!important;
  }

  .shop-overlay{
    align-items:flex-start!important;
    padding:12px!important;
  }

  .shop-modal{
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
    border-radius:20px!important;
  }
}

@media(max-width:600px){
  .shop-overlay{
    padding:0!important;
  }

  .shop-modal{
    width:100%!important;
    min-height:100dvh!important;
    border-radius:0!important;
  }

  .shop-close{
    top:10px!important;
    right:10px!important;
  }
}


/* V5.6 — motor único para promociones, modal y carrito */
.v5-promotions .v5-promo-image,
.v5-promotions .v5-promo-button{
  appearance:none;
  -webkit-appearance:none;
  font:inherit;
  border:0;
  cursor:pointer
}

.v5-promotions .v5-promo-image{
  width:100%
}

.shop-overlay.open{
  visibility:visible!important;
  opacity:1!important
}

.shop-overlay:not(.open){
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important
}


/* ==========================================================
   MODAL NATIVO — reemplaza por completo .shop-overlay
   ========================================================== */
.shop-native-dialog{
  width:min(1120px,calc(100% - 32px));
  max-width:1120px;
  max-height:calc(100dvh - 32px);
  margin:auto;
  padding:0;
  border:0;
  border-radius:24px;
  background:transparent;
  overflow:auto;
  color:var(--shop-ink);
}

.shop-native-dialog[open]{
  display:block!important;
}

.shop-native-dialog::backdrop{
  background:rgba(5,13,10,.78);
  backdrop-filter:blur(5px);
}

.shop-dialog-panel{
  position:relative;
  width:100%;
  min-height:0;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  box-shadow:0 30px 90px rgba(0,0,0,.36);
}

.shop-native-dialog .shop-close{
  position:sticky!important;
  top:12px!important;
  z-index:50!important;
  float:right;
  margin:12px 12px -56px 0!important;
}

.shop-native-dialog .shop-product-layout{
  min-height:0!important;
}

.shop-native-dialog #shopProductContent,
.shop-native-dialog #shopCartContent{
  width:100%;
  min-height:0;
}

body:has(.shop-native-dialog[open]){
  overflow:hidden;
}

@media(max-width:800px){
  .shop-native-dialog{
    width:calc(100% - 16px);
    max-height:calc(100dvh - 16px);
    border-radius:18px;
  }

  .shop-dialog-panel{
    border-radius:18px;
  }
}

@media(max-width:600px){
  .shop-native-dialog{
    width:100%;
    max-width:100%;
    max-height:100dvh;
    border-radius:0;
  }

  .shop-dialog-panel{
    min-height:100dvh;
    border-radius:0;
  }
}


/* ==============================================================
   V6 — configurador por etapas
   ============================================================== */
.v6-configurator{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--shop-line)
}
.v6-configurator-head{
  display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:15px
}
.v6-configurator-head h3{margin:0}
.v6-step-indicator{font-size:.76rem;font-weight:900;color:var(--shop-green)}
.v6-step-tabs{
  display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin-bottom:16px
}
.v6-step-tab{
  border:1px solid var(--shop-line);border-radius:10px;padding:9px 7px;background:#fff;
  color:var(--shop-muted);font-weight:900;font-size:.74rem;cursor:pointer
}
.v6-step-tab.active{background:var(--shop-green);border-color:var(--shop-green);color:#fff}
.v6-step-panel{display:none}
.v6-step-panel.active{display:block}
.v6-config-nav{display:flex;justify-content:space-between;gap:10px;margin-top:16px}
.v6-config-nav button{
  border:0;border-radius:11px;padding:11px 15px;font-weight:900;cursor:pointer
}
.v6-config-prev{background:var(--shop-soft);color:var(--shop-green)}
.v6-config-next{background:var(--shop-green);color:#fff;margin-left:auto}
.v6-config-summary{
  display:grid;gap:8px;padding:14px;border-radius:14px;background:#f4f8f6;border:1px solid var(--shop-line)
}
.v6-config-summary div{display:flex;justify-content:space-between;gap:12px}
.v6-config-summary .total{padding-top:10px;border-top:1px solid var(--shop-line);font-size:1.12rem;font-weight:950}
.v6-color-preview{
  display:flex;gap:12px;align-items:center;padding:12px;margin-bottom:12px;border-radius:13px;
  background:#f7faf8;border:1px solid var(--shop-line)
}
.v6-color-chip{width:42px;height:42px;border-radius:50%;border:3px solid #fff;box-shadow:0 0 0 1px #cbd9d1}
.v6-color-preview strong,.v6-color-preview small{display:block}
.v6-color-preview small{color:var(--shop-muted);margin-top:3px}
@media(max-width:600px){
  .v6-step-tabs{grid-template-columns:repeat(2,1fr)}
}

/* ==============================================================
   V6 — reseñas de Google
   ============================================================== */
.v6-google-reviews{background:#f5f8f6}
.v6-google-shell{max-width:1120px;margin:0 auto;padding:76px 20px}
.v6-google-heading{text-align:center;max-width:720px;margin:0 auto 26px}
.v6-google-heading>span{color:#0d6047;font-weight:900;text-transform:uppercase;font-size:.75rem;letter-spacing:.08em}
.v6-google-heading h2{margin:8px 0 10px;color:#173d31;font-size:clamp(2rem,5vw,3.4rem)}
.v6-google-heading p{color:#66746e;line-height:1.6}
.v6-google-layout{display:grid;grid-template-columns:245px minmax(0,1fr);gap:22px;align-items:stretch}
.v6-google-summary-card{
  display:flex;flex-direction:column;justify-content:center;gap:18px;padding:24px;background:#fff;
  border:1px solid #dce7e1;border-radius:20px
}
.v6-google-summary{display:flex;gap:12px;align-items:center}
.v6-google-mark{width:48px;height:48px;display:grid;place-items:center;border-radius:50%;
  border:1px solid #e2e7e4;color:#4285f4;font-size:1.7rem;font-weight:950}
.v6-google-summary strong,.v6-google-summary span{display:block}
.v6-google-summary span{margin-top:5px;color:#66746e;font-size:.83rem}
.v6-review-stars{color:#f5a900;letter-spacing:2px;font-size:1.03rem}
.v6-google-actions{display:grid;gap:9px}
.v6-google-actions a{text-align:center;text-decoration:none;padding:11px;border-radius:12px;font-weight:900}
.v6-google-actions a:first-child{background:#eef6f2;color:#0d6047}
.v6-google-actions a:last-child{background:#0d6047;color:#fff}
.v6-reviews-wrap{position:relative;min-width:0}
.v6-reviews-track{
  display:grid;grid-auto-flow:column;grid-auto-columns:minmax(270px,1fr);gap:14px;
  overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:8px
}
.v6-reviews-track::-webkit-scrollbar{display:none}
.v6-review-card{
  scroll-snap-align:start;min-height:240px;padding:19px;background:#fff;border:1px solid #dce7e1;
  border-radius:18px;display:flex;flex-direction:column;gap:11px
}
.v6-review-card header{display:grid;grid-template-columns:44px 1fr auto;gap:10px;align-items:center}
.v6-review-avatar{width:44px;height:44px;border-radius:50%;overflow:hidden;display:grid;place-items:center;background:#dfe9e4;color:#173d31;font-weight:900}
.v6-review-avatar img{width:100%;height:100%;object-fit:cover}
.v6-review-card header strong,.v6-review-card header small{display:block}
.v6-review-card header small{margin-top:3px;color:#718078}
.v6-google-letter{color:#4285f4;font-size:1.05rem}
.v6-review-card p{margin:0;color:#4f5c56;line-height:1.6;flex:1}
.v6-review-card>a{color:#0d6047;font-weight:900;text-decoration:none;font-size:.8rem}
.v6-review-placeholder{justify-content:center;text-align:center}
.v6-reviews-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:2;width:42px;height:42px;border:1px solid #dce7e1;
  border-radius:50%;background:#fff;color:#0d6047;cursor:pointer;box-shadow:0 8px 22px rgba(13,96,71,.12)
}
.v6-reviews-arrow.prev{left:-15px}.v6-reviews-arrow.next{right:-15px}
.v6-review-new{color:#0d6047!important;font-weight:900}
@media(max-width:800px){
  .v6-google-layout{grid-template-columns:1fr}
  .v6-google-summary-card{align-items:center;text-align:center}
  .v6-google-actions{width:100%}
}
@media(max-width:560px){
  .v6-google-shell{padding:55px 16px}
  .v6-reviews-track{grid-auto-columns:86%}
  .v6-reviews-arrow{display:none}
}


/* ==========================================================
   WHATSAPP GLOBAL ÚNICO — VERSIÓN DEFINITIVA
   ========================================================== */
.ta-wa-global{
  position:fixed!important;
  right:20px!important;
  bottom:20px!important;
  left:auto!important;
  top:auto!important;
  z-index:85000!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:0!important;
  width:auto!important;
  height:58px!important;
  margin:0!important;
  padding:0!important;
  pointer-events:none!important;
  transform:none!important;
}

.ta-wa-label{
  position:relative!important;
  right:-9px!important;
  z-index:1!important;
  display:inline-flex!important;
  align-items:center!important;
  height:40px!important;
  padding:0 18px 0 15px!important;
  border-radius:999px 0 0 999px!important;
  background:#25d366!important;
  color:#fff!important;
  font-family:inherit!important;
  font-size:.88rem!important;
  font-weight:800!important;
  line-height:1!important;
  white-space:nowrap!important;
  opacity:1!important;
  visibility:visible!important;
  pointer-events:none!important;
  box-shadow:0 9px 24px rgba(15,118,55,.23)!important;
}

.ta-wa-button{
  position:relative!important;
  z-index:2!important;
  flex:0 0 58px!important;
  width:58px!important;
  min-width:58px!important;
  max-width:58px!important;
  height:58px!important;
  min-height:58px!important;
  max-height:58px!important;
  margin:0!important;
  padding:0!important;
  display:grid!important;
  place-items:center!important;
  border:0!important;
  border-radius:50%!important;
  background:#25d366!important;
  color:#fff!important;
  text-decoration:none!important;
  pointer-events:auto!important;
  box-shadow:0 14px 34px rgba(15,118,55,.37)!important;
  transition:transform .2s ease,box-shadow .2s ease!important;
  overflow:hidden!important;
}

.ta-wa-button i{
  display:block!important;
  margin:0!important;
  padding:0!important;
  color:#fff!important;
  font-size:1.75rem!important;
  line-height:1!important;
}

.ta-wa-button:hover{
  transform:translateY(-3px) scale(1.03)!important;
  box-shadow:0 19px 42px rgba(15,118,55,.46)!important;
}

.ta-wa-button:focus-visible{
  outline:3px solid rgba(37,211,102,.35)!important;
  outline-offset:4px!important;
}

/* Ocultar cualquier botón flotante heredado que reaparezca por CSS o HTML antiguo. */
body > .whatsapp-float:not([data-ta-whatsapp-global]),
body > .wa-float:not([data-ta-whatsapp-global]),
body > .floating-whatsapp:not([data-ta-whatsapp-global]),
body > .whatsapp-floating:not([data-ta-whatsapp-global]),
body > .whatsapp-button:not([data-ta-whatsapp-global]),
body > .btn-whatsapp:not([data-ta-whatsapp-global]),
body > .whatsapp-widget:not([data-ta-whatsapp-global]),
body > .float-whatsapp:not([data-ta-whatsapp-global]){
  display:none!important;
}

.shop-native-dialog,
.shop-overlay{
  z-index:1000000!important;
}

@media(max-width:650px){
  .ta-wa-global{
    right:14px!important;
    bottom:14px!important;
    width:56px!important;
    height:56px!important;
  }

  .ta-wa-label{
    display:none!important;
  }

  .ta-wa-button{
    flex-basis:56px!important;
    width:56px!important;
    min-width:56px!important;
    max-width:56px!important;
    height:56px!important;
    min-height:56px!important;
    max-height:56px!important;
  }

  .ta-wa-button i{
    font-size:1.7rem!important;
  }
}


/* ==========================================================
   WHATSAPP EN TOP LAYER — CORRECCIÓN PARA INDEX
   ========================================================== */
.ta-wa-global[popover]{
  position:fixed!important;
  inset:auto 20px 20px auto!important;
  width:auto!important;
  max-width:none!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  overflow:visible!important;
  color:inherit!important;
}

.ta-wa-global[popover]:popover-open{
  display:flex!important;
}

.ta-wa-global[popover]::backdrop{
  display:none!important;
  background:transparent!important;
  pointer-events:none!important;
}

@media(max-width:650px){
  .ta-wa-global[popover]{
    inset:auto 14px 14px auto!important;
  }
}
