/* ovh-style-newlook-pricing.css — page-specific styles for pricing page */

/* Plan card */
.plan-card { background: var(--surface); border: 1px solid var(--rule); border-radius: 2px; }
.plan-card.featured { border-color: var(--accent); }
.selected { border-color: var(--accent); }
.feature-tag { background: var(--accent); color: white; }

/* Toggle (account type switch) */
.toggle-track {
  position: relative;
  width: 56px; height: 28px;
  background: var(--rule);
  border-radius: 999px;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--surface);
  border-radius: 999px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
input.toggle-input:checked + .toggle-track { background: var(--ink); }
input.toggle-input:checked + .toggle-track .toggle-thumb { transform: translateX(28px); }

/* Tooltip */
.info-tooltip {
  position: fixed;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 260px;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.info-trigger {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: help;
}

.check-dot {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
