.wpdp-deal-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    max-width: 650px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    align-items: center;
    flex-wrap: wrap;
}

.wpdp-image {
    flex: 0 0 200px;
    max-width: 200px;
    overflow: hidden;
}

.wpdp-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.wpdp-content {
    flex: 1 1 400px;
    padding: 20px 25px;
    box-sizing: border-box;
}

.wpdp-title {
    font-size: 1.7rem;
    margin: 0 0 12px 0;
    font-weight: bold;
}

.wpdp-description {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.wpdp-pricing {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}

.wpdp-original-price {
    margin-right: 12px;
}

.wpdp-discount-price {
    font-weight: 900;
}

.wpdp-discount-percent {
    margin-left: 10px;
    color: #d32f2f;
    font-weight: 700;
}

.wpdp-limited-time {
    background-color: #e53935;
    color: white;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.wpdp-additional-text1,
.wpdp-additional-text2 {
    font-style: italic;
    margin: 5px 0;
    color: #555;
}

.wpdp-get-deal-button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    user-select: none;
}

.wpdp-get-deal-button:hover {
    filter: brightness(85%);
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.wpdp-get-deal-button.no-link {
    cursor: default;
    opacity: 0.6;
}

/* Responsive adjustments */
@media screen and (max-width: 700px) {
    .wpdp-deal-card {
        flex-direction: column;
        max-width: 100%;
    }
    .wpdp-image {
        width: 100%;
        max-width: 100%;
        flex: none;
    }
    .wpdp-content {
        padding: 15px 15px 25px 15px;
    }
}
