/* ============================================
PRICE INFO BLOCK - WCAG AA + DARK MODE
============================================ */
.price-info-block {
border-radius: 20px;
overflow: hidden;
margin: 2rem 0;
font-size: 1rem;
line-height: 1.6;
}
.price-header {
background: linear-gradient(135deg, var(--med-primary) 0%, var(--med-secondary) 100%);
color: #ffffff;
padding: 20px 15px;
text-align: center;
}
.price-clinic-name {
margin: 0;
font-size: 1.125rem;
opacity: 0.95;
font-weight: 500;
}
.price-divider {
width: 80px;
height: 3px;
background: rgba(255,255,255,0.5);
margin: 15px auto 0;
border-radius: 2px;
}
.price-section {
background: var(--med-bg-light);
padding: 25px 20px;
border-left: 4px solid var(--med-primary);
}
.price-section--bordered {
border-bottom: 1px solid var(--med-border);
}
.price-section--info {
background: #e7f3ff;
border-left-color: #4dabf7;
text-align: center;
}
.price-section-title {
color: var(--med-primary);
margin: 0 0 1rem 0;
font-size: 1.25rem;
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
}
.price-text {
margin: 0;
color: var(--med-text);
}
.price-text--centered {
text-align: center;
}
.price-link {
color: var(--med-primary);
text-decoration: none;
border-bottom: 1px dotted currentColor;
transition: color 0.2s;
}
.price-link:hover,
.price-link:focus {
color: var(--med-secondary);
text-decoration: none;
}
.price-link:focus-visible {
outline: 2px solid var(--med-focus);
outline-offset: 2px;
border-radius: 2px;
}
.price-badge {
display: inline-block;
background: #fff3cd;
color: #856404;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.95rem;
margin-left: 0.25rem;
}
.price-legal {
background: var(--med-bg);
padding: 20px 15px;
border-bottom: 1px solid var(--med-border);
text-align: center;
}
.price-legal-text {
margin: 0;
font-size: 0.875rem;
color: var(--med-text-muted);
font-style: italic;
}
.price-legal-warning {
color: var(--med-danger);
font-weight: 500;
font-style: normal;
}
.price-stationary {
background: linear-gradient(135deg, #a62a6a 0%, #8a1c3d 100%);
color: #ffffff;
padding: 30px 20px;
text-align: center;
}
.price-stationary-title {
margin: 0 0 1.25rem 0;
font-size: 1.5rem;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 700;
}
.price-stationary-card {
background: rgba(255,255,255,0.15);
border-radius: 15px;
padding: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
}
.price-stationary-note {
margin: 0 0 1rem 0;
font-size: 1.05rem;
font-weight: 500;
}
.price-underline {
text-decoration: underline;
text-decoration-style: wavy;
text-underline-offset: 2px;
}
.price-features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
list-style: none;
padding: 0;
margin: 15px 0 0 0;
}
.price-feature {
background: rgba(255,255,255,0.25);
padding: 8px 16px;
border-radius: 25px;
font-size: 0.9rem;
white-space: nowrap;
}
.price-footnote {
margin: 15px 0 0 0;
font-size: 0.875rem;
opacity: 0.9;
}
.price-footer {
background: #212529;
color: #ffffff;
padding: 25px 20px;
text-align: center;
}
.price-footer-text {
margin: 0;
font-size: 1rem;
}
.price-footer-slogan {
color: #adb5bd;
font-size: 0.9rem;
display: block;
margin-top: 0.5rem;
}
.price-icon {
font-size: 1.25rem;
vertical-align: middle;
}
@media (max-width: 768px) {
.price-info-block {
border-radius: 16px;
margin: 1.5rem 0;
}
.price-header,
.price-section,
.price-legal,
.price-stationary,
.price-footer {
padding-left: 15px;
padding-right: 15px;
}
.price-stationary-title {
font-size: 1.25rem;
}
.price-features {
gap: 8px;
}
.price-feature {
font-size: 0.85rem;
padding: 6px 12px;
}
}
/* Dark Mode Support for Price Block */
@media (prefers-color-scheme: dark) {
.price-section {
background: var(--med-bg-light);
border-left-color: var(--med-primary);
}
.price-section--info {
background: #1a2a4a;
border-left-color: #64b5f6;
}
.price-text,
.price-section-title,
.price-link {
color: var(--med-text);
}
.price-legal-text {
color: var(--med-text-muted);
}
.price-badge {
background: #4a3a04;
color: #ffd54f;
}
.price-stationary {
background: linear-gradient(135deg, #a62a6a 0%, #8a1c3d 100%);
}
.price-stationary-card {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.15);
}
.price-feature {
background: rgba(255,255,255,0.2);
}
.price-footer {
background: #1a1a24;
border-top: 1px solid var(--med-border);
}
.price-footer-slogan {
color: #8a8a9a;
}
.price-link:focus-visible {
outline-color: var(--med-focus);
}
}
