/* Professional Response Layout - 3-Row Structure */

/* Main response container */
.response-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 20px 0;
    max-width: 100%;
}

/* Row 1: Text Response */
.response-text-section {
    padding: 0 8px;
}

.response-text-section .response-text-content {
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    margin: 0;
}

/* Row 2: Product Cards Section */
.response-products-section {
    padding: 0;
}

.response-products-section .product-cards-container {
    margin: 0;
}

/* Row 3: Follow-up Prompts Section */
.response-followup-section {
    padding: 0 8px;
}

.follow-propmpts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.follow-propmpts a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.follow-propmpts a:hover {
    background: #f3f4f6;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-1px);
}

.follow-propmpts a:before {
    content: "→";
    margin-right: 8px;
    font-weight: 600;
}

/* Section Headers (optional - if you want to add labels) */
.section-header {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

/* Spacing between response and next message */
.response-container + .response-container {
    margin-top: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .response-container {
        gap: 24px;
        padding: 16px 0;
    }

    .follow-propmpts {
        padding: 16px;
        gap: 8px;
    }

    .follow-propmpts a {
        font-size: 13px;
        padding: 8px 12px;
    }
}
