/**
 * Pro Upsell Drawer - Chunk 75
 * DS-11 drawer component with Pro-specific styling
 */

/* Hidden by default; becomes visible when drawer JS adds visible class */
#proUpsellDrawer[aria-hidden="true"] {
  display: none;
}

#proUpsellDrawer.bb-component-drawer--visible {
  display: block;
}

.pro-upsell__badge {
  display: flex;
  justify-content: center;
  margin-bottom: var(--ds-space-6, 24px);
}

.pro-upsell__subtitle {
  font-size: var(--ds-text-lg, 1.125rem);
  font-weight: 600;
  color: var(--ds-text-primary);
  margin-bottom: var(--ds-space-4, 16px);
}

.pro-upsell__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-3, 12px);
  margin-bottom: var(--ds-space-8, 32px);
}

.pro-upsell__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--ds-space-3, 12px);
  font-size: var(--ds-text-base, 1rem);
  color: var(--ds-text-primary);
  line-height: 1.5;
}

.pro-upsell__feature .bb-icon {
  width: var(--ds-icon-sm, 18px);
  height: var(--ds-icon-sm, 18px);
  color: var(--ds-success, #10B981);
  flex-shrink: 0;
  margin-top: 2px;
}

.pro-upsell__cta {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-3, 12px);
  padding-top: var(--ds-space-4, 16px);
  border-top: 1px solid var(--ds-border-subtle);
}

.pro-upsell__compare-link {
  text-align: center;
  font-size: var(--ds-text-sm, 0.875rem);
  color: var(--ds-text-secondary);
  text-decoration: none;
  transition: color var(--ds-transition-base, 0.2s ease);
}

.pro-upsell__compare-link:hover {
  color: var(--ds-accent, #C47E42);
  text-decoration: underline;
}

/* Mobile Ergonomics */
@media (max-width: 768px) {
  .pro-upsell__cta {
    padding-bottom: calc(var(--ds-space-4, 16px) + env(safe-area-inset-bottom));
  }

  .pro-upsell__cta .btn {
    min-height: 44px;
    font-size: 16px;
  }

  .pro-upsell__compare-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--ds-space-2, 8px) 0;
    font-size: 16px;
  }
}

