/* DENTAL TREATMENT PLAN GENERATOR - Premium Styles */
:root {
    /* Core Colors */
    --primary: #00D4FF;
    --primary-dark: #0099CC;
    --primary-light: #66E5FF;
    --accent: #7C3AED;
    --accent-dark: #5B21B6;
    --accent-light: #A78BFA;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    --tooth-healthy: #10B981;
    --tooth-treated: #3B82F6;
    --tooth-needs: #F59E0B;
    --tooth-missing: #6B7280;

    /* Dark Theme (Default) */
    --bg-body: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --bg-dark: #0F172A;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-header: rgba(15, 23, 42, 0.9);
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-header: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme */
[data-theme="light"] {
    --bg-body: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #CBD5E1 100%);
    --bg-dark: #F8FAFC;
    --bg-card: rgba(255, 255, 255, 0.98);
    --bg-glass: rgba(0, 0, 0, 0.05);
    --bg-header: rgba(255, 255, 255, 0.95);
    --text-header: #1E293B;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-body);
    min-height: 100vh;
    color: var(--text-primary);
    transition: background 0.5s ease, color 0.3s ease;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    top: 30%;
    left: 50%;
    animation-delay: -7s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 30%;
    animation-delay: -12s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 10px) rotate(3deg);
    }
}

/* Header */
.header {
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-glass);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-header);
    transition: var(--transition);
    margin-right: 0.5rem;
}

.theme-toggle:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    transform: rotate(15deg);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

[data-theme="light"] .theme-toggle {
    color: var(--text-primary);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.logo-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    color: var(--text-muted);
}

.nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero */
.hero {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: var(--success);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-value svg {
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.hero-visual {
    display: none;
}

/* Progress Bar */
.progress-container {
    max-width: 900px;
    margin: -2rem auto 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: var(--transition);
}

.progress-step.active {
    opacity: 1;
}

.progress-step.active .step-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.progress-step span:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Glass Card Section */
.section.glass-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.section.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.section-title-group {
    flex: 1;
    min-width: 200px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.section-actions {
    margin-left: auto;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #E2E8F0;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Form Styles */
.patient-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.form-row.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-group label svg {
    color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 48px;
}

/* Chart Legend */
.chart-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.legend-color.healthy {
    background: var(--tooth-healthy);
}

.legend-color.treated {
    background: var(--tooth-treated);
}

.legend-color.needs-treatment {
    background: var(--tooth-needs);
}

.legend-color.missing {
    background: var(--tooth-missing);
}

/* Dental Chart */
.dental-chart-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dentition-type-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dentition-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #E2E8F0;
    background: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.dentition-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.dentition-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.dental-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFF 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #E2E8F0;
}

.jaw {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.jaw-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jaw-teeth {
    display: flex;
    align-items: center;
}

.quadrant {
    display: flex;
    gap: 4px;
    padding: 0 1rem;
}

.quadrant-divider {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.upper-right,
.lower-left {
    flex-direction: row-reverse;
}

/* Tooth */
.tooth {
    width: 50px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.02);
    padding: 4px;
}

.tooth:hover {
    transform: scale(1.15);
    z-index: 10;
    background: rgba(0, 212, 255, 0.1);
}

.tooth-icon {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooth-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.tooth-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Tooth type specific sizes */
.tooth-incisor {
    width: 42px;
}

.tooth-incisor .tooth-svg {
    height: 42px;
}

.tooth-canine {
    width: 44px;
}

.tooth-canine .tooth-svg {
    height: 48px;
}

.tooth-premolar {
    width: 48px;
}

.tooth-premolar .tooth-svg {
    height: 40px;
}

.tooth-molar {
    width: 54px;
}

.tooth-molar .tooth-svg {
    height: 42px;
}

/* Tooth States with SVG coloring */
.tooth.healthy .tooth-svg path {
    fill: url(#toothGrad);
    stroke: #4ADE80;
}

.tooth.healthy .tooth-svg {
    filter: drop-shadow(0 2px 8px rgba(74, 222, 128, 0.4));
}

.tooth.treated .tooth-svg path {
    fill: #DBEAFE;
    stroke: #3B82F6;
}

.tooth.treated .tooth-svg {
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.tooth.needs-treatment .tooth-svg path {
    fill: #FEF3C7;
    stroke: #F59E0B;
}

.tooth.needs-treatment .tooth-svg {
    filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.4));
}

.tooth.missing .tooth-svg {
    opacity: 0.25;
    filter: grayscale(100%);
}

.tooth.has-treatment::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--error), #F97316);
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 1.5s ease-in-out infinite;
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

.chart-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
}

.action-btn.secondary {
    background: white;
    color: var(--text-secondary);
    border: 2px solid #E2E8F0;
}

.action-btn:hover {
    transform: translateY(-2px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-footer {
    padding: 1rem 2rem;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Status Buttons */
.tooth-status label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.status-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.status-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #E2E8F0;
    background: white;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.status-btn:hover {
    border-color: var(--primary);
}

.status-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

/* Treatment Categories */
.treatment-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.treatment-category {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #F8FAFC;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.category-header:hover {
    background: #F1F5F9;
}

.category-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.75rem;
}

.category-title {
    display: flex;
    align-items: center;
    flex: 1;
}

.category-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.treatment-category.open .category-toggle {
    transform: rotate(180deg);
}

.category-content {
    display: none;
    padding: 1rem;
    background: white;
}

.treatment-category.open .category-content {
    display: block;
}

.treatment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.treatment-option:hover {
    background: #F8FAFC;
}

.treatment-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.treatment-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.treatment-name {
    font-weight: 500;
}

.treatment-price {
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Selected Treatments */
.selected-treatments h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.selected-treatments ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 36px;
}

.selected-treatments li {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.selected-treatments li .remove-treatment {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    font-size: 1.1rem;
}

.selected-treatments li .remove-treatment:hover {
    opacity: 1;
}

/* Treatment Notes */
.treatment-notes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.treatment-notes textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-family: inherit;
    resize: vertical;
    transition: var(--transition);
}

.treatment-notes textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: #F1F5F9;
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background: #E2E8F0;
}

/* Treatment Counter */
.treatment-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-left: auto;
}

.counter-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.counter-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Treatment Plan */
.treatment-plan-container {
    min-height: 200px;
}

.plan-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-illustration {
    margin-bottom: 1.5rem;
    color: #CBD5E1;
}

.plan-empty h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-empty p {
    color: var(--text-secondary);
}

.treatment-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-phase {
    background: linear-gradient(135deg, #F8FAFC, #FFF);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-left: 4px solid;
    position: relative;
    animation: fadeInUp 0.5s ease;
}

.timeline-phase:nth-child(1) {
    border-color: var(--error);
}

.timeline-phase:nth-child(2) {
    border-color: var(--warning);
}

.timeline-phase:nth-child(3) {
    border-color: var(--info);
}

.timeline-phase:nth-child(4) {
    border-color: var(--success);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.phase-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.phase-title {
    font-size: 1.1rem;
    font-weight: 700;
    flex: 1;
}

.phase-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 4px 12px;
    background: #F1F5F9;
    border-radius: 50px;
}

.phase-treatments {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phase-treatment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
}

.tooth-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.treatment-item-name {
    flex: 1;
    font-weight: 500;
}

.treatment-item-price {
    font-weight: 600;
    color: var(--primary-dark);
}

.treatment-item-remove {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    opacity: 0.7;
}

.treatment-item-remove:hover {
    opacity: 1;
    background: rgba(239, 68, 68, 0.1);
}

/* Budget */
.budget-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.budget-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.budget-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.budget-card:hover {
    transform: translateX(5px);
}

.total-card {
    background: linear-gradient(135deg, #667EEA, #764BA2);
}

.refund-card {
    background: linear-gradient(135deg, var(--success), #059669);
}

.remaining-card {
    background: linear-gradient(135deg, var(--error), #DC2626);
}

.budget-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.budget-card-content {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.budget-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.budget-value {
    font-size: 1.75rem;
    font-weight: 700;
}

.budget-card-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.budget-breakdown {
    background: #F8FAFC;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-height: 200px;
}

.budget-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
    gap: 1rem;
}

.budget-table {
    width: 100%;
    border-collapse: collapse;
}

.budget-table th,
.budget-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.budget-table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-table .price-col {
    text-align: right;
    font-weight: 600;
}

/* Export */
.export-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.export-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.export-btn:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.export-btn:hover .export-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.export-icon {
    width: 64px;
    height: 64px;
    background: #F1F5F9;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.export-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.export-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Templates */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.template-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.template-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.template-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.template-card:hover::before {
    transform: scaleX(1);
}

.template-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.template-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.template-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.template-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Saved Templates Modal */
.templates-list-modal {
    max-width: 600px;
}

.saved-templates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.saved-template-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #F8FAFC;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.saved-template-item:hover {
    border-color: var(--primary);
}

.saved-template-info {
    display: flex;
    flex-direction: column;
}

.saved-template-name {
    font-weight: 600;
}

.saved-template-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.saved-template-actions {
    display: flex;
    gap: 0.5rem;
}

.saved-template-actions button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.load-template-btn {
    background: var(--primary);
    color: white;
}

.delete-template-btn {
    background: var(--error);
    color: white;
}

.no-templates {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    color: var(--primary);
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links span {
    color: var(--text-muted);
    opacity: 0.5;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    max-width: 400px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.toast.info .toast-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.toast.warning .toast-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Tooltip */
.tooltip {
    position: fixed;
    background: var(--bg-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 4000;
}

.tooltip.visible {
    opacity: 1;
}

/* Print */
@media print {

    .header,
    .hero,
    .progress-container,
    .export-section,
    .templates-section,
    .footer,
    .chart-actions,
    .treatment-item-remove {
        display: none !important;
    }

    body {
        background: white;
    }

    .section.glass-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .export-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .budget-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .form-row.three-cols,
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .progress-step span:last-child {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .chart-legend {
        margin-left: 0;
    }

    .export-options {
        grid-template-columns: 1fr;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }

    .tooth {
        width: 36px;
        height: 48px;
    }

    .tooth-icon {
        font-size: 1.5rem;
    }

    .status-options {
        grid-template-columns: 1fr;
    }
}

/* Ad Containers - Discrete Styling */
.ad-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.ad-container:hover {
    opacity: 1;
}

.ad-hero {
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.ad-footer {
    margin-top: 2rem;
    padding-bottom: 0;
}

.ad-container ins {
    border-radius: var(--radius-md);
    overflow: hidden;
}

@media print {
    .ad-container {
        display: none !important;
    }
}

/* ========== LIGHT THEME OVERRIDES ========== */
[data-theme="light"] .logo-text {
    color: var(--text-primary);
}

[data-theme="light"] .nav-link {
    color: var(--text-secondary);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: var(--text-primary);
    background: var(--bg-glass);
}

[data-theme="light"] .hero-title {
    color: var(--text-primary);
}

[data-theme="light"] .hero-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .hero-badge {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-value {
    color: var(--text-primary);
}

[data-theme="light"] .stat-divider {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-scroll-indicator {
    color: var(--text-secondary);
}

[data-theme="light"] .progress-bar {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .progress-step .step-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

[data-theme="light"] .progress-step.active .step-icon {
    color: white;
}

[data-theme="light"] .floating-shape {
    opacity: 0.05;
}

[data-theme="light"] .footer {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

[data-theme="light"] .mobile-menu-btn {
    color: var(--text-primary);
}

/* ========== STATISTICS CHARTS ========== */
.statistics-container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.stats-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.chart-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFF 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
}

.chart-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.chart-title svg {
    color: var(--primary);
}

.pie-chart-container {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.pie-chart {
    width: 180px;
    height: 180px;
}

.pie-slice {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: 100px 100px;
    cursor: pointer;
}

.pie-slice:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.bar-chart-container {
    padding: 1rem 0;
}

.bar-chart {
    width: 100%;
    height: 160px;
}

.bar-rect {
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.bar-rect:hover {
    opacity: 0.8;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

[data-theme="light"] .statistics-container {
    border-top-color: #CBD5E1;
}

[data-theme="light"] .chart-card {
    background: linear-gradient(135deg, #FFF 0%, #F8FAFC 100%);
}

/* ========== SETTINGS BUTTON ========== */
.settings-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-glass);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-header);
    transition: var(--transition);
    margin-right: 0.5rem;
}

.settings-btn:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--accent);
    transform: rotate(45deg);
}

[data-theme="light"] .settings-btn {
    color: var(--text-primary);
}

/* ========== PRICING MODAL ========== */
.modal-lg {
    max-width: 800px;
    max-height: 85vh;
}

.pricing-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.pricing-info svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.pricing-search {
    position: relative;
    margin-bottom: 1.5rem;
}

.pricing-search svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.pricing-search input {
    padding-left: 3rem;
    width: 100%;
}

.pricing-categories {
    max-height: 45vh;
    overflow-y: auto;
}

.pricing-category {
    margin-bottom: 1.5rem;
}

.pricing-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-category-header:hover {
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
}

.pricing-category-header svg {
    color: var(--primary);
}

.pricing-treatments {
    display: grid;
    gap: 0.5rem;
}

.pricing-treatment-row {
    display: grid;
    grid-template-columns: 1fr 120px 100px;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #FAFAFA;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.pricing-treatment-row:hover {
    background: #F1F5F9;
}

.pricing-treatment-name {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.pricing-treatment-default {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.pricing-input-wrapper {
    position: relative;
}

.pricing-input-wrapper input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    padding-right: 1.75rem;
    font-size: 0.9rem;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    text-align: right;
    transition: var(--transition);
}

.pricing-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.pricing-input-wrapper input.modified {
    background: rgba(124, 58, 237, 0.05);
    border-color: var(--accent);
}

.pricing-input-wrapper::after {
    content: '€';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .pricing-treatment-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .pricing-treatment-default {
        text-align: left;
    }
}