/* ==== Container ==== */
.pack-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 390px;
  margin: 0 0px 24px;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 14px rgba(0,0,0,0.1);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  transition: box-shadow 0.2s ease;
  	margin-top:31px;

}
.pack-cta:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
}

/* ==== Info Section ==== */
.pack-cta__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
.pack-cta__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  animation: bounce 3s infinite;
}
.pack-cta__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.pack-cta__old-price {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.2rem;
}
.pack-cta__old-price del {
  color: #ccc;
}

/* ==== Button ==== */
.pack-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #00cddf, #0097b3);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,151,179,0.4);
}
.pack-cta__btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,151,179,0.5);
}
.pack-cta__btn-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}
.pack-cta__badge {
  background: #fff;
  color: #0097b3;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  animation: pulse 2.5s infinite;
}
.pack-cta__price {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}
.pack-cta__btn-bottom {
  font-size: 0.75rem;
  color: #e0f7fa;
}

/* ==== Animations ==== */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* ==== Responsive ==== */
@media (max-width: 480px) {
  .pack-cta { flex-direction: column; align-items: stretch; padding: 0.75rem; }
  .pack-cta__info { margin-bottom: 0.75rem; }
  .pack-cta__btn { width: 100%; }
}
