/* Premium Subscription Banner Styles */
.subscription-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.subscription-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.urgent-banner::before { background: linear-gradient(180deg, #dc3545 0%, #c82333 100%); }
.warning-banner::before { background: linear-gradient(180deg, #ffc107 0%, #e0a800 100%); }
.info-banner::before { background: linear-gradient(180deg, #17a2b8 0%, #138496 100%); }

.subscription-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.banner-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.banner-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  animation: pulse-animation 2s infinite;
  z-index: 1;
}

.pulse-ring.danger { background: rgba(220, 53, 69, 0.4); }
.pulse-ring.warning { background: rgba(255, 193, 7, 0.4); }

@keyframes pulse-animation {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 0; }
}

.banner-content {
  flex: 1;
}

.banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.banner-text {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
}

.banner-footer {
  font-size: 0.85rem;
}

.days-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 4px;
}

.days-badge.danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.days-badge.warning {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  color: #000;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.days-badge.info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

.banner-action {
  flex-shrink: 0;
}

.banner-action .btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.banner-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .subscription-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .banner-action {
    width: 100%;
  }

  .banner-action .btn {
    width: 100%;
  }
}
