/* 預覽模式提示條 */
.preview-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ff9800;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.preview-bar-link {
    display: inline-block;
    margin-left: 15px;
    padding: 3px 12px;
    background-color: #fff;
    color: #ff9800;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}

.preview-bar-link:hover {
    background-color: #fff3e0;
    color: #e68900;
    text-decoration: none;
}

/* ========================================= */
/* 首頁輪播圖（Banner Swiper）                    */
/* ========================================= */

.banner-swiper-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 10px auto 0 auto;
    padding: 0 25px;
}

.banner-swiper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.banner-swiper .swiper-slide {
    display: block;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-swiper .swiper-slide .banner-img-mobile {
    display: none;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.55);
}

.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
    font-size: 18px;
}

.banner-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .banner-swiper-wrapper {
        margin-top: 30px;
        padding: 0 15px;
    }

    .banner-swiper .swiper-slide .banner-img-pc {
        display: none;
    }

    .banner-swiper .swiper-slide .banner-img-mobile {
        display: block;
    }

    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        width: 34px;
        height: 34px;
    }

    .banner-swiper .swiper-button-next::after,
    .banner-swiper .swiper-button-prev::after {
        font-size: 14px;
    }
}

/* ========================================= */
/* 客製化主機頁面樣式                              */
/* ========================================= */

.pc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 25px 25px 25px;
}

/* 系列區塊 */
.series-section {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px #eee solid;
}

/* 系列標題 */
.pc-series-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: none;
    position: relative;
}

.pc-series-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background: linear-gradient(90deg, #e53935, #ff8a80, transparent);
}

.pc-series-title-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-series-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    padding-left: 14px;
}

.pc-series-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: #e53935;
    border-radius: 2px;
}

.series-count {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    background: #f0f0f0;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.series-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.series-view-all:hover {
    color: #e53935;
}

.series-view-all i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.series-view-all:hover i {
    transform: translateX(3px);
}

/* ========================================= */
/* 左邊選單                                    */
/* ========================================= */

.left-menu {
    padding: 15px 0 15px 0;
    position: sticky;
    top: 80px;
}

.left-menu .series-name-title {
    font-weight: 900;
    font-size: 18px;
    border-bottom: 2px solid #eee;
    padding: 8px 25px 15px 25px;
    margin-bottom: 10px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.left-menu .series-name-title i {
    font-size: 14px;
    color: #999;
}

.left-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 22px;
    color: #555;
    margin-bottom: 2px;
    padding: 8px 25px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.left-menu a i {
    font-size: 11px;
    color: #ccc;
    transition: all 0.2s ease;
}

.left-menu a:hover,
.left-menu a.active {
    color: #e53935;
    background: #fef5f5;
}

.left-menu a:hover i,
.left-menu a.active i {
    color: #e53935;
}

@media screen and (max-width: 992px) {
    .left-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 15px;
        position: static;
    }

    .left-menu .series-name-title {
        width: 100%;
        margin-bottom: 5px;
        padding: 5px 0 10px 0;
    }

    .left-menu a {
        padding: 6px 14px;
        border: 1px solid #ddd;
        border-radius: 20px;
        margin-bottom: 0;
        font-size: 14px;
        background: #fff;
    }

    .left-menu a i {
        display: none;
    }

    .left-menu a:hover,
    .left-menu a.active {
        border-color: #e53935;
        background: #fef5f5;
    }
}

.series-name-title-link {
    text-decoration: none;
    color: inherit;
    font-weight: 900;
}

.series-name-title-link:hover {
    color: #e53935;
}

/* ========================================= */
/* 列表頁 - 產品卡片                           */
/* ========================================= */

.bundle-pc-list {
    padding: 20px;
}

.bundle-pc-item {
    padding: 10px;
    margin-bottom: 5px;
}

.bundle-pc-card {
    display: block;
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bundle-pc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

/* 特價標籤 */
.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 4px 12px;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
}

.bundle-pc-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fafafa;
}

.bundle-pc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bundle-pc-card:hover .bundle-pc-cover img {
    transform: scale(1.06);
}

/* 規格標籤（列表頁覆蓋在封面圖底部） */
.bundle-pc-cover .img-box {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 
.bundle-pc-specs {
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 5px;
    left: 5px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
} */

/* 
.bundle-pc-specs div {
    font-size: 10px;
    width: 100px;
    color: #fff;
    padding: 2px 3px;
    background-color: #d20400;
    margin-top: 3px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    border: 1px rgba(255, 255, 255, 0.3) solid;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
} */

.bundle-pc-specs-content {
    display: flex;
    flex-wrap: wrap-reverse;
    align-content: flex-end;
    width: 100%;
    height: auto;
}

.bundle-pc-specs {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}

.bundle-pc-specs .bundle-pc-specs-content div {
    text-align: center;
    font-size: 9px;
    line-height: 18px;
    color: #fff;
    padding: 0;
    margin: 0;
    width: 33.33%;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.bundle-pc-info {
    padding: 16px;
}

.bundle-pc-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    height: 46px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bundle-pc-price {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
}

.bundle-pc-price .original-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 13px;
}

.bundle-pc-price .sale-price {
    color: #e53935;
    font-weight: 800;
    font-size: 18px;
}

.bundle-pc-price .normal-price {
    color: #e53935;
    font-weight: 800;
    font-size: 18px;
}

/* ========================================= */
/* 無資料                                      */
/* ========================================= */

.no-data {
    text-align: center;
    padding: 80px 20px;
}

.no-data-icon {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-data img {
    max-width: 200px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-data p {
    font-size: 18px;
    color: #aaa;
    letter-spacing: 0.05em;
}

/* ========================================= */
/* 內容頁                                      */
/* ========================================= */

.bundle-pc-detail {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* 圖片輪播 */
.bundle-pc-gallery {
    margin-bottom: 20px;
}

.bundle-pc-swiper-main {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.bundle-pc-swiper-main .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.bundle-pc-swiper-main .swiper-button-next,
.bundle-pc-swiper-main .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.bundle-pc-swiper-main .swiper-button-next::after,
.bundle-pc-swiper-main .swiper-button-prev::after {
    font-size: 16px;
}

.bundle-pc-swiper-thumbs {
    padding: 0 5px;
}

.bundle-pc-swiper-thumbs .swiper-slide {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.bundle-pc-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #007bff;
}

.bundle-pc-swiper-thumbs .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.bundle-pc-single-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.bundle-pc-single-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* 詳情頁規格標籤（疊在圖片上） */
.bundle-pc-swiper-main .swiper-slide {
    position: relative;
}

.bundle-pc-gallery .bundle-pc-specs .bundle-pc-specs-content div {
    font-size: 18px;
    line-height: 45px;
    background-color: rgba(0, 0, 0, 0.9);
}

.bundle-pc-single-image .bundle-pc-specs .bundle-pc-specs-content div {
    font-size: 18px;
    line-height: 45px;
}

/* 商品資訊 */
.bundle-pc-info-detail {
    padding-left: 20px;
}

.bundle-pc-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.bundle-pc-detail-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.bundle-pc-detail-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 15px;
}

.bundle-pc-detail-price .sale-price {
    color: #e53935;
    font-weight: bold;
    font-size: 28px;
}

.bundle-pc-detail-price .normal-price {
    color: #333;
    font-weight: bold;
    font-size: 28px;
}

.bundle-pc-summary {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* 詳情頁規格摘要 */
.bundle-pc-detail-specs {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.detail-spec-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #444;
}

.detail-spec-label {
    display: inline-block;
    min-width: 60px;
    font-weight: 700;
    color: #333;
    margin-right: 12px;
}

.detail-spec-value {
    color: #555;
}

/* 零件清單 */
.bundle-pc-parts {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.bundle-pc-parts h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.parts-list {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.parts-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #444;
    transition: background 0.2s ease;
}

.parts-item:last-child {
    border-bottom: none;
}

.parts-item:hover {
    background: #f0f1f3;
}

.parts-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.parts-item-name i {
    color: #28a745;
    font-size: 12px;
    flex-shrink: 0;
}

.parts-item-muted {
    color: #aaa;
}

.parts-item-muted .parts-item-name i {
    color: #ccc;
}

.parts-item-price {
    flex-shrink: 0;
    margin-left: 15px;
    font-weight: 600;
    color: #e65100;
    white-space: nowrap;
}

.parts-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 10px 15px;
    background: #fff3e0;
    border-radius: 8px;
    border: 1px solid #ffe0b2;
}

.parts-total-label {
    font-size: 14px;
    font-weight: 700;
    color: #e65100;
}

.parts-total-price {
    font-size: 16px;
    font-weight: 800;
    color: #e65100;
}
.parts-total-price.text-decoration-line-through {
    text-decoration: line-through;
}

.parts-bundle-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding: 10px 15px;
    background: #fb5754;
    border-radius: 8px;
}

.parts-bundle-price-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.parts-bundle-price-value {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.parts-saved {
    text-align: right;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #e53935;
}

/* 加購升級 */
.bundle-pc-upgrades {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.bundle-pc-upgrades h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.upgrades-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upgrade-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.upgrade-item:hover {
    background: #e9ecef;
}

.upgrade-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #007bff;
}

.upgrade-item input[type="checkbox"]:checked+.upgrade-info {
    color: #007bff;
}

.upgrade-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.upgrade-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.upgrade-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.upgrade-product-names {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

.upgrade-price {
    font-size: 14px;
    font-weight: bold;
    color: #e53935;
    flex-shrink: 0;
    margin-left: 15px;
}

/* 總計 */
.bundle-pc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
    border-radius: 10px;
    margin-top: 20px;
}

.add-to-cart-btn {
    width: 100%;
    height: 60px;
    background-color: #fff;
    border: 1px #d90000 solid;
    color: #d90000;
    line-height: 58px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.05em;
    border-radius: 10px;
}

.add-to-cart-btn:hover {
    background-color: #fff5f5;
}

/* 直接購買按鈕 */
.buy-now-btn {
    width: 100%;
    height: 60px;
    background-color: #d90000;
    border: 1px #d90000 solid;
    color: #fff;
    line-height: 58px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.05em;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.buy-now-btn:hover {
    background-color: #b80000;
    border-color: #b80000;
}

/* 數量選擇器 */
.bundle-pc-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 38px;
    height: 42px;
    background: #f5f5f5;
    border: none;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: #e8e8e8;
    color: #333;
}

.qty-input {
    width: 58px;
    height: 42px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
}

/* 複製推薦連結按鈕 */
.copy-referral-btn {
    width: 100%;
    height: 50px;
    background-color: #e3f2fd;
    border: 1px #2196f3 solid;
    color: #1976d2;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-referral-btn:hover {
    background-color: #bbdefb;
    border-color: #1976d2;
}

.copy-referral-btn i {
    margin-right: 8px;
}

.total-label {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.total-price {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

/* 商品介紹 */
.bundle-pc-content {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.bundle-pc-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.bundle-pc-content .editor-block {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.bundle-pc-content .editor-block img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* 返回按鈕 */
.bundle-pc-back {
    margin-top: 30px;
    text-align: center;
}

.bundle-pc-back .btn {
    padding: 10px 30px;
}

/* ========================================= */
/* RWD 響應式                                  */
/* ========================================= */

@media (max-width: 991px) {
    .bundle-pc-info-detail {
        padding-left: 0;
        margin-top: 30px;
    }

    /* .pc-series-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    } */

    .series-view-all {
        align-self: flex-end;
    }
}

@media (max-width: 767px) {
    .bundle-pc-detail {
        padding: 20px;
    }

    .bundle-pc-detail-title {
        font-size: 20px;
    }

    .bundle-pc-detail-price .sale-price,
    .bundle-pc-detail-price .normal-price {
        font-size: 24px;
    }

    .bundle-pc-total {
        padding: 15px;
    }

    .total-label {
        font-size: 16px;
    }

    .total-price {
        font-size: 24px;
    }

    .upgrade-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .bundle-pc-list {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .bundle-pc-item {
        padding: 5px;
    }

    .bundle-pc-info {
        padding: 10px;
    }

    .bundle-pc-title {
        font-size: 13px;
        height: 40px;
    }

    .bundle-pc-price .sale-price,
    .bundle-pc-price .normal-price {
        font-size: 15px;
    }

    .bundle-pc-price .original-price {
        font-size: 11px;
    }

    .sale-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 11px;
    }

    .page-title h1 {
        font-size: 22px;
    }

    .pc-series-title h2 {
        font-size: 18px;
    }

    .series-count {
        font-size: 12px;
        padding: 2px 8px;
    }

    .bundle-pc-specs {
        padding: 4px 6px;
    }

    .spec-tag {
        font-size: 10px;
    }

    .spec-label {
        min-width: 26px;
    }
}

/* ========================================= */
/* 購物車頁面                                  */
/* ========================================= */

.cart-section {
    margin-bottom: 35px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px #efefef solid;
}

.cart-buyer-info {
    padding: 15px;
}

.cart-buyer-info label {
    font-weight: 900;
}

.cart-buyer-info input::placeholder {
    font-size: 14px;
    color: #ccc;
}

.cart-btn-buy {
    display: inline-block;
    width: 200px;
    height: 40px;
    background-color: #ef0000;
    border-radius: 6px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border: 0;
}

.cart-btn-buy:hover {
    background-color: #ff1a1a;
}

/* 購物車 開始 */

.cart-list {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-list table {
    width: 100%;
}

.cart-product-price {
    color: #e13535;
    font-weight: 700;
}

.cart-coupon-inline {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-coupon-inline #btn-apply-coupon,
.cart-coupon-inline #btn-cancel-coupon {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.cart-price {
    text-align: right;
    font-weight: 900;
    line-height: 40px;
    padding: 15px;
}

.cart-price .cart-price-text {
    font-weight: 500;
    color: #888;
    font-size: 14px;
}

.cart-price .cart-price-number {
    display: inline-block;
    width: 120px;
    color: #007bff;
}

/* 移除按鈕 */
.btn-remove-item {
    font-size: 14px;
    color: #aaa;
    transition: color 0.3s ease;
}

.btn-remove-item:hover {
    color: #888;
}

/* 訂單頁按鈕 */
.cart-btn-buy.btn-secondary {
    background-color: #6c757d;
}

.cart-btn-buy.btn-secondary:hover {
    background-color: #5a6268;
}

.cart-btn-buy.btn-primary {
    background-color: #0d6efd;
}

.cart-btn-buy.btn-primary:hover {
    background-color: #0b5ed7;
}

.cart-info-section {
    padding: 15px;
}