/* =========================================================
   Empty state — componente condiviso tra tutti gli shop
   Ogni shop può fare override in css/products_list.css
   ========================================================= */

.products-list .empty-state,
#prods_list + .empty-state,
.empty-state
{
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 3.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(17, 17, 17, .07);
    width: 100%;
    max-width: 720px;
    margin: 2rem auto;
    animation: empty-state-fade .4s cubic-bezier(.2, .8, .2, 1);
}

@keyframes empty-state-fade
{
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.empty-state-icon
{
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon i
{
    font-size: 2.5rem;
    color: var(--s-primary-color, #555);
    display: block;
}

.empty-state-title
{
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: .5rem;
}

.empty-state-text
{
    font-size: .9375rem;
    color: #555555;
    line-height: 1.5;
    max-width: 420px;
    margin: 0 auto 1.75rem;
}

.empty-state-text b
{
    color: #1a1a1a;
}

.empty-state-btn
{
    display: inline-block;
    padding: .85rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: .8125rem;
    transition: transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease-out, background-color .25s ease-out;
}

.empty-state-btn:hover
{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

@media (min-width: 768px)
{
    .empty-state
    {
        padding: 4rem 2rem;
    }

    .empty-state-icon
    {
        width: 112px;
        height: 112px;
    }

    .empty-state-icon i
    {
        font-size: 3rem;
    }
}
