/** Shopify CDN: Minification failed

Line 1236:4 Expected identifier but found bad string token
Line 1236:35 Unterminated string token
Line 1237:33 Unterminated string token
Line 1238:42 Unterminated string token
Line 1256:4 Expected identifier but found bad string token
Line 1256:35 Unterminated string token
Line 1257:33 Unterminated string token
Line 1258:31 Unterminated string token

**/
/* ==========================================================================
   TIBA SHOP - VARIABLES & BASE STYLES
   ========================================================================== */

html {
  scroll-behavior: smooth;
}


   :root {
  --tiba-brand-orange: #f2654a;
  --tiba-brand-teal: #0e5e5a;
  --tiba-bg-light: #f8f9fa;
  --tiba-text-dark: #1a1a1a;
  --tiba-border-radius: 12px;
  --tiba-transition: all 0.3s ease;
}



   :root {
    --tiba-fs-micro: 1rem !important;
    --tiba-fs-display: 2.7rem !important;
    --tiba-fs-body: 1.7rem !important;
    --tiba-fs-title: 2rem !important;
    --tiba-fs-small: 1.5rem !important;
   }



/* --- Pruebas Sociales (Social Proof) en Hero --- */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--tiba-text-dark);
}

.hero-stars {
  color: #ffb800;
  letter-spacing: 2px;
}

/* --- Botones Quick Add en Tarjetas de Producto --- */
.tiba-product-card {
  position: relative;
  border-radius: var(--tiba-border-radius);
  overflow: hidden;
  transition: var(--tiba-transition);
}

.tiba-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.tiba-quick-add-btn {
  width: 100%;
  background-color: var(--tiba-bg-light);
  color: var(--tiba-text-dark);
  border: 1px solid #e5e5e5;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--tiba-transition);
  margin-top: 8px;
}

.tiba-quick-add-btn:hover {
  background-color: var(--tiba-brand-orange);
  color: #ffffff;
  border-color: var(--tiba-brand-orange);
}

/* --- Insignia Verificado en Testimonios --- */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--tiba-brand-teal);
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 6px;
}

/* --- Botón Flotante WhatsApp --- */
.tiba-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: var(--tiba-transition);
}

.tiba-whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.tiba-whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}


/* ==========================================================================
   TIBA SHOP - AJUSTES DE COLOR Y TIPOGRAFÍA
   ========================================================================== */

/* Encabezados y títulos principales */
h1, h2, h3, .h1, .h2, .h3, .card__heading {
  color: var(--tiba-brand-teal) !important;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: clamp(29px, 3.4vw, 43px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
  font-weight: 500 !important;
}


/* Enlaces del menú principal */
.header__active-menu-item,
.header__menu-item:hover {
  color: var(--tiba-brand-orange) !important;
  text-decoration: none;
}

/* Precios de los productos */
.price__regular .price-item--regular,
.price__sale .price-item--sale {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Botones secundario / Outline con toque del verde institucional */
.button--secondary {
  border-color: var(--tiba-brand-teal) !important;
  color: var(--tiba-brand-teal) !important;
  background-color: transparent;
}

.button--secondary:hover {
  background-color: var(--tiba-brand-teal) !important;
  color: #ffffff !important;
}

/* Redondear tarjetas de producto y bordes sutiles */
.card-wrapper {
  border-radius: var(--tiba-border-radius);
  background-color: #ffffff;
}

.card__media {
  border-top-left-radius: var(--tiba-border-radius);
  border-top-right-radius: var(--tiba-border-radius);
}


/* ==========================================================================
   TIBA MASCOT - ANIMACIONES Y EFECTO OVERLAP
   ========================================================================== */

/* --- Avatar Flotante Esquina --- */
.tiba-avatar-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.tiba-avatar-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tibaFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.tiba-avatar-float:hover .tiba-avatar-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.tiba-avatar-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.tiba-online-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background-color: #25d366;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.tiba-speech-bubble {
  background: #ffffff;
  color: var(--tiba-text-dark);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  white-space: nowrap;
}

/* --- Tiba Sobresaliendo en Footer (Overlap) --- */
.tiba-footer-mascot-container {
  position: relative;
  margin-bottom: -60px; /* Hace que sobresalga hacia la sección superior */
  z-index: 10;
}

.tiba-mascot-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.tiba-mascot-overlap {
  width: 140px;
  height: auto;
  margin-top: -50px; /* Eleva la cabeza de Tiba sobre la tarjeta */
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
  animation: tibaWaving 4s ease-in-out infinite;
}

/* --- Animaciones CSS --- */
@keyframes tibaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes tibaWaving {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

/* Ajuste Responsivo Móvil */
@media screen and (max-width: 749px) {
  .tiba-mascot-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .tiba-speech-bubble {
    display: none; /* Oculta la burbuja en móvil para no saturar pantalla */
  }
}


/* ==========================================================================
   TIBA SHOP - FOOTER & LEGALES MINIMALISTAS
   ========================================================================== */

/* Fondo del footer con el verde institucional */
.footer {
  background-color: var(--tiba-brand-teal) !important;
  color: #ffffff !important;
}

.footer-block__heading {
    color: #ffffff !important;
}


.footer__heading,
.footer-block__details-content .list-menu__item--link {
  color: #ffffff !important;
}

.footer-block__details-content .list-menu__item--link:hover {
  color: var(--tiba-brand-orange) !important;
  text-decoration: underline;
}

/* Sub-footer (Copyright y Legales horizontales) */
.footer__content-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Lista horizontal discreta de políticas/legales */
.footer__policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.footer__policies a {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.75rem; /* Tamaño discreto */
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__policies a:hover {
  color: #ffffff !important;
}


/* ==========================================================================
   AJUSTE DE COPYRIGHT Y BARRA INFERIOR DEL FOOTER
   ========================================================================== */

/* Reduce el espaciado superior e inferior del contenedor final */
.footer__content-bottom {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

/* Alinea la barra de copyright a la izquierda */
.footer__content-bottom-wrapper {
  justify-content: flex-start !important;
  padding-left: 10px !important;
}

.footer__copyright {
  text-align: left !important;
}

/* Aumenta un poco el tamaño de letra */
.footer__copyright .copyright__content {
  font-size: 1.1rem !important; /* Pasa de ~0.75rem a un tamaño más visible */
  color: rgba(255, 255, 255, 0.9) !important;
}



/* ==========================================================================
   ANCHO PERSONALIZADO PARA PÁGINAS DE POLÍTICAS
   ========================================================================== */
@media screen and (min-width: 900px) {
.shopify-policy__container {
  max-width: 80% !important;
}
}











/* =========================================================
   TIBA SHOP — FOOTER CIRCULAR DECORATION
   ========================================================= */

.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}


/* =========================================================
   ARO 01 — VERDE / SUPERIOR DERECHA
   ========================================================= */

.footer::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  border: 28px solid rgba(0, 121, 107, 0.32);

  border-radius: 50%;

  top: -175px;
  right: -105px;

  pointer-events: none;
  z-index: 0;
}


/* =========================================================
   ARO 02 — NARANJA / INFERIOR DERECHA - VERDE / IZQUIERDA
   ========================================================= */

.footer::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    /* Aro naranja */
    radial-gradient(
      circle at 103% 103%,
      transparent 0,
      transparent 55px,
      #FF6A34 56px,
      #FF6A34 78px,
      transparent 79px
    ),

    /* Aro verde izquierdo */
    radial-gradient(
      circle at -3% 103%,
      transparent 0,
      transparent 75px,
      rgba(0, 121, 107, 0.28) 76px,
      rgba(0, 121, 107, 0.28) 98px,
      transparent 99px
    );

  pointer-events: none;
  z-index: 0;
}


/* =========================================================
   ARO 03 — VERDE / INFERIOR IZQUIERDA
   Se crea con un elemento adicional:
   <span class="tiba-footer-ring-left" aria-hidden="true"></span>
   ========================================================= */

.footer .tiba-footer-ring-left {
  position: absolute;

  width: 190px;
  height: 190px;

  border: 22px solid rgba(0, 121, 107, 0.28);

  border-radius: 50%;

  left: -125px;
  bottom: -105px;

  pointer-events: none;
  z-index: 0;
}


/* =========================================================
   CONTENIDO SIEMPRE SOBRE LOS AROS
   ========================================================= */

.footer > *,
.footer .page-width,
.footer .footer__content-top,
.footer .footer__content-bottom {
  position: relative;
  z-index: 1;
}


/* =========================================================
   CONEXIÓN TIBA — OPCIONAL
   ========================================================= */

.tiba-footer-connection {
  position: absolute;

  width: 72px;
  height: 40px;

  right: 42px;
  bottom: 32px;

  pointer-events: none;
  z-index: 0;
}

.tiba-footer-connection::before {
  content: "";

  position: absolute;

  width: 42px;
  height: 3px;

  left: 15px;
  top: 19px;

  background: linear-gradient(
    90deg,
    #FF6A34,
    #00796B
  );

  border-radius: 999px;

  opacity: 0.65;
}

.tiba-footer-connection::after {
  content: "";

  position: absolute;

  width: 28px;
  height: 28px;

  left: 0;
  top: 5px;

  border: 7px solid #FF6A34;

  border-radius: 50%;

  box-sizing: border-box;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 990px) {

  .footer::before {
    width: 220px;
    height: 220px;

    border-width: 23px;

    top: -135px;
    right: -90px;
  }


  .footer .tiba-footer-ring-left {
    width: 150px;
    height: 150px;

    border-width: 18px;

    left: -100px;
    bottom: -85px;
  }

  .tiba-footer-connection {
    right: 25px;
    bottom: 25px;

    transform: scale(0.85);
    transform-origin: bottom right;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .footer::before {
    width: 155px;
    height: 155px;

    border-width: 18px;

    top: -95px;
    right: -65px;
  }



  .footer .tiba-footer-ring-left {
    width: 105px;
    height: 105px;

    border-width: 15px;

    left: -70px;
    bottom: -60px;
  }

  .tiba-footer-connection {
    display: none;
  }
}



/* ==========================================================================
   TIBA SHOP - BANNER PRINCIPAL (HERO SECTION)
   ========================================================================== */
/* Contenedor general */
.tiba-hero-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Alineación vertical al centro para la grilla nativa de Dawn */
.tiba-hero-section .grid.align-items-center {
  align-items: center;
}

/* Columna de Contenido (Izquierda) */
.tiba-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tiba-hero-content .caption-with-letter-spacing {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--tiba-brand-teal) !important;
  margin-bottom: 1rem;
}

.tiba-hero-title {
  color: var(--tiba-brand-teal);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.tiba-hero-text {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 460px;
}

/* Botón estilo Píldora con elevación */
.tiba-hero-content .buttongo {
  --buttons-border-width: 0px !important;
  color: #ffffff !important;           /* Texto blanco puro */
  text-decoration: none !important;    /* Quita el subrayado */
  font-weight: 600 !important;         /* Grosor semi-bold */
  letter-spacing: 0.02em !important;   /* Espaciado entre letras sutil */
  border-radius: 50px !important;
  padding: 1rem 2.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 18px rgba(242, 101, 74, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tiba-hero-content .buttongo:hover {
  --buttons-border-width: 0px !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 101, 74, 0.35);
}

/* Prueba social (Estrellas) */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
}

.hero-stars {
  color: #ffb800;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.hero-social-proof span {
  font-size: 0.9rem;
  color: #333333;
}

/* Columna de Imagen (Derecha) */
.tiba-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-end !important;
  max-height: 320px; /* Controla la altura total máxima de la columna */
}

.tiba-hero-img {
  max-height: 300px !important;  
  width: auto !important;         
  object-fit: cover !important;
  object-position:center 90% !important; 
  height: auto;
  position: relative;
  left: -20% !important;
  z-index: 2;
  transform: scale(1.8) !important;       
  transition: transform 0.6s ease; 
}

/* Elementos decorativos (Círculos y Puntos estilo boceto) */
.tiba-hero-media::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  width: 130px;
  height: 130px;
  border: 16px solid var(--tiba-brand-orange);
  border-radius: 50%;
  z-index: 1;
}

.tiba-hero-media::after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: -10px;
  width: 60px;
  height: 60px;
  border: 10px solid var(--tiba-brand-teal);
  border-radius: 50%;
  z-index: 1;
}

/* Ajustes Responsivos para Móviles */
@media screen and (max-width: 749px) {
  .tiba-hero-content {
    align-items: center;
    text-align: center;
  }

  .tiba-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .tiba-hero-img {
  display: none;
  }

  .tiba-hero-media::before,
  .tiba-hero-media::after {
    display: none; /* Oculta adornos pesados en celular para limpiar la vista */
  }
}



/* ==========================================================================
   BORDE EN PRODUCTO PRINCIPAL
   ========================================================================== */

img.image-magnify-hover {
    border-radius: 12px !important;
}


/* ==========================================================================
   TAMAÑO UNIFORME EN GALERÍA DE PRODUCTOS
   ========================================================================== */

@media screen and (min-width: 780px) {
.product__media-wrapper .product__media {
  aspect-ratio: 1 / 1 !important; /* Fuerza la proporción cuadrada */
  position: relative !important;
  overflow: hidden !important;
  background-color: #ffffff !important; /* Fondo blanco para rellenar vacíos */
}

/* Ajusta la imagen dentro del contenedor sin estirarla */
.product__media-wrapper .product__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important; /* Mantiene la proporción original sin recortar el producto */
  object-position: center !important; /* Centra el producto vertical y horizontalmente */
}
}

/* ==========================================================================
   ESTILO DESTACADO PARA EL PRECIO DEL PRODUCTO
   ========================================================================== */

/* Contenedor principal del precio */
.price {
  margin-top: 1.2rem !important;
  margin-bottom: 0.4rem !important;
}

/* 1. Precio Tachado / Anterior en la Ficha de Producto (Original en Oferta) */
.product .price--on-sale .price-item--regular,
.product__info-container .price--on-sale .price-item--regular,
.product .price__sale s.price-item--regular,
s.price-item--regular {
  font-size: 2rem !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
  opacity: 0.75 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

/* 2. Precio Actual / Final de Venta en la Ficha de Producto */
.product .price-item--last,
.product__info-container .price-item--last,
.product .price__regular .price-item--regular {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #0e5e5a !important;
  letter-spacing: 0.03em !important;
}
/* Badge / Etiqueta de Oferta en Naranja Tiba */
.badge--bottom-left,
.badge,
.price__badge-sale {
  background-color: #f2654a !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 500 !important;
  border-radius: 12px !important; /* Bordes suavemente redondeados */
  padding: 4px 10px !important;
}


/* Cambia el tamaño del precio normal en las tarjetas */
.card-wrapper .price .price-item--regular,
.card-wrapper .price .price-item--last {
  font-size: 1.7rem !important; /* Ajusta el tamaño aquí (ej: 1.1rem, 1.3rem, 18px) */
  font-weight: 800 !important;
  color: #0e5e5a !important;
}
/* Cambia el tamaño del precio tachado/anterior cuando hay oferta */
.card-wrapper .price--on-sale .price-item--regular {
  font-size: 1.2rem !important; /* Un poco más pequeño para mantener jerarquía */
  opacity: 0.7 !important;
  color: #94a3b8 !important;
}



/* Ocultar decimales innecesarios en COP (,00) para un look más limpio */
/* (Opcional: Si quieres que solo se vea $74.900 COP) */
.price__regular .price-item {
  display: inline-block;
}

/* Texto de "Impuestos incluidos" o "Gastos de envío" debajo del precio */
.product__tax {
  display: none !important;
}


/* ==========================================================================
   ESTILOS MINIMALISTAS CON BORDES REDONDEADOS (CANTIDAD / CARRITO / PAGO)
   ========================================================================== */

/* Contenedor principal */
quantity-input.quantity {
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 50px !important;
  border: 1px solid rgba(14, 94, 90, 0.25) !important;
  background-color: #f8fafc !important;
  overflow: hidden !important; /* Importante: recorta el hover exactamente a la curva del borde */
  max-width: 140px !important;
  height: 46px !important;
  padding: 0 !important;
  max-width: 155px !important;
  height: 48px !important;
}

/* Botones de menos y más */
.quantity__button {
  height: 100% !important;
  width: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: transparent !important;
  color: #0e5e5a !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Redondeo específico para los extremos */
.quantity__button[name="decrease"] {
  border-radius: 50px 0 0 50px !important;
}

.quantity__button[name="increase"] {
  border-radius: 0 50px 50px 0 !important;
}

/* Hover limpio que llena todo el extremo */
.quantity__button:hover {
  background-color: rgba(14, 94, 90, 0.12) !important;
  color: #0e5e5a !important;
}

/* Campo de número central */
.quantity__input {
  height: 100% !important;
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  font-weight: 700 !important;
  color: #0e5e5a !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

.quantity::before,
.quantity::after,
quantity-input::before,
quantity-input::after,
.quantity__input::before,
.quantity__input::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  border: none !important;
}



/* 2. Botón "Agregar al carrito" */
.product-form__submit {
  border-radius: 50px !important;
  background-color: #f2654a !important;   /* Naranja institucional de la marca */
  border: 1px solid #f2654a !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.03em !important;
  padding: 1.1rem 2rem !important;
  box-shadow: 0 4px 15px rgba(242, 101, 74, 0.25) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.product-form__submit:hover {
  background-color: #e0553b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(242, 101, 74, 0.35) !important;
}

/* Ocultar la línea inferior predeterminada de Shopify si aplica */
.product-form__submit::after,
.product-form__submit::before {
  display: none !important;
}

/* 3. Botones de Pago Acelerado (PayPal / Dinámico) */
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded {
  border-radius: 50px !important;
  overflow: hidden !important;
  font-weight: 600 !important;
  transition: transform 0.2s ease !important;
}

.shopify-payment-button__button:hover {
  transform: translateY(-2px) !important;
}

/* Enlace "Más opciones de pago" */
.shopify-payment-button__more-options {
  font-size: 0.85rem !important;
  color: #0e5e5a !important;
  text-decoration: underline !important;
}


/* ==========================================================================
   BOTONES Y CONVERSIÓN DE ALTA GAMA (TIBA SHOP)
   ========================================================================== */

/* 1. Botón Principal: Agregar al Carrito (El Rey de la Conversión) */
.product-form__submit {
  border-radius: 50px !important;
  background-color: #f2654a !important;   /* Naranja Tiba */
  border: 2px solid #f2654a !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  padding: 1.1rem 2rem !important;
  box-shadow: 0 4px 15px rgba(242, 101, 74, 0.28) !important;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-form__submit:hover {
  background-color: #e0553b !important;
  border-color: #e0553b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(242, 101, 74, 0.38) !important;
}

/* 2. Botón Secundario: Comprar Ahora (Elegante & Minimalista) */
.shopify-payment-button__button--unbranded,
.shopify-payment-button__button {
  border-radius: 50px !important;
  background-color: #ffffff !important;
  border: 2px solid #0e5e5a !important;    /* Verde Tiba */
  color: #0e5e5a !important;
  padding: 1rem 2rem !important;
  text-transform: uppercase !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}


.button:after, .shopify-challenge__button:after, .customer button:after, .shopify-payment-button__button--unbranded:after{
  box-shadow: none !important;
}

.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button:hover {
  background-color: #0e5e5a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* 3. Ajuste de espaciado entre botones */
.product-form__buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}


/* 1. Ajuste margen del título */
.product__title {
    word-break: break-word;
    margin-bottom: 0rem !important;
}


/* ==========================================================================
   BUNDLER - TARJETA ÚNICA TIBA SHOP
   ========================================================================== */

/* 1. Resetear el contenedor externo */
.bndlr-radio-container {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  background-color: #ffffff !important;
  padding: 14px 16px !important;
  margin-bottom: 10px !important;
  box-shadow: none !important;
  outline: none !important;
}

.bndlr-radio-container[data-bundler-break-active="true"] {
  border: 1.5px solid #0e5e5a !important;
  background-color: rgba(14, 94, 90, 0.02) !important;
}

/* 2. Destruir la tarjeta interna (El contenedor blanco con sombra interior) */
.bndlr-radio-container label,
.bndlr-radio-container label > div,
.bndlr-text-price-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* 3. Ocultar los elementos de radio nativos de la app */
.bndlr-radio-container input[type="radio"],
.bndlr-radio-button {
  display: none !important;
}

/* 4. Construcción del Toggle Switch limpio y centrado */
.bndlr-radio-text-group {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #0e5e5a !important;
  position: relative !important;
}

.bndlr-radio-text-group::before {
  content: "" !important;
  width: 30px !important;
  height: 16px !important;
  background-color: #cbd5e1 !important;
  border-radius: 50px !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  transition: background-color 0.2s ease !important;
}

.bndlr-radio-text-group::after {
  content: "" !important;
  width: 12px !important;
  height: 12px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  position: absolute !important;
  left: 2px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: left 0.2s ease !important;
}

/* Estado Encendido */
.bndlr-radio-container[data-bundler-break-active="true"] .bndlr-radio-text-group::before {
  background-color: #0e5e5a !important;
}

.bndlr-radio-container[data-bundler-break-active="true"] .bndlr-radio-text-group::after {
  left: 16px !important;
}

/* 5. Alinear todo en una sola línea (Switch + Texto + Píldora + Precio) */
.bndlr-text-price-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  position: relative !important;
}

/* 6. Corregir la Píldora de Ahorro (Quitar inclinación y posición flotante) */
.bndlr-savings-text {
  position: static !important;
  transform: none !important;
  background-color: rgba(242, 101, 74, 0.1) !important;
  border: 1px solid rgba(242, 101, 74, 0.25) !important;
  border-radius: 50px !important;
  padding: 2px 8px !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  margin: 0 10px !important;
}

/* 7. Precios */
.bndlr-price,
.bndlr-discounted-price {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}


/* ==========================================================================
   UBICACIÓN DE ETIQUETA EN ESQUINA SUPERIOR DERECHA (MOBILE)
   ========================================================================== */

@media (max-width: 768px) {
  /* 1. Dar espacio superior en el contenedor principal para la etiqueta */
  .bndlr-radio-container {
    padding-top: 22px !important; /* Abre espacio arriba a la derecha */
    position: relative !important;
  }

  .bndlr-text-price-wrapper {
    position: static !important;
  }

  /* 2. Fijar la Etiqueta en la esquina superior derecha */
  .bndlr-savings-text {
    position: absolute !important;
    top: -20px !important;
    right: -5px !important;
    transform: none !important;
    background-color: rgba(242, 101, 74, 0.12) !important;
    color: #f2654a !important;
    border: 0px solid rgba(242, 101, 74, 0.3) !important;
    border-radius: 50px !important;
    padding: 1px 7px !important;
    'font-size: 0.62rem !important;
    'font-weight: 700 !important;
    'text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    margin: 0 !important;
    white-space: nowrap !important;
    z-index: 2 !important;
  }

  /* 3. Alinear el precio corrido en la columna derecha */
  .bndlr-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    text-align: right !important;
    margin-left: auto !important;
  }

  .bndlr-discounted-price {
    'font-size: 0.88rem !important;
    'font-weight: 800 !important;
    'color: #0e5e5a !important;
  }
}



 /* =========================================================
    TIBA SHOP — ESTILOS PÁGINAS DE POLÍTICAS
    Asset: tiba-policies.css
    ========================================================= */

.shopify-policy__container {
  padding: 40px 24px 100px;
}

.shopify-policy__body {
  padding: 0 12px;
}

@media screen and (max-width: 749px) {
  .shopify-policy__container {
    padding: 28px 18px 50px;
  }

  .shopify-policy__body {
    padding: 0 4px;
  }
}



 /* =========================================================
    TIBA SHOP — CARD PRESENTACION   
    ========================================================= */
.card-wrapper {
  border: 1px solid #f1f5f9 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background-color: #ffffff !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

/* Título de Producto */
.card__heading, .card__heading a {
  color: #0e5e5a !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}


.card__information {
  padding: 10px 5px 10px !important;
}

.card__content .card__content{
  display: none;
}



/* Rediseño completo del Botón Quick Add */
.quick-add__submit {
  max-width: 100% !important;
  background-color: #ffffff !important;
  color: #0e5e5a !important;
  border: 1.5px solid #0e5e5a !important;
  border-radius: 25px !important;
  padding: 0px !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  margin-top: 20px !important;
  transition: all 0.2s ease-in-out !important;
}

/* Efecto Hover (al pasar el cursor) */
.quick-add__submit:hover {
  background-color: #0e5e5a !important;
  color: #ffffff !important;
  border-color: #0e5e5a !important;
}



/* ===================================================
   ANIMACION ÍCONOS DE ENCABEZADO
   =================================================== */
/* Animación suave al pasar el cursor sobre los nuevos SVGs */
.header__icon:hover svg {
  transform: scale(1.12);
  transition: transform 0.25s ease;
}

/* Color naranja de la marca en la burbuja del contador */
.cart-count-bubble {
  background-color: #f2654a !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: 2px solid #ffffff !important;
}

.header__icon svg {
  width: 28px !important;
  height: 28px !important;
  vertical-align: middle !important;
}


/* Barra de opciones de ahorro */
.bndlr-quantity-break .bndlr-line{
  font-size: 14px !important;
  font-weight: 300 !important;
}
.bndlr-quantity-break .bndlr-line:before, .bndlr-line:after{
      height: 1px !important;
}