.catalog-search-box {
    position: relative;
    max-width: 420px;
    margin: 1.25rem 0;
}

.catalog-search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.catalog-search-box input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.6rem;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    font-size: 0.95rem;
}

.catalog-search-box input:focus {
    outline: none;
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    border-bottom: 1px solid #e5e7eb;
    margin: 1.5rem 0 1.25rem;
}

.catalog-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.85rem;
    margin-bottom: -1px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
}

.catalog-tab.is-active {
    color: #1a56db;
    border-bottom-color: #1a56db;
}

.catalog-tab-badge {
    background: #eef1f6;
    color: #374151;
    border-radius: 999px;
    padding: 0.1rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.catalog-tab.is-active .catalog-tab-badge {
    background: #1a56db;
    color: #fff;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    background: #eef2fb;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
}

.catalog-filters select,
.catalog-filters input[type=text] {
    /* background-color (no "background" shorthand) para no pisar el chevron de
       select en base.css, que usa background-image. */
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
}

.catalog-filters select {
    padding-right: 2.25rem;
}

.catalog-filters input[type=text] {
    flex: 1;
    min-width: 220px;
}

.catalog-filters button {
    background: #1a56db;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.catalog-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.88rem;
}

.catalog-table thead td {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.catalog-table tbody td {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: top;
}

.catalog-table .muted {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
}

.catalog-features i {
    color: #059669;
    margin-right: 0.35rem;
}

.catalog-sku-row {
    display: flex;
    gap: 0.75rem;
    font-size: 0.82rem;
    padding: 0.15rem 0;
}

.catalog-sku-row span:first-child {
    color: #6b7280;
    min-width: 60px;
}

.btn-reserve {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.btn-reserve:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.88rem;
}

.catalog-pagination a {
    color: #1a56db;
    text-decoration: none;
    font-weight: 600;
}
