.bpsd-deals-wrapper { margin: 20px 0; }
.bpsd-deal {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background: #fff;
    margin-bottom: 20px;
}
.bpsd-image {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #f9f9f9;
}
.bpsd-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}
.bpsd-info {
    flex: 1;
    padding: 15px;
}
.bpsd-discount-tag {
    background: #ff5722;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}
.bpsd-coupon {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}
.bpsd-coupon input {
    font-size: 14px;
    padding: 5px 8px;
    width: 100px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.bpsd-coupon button {
    font-size: 13px;
    padding: 6px 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.bpsd-coupon button:hover {
    background-color: #005f8f;
}
.bpsd-button {
    display: inline-block;
    background: linear-gradient(135deg, #f7971e, #ffd200);
    color: #222;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-size: 14px;
    margin-top: 10px;
}
.bpsd-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    color: #000;
}
.bpsd-top {
    display: inline-block;
    padding: 6px 12px;
    background: #eee;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}
.bpsd-top:hover {
    background: #ccc;
}





@media (max-width: 768px) {
    .bpsd-image, .bpsd-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .bpsd-image {
        padding: 20px;
    }
}
