

:root {
    --bg: #f8f4f1;
    --bg-light: #fdfaf8;
    --text-main: #222222;
    --text-muted: #666666;
    --accent: #c8965b;
    --accent-dark: #a47237;
    --border-soft: #e5ded7;
    --card-bg: #ffffff;
    --max-width: 1280px;
    --max-menu-width:1480px;
    /*--max-width: 1120px;*/
}

* {
    box-sizing: border-box;
}

html {
    zoom: 1.1;
}
.hide{
    display:none;
}
.PopupWindow{
    display:none;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "PingFang TC", "Microsoft JhengHei", sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
   /* display: block;*/
}

.page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, #fdf7f1 0, #f8f4f1 45%, #f3eee9 100%);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

    .btn-primary:hover {
        background: var(--accent-dark);
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.06);
}

/* Hero */

.hero {
    padding: 60px 0 40px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 14px;
    font-weight: 750;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 18px 18px 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.hero-shirt-preview {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: #fafafa;
    padding: 16px;
    display: flex;
    justify-content: center;
}

.hero-thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.hero-thumb {
    flex: 1;
    height: 40px;
    border-radius: 10px;
    background: #f0ece7;
}

.hero-floating {
    position: absolute;
    inset-inline-end: -26px;
    bottom: -26px;
    width: 180px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
    font-size: 11px;
}

.hero-floating-title {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Section wrapper */

section {
    padding: 36px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 26px;
}

.section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.section-title {
    font-size: 24px;
    margin: 0 0 6px;
    font-weight: 700;
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Features */

.features {
    background: var(--bg-light);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-item {
    padding: 18px 16px;
    border: 1px solid var(--border);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 16px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Steps */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.step-item {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 18px 16px;
    border: 1px solid var(--border-soft);
}

.step-label {
    font-size: 12px;
    color: var(--accent-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Business section */
.biz-section {
    /*background: var(--bg-light);*/
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.biz-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.06);
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.biz-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.biz-price {
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 10px;
}

.biz-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--text-muted);
}

    .biz-list li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 6px;
    }

        .biz-list li::before {
            content: "•";
            position: absolute;
            left: 4px;
            top: 0;
            color: var(--accent-dark);
        }

.biz-note {
    font-size: 12px;
    color: var(--text-muted);
}

.earn-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid var(--border-soft);
    font-size: 13px;
}

.earn-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.earn-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

    .earn-list li {
        margin-bottom: 4px;
    }

.earn-highlight {
    font-size: 12px;
    color: var(--accent-dark);
    font-weight: 600;
}

/* DTF section */

.dtf-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}


.dtf-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.dtf-metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 14px;
    font-size: 14px;
}

.dtf-pill {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.04);
    font-size: 12px;
    color: var(--text-muted);
}

.dtf-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* FAQ */

.faq-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    font-size: 14px;
}

.faq-item-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.faq-item-text {
    color: var(--text-muted);
}

/* Footer */

footer {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 18px 0 28px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: var(--text-muted);
    }

        .footer-links a:hover {
            color: var(--text-main);
        }

/* Responsive */

@media (max-width: 900px) {
    .hero-inner,
    .biz-inner,
    .dtf-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 36px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title {
        font-size: 32px;
    }

    .features-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* [2026-08-03] 目的：提供商業用戶優惠彈窗，延續首頁米白、深色與金色的品牌視覺。 */
.business-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
}

.business-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.business-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 20, 17, .58);
    backdrop-filter: blur(5px);
}

.business-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 38px;
    border: 1px solid rgba(178, 119, 51, .2);
    border-radius: 24px;
    background: #fffdfa;
    box-shadow: 0 24px 70px rgba(31, 24, 18, .24);
}

.business-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f3eee8;
    color: #2a241f;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.business-modal__eyebrow {
    color: #aa6f2c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
}

.business-modal__title {
    margin: 8px 48px 8px 0;
    color: #201c18;
    font-size: clamp(28px, 4vw, 38px);
}

.business-modal__lead {
    margin: 0 0 24px;
    color: #655d55;
    line-height: 1.7;
}

.business-modal__offer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.business-modal__offer > div {
    display: flex;
    flex-direction: column;
    min-height: 132px;
    padding: 18px;
    border-radius: 16px;
    background: #f7f1e9;
}

.business-modal__offer span,
.business-modal__offer small {
    color: #766d64;
    line-height: 1.45;
}

.business-modal__offer strong {
    margin: 8px 0;
    color: #9b6124;
    font-size: 20px;
}

.business-modal__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.business-modal__benefits li {
    position: relative;
    padding-left: 24px;
    color: #403932;
    line-height: 1.6;
}

.business-modal__benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b67832;
    font-weight: 700;
}

.business-modal__note {
    margin: 0;
    padding: 14px 16px;
    border-left: 3px solid #cf974f;
    background: #fbf7f1;
    color: #71675e;
    font-size: 13px;
    line-height: 1.6;
}

.business-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

body.business-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .business-modal {
        align-items: flex-end;
        padding: 0;
    }

    .business-modal__dialog {
        max-height: 92vh;
        padding: 30px 20px 24px;
        border-radius: 24px 24px 0 0;
    }

    .business-modal__offer,
    .business-modal__benefits {
        grid-template-columns: 1fr;
    }

    .business-modal__offer > div {
        min-height: 0;
    }

    .business-modal__actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding-inline: 12px;
    }

    .nav {
        display: none;
    }

    .hero-inner {
        gap: 28px;
    }

    .hero-title {
        font-size: 26px;
    }

    .features-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-floating {
        position: static;
        margin-top: 14px;
        width: 100%;
    }
}

.why-patternx {
    padding: 60px 0;
    /*background: #fafafa;*/
}

/* 兩欄：左圖右卡片 */
.wp-layout {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.wp-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
}

.wp-sub {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
}

/* 左邊圖片：限制高度，避免左邊太長 */
.wp-photo {
    border-radius: 16px;
    overflow: hidden;
}

    .wp-photo img {
        width: 100%;
        max-height: 380px; /* 可以依喜好改 340~420 */
        object-fit: cover;
        display: block;
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

/* 右邊卡片區 */
.wp-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between; /* 三張卡片上下平均分布 */
    padding-top: 77px;
}

/* 卡片本體 */
.wp-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 第一行：Icon + 標題 */
.wp-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon 放大到 30px，顯眼一點 */
.wp-icon {
    width: 30px;
    height: 30px;
    color: #333;
}

.wp-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.wp-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* [2026-08-07] 目的：首頁流程影片移除後，將四個步驟改為滿版響應式卡片，補齊原影片空間。 */
/* ===== 60 秒上架（新增） ===== */
.ai60 {
    /* margin-top: 28px;*/
}

.ai60-wrap {
    width: 100%;
}

.ai60-bullets {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
}

.ai60-item {
    position: relative;
    padding: 0 30px 0 0;
}

.ai60-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

/* [2026-08-07] 目的：將流程連接線移到標題文字後方，避免線條穿過步驟標題。 */
.ai60-item:not(:nth-child(4)) .ai60-item-head::after {
    content: "";
    height: 1px;
    flex: 1 1 auto;
    min-width: 18px;
    background: var(--border-soft);
}

.ai60-item-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: var(--text-main);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.ai60-item-head b {
    font-size: 17px;
}

.ai60-item p {
    max-width: 240px;
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ai60-note {
    grid-column: 1 / -1;
    margin-top: 34px;
    padding: 14px 18px;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,.42);
    font-size: 14px;
    color: var(--text-muted);
}

.ai60-note b {
    margin-right: 10px;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .ai60-bullets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 0;
    }

    .ai60-item:not(:nth-child(4)) .ai60-item-head::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .ai60-bullets {
        grid-template-columns: 1fr;
    }

    .ai60-item {
        padding-right: 0;
    }

    .ai60-item p {
        max-width: none;
        padding-left: 56px;
    }

    .ai60-note {
        margin-top: 10px;
    }
}
/* ===== PatternX Hero Carousel ===== */
/* 高度策略 */
.hero-slider {
    height: 88vh;
    min-height: 640px;
}

@media (max-height: 800px) {
    .hero-slider {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        min-height: 620px;
    }
}

.px-hero {
    /*    padding: 28px 0 8px;
    background: #fbf6ef;*/
    width: 100%;
    /*margin-left: calc(50% - 50vw);*/ /* 讓背景真正滿版 */
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 0px;
}

.px-hero__wrap {
    /*    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;*/
    display: flex;
    height: 100%;
    transition: transform 600ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}

.px-hero-controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
/* Brand (logo overlay) */
.px-brand {
    position: absolute;
    z-index: 20;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.px-brand__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.px-brand__name {
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #151515;
}

/* Carousel */
.px-carousel {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0,0,0,0.08);
}

.px-slide {
    /*    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 320ms ease, transform 420ms ease;*/
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    color: var(--text);
}

    .px-slide.is-active {
        position: relative;
        opacity: 1;
        transform: scale(1);
    }

/* 16:9 background */
.px-slide__bg {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: saturate(1.02);
}

/* Overlay: 讓文字區更好讀，但你也可以拿掉 */
.px-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(255, 250, 242, 0.92) 0%, rgba(255, 250, 242, 0.82) 38%, rgba(255, 250, 242, 0.25) 68%, rgba(255, 250, 242, 0.0) 100% );
    pointer-events: none;
}

/* Content layout */
.px-slide__inner {
    position: relative;
    z-index: 10;
    min-height: clamp(360px, 42vw, 520px); /* 16:9 視覺高度感 */
    display: grid;
    align-items: center;
    padding: clamp(22px, 3.2vw, 46px);
}

.px-slide__content {
    width: min(520px, 92%);
    background: rgba(255, 255, 255, 0.78); /* 白色半透明 */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 24px 26px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.px-kicker {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin: 0 0 10px;
}

.px-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.08;
    color: #141414;
    letter-spacing: -0.02em;
}

.px-subtitle {
    margin: 0 0 18px;
    font-size: clamp(14px, 1.3vw, 17px);
    line-height: 1.6;
    color: rgba(0,0,0,0.65);
}

.px-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

/* Buttons */
.px-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform 120ms ease, box-shadow 180ms ease, background 180ms ease;
    user-select: none;
}

    .px-btn:active {
        transform: translateY(1px);
    }

/* [2026-03-27] 目的：首頁載入 Bootstrap 時 a 連結色易覆寫 primary，導致黑底黑字；強制白字與 visited 同色 */
.px-btn--primary {
    background: #151515;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

    .px-btn--primary:hover,
    .px-btn--primary:focus,
    .px-btn--primary:focus-visible,
    .px-btn--primary:visited {
        color: #fff !important;
        -webkit-text-fill-color: #fff;
        box-shadow: 0 22px 50px rgba(0,0,0,0.22);
    }

.px-btn--ghost {
    background: rgba(255,255,255,0.75);
    color: #151515 !important;
    -webkit-text-fill-color: #151515;
    border-color: rgba(0,0,0,0.1);
}

    .px-btn--ghost:hover,
    .px-btn--ghost:focus,
    .px-btn--ghost:focus-visible,
    .px-btn--ghost:visited {
        color: #151515 !important;
        -webkit-text-fill-color: #151515;
        background: rgba(255,255,255,0.9);
    }

/* Bullets */
.px-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(0,0,0,0.62);
    font-size: 13px;
}

    .px-bullets li {
        position: relative;
        padding-left: 14px;
    }

        .px-bullets li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: rgba(0,0,0,0.45);
        }

/* Nav arrows */
.px-nav {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .28);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

}

.px-nav--prev {
    left: 12px;
}

.px-nav--next {
    right: 12px;
}

.px-nav:hover {
    background: rgba(255,255,255,0.88);
}

/* Dots */
.px-dots {
    position: absolute;
    z-index: 16;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
}

.px-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,0.25);
    cursor: pointer;
}

    .px-dot.is-active {
        background: rgba(0,0,0,0.75);
        width: 18px;
    }

/* Mobile tuning */
@media (max-width: 640px) {
    .px-brand {
        top: 10px;
        left: 10px;
    }

    .px-nav {
        display: none;
    }

    .px-slide__overlay {
        background: linear-gradient( 180deg, rgba(255, 250, 242, 0.92) 0%, rgba(255, 250, 242, 0.80) 56%, rgba(255, 250, 242, 0.18) 100% );
    }

    .px-slide__content {
        width: min(520px, 100%);
    }

    /* [2026-03-27] 目的：手機版主／次 CTA 並排，節省垂直空間且與雙按鈕語意一致 */
    .px-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 8px;
    }

    .px-cta .px-btn {
        flex: 1 1 0;
        min-width: 0;
        font-size: 13px;
        padding: 0 10px;
        line-height: 1.25;
        height: auto;
        min-height: 44px;
    }
}

/* 手機版：改成上下排 */
@media (max-width: 900px) {
    .wp-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .wp-right {
        margin-top: 16px;
    }
}
