/* extracted from shop.html style block 1 | arbor-shop-css-externalize-v1 | 2026-07-03T19:10:09 */

:root {
        --ios-bg: #F5F5F7;
        --ios-card: #FFFFFF;

        --apple-blue: #007AFF;
        --apple-green: #34C759;
        --apple-orange: #FF9500;
        --apple-red: #FF3B30;

        --text-main: #1D1D1F;
        --text-sub: #86868B;
        --text-soft: #A1A1A6;
        --text-disabled: #C7C7CC;

        --line-light: rgba(0, 0, 0, 0.05);
        --separator: rgba(60, 60, 67, 0.12);
        --nav-bg: rgba(245, 245, 247, 0.86);
        --tab-bg: rgba(250, 250, 250, 0.88);
        --soft-card: #FAFAFC;
        --btn-gray-bg: #E5E5EA;

        --intro-bg: #FFFFFF;
        --intro-border: rgba(0, 122, 255, 0.12);
        --intro-shadow: rgba(0, 122, 255, 0.045);
        --active-bg: rgba(0, 122, 255, 0.065);
        --active-border: rgba(0, 122, 255, 0.22);

        --warm-bg: #FFF8EF;
        --warm-border: rgba(255, 149, 0, 0.13);
        --warm-text: #A85B00;

        --green-bg: rgba(52, 199, 89, 0.08);
        --green-border: rgba(52, 199, 89, 0.16);
        --green-text: #34C759;

        --radius-card: 24px;
        --radius-mid: 18px;
        --radius-small: 14px;
        --content-max: 560px;
    }

    html[data-theme="dark"] {
        --ios-bg: #0B0B0C;
        --ios-card: #1C1C1E;

        --apple-blue: #0A84FF;
        --apple-green: #30D158;
        --apple-orange: #FF9F0A;
        --apple-red: #FF453A;

        --text-main: #F5F5F7;
        --text-sub: #A1A1A6;
        --text-soft: #8E8E93;
        --text-disabled: #636366;

        --line-light: rgba(255, 255, 255, 0.065);
        --separator: rgba(255, 255, 255, 0.07);
        --nav-bg: rgba(11, 11, 12, 0.78);
        --tab-bg: rgba(28, 28, 30, 0.88);
        --soft-card: #242426;
        --btn-gray-bg: #2C2C2E;

        --intro-bg: #1C1C1E;
        --intro-border: rgba(255, 255, 255, 0.07);
        --intro-shadow: rgba(0, 0, 0, 0.18);
        --active-bg: rgba(10, 132, 255, 0.12);
        --active-border: rgba(10, 132, 255, 0.26);

        --warm-bg: rgba(255, 159, 10, 0.10);
        --warm-border: rgba(255, 159, 10, 0.18);
        --warm-text: #FFD09A;

        --green-bg: rgba(48, 209, 88, 0.10);
        --green-border: rgba(48, 209, 88, 0.18);
        --green-text: #8CE99A;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
    }

    html {
        background: var(--ios-bg);
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif;
        background-color: var(--ios-bg);
        color: var(--text-main);
        display: flex;
        justify-content: center;
        -webkit-font-smoothing: antialiased;
        transition: background-color 0.24s ease, color 0.24s ease;
    }

    body.sheet-open {
        overflow: hidden;
    }

    button {
        font-family: inherit;
        border: none;
        background: none;
        color: inherit;
        cursor: pointer;
    }

    svg {
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .hidden {
        display: none !important;
    }

    .pressable {
        transition: transform 0.14s ease, opacity 0.14s ease, background-color 0.18s ease;
    }

    .pressable:active {
        transform: scale(0.97);
        opacity: 0.84;
    }

    .list-pressable {
        transition: background-color 0.18s ease, transform 0.12s ease, border-color 0.18s ease;
    }

    .list-pressable:active {
        background-color: rgba(60, 60, 67, 0.045);
        transform: scale(0.996);
    }

    html[data-theme="dark"] .list-pressable:active {
        background-color: rgba(255, 255, 255, 0.055);
    }

    .app-container {
        width: 100%;
        max-width: var(--content-max);
        min-height: 100vh;
        position: relative;
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    .nav-bar {
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 50;
        padding: 0 16px;
        background-color: var(--nav-bg);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 0.5px solid var(--line-light);
    }

    .nav-title {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.35px;
        color: var(--text-main);
    }

    .nav-action {
        font-size: 13px;
        font-weight: 680;
        color: var(--apple-blue);
        padding: 8px 2px;
    }

    .section {
        padding: 0 16px;
        margin-top: 22px;
    }

    .section:first-of-type {
        margin-top: 12px;
    }

    .section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        padding: 0 4px;
    }

    .section-title {
        font-size: 17px;
        font-weight: 650;
        color: var(--text-main);
        letter-spacing: -0.2px;
    }

    .section-note {
        font-size: 12px;
        color: var(--text-sub);
        font-weight: 560;
        white-space: nowrap;
    }

    .card {
        background: var(--ios-card);
        border-radius: var(--radius-card);
        border: 1px solid var(--line-light);
        box-shadow: 0 2px 12px rgba(0,0,0,0.022);
        overflow: hidden;
    }

    html[data-theme="dark"] .card {
        box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    }

    .intro-card {
        position: relative;
        padding: 20px;
        min-height: 168px;
        background: var(--intro-bg);
        border-color: var(--intro-border);
        box-shadow: 0 6px 22px var(--intro-shadow);
        overflow: hidden;
    }

    .intro-main {
        position: relative;
        z-index: 2;
        max-width: calc(100% - 112px);
    }

    .intro-kicker {
        font-size: 12px;
        font-weight: 680;
        color: var(--apple-blue);
        margin-bottom: 8px;
    }

    .intro-title {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.45px;
        line-height: 1.18;
        margin-bottom: 10px;
        color: var(--text-main);
    }

    .intro-desc {
        font-size: 13px;
        color: var(--text-sub);
        line-height: 1.58;
    }

    .intro-help-line {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.3;
        white-space: nowrap;
    }

    .intro-help-line span {
        color: var(--text-sub);
        font-weight: 560;
    }

    .intro-help-line button {
        color: var(--apple-blue);
        font-size: 13px;
        font-weight: 650;
        padding: 2px 0;
        white-space: nowrap;
    }

    .shop-doodles {
        position: absolute;
        top: 15px;
        right: 14px;
        width: 112px;
        height: 108px;
        z-index: 1;
        pointer-events: none;
        opacity: 0.42;
    }

    html[data-theme="dark"] .shop-doodles {
        opacity: 0.25;
    }

    .shop-doodle {
        position: absolute;
        display: block;
    }

    .shop-doodle svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .shop-like {
        width: 24px;
        height: 24px;
        right: 80px;
        top: 34px;
    }

    .shop-play {
        width: 32px;
        height: 32px;
        right: 48px;
        top: 0;
    }

    .shop-bookmark {
        width: 22px;
        height: 28px;
        right: 10px;
        top: 30px;
    }

    .shop-share {
        width: 30px;
        height: 30px;
        right: 70px;
        top: 74px;
    }

    .shop-follow {
        width: 30px;
        height: 30px;
        right: 8px;
        top: 74px;
    }

    .quick-note {
        position: relative;
        z-index: 2;
        margin-top: 16px;
        background: var(--soft-card);
        border: 1px solid var(--line-light);
        border-radius: var(--radius-small);
        padding: 12px 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        font-size: 12px;
        line-height: 1.45;
    }

    .quick-note span:first-child {
        color: var(--text-sub);
    }

    .quick-note span:last-child {
        color: var(--apple-blue);
        font-weight: 680;
        white-space: nowrap;
    }

    .mode-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        background: rgba(118, 118, 128, 0.12);
        border-radius: 15px;
        padding: 4px;
    }

    html[data-theme="dark"] .mode-tabs {
        background: rgba(255, 255, 255, 0.08);
    }

    .mode-tab {
        height: 38px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 680;
        color: var(--text-main);
        cursor: pointer;
        transition: background 0.2s, color 0.2s, transform 0.1s;
    }

    .mode-tab:active {
        transform: scale(0.98);
    }

    .mode-tab.active {
        background: var(--ios-card);
        color: var(--text-main);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    html[data-theme="dark"] .mode-tab.active {
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 18px rgba(0,0,0,0.20);
    }

    .view-panel {
        animation: panelIn 0.24s ease both;
    }

    @keyframes panelIn {
        from {
            opacity: 0;
            transform: translateY(6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .choice-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .choice-item {
        background: var(--ios-card);
        border: 1px solid var(--line-light);
        border-radius: var(--radius-mid);
        padding: 14px 15px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.012);
        transition: background 0.2s, border-color 0.2s, transform 0.1s, box-shadow 0.2s;
    }

    html[data-theme="dark"] .choice-item {
        box-shadow: 0 8px 20px rgba(0,0,0,0.14);
    }

    .choice-item:active {
        transform: scale(0.98);
    }

    .choice-item.active {
        background: var(--active-bg);
        border-color: var(--active-border);
        box-shadow: 0 3px 12px rgba(0,122,255,0.045);
    }

    .choice-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-main);
        line-height: 1.35;
    }

    .choice-desc {
        font-size: 11.5px;
        color: var(--text-sub);
        margin-top: 5px;
        line-height: 1.38;
    }

    .choice-price {
        margin-top: 9px;
        font-size: 13px;
        font-weight: 650;
        color: var(--text-main);
        line-height: 1.2;
    }

    .choice-item.active .choice-title {
        color: var(--apple-blue);
    }

    .recommend-card {
        padding: 19px 18px 18px;
        background: var(--ios-card);
        border-color: var(--intro-border);
        cursor: pointer;
        transition: transform 0.1s, opacity 0.2s;
    }

    .recommend-card:active {
        transform: scale(0.99);
        opacity: 0.94;
    }

    .recommend-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 14px;
    }

    .recommend-title-wrap {
        min-width: 0;
    }

    .recommend-badge {
        display: inline-flex;
        align-items: center;
        height: 22px;
        padding: 0 8px;
        border-radius: 999px;
        background: rgba(0, 122, 255, 0.08);
        border: 1px solid rgba(0, 122, 255, 0.12);
        color: var(--apple-blue);
        font-size: 11px;
        font-weight: 650;
        margin-bottom: 8px;
    }

    .recommend-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-main);
        letter-spacing: -0.35px;
        line-height: 1.25;
    }

    .recommend-price {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-main);
        white-space: nowrap;
        line-height: 1.15;
        text-align: right;
    }

    .recommend-price small {
        font-size: 14px;
        font-weight: 650;
    }

    .recommend-body {
        background: var(--soft-card);
        border-radius: var(--radius-small);
        padding: 14px 15px;
        margin-bottom: 13px;
        border: 1px solid var(--line-light);
    }

    .info-row {
        display: flex;
        gap: 12px;
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 8px;
    }

    .info-row:last-child {
        margin-bottom: 0;
    }

    .info-label {
        width: 42px;
        flex-shrink: 0;
        color: var(--text-sub);
    }

    .info-value {
        flex: 1;
        color: var(--text-main);
        font-weight: 520;
    }

    .detail-toggle {
        width: 100%;
        margin-bottom: 13px;
        padding: 12px 14px;
        border: 1px solid var(--line-light);
        border-radius: var(--radius-small);
        background: var(--ios-card);
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--text-main);
        font-size: 13px;
        font-weight: 680;
    }

    .detail-toggle span:last-child {
        color: var(--apple-blue);
        font-size: 12px;
        font-weight: 650;
    }

    .package-detail {
        background: var(--ios-card);
        border: 1px solid var(--line-light);
        border-radius: var(--radius-small);
        padding: 12px 14px;
        margin: -4px 0 13px;
        animation: panelIn 0.18s ease both;
    }

    .package-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 7px 0;
        border-bottom: 0.5px solid var(--separator);
        font-size: 13px;
    }

    .package-line:last-child {
        border-bottom: none;
    }

    .package-line span:first-child {
        color: var(--text-sub);
    }

    .package-line span:last-child {
        color: var(--text-main);
        font-weight: 700;
    }

    .recommend-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .recommend-tip {
        font-size: 12px;
        color: var(--apple-green);
        font-weight: 680;
        line-height: 1.4;
    }

    .btn-main {
        background: var(--apple-blue);
        color: #FFFFFF;
        padding: 10px 22px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 680;
        transition: background 0.2s, transform 0.1s;
        white-space: nowrap;
    }

    .btn-main:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .account-service-card {
        background: var(--ios-card);
        border: 1px solid var(--line-light);
        border-radius: var(--radius-card);
        padding: 18px;
        cursor: pointer;
        box-shadow: 0 2px 12px rgba(0,0,0,0.018);
    }

    .account-service-card:active {
        transform: scale(0.99);
        opacity: 0.94;
    }

    .account-kicker {
        font-size: 12px;
        color: var(--apple-blue);
        font-weight: 650;
        margin-bottom: 8px;
    }

    .account-title-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 8px;
    }

    .account-title {
        font-size: 19px;
        font-weight: 700;
        color: var(--text-main);
        letter-spacing: -0.25px;
    }

    .account-price {
        font-size: 17px;
        font-weight: 700;
        color: var(--text-main);
        white-space: nowrap;
    }

    .account-desc {
        font-size: 13px;
        color: var(--text-sub);
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .account-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .account-meta span {
        font-size: 11px;
        color: var(--text-sub);
        border: 1px solid var(--line-light);
        background: var(--soft-card);
        border-radius: 999px;
        padding: 5px 8px;
        line-height: 1;
    }

    .notice-area {
        padding: 0 4px;
        text-align: center;
    }

    .notice-card {
        background: var(--soft-card);
        border: 1px solid var(--line-light);
        border-radius: var(--radius-mid);
        padding: 15px 16px;
    }

    .notice-title {
        font-size: 15px;
        font-weight: 650;
        color: var(--text-main);
        margin-bottom: 10px;
        text-align: left;
    }

    .notice-text {
        font-size: 12px;
        color: var(--text-sub);
        line-height: 1.62;
        margin-bottom: 6px;
        text-align: left;
    }

    .notice-text:last-child {
        margin-bottom: 0;
    }

    .notice-text strong {
        color: var(--text-main);
        font-weight: 680;
    }

    .overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.36);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        opacity: 0;
        visibility: hidden;
        transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .sheet-content {
        width: 100%;
        max-width: var(--content-max);
        max-height: 84vh;
        background: var(--ios-bg);
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -8px 28px rgba(0,0,0,0.12);
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    html[data-theme="dark"] .sheet-content {
        box-shadow: 0 -10px 32px rgba(0,0,0,0.38);
    }

    .overlay.active .sheet-content {
        transform: translateY(0);
    }

    .sheet-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background: var(--ios-card);
        border-radius: 24px 24px 0 0;
        border-bottom: 0.5px solid var(--separator);
        flex-shrink: 0;
    }

    .sheet-title-area {
        display: flex;
        align-items: baseline;
        gap: 8px;
        min-width: 0;
    }

    .sheet-name {
        font-size: 18px;
        font-weight: 650;
        color: var(--text-main);
        white-space: nowrap;
    }

    .sheet-price {
        font-size: 15px;
        font-weight: 680;
        color: var(--apple-blue);
        white-space: nowrap;
    }

    .sheet-close {
        width: 30px;
        height: 30px;
        background: var(--btn-gray-bg);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--text-sub);
        cursor: pointer;
        flex-shrink: 0;
    }

    .sheet-body {
        padding: 16px;
        overflow-y: auto;
    }

    .detail-card {
        background: var(--ios-card);
        border-radius: var(--radius-mid);
        border: 1px solid var(--line-light);
        overflow: hidden;
    }

    .detail-row {
        padding: 15px 16px;
        border-bottom: 0.5px solid var(--separator);
    }

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-label {
        font-size: 12px;
        color: var(--text-sub);
        font-weight: 680;
        margin-bottom: 6px;
    }

    .detail-value {
        font-size: 14px;
        color: var(--text-main);
        line-height: 1.5;
        font-weight: 520;
    }

    .variant-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
    }

    .variant-card {
        width: 100%;
        background: var(--ios-card);
        border: 1px solid var(--line-light);
        border-radius: var(--radius-mid);
        padding: 14px 15px;
        text-align: left;
        transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease;
    }

    .variant-card:active {
        transform: scale(0.99);
    }

    .variant-card.active {
        background: var(--active-bg);
        border-color: var(--active-border);
    }

    .variant-card.recommended {
        border-color: rgba(0, 122, 255, 0.22);
    }

    .variant-head {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 7px;
    }

    .variant-title-wrap {
        min-width: 0;
    }

    .variant-title {
        font-size: 14px;
        font-weight: 650;
        color: var(--text-main);
        line-height: 1.35;
    }

    .variant-badge {
        display: inline-flex;
        margin-top: 6px;
        padding: 4px 7px;
        border-radius: 999px;
        font-size: 10.5px;
        font-weight: 650;
        color: var(--apple-blue);
        background: rgba(0, 122, 255, 0.08);
        border: 1px solid rgba(0, 122, 255, 0.12);
    }

    .variant-price {
        font-size: 13px;
        font-weight: 700;
        color: var(--apple-blue);
        white-space: nowrap;
        line-height: 1.35;
    }

    .variant-desc {
        font-size: 12px;
        color: var(--text-sub);
        line-height: 1.48;
        margin-bottom: 9px;
    }

    .variant-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .meta-pill {
        font-size: 11px;
        color: var(--text-sub);
        background: var(--soft-card);
        border: 1px solid var(--line-light);
        border-radius: 999px;
        padding: 4px 8px;
        line-height: 1;
        white-space: nowrap;
    }

    .variant-card.active .meta-pill {
        border-color: rgba(0, 122, 255, 0.14);
    }

    .sheet-actions {
        display: flex;
        gap: 12px;
        padding: 2px 16px 0;
        flex-shrink: 0;
    }

    .btn-sheet-sub {
        flex: 1;
        background: var(--btn-gray-bg);
        color: var(--text-main);
        padding: 14px 0;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 680;
        text-align: center;
    }

    .btn-sheet-main {
        flex: 2;
        background: var(--apple-blue);
        color: #FFFFFF;
        padding: 14px 0;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 680;
        text-align: center;
    }

    .tab-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(76px + env(safe-area-inset-bottom));
        background-color: var(--tab-bg);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border-top: 0.5px solid var(--line-light);
        z-index: 90;
        display: flex;
        justify-content: center;
    }

    .tab-inner {
        width: 100%;
        max-width: var(--content-max);
        height: 76px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 8px 0;
    }

    .tab-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #8E8E93;
        cursor: pointer;
        min-width: 0;
        transition: color 0.18s ease, transform 0.12s ease;
    }

    .tab-item:active {
        transform: scale(0.96);
    }

    .tab-item.active {
        color: var(--apple-blue);
    }

    .tab-icon {
        width: 27px;
        height: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tab-icon svg {
        width: 23px;
        height: 23px;
        stroke-width: 2.1;
    }

    .tab-text {
        font-size: 10.5px;
        font-weight: 540;
        line-height: 1;
    }

    .tab-item.active .tab-text {
        font-weight: 680;
    }

    .toast {
        position: fixed;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.85);
        color: #FFFFFF;
        padding: 11px 18px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 560;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s, top 0.3s;
        pointer-events: none;
        text-align: center;
        max-width: 82%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .toast.show {
        opacity: 1;
        top: 60px;
    }

    @media (max-width: 360px) {
        .nav-title {
            font-size: 21px;
        }

        .intro-title {
            font-size: 22px;
        }

        .intro-main {
            max-width: 100%;
        }

        .shop-doodles {
            display: none;
        }

        .intro-help-line {
            white-space: normal;
        }

        .choice-grid {
            gap: 9px;
        }

        .choice-item {
            padding: 13px 13px;
        }

        .recommend-footer {
            align-items: flex-start;
        }
    }

/* ARBOR_SHOP_V0_9_PATCH_DEBT_COMPACT_V1 */
*, *::before, *::after { box-sizing: border-box; }
html[data-theme="light"] { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
html, body, .app-container { background: var(--ios-bg); color: var(--text-main); }
.app-container { max-width: var(--content-max); margin: 0 auto; padding-bottom: calc(88px + env(safe-area-inset-bottom)); overflow-x: hidden; }
.nav-bar { max-width: var(--content-max); margin: 0 auto; background: var(--nav-bg); border-bottom: .5px solid var(--line-light); }
.nav-title { font-size: 22px; font-weight: 700; letter-spacing: -.35px; color: var(--text-main); }
.nav-action, .choice-price, .section-note { color: var(--apple-blue); }
.shop-hero-image-section-v9 { margin: 12px 16px 18px; padding: 0; }
.shop-hero-poster-v9 { width: 100%; border-radius: 26px; overflow: hidden; background: var(--ios-card); border: 1px solid var(--line-light); box-shadow: 0 2px 10px rgba(0,0,0,.018); }
.shop-hero-poster-v9 img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.section { padding: 0 16px; margin-top: 22px; }
.view-panel { animation: panelIn .24s ease both; }
.mode-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; height: 44px; padding: 4px; border-radius: 17px; overflow: hidden; background: rgba(118,118,128,.16); box-shadow: none; }
html[data-theme="dark"] .mode-tabs { background: rgba(118,118,128,.18); }
.mode-tab { min-width: 0; width: 100%; height: 36px; border-radius: 13px; display: flex; align-items: center; justify-content: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; line-height: 1; font-weight: 680; color: var(--text-main); background: transparent; box-shadow: none; }
.mode-tab.active { background: var(--ios-card); color: var(--text-main); box-shadow: 0 3px 10px rgba(0,0,0,.08); }
html[data-theme="dark"] .mode-tab.active { box-shadow: 0 3px 12px rgba(0,0,0,.22); }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 12px; padding: 0 4px; }
.section-title { font-size: 17px; font-weight: 700; line-height: 1.35; letter-spacing: -.22px; color: var(--text-main); }
.section-note { font-size: 12px; font-weight: 620; line-height: 1.35; white-space: nowrap; }
.choice-grid, #productGrid, #accountLiveSection .choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.choice-item, #productGrid > * { min-width: 0; width: 100%; max-width: 100%; padding: 15px; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; word-break: normal; overflow-wrap: break-word; background: var(--ios-card); border: 1px solid var(--line-light); color: var(--text-main); box-shadow: 0 2px 10px rgba(0,0,0,.018); height: auto; max-height: none; }
html[data-theme="dark"] .choice-item, html[data-theme="dark"] #productGrid > * { box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.choice-item:active { transform: scale(.98); }
.choice-title, .recommend-title, .notice-title { max-width: 100%; min-width: 0; margin: 0; font-size: 14px; line-height: 1.35; font-weight: 700; letter-spacing: -.12px; color: var(--text-main); white-space: nowrap; overflow: visible; text-overflow: clip; }
.choice-desc, .notice-text, .info-label, .section-note { max-width: 100%; min-width: 0; margin: 5px 0 0; font-size: 11.5px; line-height: 1.38; font-weight: 400; color: var(--text-sub); white-space: nowrap; overflow: visible; text-overflow: clip; }
.choice-price { margin-top: 8px; padding-top: 0; font-size: 13px; line-height: 1.2; font-weight: 650; }
.quick-quote-grid-v091 { margin-top: 0; margin-bottom: 24px; }
.quick-card .choice-price, .account-function-grid-v9 .choice-price, .account-function-grid-v8c .choice-price, #quickQuoteGrid .choice-price { color: var(--apple-blue); font-weight: 700; }
.purpose-card.active, .purpose-card.is-active, .purpose-card.selected, .purpose-card[aria-selected="true"], .live-related-card.active { background: rgba(0,122,255,.08); border-color: rgba(0,122,255,.22); box-shadow: none; }
html[data-theme="dark"] .purpose-card.active, html[data-theme="dark"] .purpose-card.is-active, html[data-theme="dark"] .purpose-card.selected, html[data-theme="dark"] .purpose-card[aria-selected="true"], html[data-theme="dark"] .live-related-card.active { background: rgba(10,132,255,.14); border-color: rgba(10,132,255,.26); }
.purpose-card.active .choice-title, .purpose-card.is-active .choice-title, .purpose-card.selected .choice-title, .purpose-card[aria-selected="true"] .choice-title, .live-related-card.active .choice-title { color: var(--apple-blue); }
.product-mode-note-v5d, .account-live-hint { margin: 0 0 18px; padding: 14px 18px; border-radius: 18px; border: 1px solid var(--line-light); background: var(--soft-card); color: var(--text-sub); font-size: 13px; line-height: 1.6; font-weight: 400; box-shadow: none; }
.recommend-card { padding: 19px 18px 18px; background: var(--ios-card); border: 1px solid var(--intro-border); border-radius: var(--radius-card); box-shadow: 0 2px 12px rgba(0,0,0,.022); cursor: pointer; }
.recommend-body { background: var(--soft-card); border-radius: var(--radius-small); padding: 14px 15px; margin-bottom: 13px; border: 1px solid var(--line-light); }
.recommend-card #recButton, #recButton.btn-main, .recommend-card .btn-main { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 48px; height: 48px; padding: 0 18px; border-radius: 14px; color: #fff; -webkit-text-fill-color: #fff; font-size: 15px; line-height: 1; font-weight: 700; background: var(--apple-blue); border-color: var(--apple-blue); }
.recommend-card #recButton *, #recButton.btn-main * { color: #fff; -webkit-text-fill-color: #fff; }
.account-live-small-card-grid-v091 { margin-top: 0; }
.account-live-related-grid .choice-price, .account-display-grid-v9 .choice-price, .account-display-grid-v8c .choice-price { color: var(--text-main); font-weight: 650; }
#accountLiveOverlay .sheet-body { padding: 16px; }
#accountLiveOverlay .account-live-sheet-summary, #accountLiveOverlay .account-live-form-card, #accountLiveOverlay .account-submit-preview { background: var(--ios-card); border: 1px solid var(--line-light); border-radius: var(--radius-mid); overflow: hidden; box-shadow: none; margin-bottom: 14px; }
#accountLiveOverlay .account-option-list, #accountLiveOverlay .account-live-option-list { display: flex; flex-direction: column; gap: 10px; }
#accountLiveOverlay .account-option-group { width: 100%; background: var(--ios-card); border: 1px solid var(--line-light); border-radius: var(--radius-mid); padding: 14px 15px; text-align: left; box-shadow: none; }
#accountLiveOverlay .account-option-title { font-size: 13px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
#accountLiveOverlay .account-option-grid { display: flex; flex-wrap: wrap; gap: 8px; }
#accountLiveOverlay .account-option-chip { min-height: 32px; border-radius: 999px; padding: 0 12px; background: var(--soft-card); border: 1px solid var(--line-light); color: var(--text-main); font-size: 12px; font-weight: 650; }
#accountLiveOverlay .account-option-chip.active { background: rgba(0,122,255,.09); border-color: rgba(0,122,255,.24); color: var(--apple-blue); }
#accountLiveOverlay .account-form-row { display: block; padding: 14px 15px; }
#accountLiveOverlay .account-form-label span { color: var(--text-sub); font-weight: 500; }
#accountLiveOverlay .account-form-input, #accountLiveOverlay .account-form-textarea { width: 100%; margin-top: 8px; padding: 12px 13px; border-radius: 14px; border: 1px solid var(--line-light); background: var(--soft-card); color: var(--text-main); font-size: 14px; line-height: 1.45; outline: none; }
#accountLiveOverlay .account-form-textarea { min-height: 92px; resize: vertical; }
#accountLiveOverlay .account-submit-note, #accountLiveOverlay .account-live-final-note { font-size: 12px; line-height: 1.58; color: var(--text-sub); }
.account-live-success-card { margin: 4px 0 0; padding: 22px 18px; border-radius: 22px; background: var(--ios-card); border: 1px solid var(--line-light); text-align: center; }
.account-live-success-icon { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(52,199,89,.12); color: var(--apple-green); font-size: 24px; font-weight: 800; }
.account-live-success-title { font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.account-live-success-desc { font-size: 13px; line-height: 1.55; color: var(--text-sub); }
.account-live-success-meta { margin-top: 14px; display: grid; gap: 8px; }
.account-live-success-meta div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 14px; background: var(--soft-card); border: 1px solid var(--line-light); }
.account-live-success-meta span { color: var(--text-sub); font-size: 12px; }
.account-live-success-meta strong { color: var(--text-main); font-size: 12px; }
.bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: calc(76px + env(safe-area-inset-bottom)); background: var(--tab-bg); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border-top: .5px solid var(--line-light); display: flex; justify-content: center; }
.bottom-inner { width: 100%; max-width: var(--content-max); height: 76px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px 0; }
.bottom-nav .tab-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: #8E8E93; text-decoration: none; min-width: 0; transition: color .18s ease, transform .12s ease; }
.bottom-nav .tab-item.active { color: var(--apple-blue); }
.bottom-nav .tab-item svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 2.1; fill: none; }
.bottom-nav .tab-item span { font-size: 10.5px; font-weight: 540; line-height: 1; }
@media (max-width: 390px) { .shop-hero-image-section-v9 { margin: 10px 14px 16px; } .shop-hero-poster-v9 { border-radius: 22px; } .section { padding-left: 14px; padding-right: 14px; } .choice-grid, #productGrid, #accountLiveSection .choice-grid { gap: 10px; } .choice-item, #productGrid > * { padding: 14px 13px; } .choice-title { font-size: 13.5px; } .choice-desc { font-size: 11.3px; } .product-mode-note-v5d, .account-live-hint { margin-bottom: 16px; padding: 13px 16px; font-size: 12.5px; line-height: 1.58; } .recommend-card #recButton, #recButton.btn-main, .recommend-card .btn-main { min-height: 46px; height: 46px; } }

/* ARBOR_SHOP_PACKAGE_CARD_RESTORE_V2_START */
/* Local UI restore v2: same grey detail text, one-line green tip, full-width confirm button. */
#sceneSection .package-detail {
    margin: -2px 0 14px;
    padding: 13px 14px 12px;
    border-radius: 16px;
    border: 1px solid var(--line-light);
    background: var(--soft-card);
}

#sceneSection .package-detail .package-detail-text,
#sceneSection .package-detail .package-detail-note {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: 0;
    color: var(--text-sub);
}

#sceneSection .package-detail .package-detail-text {
    margin-bottom: 9px;
}

#sceneSection .package-detail .package-detail-note {
    margin-top: 9px;
    padding-top: 9px;
    border-top: .5px solid var(--separator);
}

#sceneSection .package-detail .package-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: .5px solid var(--separator);
    font-size: 12.5px;
    line-height: 1.34;
}

#sceneSection .package-detail .package-line:last-of-type {
    border-bottom: none;
}

#sceneSection .package-detail .package-line span:first-child {
    color: var(--text-sub);
    font-weight: 400;
}

#sceneSection .package-detail .package-line span:last-child {
    color: var(--text-main);
    font-weight: 650;
    text-align: right;
    white-space: nowrap;
}

#sceneSection .recommend-footer {
    display: block;
}

#sceneSection .recommend-tip {
    display: block;
    margin: 0 0 12px;
    font-size: 12.5px;
    font-weight: 680;
    line-height: 1.42;
    color: var(--apple-green);
    white-space: nowrap;
}

#sceneSection #recButton.btn-main,
#sceneSection .recommend-card #recButton {
    width: 100%;
    min-height: 48px;
    height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--apple-blue);
    border-color: var(--apple-blue);
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 430px) {
    #sceneSection .recommend-tip {
        font-size: 12px;
        line-height: 1.42;
        white-space: nowrap;
    }

    #sceneSection #recButton.btn-main,
    #sceneSection .recommend-card #recButton {
        min-height: 48px;
        height: 48px;
        font-size: 15px;
    }
}
/* ARBOR_SHOP_PACKAGE_CARD_RESTORE_V2_END */
