/**
 * LCUS Product Showcase Widget - Frontend Styles
 */

.lcus-product-showcase {
    margin: 0;
    padding: 0;
}

.lcus-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lcus-product-item {
    margin: 0 0 12px 0;
    padding: 0;
}

.lcus-product-link {
    display: block;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lcus-product-link:hover {
    background: #f0f7ff;
    border-color: #2271b1;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(34, 113, 177, 0.1);
}

.lcus-product-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2271b1;
    margin-bottom: 5px;
    line-height: 1.4;
}

.lcus-product-link:hover .lcus-product-name {
    color: #135e96;
    text-decoration: underline;
}

.lcus-product-price {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.lcus-product-footer {
    margin: 15px 0 0 0;
    text-align: center;
    font-size: 0.9rem;
}

.lcus-product-footer a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
}

.lcus-product-footer a:hover {
    color: #135e96;
    text-decoration: underline;
}
