/**
 * 會員方案頁面樣式
 * 模組化訂閱制：日記 PRO、照護 PRO、彩虹橋 PRO、旗艦 MAX
 */

/* ========================================
   頁面容器
======================================== */
.plan-page {
    padding-bottom: 2rem;
}

/* ========================================
   頁面標題
======================================== */
.plan-header {
    text-align: center;
    margin: 2rem 0;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--paws-text);
    margin: 0 0 0.5rem;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: var(--paws-text-muted);
    margin: 0;
}

/* ========================================
   方案模組容器
======================================== */
.plan-modules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   單一方案模組
======================================== */
.plan-module {
    background: var(--paws-card);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.plan-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 顏色主題 */
.plan-module.blue {
    border-color: rgba(59, 130, 246, 0.3);
}
.plan-module.green {
    border-color: rgba(34, 197, 94, 0.3);
}
.plan-module.purple {
    border-color: rgba(168, 85, 247, 0.3);
}

/* 模組頭部 */
.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
}

.module-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.module-icon .material-icons {
    font-size: 24px;
    color: white;
}

/* 顏色主題 - 圖示 */
.plan-module.blue .module-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.plan-module.green .module-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.plan-module.purple .module-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.module-title h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--paws-text);
}

/* 顏色主題 - 標題 */
.plan-module.blue .module-title h2 {
    color: #1d4ed8;
}
.plan-module.green .module-title h2 {
    color: #15803d;
}
.plan-module.purple .module-title h2 {
    color: #7e22ce;
}

.module-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.module-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--paws-text);
}

.module-price .period {
    font-size: 0.85rem;
    color: var(--paws-text-muted);
}

/* 模組描述 */
.module-desc {
    font-size: 0.85rem;
    color: var(--paws-text-secondary);
    margin: 0;
    padding: 0 1.25rem 1rem;
}

/* ========================================
   功能比較表
======================================== */
.module-comparison {
    padding: 0 1rem 1rem;
}

.module-comparison table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.module-comparison thead {
    position: sticky;
    top: 0;
}

.module-comparison th {
    padding: 0.625rem 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--paws-text);
    background: var(--paws-bg);
    border-bottom: 1px solid var(--paws-border);
}

.module-comparison th:first-child {
    text-align: left;
}

.module-comparison td {
    padding: 0.625rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid var(--paws-border);
    color: var(--paws-text-secondary);
}

.module-comparison td:first-child {
    text-align: left;
}

.module-comparison td.highlight {
    font-weight: 600;
}

/* 顏色主題 - 高亮欄位 */
.plan-module.blue .module-comparison th.highlight,
.plan-module.blue .module-comparison td.highlight {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.05);
}
.plan-module.green .module-comparison th.highlight,
.plan-module.green .module-comparison td.highlight {
    color: #15803d;
    background: rgba(34, 197, 94, 0.05);
}
.plan-module.purple .module-comparison th.highlight,
.plan-module.purple .module-comparison td.highlight {
    color: #7e22ce;
    background: rgba(168, 85, 247, 0.05);
}

/* 分隔行 */
.module-comparison tr.section-divider td {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--paws-text-muted);
    background: var(--paws-bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem;
}

/* 圖示顏色 */
.text-green {
    color: #22c55e !important;
}
.text-red {
    color: #d1d5db !important;
}

/* ========================================
   選擇按鈕
======================================== */
.btn-select {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
}

.btn-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--paws-text-muted) !important;
}

/* 按鈕顏色 */
.btn-select.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.btn-select.blue:hover:not(:disabled) {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-select.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.btn-select.green:hover:not(:disabled) {
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.btn-select.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}
.btn-select.purple:hover:not(:disabled) {
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.btn-select.gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
}
.btn-select.gold:hover:not(:disabled) {
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* ========================================
   免費會員區塊
======================================== */
.plan-free {
    background: var(--paws-card);
    border: 2px solid var(--paws-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.free-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.free-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paws-bg);
    border-radius: 14px;
}

.free-icon .material-icons {
    font-size: 28px;
    color: var(--paws-text-muted);
}

.free-info h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--paws-text);
    margin: 0 0 0.25rem;
}

.free-info p {
    font-size: 0.9rem;
    color: var(--paws-text-secondary);
    margin: 0;
}

.free-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.free-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--paws-text);
}

.free-price .period {
    font-size: 0.9rem;
    color: var(--paws-text-muted);
}

.free-action {
    width: 100%;
    max-width: 280px;
}

.btn-select.gray {
    background: var(--paws-text-muted);
    color: white;
}
.btn-select.gray:hover:not(:disabled) {
    background: var(--paws-text-secondary);
}


/* ========================================
   模組標題
======================================== */
.modules-header {
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.modules-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--paws-text);
    margin: 0 0 0.25rem;
}

.modules-header p {
    font-size: 0.85rem;
    color: var(--paws-text-muted);
    margin: 0;
}

/* ========================================
   旗艦 MAX 區塊
======================================== */
.plan-max {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.max-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
}

.max-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.max-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.max-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 14px;
}

.max-icon .material-icons {
    font-size: 28px;
    color: white;
}

.max-info {
    text-align: left;
}

.max-info h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b45309;
    margin: 0 0 0.25rem;
}

.max-info p {
    font-size: 0.9rem;
    color: var(--paws-text-secondary);
    margin: 0;
}

.max-price {
    width: 100%;
}

.max-price .period-selector {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    padding: 0.5rem;
}

.max-price .period-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.max-price .period-option:has(input:checked) {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.max-price .period-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.max-price .period-label {
    font-size: 0.8rem;
    color: var(--paws-text-muted);
    margin-bottom: 0.25rem;
}

.max-price .period-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #b45309;
}

.max-price .period-saving {
    font-size: 0.7rem;
    color: #16a34a;
    font-weight: 600;
    margin-top: 0.25rem;
}

.max-price .period-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #b45309;
}

.max-price .period-option.quarterly .period-price,
.max-price .period-option.yearly .period-price {
    font-size: 0.8rem;
    font-weight: 500;
    color: #92400e;
}

.max-action {
    width: 100%;
}

.max-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 0.85rem;
    color: #b45309;
}

.max-tip .material-icons {
    font-size: 1.125rem;
    color: #f59e0b;
}

/* ========================================
   FAQ
======================================== */
.plan-faq {
    background: var(--paws-card);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--paws-text);
    margin: 0 0 1rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--paws-bg);
    border-radius: 0.75rem;
    padding: 1rem;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--paws-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.faq-question .material-icons {
    font-size: 1.125rem;
    color: var(--paws-primary);
    flex-shrink: 0;
}

.faq-answer {
    font-size: 0.85rem;
    color: var(--paws-text-secondary);
    line-height: 1.6;
    padding-left: 1.625rem;
}

/* ========================================
   CTA
======================================== */
.plan-cta {
    text-align: center;
    padding: 1.5rem;
    background: var(--paws-card);
    border-radius: 1rem;
}

.plan-cta p {
    font-size: 0.9rem;
    color: var(--paws-text-secondary);
    margin: 0 0 0.75rem;
}

.cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--paws-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-contact:hover {
    text-decoration: none;
    color: var(--paws-primary-dark);
}

.cta-contact .material-icons {
    font-size: 1.125rem;
}

/* ========================================
   桌面版樣式
======================================== */
@media (min-width: 768px) {
    .plan-header {
        margin: 2.5rem 0;
    }

    .plan-title {
        font-size: 2rem;
    }

    .plan-subtitle {
        font-size: 1rem;
    }

    /* MAX 桌面版 */
    .max-price .period-option {
        padding: 1rem;
    }

    .max-price .period-price {
        font-size: 1.25rem;
    }

    /* PRO 模組桌面版 */
    .module-period-selector .period-option {
        padding: 1rem;
    }

    .module-period-selector .period-price {
        font-size: 1.25rem;
    }
}

/* ========================================
   週期選擇器（共用）
======================================== */
.period-label {
    font-size: 0.8rem;
    color: var(--paws-text-muted);
}

.period-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--paws-text);
}

.period-saving {
    font-size: 0.7rem;
    color: #16a34a;
    font-weight: 600;
}

.period-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--paws-text);
}

/* 季繳、年繳選項的 per-month 價格調小 */
.period-option.quarterly .period-price,
.period-option.yearly .period-price {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--paws-text-secondary);
}

/* ========================================
   PRO 模組週期選擇器
======================================== */
.module-period-selector {
    background: var(--paws-bg);
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin: 0 1.25rem 1rem;
}

.module-period-selector .period-options {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.module-period-selector .period-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.module-period-selector .period-option:has(input:checked) {
    background: var(--paws-card);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.module-period-selector .period-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.module-period-selector .period-label {
    margin-bottom: 0.25rem;
}

.module-period-selector .period-saving {
    font-size: 0.65rem;
    color: #16a34a;
    font-weight: 600;
    margin-top: 0.125rem;
}

/* 訂閱按鈕 */
.btn-subscribe {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    text-align: center;
    text-decoration: none;
    background: var(--paws-text-secondary);
}

.btn-subscribe:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--paws-text-muted) !important;
}

/* PRO 模組按鈕顏色 */
.plan-module.blue .btn-subscribe {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.plan-module.blue .btn-subscribe:hover:not(:disabled) {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.plan-module.green .btn-subscribe {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.plan-module.green .btn-subscribe:hover:not(:disabled) {
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.plan-module.purple .btn-subscribe {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}
.plan-module.purple .btn-subscribe:hover:not(:disabled) {
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

/* PRO 模組週期選擇器顏色主題 - 選中時總價顯示主題色 */
.plan-module.blue .module-period-selector .period-option:has(input:checked) .period-total {
    color: #1d4ed8;
}
.plan-module.green .module-period-selector .period-option:has(input:checked) .period-total {
    color: #15803d;
}
.plan-module.purple .module-period-selector .period-option:has(input:checked) .period-total {
    color: #7e22ce;
}

/* 模組表單 */
.module-header-form {
    width: 100%;
}

/* 目前方案提示 */
.current-plan-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: var(--paws-background-alt, #f0f4f8);
    border-radius: 0.75rem;
    color: var(--paws-text);
    font-size: 0.9rem;
}

.current-plan-notice .material-icons {
    color: var(--paws-primary);
    font-size: 1.2rem;
}

/* 錯誤訊息樣式 */
.alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
}

.alert-danger {
    background: #fee2e2;
    color: #dc2626;
}

.alert-danger .material-icons {
    font-size: 1.2rem;
}

/* ========================================
   訂閱說明 Alert
======================================== */
.subscription-info-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
}

.subscription-info-alert > .material-icons {
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.subscription-info-alert .alert-content strong {
    display: block;
    font-size: 0.9rem;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.subscription-info-alert .alert-content p {
    font-size: 0.85rem;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.5;
}

.subscription-info-alert .alert-content p strong {
    display: inline;
    font-weight: 600;
}

/* ========================================
   確認訂購 Modal
======================================== */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-content {
    background: var(--paws-card);
    border-radius: 1rem;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.2s;
}

.checkout-modal.active .checkout-modal-content {
    transform: scale(1);
}

.checkout-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--paws-border);
}

.checkout-modal .modal-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--paws-text);
    margin: 0;
}

.checkout-modal .modal-header h3 .material-icons {
    font-size: 1.25rem;
    color: var(--paws-primary);
}

.checkout-modal .modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--paws-bg);
    border-radius: 50%;
    cursor: pointer;
    color: var(--paws-text-muted);
    transition: all 0.2s;
}

.checkout-modal .modal-close:hover {
    background: var(--paws-border);
    color: var(--paws-text);
}

.checkout-modal .modal-body {
    padding: 1.25rem;
}

.checkout-modal .order-summary {
    background: var(--paws-bg);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.checkout-modal .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.checkout-modal .order-item:not(:last-child) {
    border-bottom: 1px solid var(--paws-border);
}

.checkout-modal .order-item .label {
    font-size: 0.9rem;
    color: var(--paws-text-muted);
}

.checkout-modal .order-item .value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--paws-text);
}

.checkout-modal .order-item.price-item .value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--paws-primary);
}

.checkout-modal .expiry-info {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.checkout-modal .expiry-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.checkout-modal .expiry-change .arrow {
    color: #16a34a;
    font-size: 1.25rem;
}

.checkout-modal .expiry-from,
.checkout-modal .expiry-to {
    text-align: center;
}

.checkout-modal .expiry-from .label,
.checkout-modal .expiry-to .label {
    display: block;
    font-size: 0.75rem;
    color: var(--paws-text-muted);
    margin-bottom: 0.25rem;
}

.checkout-modal .expiry-from .value,
.checkout-modal .expiry-to .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #15803d;
}

.checkout-modal .payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--paws-text-muted);
    padding: 0.5rem;
}

.checkout-modal .payment-note .material-icons {
    font-size: 1rem;
    color: #16a34a;
}

.checkout-modal .modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid var(--paws-border);
}

.checkout-modal .btn-cancel {
    flex: 1;
    padding: 0.875rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--paws-border);
    background: var(--paws-card);
    border-radius: 0.5rem;
    cursor: pointer;
    color: var(--paws-text);
    transition: all 0.2s;
}

.checkout-modal .btn-cancel:hover {
    background: var(--paws-bg);
}

.checkout-modal .btn-proceed {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 0.5rem;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
}

.checkout-modal .btn-proceed:hover {
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.checkout-modal .btn-proceed .material-icons {
    font-size: 1.125rem;
}

/* 免費切換資訊 */
.checkout-modal .switch-info {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.checkout-modal .switch-info .switch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.checkout-modal .switch-info .switch-badge .material-icons {
    font-size: 1.125rem;
}

.checkout-modal .switch-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #92400e;
}

.checkout-modal .switch-info .switch-note {
    font-size: 0.8rem;
    color: #b45309;
    margin-top: 0.5rem;
}
