/* ============================================================
   CAT-OH — Página de Marcas (/marcas/)
   ============================================================ */

.catoh-marcas-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 32px 64px;
    font-family: 'Nunito', 'Poppins', system-ui, sans-serif;
}

.catoh-marcas-breadcrumb {
    font-size: 13px;
    color: #54595F;
    margin-bottom: 16px;
}
.catoh-marcas-breadcrumb a {
    color: #308e95;
    text-decoration: none;
}
.catoh-marcas-breadcrumb a:hover { text-decoration: underline; }

.catoh-marcas-title {
    font-size: 30px;
    font-weight: 800;
    color: #273B42;
    margin: 0 0 14px;
    line-height: 1.2;
}

.catoh-marcas-intro {
    font-size: 15.5px;
    color: #54595F;
    line-height: 1.6;
    max-width: 780px;
    margin: 0 0 32px;
}

/* ─── PESTAÑAS GATOS / PERROS ─── */
.catoh-marcas-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    border-bottom: 2px solid #e8e8e8;
}
.catoh-marcas-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #54595F !important;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .15s;
}
.catoh-marcas-tab:hover { color: #308e95 !important; background: transparent !important; }
.catoh-marcas-tab.is-active {
    color: #308e95 !important;
    background: transparent !important;
    border-bottom-color: #FF6D26;
}
.catoh-marcas-tab-count {
    background: #e0f5f6;
    color: #308e95;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
}
.catoh-marcas-tab.is-active .catoh-marcas-tab-count {
    background: #308e95;
    color: #fff;
}

/* ─── GRUPOS DENTRO DE CADA ESPECIE ─── */
.catoh-marcas-grupo {
    margin-bottom: 36px;
}
.catoh-marcas-grupo-title {
    font-size: 18px;
    font-weight: 800;
    color: #308e95;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0f5f6;
}
.catoh-marcas-grupo-blurb {
    font-size: 14px;
    color: #54595F;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 0 12px;
}
.catoh-marcas-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    font-weight: 700;
    color: #308e95;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 8px 0;
}
.catoh-marcas-cta-link:hover {
    color: #FF6D26;
    text-decoration: underline;
}
.catoh-marcas-grupo:last-child { margin-bottom: 0; }

/* ─── GRILLA DE MARCAS ─── */
.catoh-marcas-panel[hidden] { display: none; }

.catoh-marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.catoh-marcas-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
    padding: 16px 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #273B42;
    text-decoration: none;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all .15s;
}
.catoh-marcas-item:hover {
    border-color: #308e95;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.catoh-marcas-item-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}
.catoh-marcas-item:hover {
    color: #FF6D26;
}
.catoh-marcas-item:visited {
    color: #273B42;
}
.catoh-marcas-item:visited:hover {
    color: #FF6D26;
}

.catoh-marcas-empty {
    color: #54595F;
    font-size: 14px;
    padding: 20px 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
    .catoh-marcas-page { padding: 24px 16px 48px; }
    .catoh-marcas-title { font-size: 24px; }
    .catoh-marcas-tabs { gap: 4px; }
    .catoh-marcas-tab { padding: 10px 14px; font-size: 14px; }
    .catoh-marcas-grid { grid-template-columns: repeat(2, 1fr); gap: 2px 12px; }
}