.product-detail {
  max-height: 74vh;
  background-color: white;
  display: flex;
  gap: 10px;
  /*  overflow-x: hidden;
  overflow-y: auto;*/
  padding: 0 0.5% 0.5% 0.5%;
}

.product-detail .left-col {
  width: 40%;
  /*
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 0 1% 1% 1%;
  margin: 0 auto;
*/
}

.product-detail .left-col .mySwiperSeccionProducto {
  height: 80%;
  background-color: #f6f6f6 !important;
  object-fit: contain;
}

.product-detail .left-col .mySwiperDetail {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  color: #c2c0c0 !important;
  background-color: white;
  box-shadow: -2px 0 5px -2px rgba(0, 0, 0, 0.2);
  font-size: 10px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 15px !important;
  font-weight: 900 !important;
}

.product-detail .left-col .mySwiperDetail #detalleProductoCarruselItems div {
  border: solid 4px var(--robin-egg-blue-900);
}

.product-detail .right-col {
  width: 60%;
  margin-right: 0;
  overflow: auto;
  padding: 0 2% 2% 2%;
}



.product-detail .discount-info {
  font-size: 14px;
  color: #C30000;
  font-weight: bold;
  display: block;
  flex-basis: 225px;
  overflow: hidden;
  font-family: monospace;
  font-weight: bold;
  text-align: center;
  margin: 0 !important;
}

.limitado {
  background-color: #FF8C00;
  color: #721c24;
  border: 1px solid #FF6F61;

}

.guide a {
  text-decoration: underline;
  color: #007bff;
  cursor: pointer;
}

.guide a:hover {
  text-decoration: none;
  color: #0056b3;
}


.mySwiperSeccionProducto {
  height: 360px;
  width: 100%;
  margin-bottom: 3%;
}

.mySwiperDetail {
  height: 12%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiperDetail .swiper-slide img {
  background-color: #f6f6f6 !important;
}


.swiper-slide-thumb-active::after {
  content: " ";
  width: 100%;
  height: 5px;
  background-color: #ff0000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.left-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



@media (max-width: 1440px) {}

/* Pantallas grandes, 2K y laptops grandes */

@media (max-width: 1280px) {}

/* Laptops estándar */

@media (max-width: 1024px) {}

/* Tablets en horizontal */

@media (max-width: 992px) {
  .product-detail {
    max-height: 100dvh;
    flex-direction: column;
  }


  .left-col,
  .right-col {
    min-width: 100%;
    padding: 2%;
  }


  .product-detail .left-col .mySwiperSeccionProducto {
    height: 30dvh;
  }

  .product-detail .left-col .mySwiperDetail {
    display: none;
  }


}

/* Tablets en vertical y móviles grandes */

@media (max-width: 640px) {}

/* Móviles medianos */

@media (max-width: 480px) {}

/* Móviles pequeños */

@media (max-width: 375px) {}

/* iPhone SE, móviles muy pequeños */



.size-option {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 40px;
  font-size: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  background-color: #fff;
  cursor: pointer;
  transition: font-size 0.2s, transform 0.3s;
}

.size-option:hover {
  background-color: #f8f9fa;
  border-color: #333;
}

.size-active {
  background-color: #f1f1f1;
  border-color: #000;
  background: linear-gradient(135deg, #ffda47, #fcb045);
  color: #1a1a1a;
  border: 2px solid #fcb045;
  box-shadow: 0 0 15px rgba(252, 176, 69, 0.7), 0 0 30px rgba(255, 218, 71, 0.5);
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}



.variant-option {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 40px;
  font-size: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  background-color: #fff;
  cursor: pointer;
  transition: font-size 0.2s, transform 0.3s;
}


.variant-option:hover {
  background-color: #f8f9fa;
  border-color: #333;
}

.variant-active {
  position: relative;
  padding: 1px;
  background-color: #ffffff;
  border: 2px solid #4df0ff;
  /* Cyan brillante */
  border-radius: 8px;
  box-shadow:
    0 0 10px #4df0ff,
    /* Sombra interna */
    0 0 20px rgba(77, 240, 255, 0.5),
    /* Glow externo */
    inset 0 0 15px rgba(77, 240, 255, 0.3);
  /* Brillo interior */
  animation: pulse-glow 2s infinite alternate;
  transform: scale(1.05);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes pulse-glow {
  0% {
    box-shadow:
      0 0 10px #4df0ff,
      0 0 20px rgba(77, 240, 255, 0.5),
      inset 0 0 15px rgba(77, 240, 255, 0.3);
  }

  100% {
    box-shadow:
      0 0 15px #4df0ff,
      0 0 30px rgba(77, 240, 255, 0.8),
      inset 0 0 20px rgba(77, 240, 255, 0.5);
  }
}



.color-variant {
  min-width: 35px;
  max-height: 35px;
  border-radius: 50% !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, border-color 0.2s;
}

.color-variant:hover {
  transform: scale(0.95);
  border-color: #aaa;
}

.color-variant.active {
  border-color: #000;
}

.image-variant {
  width: 2.5rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  cursor: pointer;
  padding: 2px;
  transition: all 0.2s ease;
}

.image-variant:hover {
  transform: scale(0.95);
  border-color: #888;
}


btn-and-quantity-wrap .Skeleton #detalleProductoCarruselItems .swiper-slide,
.Skeleton .right-col span,
.Skeleton .right-col p,
.Skeleton .right-col h1,
.Skeleton .right-col li,
.Skeleton .right-col .guide,
.Skeleton .right-col button,
.Skeleton .right-col input,
.Skeleton .right-col .tabs span,
.Skeleton .left-col .mySwiperSeccionProducto {
  border: 10px;
  background-color: #ededed;
  pointer-events: none;
  color: transparent !important;
  /* ocultar texto */
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%) #ededed;
  background-size: 200% 100%;
  background-position: 180% 0;
  border: none;
  box-shadow: none;
  animation: skeleton 1s ease-in-out infinite;

}

@keyframes skeleton {
  to {
    background-position: -20% 0;
  }
}




.quantity-control {
  width: 150px;
}

.cart-button {
  width: 45px;
  height: 45px;
}

.tab-content {
  min-height: 150px;
}

.stock-badge {
  font-size: 0.85rem;
}

.star-rating .fa-star {
  cursor: pointer;
  color: #110505;
  font-size: 1.8rem;
  transition: color 0.2s ease-in-out;
}

.star-rating .fa-star.checked {
  color: #ffc107;
  /* Bootstrap warning yellow */
}


.limit-text {
  font-size: 0.9rem;
  color: #64748b;
  border: 2px solid #ffc107;
  padding: 5px;
  border-radius: 7px;
}


.tagMarcaImg {
  width: 150px;
  height: 150px;
  border: 1px solid red;
}



@media (max-width: 762px) {

  .acciones-carrito {
    position: fixed !important;
    background-color: #ffffff;
    bottom: 0px;
    left: 0px;
    width: auto;
    min-width: 100vw;
    max-width: none;
    z-index: 1050;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 0.5rem;
  }

  .openCart-container {
    position: absolute;
    top: -60px;
    right: 0;
    z-index: 1050;
    width: auto !important;
  }

  #openCart {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    border-radius: 50%;
    background-color: #35a7dc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  #openCart i {
    font-size: 1.2rem;
  }

  #openCart .badge {
    background-color: #ffc107 !important;
    /* amarillo */
    color: #000;
    font-size: 0.75rem;
    padding: 0.35em 0.5em;
  }


  .product-detail .right-col {
    overflow: visible;
  }

  .footer-detalle-producto {
    min-height: 11vh;
    display: block !important;
  }
}

.footer-detalle-producto {
  display: none;
}


:root {
  --primary: #007bff;
  --secondary: #2c3e50;
  --accent: #ff5a5f;
  --bg-light: #f7f8fa;
  --shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}




.recommend-section {
  margin-top: 4rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title {
  font-weight: 700;
  color: var(--#2c3e50);
  position: relative;
  margin-bottom: 0;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.recommend-subtitle {
  color: #6c757d;
  font-size: 0.95rem;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
}

.product-image {
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s;
  width: 100%;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border: none;
  transition: all 0.3s;
}

.wishlist-btn.active,
.wishlist-btn:hover {
  color: var(--accent);
  background: #fff0f0;
}

.card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.product-old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-left: 6px;
}

.rating {
  color: #ffc107;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.sizes-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.size-option {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}

.size-option:hover {
  background: rgba(0, 123, 255, 0.1);
  border-color: var(--primary);
}

.size-option.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #0062cc;
  transform: translateY(-2px);
}

.stock-info {
  font-size: 0.8rem;
  color: #28a745;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .product-image {
    height: 180px;
  }
}






:root {
  --mabex-primary: #007bff;
  --mabex-secondary: #2c3e50;
  --mabex-accent: #ff5a5f;
  --mabex-bg-light: #f7f8fa;
  --mabex-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  --mabex-hover-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  --mabex-product-width: 235px;
}

.mabex-recommend-section {
  margin-top: 4rem;
  padding: 0 15px;
}

.mabex-section-header {
  margin-bottom: 2rem;
}

.mabex-section-title-P {
  font-weight: 700;
  color: var(--mabex-secondary);
  font-size: clamp(1.4rem, 2.5vw + 0.5rem, 2rem);
  line-height: 1.2;
}

.mabex-product-card-P {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--mabex-shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: var(--mabex-product-width);
  margin: 0 auto;
}

.mabex-product-card-P:hover {
  transform: translateY(-6px);
  box-shadow: var(--mabex-hover-shadow);
}

.mabex-image-container {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8f9fa;
}



.mabex-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.mabex-product-card:hover .mabex-product-image {
  transform: scale(1.05);
}

/* TALLAS VERTICALES IZQUIERDA - Mismo diseño del código proporcionado */
.mabex-sizes-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mabex-size-option {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
  min-width: 28px;
}

.mabex-size-option:hover {
  background: rgba(0, 123, 255, 0.1);
  border-color: var(--mabex-primary);
}

.mabex-size-option.mabex-selected {
  background: var(--mabex-primary);
  color: #fff;
  border-color: var(--mabex-primary);
}

/* BADGE DENTRO DE LA IMAGEN */
.mabex-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--mabex-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.mabex-new-badge {
  background: #28a745;
}

.mabex-trending-badge {
  background: #ffc107;
  color: #000;
}

.mabex-sale-badge {
  background: #dc3545;
}

/* INFORMACIÓN DEL PRODUCTO SIMPLIFICADA */
.mabex-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mabex-product-name {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--mabex-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  transition: color 0.3s ease;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.3em * 2);
}


/* Hover opcional */
.mabex-product-name:hover {
  color: var(--mabex-primary, #007bff);
}


.mabex-product-type {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* BOTÓN VER PRODUCTO */
.mabex-view-product-btn {
  width: 100%;
  background: var(--mabex-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
}

.mabex-view-product-btn:hover {
  background: #0062cc;
  transform: translateY(-2px);
}

/* SWIPER */
.mabex-swiper {
  padding: 30px 0px 30px 0px !important;
  background-color: rgb(246 246 246);
}


.mabex-swiper-slide {
  width: auto !important;
  height: auto;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.mabex-swiper-button-next,
.mabex-swiper-button-prev {
  color: var(--mabex-primary);
  background: rgb(246 246 246);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--mabex-shadow);
}

.mabex-swiper-button-next:after,
.mabex-swiper-button-prev:after {
  font-size: 1.2rem;
}

.mabex-swiper-pagination-bullet-active {
  background: var(--mabex-primary);
}

.mabex-swiper-button-next:hover,
.mabex-swiper-button-prev:hover {
  background: var(--mabex-primary);
  color: white;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  :root {
    --mabex-product-width: 230px;
  }

  .mabex-sizes-overlay {
    bottom: 8px;
    left: 8px;
    padding: 6px;
  }

  .mabex-swiper-button-next,
  .mabex-swiper-button-prev {
    display: none;
  }
}


.mabex-product-type {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* máximo 3 líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}