.ppw-container-0195b13a {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(45, 90, 39, 0.08);
    border: 1px solid rgba(220, 203, 160, 0.3);
    font-family: 'Helvetica Neue', sans-serif;
}

.ppw-image-wrap {
    flex: 1 1 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.ppw-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.ppw-img:hover {
    transform: scale(1.05);
}

.ppw-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #d4af37, #f3e5ab);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ppw-content-wrap {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ppw-rating {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 10px;
}

.ppw-trust-text {
    color: #666;
    font-size: 13px;
    margin-left: 5px;
}

.ppw-headline {
    font-size: 32px;
    color: #2d5a27;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.ppw-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ppw-price-wrap {
    margin-bottom: 20px;
}

.ppw-price {
    font-size: 28px;
    font-weight: bold;
    color: #2d5a27;
}
.ppw-price del {
    font-size: 18px;
    color: #999;
    margin-left: 10px;
}

.ppw-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ppw-benefit {
    font-size: 14px;
    color: #333;
}

.ppw-countdown {
    background: #fdfaf3;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px dashed #d4af37;
    margin-bottom: 25px;
    display: inline-block;
    font-size: 14px;
}

.ppw-timer {
    color: #e63946;
    font-size: 16px;
}

.ppw-btn {
    display: block;
    text-align: center;
    background: #2d5a27;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
    margin-bottom: 15px;
}

.ppw-btn:hover {
    background: #23481f;
    transform: translateY(-2px);
    color: #fff;
}

.ppw-trust-badges {
    font-size: 12px;
    color: #777;
    text-align: center;
}

@media (max-width: 767px) {
    .ppw-btn {
        position: sticky;
        bottom: 10px;
        z-index: 999;
    }
}