* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overscroll-behavior: none;
    transition: background 0.3s ease;
}

.container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.header {
    margin-bottom: 20px;
}

.header-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #d4880f;
    background: rgba(253, 188, 43, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.header-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.header-sub {
    font-size: 14px;
    color: #8a9aa8;
    margin-top: 2px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.auto-detect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #1a1a2e;
    padding: 10px 16px;
    background: transparent;
    border: none;
    margin-bottom: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.detect-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.auto-detect span:last-child {
    color: #d4880f;
    font-weight: 600;
}

/* ============ 查询模式切换 ============ */
.query-mode-toggle {
    display: flex;
    gap: 0;
    background: #eef0f4;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 16px;
}

.mode-btn {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #6b7b8d;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.mode-btn.active {
    background: #fff;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ============ 表码查询 ============ */
.meter-input-row {
    display: flex;
    gap: 12px;
}

.meter-input-half {
    flex: 1;
    min-width: 0;
}

.input-wrapper-sm {
    padding-right: 0;
}

.meter-diff {
    text-align: center;
    margin-top: 12px;
    padding: 10px 16px;
    background: #f0faf4;
    border-radius: 10px;
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.meter-diff span {
    font-weight: 700;
    color: #07c160;
    font-size: 16px;
}

.input-section {
    margin-bottom: 4px;
}

.input-group {
    margin-bottom: 16px;
}

.input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3a4b;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #dce0e8;
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-wrapper:focus-within {
    border-color: #fdbc2b;
    box-shadow: 0 0 0 4px rgba(253, 188, 43, 0.10);
}

.input-unit {
    position: absolute;
    right: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #8a9aa8;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper input[type="text"] {
    width: 100%;
    padding: 16px 52px 16px 18px;
    font-size: 17px;
    font-weight: 500;
    border: none;
    background: transparent;
    outline: none;
    color: #1a1a2e;
    font-family: inherit;
    letter-spacing: 0.5px;
    min-height: 56px;
}

.input-wrapper input[type="text"]::placeholder {
    color: #b8c4d0;
    font-weight: 400;
}

.error {
    color: #ef4444;
    font-size: 13px;
    margin: 6px 0 0 4px;
    display: none;
    font-weight: 500;
}

.error.show {
    display: block;
}

.btn {
    width: 100%;
    background: #fdbc2b;
    border: none;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    border-radius: 40px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 1px;
    min-height: 56px;
    touch-action: manipulation;
    box-shadow: 0 4px 16px rgba(253, 188, 43, 0.25);
}

.btn:active {
    transform: scale(0.97);
    background: #edb01a;
    box-shadow: 0 2px 8px rgba(253, 188, 43, 0.15);
}

.result-section {
    margin-top: 22px;
    background: transparent;
    border: none;
    padding: 0;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e4e8ef;
    gap: 8px;
    flex-wrap: wrap;
}

.result-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3a4b;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.result-price-btn {
    font-size: 13px;
    font-weight: 500;
    color: #d4880f;
    background: transparent;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1.6;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(212, 136, 15, 0.3);
}

.result-price-btn:active {
    transform: scale(0.94);
    color: #b8730a;
}

.result-badge {
    font-size: 12px;
    font-weight: 600;
    color: #d4880f;
    background: rgba(253, 188, 43, 0.12);
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.usage-card {
    background: transparent;
    border: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    border-bottom: 1px solid #eef0f4;
}

.usage-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7f96;
    letter-spacing: 0.3px;
}

.usage-value {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.usage-value small {
    font-size: 14px;
    font-weight: 500;
    color: #8a9aa8;
    margin-left: 2px;
}

.tier-card {
    background: transparent;
    border: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    border-bottom: 1px solid #eef0f4;
}

.tier-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7f96;
    letter-spacing: 0.3px;
}

.tier-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: right;
}

.tier-detail {
    margin: 8px 0 12px;
    padding: 12px 0;
    border-top: 1px dashed #e4e8ef;
    border-bottom: 1px dashed #e4e8ef;
}

.tier-detail > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #2c3a4b;
}

.tier-detail > div:first-child {
    padding-top: 0;
}

.tier-detail > div:last-child {
    padding-bottom: 0;
}

.tier-detail .tier-empty {
    color: #b0bcc8;
    font-size: 14px;
    justify-content: center;
    padding: 4px 0;
}

.tier-detail .tier-1 {
    color: #1a8a4a;
}
.tier-detail .tier-2 {
    color: #b8730a;
}
.tier-detail .tier-3 {
    color: #c0392b;
}

.tier-detail .tier-1 .tier-price {
    color: #1a8a4a;
}
.tier-detail .tier-2 .tier-price {
    color: #b8730a;
}
.tier-detail .tier-3 .tier-price {
    color: #c0392b;
}

.total-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 10px;
}

.total-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3a4b;
}

.total-value {
    font-size: 28px;
    font-weight: 800;
    color: #d4880f;
    letter-spacing: -0.5px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #b0bcc8;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eef0f4;
}

/* ============ 支付成功页面 ============ */
.success-page {
    text-align: center;
    padding: 40px 0 20px;
}

.success-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #07c160;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(7, 193, 96, 0.3);
    animation: successPop 0.4s ease-out;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.success-subtitle {
    font-size: 14px;
    color: #8c9aa8;
    margin-bottom: 28px;
}

.success-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.success-row + .success-row {
    border-top: 1px solid #f0f2f5;
}

.success-label {
    font-size: 14px;
    color: #6b7b8d;
}

.success-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.success-amount {
    font-size: 22px;
    font-weight: 800;
    color: #d4880f;
}

.success-tier-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: left;
}

.success-tier-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f2f5;
}

.success-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 6px;
}

.success-tier-row.st-1 { background: #f0faf4; }
.success-tier-row.st-2 { background: #fef9e7; }
.success-tier-row.st-3 { background: #fef0f0; }

.st-label {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.st-detail {
    font-size: 13px;
    color: #6b7b8d;
    font-weight: 500;
}

.success-back-btn {
    width: 100%;
    background: #07c160;
    font-size: 16px;
    padding: 14px;
}

.success-back-btn:hover {
    background: #06ad56;
}

.success-back-btn:active {
    background: #059a4c;
}

.dark-mode-tip {
    font-size: 11px;
    color: #b0bcc8;
    text-align: center;
    margin-top: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    display: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 24px;
    animation: modalFadeIn 0.25s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px 24px 24px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.20);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #eef0f4;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f2f5;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 400;
    color: #6b7f96;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    line-height: 1;
}

.modal-close:active {
    background: #e4e8ef;
    transform: scale(0.92);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fc;
    border-radius: 14px;
}

.modal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.modal-dot.dot-1 {
    background: #22a65e;
}
.modal-dot.dot-2 {
    background: #d4880f;
}
.modal-dot.dot-3 {
    background: #dc3545;
}

.modal-item-label {
    font-size: 14px;
    font-weight: 500;
    color: #2c3a4b;
    min-width: 42px;
}

.modal-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    flex: 1;
}

.modal-item-range {
    font-size: 13px;
    color: #8a9aa8;
    font-weight: 400;
}

.modal-season {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    color: #8a9aa8;
    padding: 10px 0 4px;
    border-top: 1px dashed #e4e8ef;
}

@media (max-width: 420px) {
    body {
        padding: 16px;
    }

    .header-title {
        font-size: 24px;
    }

    .header-sub {
        font-size: 13px;
    }

    .auto-detect {
        font-size: 13px;
        padding: 8px 0;
    }

    .input-wrapper input[type="text"] {
        font-size: 16px;
        padding: 14px 48px 14px 16px;
        min-height: 50px;
    }

    .btn {
        font-size: 17px;
        padding: 16px;
        min-height: 52px;
    }

    .usage-value {
        font-size: 20px;
    }

    .usage-value small {
        font-size: 13px;
    }

    .tier-value {
        font-size: 15px;
    }

    .total-value {
        font-size: 24px;
    }

    .modal {
        padding: 24px 18px 20px;
        border-radius: 24px;
    }

    .modal-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .modal-item-price {
        font-size: 14px;
    }

    .modal-item-range {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .header-title {
        font-size: 20px;
    }

    .usage-value {
        font-size: 18px;
    }

    .total-value {
        font-size: 22px;
    }

    .result-header {
        flex-wrap: wrap;
        gap: 4px;
    }

    .result-price-btn {
        order: 2;
    }

    .result-badge {
        order: 3;
    }

    .modal-item {
        flex-wrap: wrap;
        gap: 6px 10px;
    }

    .modal-item-range {
        margin-left: auto;
    }
}

/* ============ 微信支付样式 ============ */
.pay-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
	max-width: 388px;
    margin: 0;
    border-radius: 12px;
    background: #07c160;
    color: #fff;
    box-shadow: 0 4px 20px rgba(7, 193, 96, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    font-size: 18px;
    font-weight: 700;
    z-index: 100;
}

.pay-btn:active {
    background: #06ad56;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.15);
}

body.has-pay-btn {
    padding-bottom: 70px;
}

/* ============ 自定义Toast ============ */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    max-width: 80%;
    text-align: center;
    line-height: 1.5;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pay-icon {
    font-size: 20px;
}

.pay-modal {
    max-width: 360px;
}

.pay-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pay-amount {
    font-size: 32px;
    font-weight: 800;
    color: #d4880f;
    letter-spacing: -0.5px;
}

.pay-qrcode-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#qrcodeContainer {
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e4e8ef;
}

#qrcodeContainer img,
#qrcodeContainer canvas {
    display: block;
    width: 200px;
    height: 200px;
}

.pay-qrcode-tip {
    font-size: 14px;
    color: #6b7f96;
    font-weight: 500;
}

.pay-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    color: #8a9aa8;
    font-size: 14px;
}

.pay-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e4e8ef;
    border-top-color: #07c160;
    border-radius: 50%;
    animation: pay-spin 0.8s linear infinite;
}

@keyframes pay-spin {
    to { transform: rotate(360deg); }
}

.pay-error {
    color: #ef4444;
    font-size: 14px;
    text-align: center;
    padding: 12px 0;
}

.pay-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

.pay-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #07c160;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-success-text {
    font-size: 18px;
    font-weight: 600;
    color: #07c160;
}

/* 暗色模式支付样式 */
@media (prefers-color-scheme: dark) {
    .pay-btn {
        box-shadow: 0 4px 16px rgba(7, 193, 96, 0.15);
    }

    #qrcodeContainer {
        background: #fff;
        border-color: #3a4458;
    }

    .pay-qrcode-tip {
        color: #9ca3af;
    }

    .pay-amount {
        color: #fbbf24;
    }

    .pay-spinner {
        border-color: #3a4458;
        border-top-color: #07c160;
    }

    .pay-loading {
        color: #9ca3af;
    }

    .success-title {
        color: #f3f4f6;
    }

    .success-subtitle {
        color: #9ca3af;
    }

    .success-card, .success-tier-card {
        background: #1f2937;
        box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }

    .success-row + .success-row {
        border-top-color: #374151;
    }

    .success-label {
        color: #9ca3af;
    }

    .success-value {
        color: #f3f4f6;
    }

    .success-amount {
        color: #fbbf24;
    }

    .success-tier-title {
        color: #f3f4f6;
        border-bottom-color: #374151;
    }

    .success-tier-row.st-1 { background: rgba(7, 193, 96, 0.1); }
    .success-tier-row.st-2 { background: rgba(251, 191, 36, 0.1); }
    .success-tier-row.st-3 { background: rgba(239, 68, 68, 0.1); }

    .st-label { color: #d1d5db; }
    .st-detail { color: #9ca3af; }

    .success-back-btn {
        background: #07c160;
    }

    .query-mode-toggle {
        background: #374151;
    }

    .mode-btn {
        color: #9ca3af;
    }

    .mode-btn.active {
        background: #4b5563;
        color: #f3f4f6;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .meter-diff {
        background: rgba(7, 193, 96, 0.1);
        color: #d1d5db;
    }

    .meter-diff span {
        color: #07c160;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: #111827;
    }

    .header-title {
        color: #f3f4f6;
    }

    .header-sub {
        color: #9ca3af;
    }

    .header-badge {
        background: rgba(253, 188, 43, 0.15);
        color: #fbbf24;
    }

    .auto-detect {
        color: #f3f4f6;
    }

    .auto-detect span:last-child {
        color: #fbbf24;
    }

    .input-label {
        color: #d1d5db;
    }

    .input-wrapper {
        background: #1f2937;
        border-color: #3a4458;
    }

    .input-wrapper:focus-within {
        border-color: #fbbf24;
        box-shadow: 0 0 0 4px rgba(253, 188, 43, 0.08);
    }

    .input-wrapper input[type="text"] {
        color: #f3f4f6;
    }

    .input-wrapper input[type="text"]::placeholder {
        color: #6b7f96;
    }

    .input-unit {
        color: #6b7f96;
    }

    .result-header {
        border-bottom-color: #3a4458;
    }

    .result-title {
        color: #d1d5db;
    }

    .result-price-btn {
        color: #fbbf24;
        text-decoration-color: rgba(251, 191, 36, 0.3);
    }

    .result-price-btn:active {
        color: #f59e0b;
    }

    .result-badge {
        color: #fbbf24;
        background: rgba(253, 188, 43, 0.12);
    }

    .usage-card {
        border-bottom-color: #3a4458;
    }

    .usage-label {
        color: #9ca3af;
    }

    .usage-value {
        color: #f3f4f6;
    }

    .usage-value small {
        color: #6b7f96;
    }

    .tier-card {
        border-bottom-color: #3a4458;
    }

    .tier-label {
        color: #9ca3af;
    }

    .tier-value {
        color: #f3f4f6;
    }

    .tier-detail {
        border-top-color: #3a4458;
        border-bottom-color: #3a4458;
    }

    .tier-detail > div {
        color: #d1d5db;
    }

    .tier-detail .tier-1 {
        color: #4ade80;
    }
    .tier-detail .tier-2 {
        color: #fbbf24;
    }
    .tier-detail .tier-3 {
        color: #f87171;
    }

    .tier-detail .tier-1 .tier-price {
        color: #4ade80;
    }
    .tier-detail .tier-2 .tier-price {
        color: #fbbf24;
    }
    .tier-detail .tier-3 .tier-price {
        color: #f87171;
    }

    .tier-detail .tier-empty {
        color: #6b7f96;
    }

    .total-label {
        color: #d1d5db;
    }

    .total-value {
        color: #fbbf24;
    }

    .footer {
        color: #6b7f96;
        border-top-color: #3a4458;
    }

    .dark-mode-tip {
        display: block;
        color: #6b7f96;
    }

    .btn {
        box-shadow: 0 4px 16px rgba(253, 188, 43, 0.15);
    }

    .error {
        color: #f87171;
    }

    .modal-overlay {
        background: rgba(0, 0, 0, 0.60);
    }

    .modal {
        background: #1f2937;
    }

    .modal-header {
        border-bottom-color: #3a4458;
    }

    .modal-title {
        color: #f3f4f6;
    }

    .modal-close {
        background: #2a3346;
        color: #9ca3af;
    }

    .modal-close:active {
        background: #3a4458;
    }

    .modal-item {
        background: #2a3346;
    }

    .modal-item-label {
        color: #d1d5db;
    }

    .modal-item-price {
        color: #f3f4f6;
    }

    .modal-item-range {
        color: #9ca3af;
    }

    .modal-season {
        color: #9ca3af;
        border-top-color: #3a4458;
    }
}