/* Product Showcase Pro - Frontend Styles */
/* Style matching screenshot - 50/50 layout */

/* Main Container */
.psp-showcase {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 800px;
    margin: 25px auto;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Header Section - Inline badge and title */
.psp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.psp-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.psp-headline {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

/* Content Layout - 50/50 Split */
.psp-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.psp-image-column {
    flex: 1;
    min-width: 0;
}

.psp-product-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.psp-details-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Features List - With background, no bullets */
.psp-features {
    list-style: none;
    margin: 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.psp-feature {
    padding: 5px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}

.psp-feature strong {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
}

/* Reviews Box */
.psp-reviews-box {
    background-color: #fef9e7;
    border: 1px solid #f5c518;
    border-radius: 4px;
    padding: 10px 15px;
}

.psp-reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.psp-reviews-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.psp-stars {
    font-size: 13px;
    color: #f5c518;
    letter-spacing: 1px;
}

.psp-reviews-list {
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

.psp-review {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 4px 0;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.psp-check {
    color: #16a34a;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 12px;
}

/* CTA Section */
.psp-cta-section {
    text-align: center;
    padding-top: 5px;
}

.psp-cta-button {
    display: inline-block;
    width: auto;
    padding: 14px 80px;
    background-color: #dc2626;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.psp-cta-button:hover {
    background-color: #ff4d4d;
    color: #000000 !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 7, 34, 0.4);
}

.psp-cta-button:active {
    transform: scale(0.98);
}

.psp-urgency {
    margin: 12px 0 0 0;
    font-size: 13px;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 680px) {
    .psp-showcase {
        padding: 15px;
        margin: 15px 10px;
    }
    
    .psp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .psp-headline {
        font-size: 18px;
    }
    
    .psp-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .psp-image-column {
        flex: none;
        text-align: center;
    }
    
    .psp-product-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .psp-cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .psp-showcase {
        padding: 12px;
    }
    
    .psp-headline {
        font-size: 16px;
    }
    
    .psp-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .psp-feature {
        font-size: 12px;
    }
    
    .psp-reviews-box {
        padding: 10px 12px;
    }
}

/* Clean box sizing */
.psp-showcase * {
    box-sizing: border-box;
}
