/* ================================================================
   modal-showcase.css — rich showcase content inside product-detail
   modals (light theme, matches the modal's own neutral styling)
   ================================================================ */

.modal-showcase {
    margin-top: 20px;
    padding: 0 28px;
}

.modal-showcase-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.msc-group {
    margin-bottom: 18px;
    border: 1px solid #efedf7;
    border-radius: 16px;
    padding: 18px 20px;
    background: #fafafe;
}

.msc-group:last-child {
    margin-bottom: 0;
}

.msc-group-vip {
    background: linear-gradient(160deg, #fffbeb 0%, #fff 100%);
    border-color: #fde68a;
}

.msc-group-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.msc-group-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(79, 70, 229, .4);
}

.msc-group-vip .msc-group-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 6px 16px -4px rgba(217, 119, 6, .4);
}

.msc-group-heading {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.msc-group-label {
    font-weight: 800;
    font-size: 1rem;
    color: #1a1040;
    display: flex;
    align-items: center;
    gap: 8px;
}

.msc-vip-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #422006;
    font-size: .62rem;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 50px;
    white-space: nowrap;
}

.msc-group-headline {
    font-size: .82rem;
    color: #6b7280;
    line-height: 1.6;
}

.msc-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
}

.msc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #f0eef7;
    border-radius: 12px;
    padding: 12px 13px;
    transition: box-shadow .2s, transform .2s;
}

.msc-item:hover {
    box-shadow: 0 6px 18px -6px rgba(102, 16, 242, .18);
    transform: translateY(-1px);
}

.msc-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    flex-shrink: 0;
}

.msc-item-body {
    min-width: 0;
}

.msc-item-title {
    font-weight: 700;
    font-size: .86rem;
    color: #1a1040;
    margin-bottom: 3px;
}

.msc-item-desc {
    font-size: .78rem;
    color: #6b7280;
    line-height: 1.65;
}

@media (max-width: 575.98px) {
    .msc-item-grid { grid-template-columns: 1fr; }
}
