.subscription-banner {
  position: relative;
  width: 100%;
  background: #fff;
  border-left: 4px solid #3b82f6;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.subscription-banner:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subscription-banner.warning {
  border-left-color: #f59e0b;
  background: linear-gradient(to right, #fffbeb 0%, #fff 100%);
}

.subscription-banner.expired {
  border-left-color: #ef4444;
  background: linear-gradient(to right, #fef2f2 0%, #fff 100%);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 50%;
  color: #3b82f6;
  font-size: 20px;
}

.subscription-banner.warning .banner-icon {
  background: #fef3c7;
  color: #f59e0b;
}

.subscription-banner.expired .banner-icon {
  background: #fee2e2;
  color: #ef4444;
}

.banner-text {
  flex: 1;
}

.banner-title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.banner-message {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #3b82f6;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary-custom:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.subscription-banner.warning .btn-primary-custom {
  background: #f59e0b;
}

.subscription-banner.warning .btn-primary-custom:hover {
  background: #d97706;
  box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.subscription-banner.expired .btn-primary-custom {
  background: #ef4444;
}

.subscription-banner.expired .btn-primary-custom:hover {
  background: #dc2626;
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

.btn-dismiss {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.btn-dismiss:hover {
  background: #f3f4f6;
  color: #6b7280;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .banner-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn-primary-custom {
    flex: 1;
    justify-content: center;
  }
}
