/**
 * Product Short Description Section Styling
 *
 * Styles for the short description when displayed as a standalone section
 * above the product tabs.
 *
 * ROOT CAUSE: Short description moved from summary to separate section
 * SOLUTION: Style it to look like a proper standalone content block
 *
 * CHANGES (v1.1.0):
 * - Heading changed: "Mô tả ngắn" → "Lưu ý sản phẩm"
 * - Background changed: Gray (#f9f9f9) → Light Red (#ffebee)
 * - Border changed: Blue (#0073aa) → Red (#ef5350)
 * - Purpose: Draw attention to important product notes
 *
 * @version 1.1.0
 * @since 2025-11-05
 * @package Elessi Child Theme
 */

/* Short Description Section Container */
.nasa-short-description-section {
    margin: 30px 0;
    padding: 25px 30px;
    background: #ffebee; /* Light red - attention-grabbing but soft */
    border-left: 4px solid #ef5350; /* Red accent border */
    border-radius: 4px;
    line-height: 1.8;
}

/* Short Description Heading */
.nasa-short-description-section:before {
    content: 'Lưu ý sản phẩm'; /* Changed from "Mô tả ngắn" */
    display: block;
    font-size: 1.3em;
    font-weight: 600;
    color: #c62828; /* Dark red for heading */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ef9a9a; /* Light red border */
}

/* Paragraph Styling */
.nasa-short-description-section p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #666;
    line-height: 1.8;
}

.nasa-short-description-section p:last-child {
    margin-bottom: 0;
}

/* Links in Short Description */
.nasa-short-description-section a {
    color: #c62828; /* Dark red to match theme */
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nasa-short-description-section a:hover {
    color: #b71c1c; /* Darker red on hover */
    text-decoration: none;
}

/* List Styling (if short description contains lists) */
.nasa-short-description-section ul,
.nasa-short-description-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.nasa-short-description-section li {
    margin-bottom: 8px;
    color: #666;
}

/* Responsive - Mobile Adjustments */
@media (max-width: 768px) {
    .nasa-short-description-section {
        margin: 20px 0;
        padding: 20px 15px;
    }

    .nasa-short-description-section:before {
        font-size: 1.2em;
        margin-bottom: 12px;
    }

    .nasa-short-description-section p {
        font-size: 0.95em;
    }
}

/* Ensure proper spacing before tabs */
.nasa-short-description-section + .woocommerce-tabs,
.nasa-short-description-section + .nasa-tabs {
    margin-top: 20px;
}
