/* 主圖樣式 */
.main-image-container {
    cursor: zoom-in;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    max-width: 400px;
    max-height: 400px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 400px;
    max-height: 400px;
}

/* 縮圖樣式 */
.thumbnail-container {
    margin-top: 10px;
}

.thumbnail {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 3px;
    transition: all 0.2s ease-in-out;
    background: #fff;
    display: block;
    margin: 0 auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.thumbnail:hover {
    border-color: #6c757d;
}

.thumbnail.active {
    border: 2px solid #0d6efd;
}

/* 商品資訊樣式 */
.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 15px;
}

.original-price {
    font-size: 1.1rem;
    margin-right: 10px;
}

.current-price {
    color: #dc3545;
}

.product-rating .stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.rating-count {
    color: #6c757d;
    margin-left: 5px;
}

.product-description {
    line-height: 1.6;
    color: #495057;
}

/* 按鈕和表單元素樣式 */
.btn-outline-secondary.active {
    background-color: #6c757d;
    color: white;
}

.card-header {
    background-color: #db5f79;
    color: white;
    text-align: center;
    font-size: 24px;
}

.info-label {
    color: #db5f79;
    font-weight: bold;
    font-size: 18px;
}

/*.card-main {*/
/*    border-radius: 30px !important;*/
/*}*/

.main-image-container {
    border-radius: 30px;
}

.card-header {
    border-top-left-radius: 30px !important;
    border-top-right-radius: 30px !important;
}


/* 響應式調整 */
@media (max-width: 767.98px) {
    .main-image-container {
        width: 100vw;
        height: 100vw;
        max-width: 100%;
        max-height: 100vw;
        margin-bottom: 15px;
    }
    .main-image {
        width: 100%;
        height: 100%;
    }
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    .product-title {
        margin-top: 20px;
    }
}
