:root {
    --red: rgb(235, 51, 0);
    --black-color-text: rgb(37, 40, 42);
    --Blocks: rgba(255, 255, 255);
    --icon-color: rgba(249, 188, 172);
    --grey: #E2E2E2;
}

.bookmark_section {
    margin-top: 80px;
}

.bookmark {
    opacity: 0.5;
    position: relative;
    left: 5%;
    width: 90%;
}

.bookmark a {
    text-decoration: none;
    color: #000;
    margin-right: 5px;
}

.bookmark i {
    margin-right: 5px;
}

.productlist_section {
    margin: 40px 5% 0 5%;
}

.productlist_title {
    font-size: 18px;
    margin: 40px 0;
}

.carousel-inner .carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-indicators {
    margin: 0;
    justify-content: stretch;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

    .carousel-indicators [data-bs-target] {
        width: 100%;
        height: 3px;
        margin: 0;
        border: none;
        background-color: #ccc;
        opacity: 0.5;
        position: relative;
    }

        .carousel-indicators [data-bs-target]::before {
            content: '';
            position: absolute;
            top: -20px; /* 向上擴展 10px */
            bottom: -20px; /* 向下擴展 10px */
            left: 0;
            right: 0;
        }

    .carousel-indicators .active {
        background-color: #666;
        opacity: 1;
    }

.product_div {
    margin-top: 80px;
}

.product-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-wrapper {
    width: calc(50% - 10px); /* 每個產品佔據 50% 寬度，減去間隔 */
    margin-bottom: 20px;
}

.product_card {
    width: 100%;
    margin-bottom: 60px;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
}

.productlist_info_div {
    margin-top: 30px;
}

.product_brand, .product_name, .product_price {
    word-wrap: break-word; /* 讓內文過長時自動換行 */
    margin: 0;
    font-size: 14px;
}

.color-options {
    display: flex;
    margin-top: 10px;
}

.color-option {
    width: 34px; /* 調整這裡的寬度以適應陰影效果 */
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .color-option img {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: cover;
        cursor: pointer;
        transition: all 0.1s ease;
    }

        .color-option img:hover {
            transform: scale(1.1);
        }

        .color-option img.active {
            border: 2px solid transparent;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

.pagination {
    justify-content: center;
    margin: 60px 0 100px 0;
}

    .pagination button {
        border: none;
        border-radius: 8px;
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-right: 6px;
        background-color: transparent;
    }

        .pagination button.active {
            background-color: #25282A;
            color: white;
        }

@media screen and (min-width: 992px) {

    .carousel-indicators {
        bottom: -25px;
        justify-content: center;
    }

        .carousel-indicators [data-bs-target] {
            width: 16px;
            margin-right: 14px;
            height: 2px;
        }

    .carousel-inner {
        border: 1px solid #ddd;
    }

        .carousel-inner .carousel-item img {
            content: var(--desktop-image);
        }

    .bookmark_section {
        margin-top: 100px;
    }

    .bookmark {
        left: 18.75%;
        width: 50%;
    }

    .productlist_section {
        margin: 40px 0 0 0;
    }

    .productlist_title {
        font-size: 20px;
        margin: 40px 15% 60px 18.75%;
    }
    .banner_div {
        margin: 40px 15% 60px 18.75%;
    }
}