/* 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 {
  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 {
  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;
}

/* Pastilla flotante de upsell (carrito) - entrada lenta desde arriba */
.cuba-upsell-floatpill{
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 9999;

  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;

  /* degradado elegante */
  background: linear-gradient(135deg, #1f3a8a 0%, #5b21b6 55%, #7c3aed 100%);
  color: #fff;

  box-shadow:
    0 10px 22px rgba(31, 58, 138, .22),
    0 6px 14px rgba(124, 58, 237, .18);

  display: inline-flex;
  align-items: center;
  gap: 8px;

  max-width: calc(100vw - 32px);
  white-space: nowrap;

  overflow: hidden;

  /* ✅ entrada lenta a los 2s + latido después */
  animation:
    cuba-upsell-enter 1.4s cubic-bezier(.22,1,.36,1) 2s both,
    cuba-upsell-pulse 3.0s ease-in-out 3.8s infinite;
}

/* Entrada lenta desde arriba del viewport (sin rebotes) */
@keyframes cuba-upsell-enter{
  0%   { transform: translateY(-100vh); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Latido sutil */
@keyframes cuba-upsell-pulse{
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Hover sutil */
.cuba-upsell-floatpill:hover{
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px){
  .cuba-upsell-floatpill{ bottom: 110px; }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  .cuba-upsell-floatpill{
    animation: none;
  }
}

/* ✅ al hacer click, ocultamos la pastilla */
.cuba-upsell-floatpill.is-hidden{
  opacity: 0 !important;
  transform: translateY(10px) scale(.98) !important;
  pointer-events: none !important;
  transition: opacity 220ms ease, transform 220ms ease;
}

