/* File: modules/cartupsellbyamount/views/templates/css/front.css */

/* =========================
   Modal container (carrito + ficha)
   ========================= */
.cuba-upsell-modal.gift-modal-container {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin: 20px auto;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* ===== Título y subtítulo (CLASES REALES DEL TPL) ===== */
.cuba-upsell-modal .cuba-upsell__title {
  margin: 6px 0 6px;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.cuba-upsell-modal .cuba-upsell__subtitle {
  margin: 0 0 18px;
  text-align: center;
  font-size: 15px;
  opacity: .85;
}

/* =========================
   Pack head (producto actual + + + texto)
   ========================= */
.cuba-upsell-packhead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 16px;
  flex-wrap: wrap;
}

.cuba-upsell-packhead__current {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
  max-width: 520px;
  box-sizing: border-box;
}

.cuba-upsell-packhead__img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
}

.cuba-upsell-packhead__txt { text-align: left; }

.cuba-upsell-packhead__label {
  font-size: 12px;
  opacity: .75;
  margin-bottom: 2px;
}

.cuba-upsell-packhead__name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.cuba-upsell-packhead__plus {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #111;
  opacity: .7;
}

.cuba-upsell-packhead__choose {
  padding: 10px 14px;
  border: 1px dashed #e5e5e5;
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
  opacity: .85;
}

/* =========================
   Swiper: contención + flechas
   ========================= */
.cuba-upsell-swiper {
  position: relative;
  overflow: hidden;          /* anti-desborde */
  padding: 8px 54px 14px;    /* hueco para flechas dentro */
  box-sizing: border-box;
}

.cuba-upsell-swiper .swiper-wrapper {
  align-items: stretch;
}

.cuba-upsell-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  display: flex;             /* para que la card haga height:100% */
}

/* =========================
   Card styling
   ========================= */
.cuba-upsell-card.gift-card {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  text-align: center;
  box-sizing: border-box;
  height: 100%;
}

.cuba-upsell-card__toplabel {
  font-size: 12px;
  opacity: .7;
  margin-bottom: 10px;
}

.cuba-upsell-card__img { margin-bottom: 10px; }

.cuba-upsell-card__img img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
  display: inline-block;
}

.cuba-upsell-card__noimg {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed #ddd;
  box-sizing: border-box;
}

.cuba-upsell-card__noimg span {
  color: #999;
  font-size: 12px;
}

.cuba-upsell-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cuba-upsell-card__name {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  margin: 0 0 10px;
  min-height: 40px;
}

/* Precio regular tachado */
.cuba-upsell-card__regular {
  font-size: 13px;
  opacity: .85;
  margin: 0 0 10px;
}
.cuba-upsell-card__regularprice {
  text-decoration: line-through;
  opacity: .65;
}

/* Pastilla precio especial (verde) */
.cuba-upsell-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9fff1;
  border: 1px solid #b9f5ce;
  margin: 0 0 10px;
}

.cuba-upsell-pill__label {
  font-size: 12px;
  font-weight: 700;
  color: #0b7a34;
}

.cuba-upsell-pill__price {
  font-size: 14px;
  font-weight: 900;
  color: #0b7a34;
}

/* Botón */
.cuba-upsell-btn {
  width: 100%;
  border-radius: 10px;
  font-weight: 800;
  margin-top: 4px;
}

/* Hint */
.cuba-upsell-card__hint {
  margin-top: 10px;
  font-size: 12px;
  opacity: .78;
}

/* =========================
   Flechas Swiper
   ========================= */
.cuba-upsell-swiper .swiper-button-prev,
.cuba-upsell-swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.cuba-upsell-swiper .swiper-button-prev { left: 8px; }
.cuba-upsell-swiper .swiper-button-next { right: 8px; }

.cuba-upsell-swiper .swiper-button-prev:after,
.cuba-upsell-swiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.cuba-upsell-swiper .swiper-button-prev.swiper-button-disabled,
.cuba-upsell-swiper .swiper-button-next.swiper-button-disabled {
  opacity: .35;
  pointer-events: none;
}
