/* Product Recommendation Block Styles */

.prb-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.prb-card *, .prb-card *::before, .prb-card *::after {
    box-sizing: border-box;
}

.prb-label {
    position: absolute;
    top: 20px;
    left: -35px;
    background: #4A6CF7;
    color: #fff;
    padding: 6px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.prb-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.prb-image {
    flex: 0 0 200px;
}

.prb-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.prb-content {
    flex: 1;
}

.prb-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #111827;
    line-height: 1.2;
}

.prb-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 1.2rem;
}

.prb-star.filled {
    color: #FBBF24;
}

.prb-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.prb-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.prb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    color: #fff !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.prb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.prb-price {
    font-weight: 800;
    font-size: 1.05rem;
}

.prb-store {
    font-weight: 400;
    opacity: 0.9;
}

.prb-terms {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .prb-body {
        flex-direction: column;
    }
    .prb-image {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .prb-buttons {
        flex-direction: column;
    }
    .prb-btn {
        width: 100%;
        justify-content: center;
    }
}