.collection-image.img-style {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}

.collection-image.img-style img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-text-container {
    position: relative;
    width: 100%;
    height: 350px;
}

.img-text-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 新增的折扣樣式 */
.price-container {
    align-items: center;
    /* 垂直居中對齊 */
    justify-content: center;
    /* 水平居中對齊 */
    display: flex;
    /* 使用 Flexbox 佈局 */
    gap: 0.5rem;
    /* 項目之間的間距 */
}

#originalPrice {
    font-size: 1rem;
    /* 調整原價字體大小 */
}

#displayPrice {
    font-weight: bold;
    /* 加粗顯示折扣價 */
}

#discountBadge {
    font-size: 0.85rem;
    /* 調整折扣標示字體大小 */
    padding: 0.25em 0.5em;
    /* 調整內邊距 */
    vertical-align: middle;
    /* 確保垂直對齊 */
}

#stockDisplay {
    color: #8b4513;
    /* A brown color to match the theme */
    font-weight: bold;
    font-size: 1rem;
}

.btn-sold-out {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed;
}

.btn-sold-out.animate-hover-btn:hover {
    transform: translateY(0);
    box-shadow: none;
}

.centered-text {
    width: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.product_title {
    font-size: 32px !important;
}

.page_detail_title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: normal;
    position: relative;
    padding-bottom: 0.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    line-height: 1.1;
    display: inline-block;
    width: 100%;
    color: #fff;
}

.page_detail_title:before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: calc(50% - 25px);
    bottom: 0;
    color: #fff;
}

.page_detail_sub_title {
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-size: 24px !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .page_detail_title {
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .page_detail_sub_title {
        font-size: 20px !important;
    }

    .product_title {
        font-size: 22px !important;
    }
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important;
    }

    .d-md-none {
        display: none !important;
    }
}
