/* Honest empty-catalog state for the storefront home page. */
.home-catalog-empty {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: clamp(1rem, 2.6vw, 1.5rem);
    border: 1px solid var(--store-border);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(249, 115, 22, .08), transparent 30%),
        var(--store-card);
}

.home-catalog-empty-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    color: var(--store-orange);
    background: color-mix(in srgb, var(--store-orange) 12%, transparent);
}

.home-catalog-empty h3 {
    margin: 0;
    color: var(--store-text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.home-catalog-empty p {
    max-width: 720px;
    margin: .35rem 0 0;
    color: var(--store-muted);
    font-size: .86rem;
    line-height: 1.6;
}

.home-catalog-empty small {
    display: block;
    margin-top: .45rem;
    color: var(--store-muted);
    font-size: .75rem;
}

.home-catalog-empty .home-secondary-button {
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .home-catalog-empty {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .home-catalog-empty .home-secondary-button {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .home-catalog-empty {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-catalog-empty-icon {
        margin-inline: auto;
    }
}
