/* Modern promo card */
.bundle-promo-wrapper{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(2, 6, 23, .10);
  --shadow: 0 14px 40px rgba(2, 6, 23, .12);
  --radius: 16px;

  max-width: 560px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.bundle-promo-wrapper::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1, #22c55e);
}

/* Header */
.bundle-promo-header{
  display:flex;
  align-items:center;
  gap: 10px;
  padding-top: 6px;
  margin-bottom: 14px;
}

.bundle-promo-icon{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(14,165,233,.12);
  font-size: 18px;
}

.bundle-promo-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Body rows */
.bundle-promo-body{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.line-item{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(2, 6, 23, .08);
  background: rgba(2, 6, 23, .02);
  border-radius: 12px;
}

.line-item span:first-child{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.value{
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

/* Price colors */
.price-green{ color: #16a34a; }
.price-red{ color: #dc2626; }
.price-blue{ color: #2563eb; }

/* CTA button */
.bundle-promo-btn{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;

  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, .12);
  text-decoration: none;

  background: linear-gradient(180deg, #0ea5e9, #0284c7);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(2, 132, 199, .28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.bundle-promo-btn .btn-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.bundle-promo-btn .btn-text{
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bundle-promo-btn .btn-price{
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.24);
  white-space: nowrap;
}

.bundle-promo-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(2, 132, 199, .34);
  filter: brightness(1.02);
}

.bundle-promo-btn:active{
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px){
  .bundle-promo-wrapper{ padding: 16px 14px 14px; }
  .bundle-promo-title{ font-size: 16px; }
  .line-item{ padding: 9px 10px; }
}
