.product-image {
    width: 160px;
    height: 160px;
}

.card-title {
    color: #34568B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom-color 0.3s ease, transform 0.3s ease;
}

.card-title:hover {
    color: #29426c;
    transform: scale(1.02);
}

.btn-book, .btn-content-page, .add-to-cart-btn, .service-subscribe-btn, .buy-now-btn {
    width: 150px;
    background-color: #34568B;
    border: none;
    padding: 10px 20px;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease-in-out;
    color: white !important;
}

.btn-book:hover, .btn-content-page:hover, .add-to-cart-btn:hover, .service-subscribe-btn:hover, .buy-now-btn:hover {
    width: 150px;
    background-color: #29426c !important;
    color: white !important;
}

.btn.btn-primary.add-to-cart-btn-soldout {
    width: 150px;
    background-color: rgb(78, 78, 78);
    color: white;
    border: none !important;
}

.purchased-prompt {
    font-size: 15px;
    font-weight: bold;
    color: #28a745;
    display: inline-block;
}

.purchased-prompt::before {
    content: "\2714";
    color: #28a745;
    margin-right: 8px;
}

.purchased-have-end-date-prompt {
    font-size: 15px;
    font-weight: bold;
    color: #ffc107;
    display: inline-block;
}

.purchased-have-end-date-prompt::before {
    content: "\26A0";
    color: #ffc107;
    margin-right: 8px;
}