/* Catalog empty-state landing */
.es-wrap {
    padding: 56px 16px 80px;
    background: #f5f7fa;
    min-height: 60vh;
}

.es-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.es-hero {
    text-align: center;
    margin-bottom: 36px;
}

.es-hero h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}

.es-hero p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.es-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .es-cta-grid {
        grid-template-columns: 1fr;
    }
}

.es-cta {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    gap: 18px;
    align-items: center;
    cursor: pointer;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.es-cta:hover {
    transform: translateY(-2px);
    border-color: #0f4bff;
    box-shadow: 0 6px 24px rgba(15, 75, 255, 0.12);
    text-decoration: none;
}

.es-cta__icon {
    width: 64px;
    height: 64px;
    flex: none;
    border-radius: 16px;
    background: #eff5ff;
    color: #0f4bff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.es-cta--alt .es-cta__icon {
    background: #fef2f2;
    color: #d32f2f;
}

.es-cta__body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}

.es-cta__body p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.es-cat-title {
    text-align: center;
    margin: 0 0 24px;
}

.es-cat-title span {
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #9ca3af;
}

.es-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .es-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.es-cat {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    text-decoration: none;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.es-cat:hover {
    transform: translateY(-2px);
    border-color: #0f4bff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    text-decoration: none;
}

.es-cat__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4px;
}

.es-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.es-cat:hover .es-cat__media img {
    transform: scale(1.05);
}

.es-cat__name {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    /* Reserve roughly two lines so single- and multi-line names occupy the
       same vertical space and the count line lands on a shared baseline. */
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
}

.es-cat__count {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    /* Push to the bottom of the card so all counts align horizontally. */
    margin-top: auto;
}

.es-selector-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    max-width: 760px;
    margin: 0 auto;
}

.es-selector-card__inner {
    width: 100%;
}

.es-shortcuts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.es-shortcuts__label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.es-shortcut {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e5e7ef;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #0f4bff;
    text-decoration: none;
    transition: all 150ms ease;
}

.es-shortcut:hover {
    border-color: #0f4bff;
    background: #eff5ff;
    text-decoration: none;
    color: #0f4bff;
}
