.bk-model-thumbnail { /* Thumbnail card */
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
}

.bk-model-thumbnail-content {
    position: absolute;
    top: 30%;
    left: 10%;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 4px;
    color: #333;
}
.bk-model-thumbnail-title {
    font-size: 20px;
    font-weight: 600;
}
.bk-model-thumbnail-tag {
    font-size: 14px;
    color: #00BFFF;
    font-weight: bold;
}

.bk-model-thumbnail-bottom {
    position: absolute;
    bottom: 0;
    background: #2d9cdb;
    width: 100%;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}
.bk-model-thumbnail-prices {
    font-size: 16px;
    margin-bottom: 5px;
}
.bk-model-thumbnail-prices span {
    display: inline-block;
    margin-right: 10px;
}
.bk-model-thumbnail-offer-label {
    font-weight: 600;
    margin-right: 8px;
}
.bk-model-thumbnail-actual {
    color: red;
    text-decoration: line-through;
}
.bk-model-thumbnail-offer {
    font-weight: bold;
    color: #fff;
}
.bk-model-thumbnail-desc {
    font-size: 14px;
    margin-top: 4px;
}

/* Modal */
.bk-model-thumbnail-modal {
    display: none;
        position: absolute;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.bk-model-thumbnail-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}
.bk-model-thumbnail-close {
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Box inside modal */
.bk-model-thumbnail-box {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.bk-model-thumbnail-price {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Blue footer layout */
.bk-model-thumbnail-footer {
    display: flex;
    justify-content: space-between;
    background: #2d9cdb;
    color: #fff;
    padding: 20px;
    margin-top: 20px;
    gap: 20px;
    text-align: left;
}
.bk-model-thumbnail-left,
.bk-model-thumbnail-right {
    flex: 1;
}

/* Buttons */
.bk-model-thumbnail-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.bk-model-thumbnail-btn {
    padding: 10px 20px;
    background: #fff;
    color: #2d9cdb;
    border: 2px solid #2d9cdb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}
.bk-model-thumbnail-btn:hover {
    background: #2d9cdb;
    color: #fff;
}
