/* ============================================================
   CAT-OH HOME 2026 — CSS
   Versión: 2.9
   RESTAURA la estructura original que funcionaba bien.
   Fixes sobre esa base:
   - Split: URLs correctas de imágenes (wp-content/uploads)
   - Carrusel marcas: scroll automático CSS (animation)
   - Ver todo categorías: sin fondo teal, solo flecha
   - Flechas + CTA más vendidos: espaciado vertical
   - Móvil: padding lateral en split
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
#catoh-home {
    --teal:        #308e95;
    --teal-dark:   #236970;
    --teal-light:  #e8f5f6;
    --orange:      #FF6D26;
    --orange-soft: #FF9B3A;
    --text-dark:   #273B42;
    --text-mid:    #4A5B61;
    --text-light:  #7a8e94;
    --border:      #daeaec;
    --white:       #ffffff;
    --bg:          #f7fafa;
    font-family: 'Nunito', 'Poppins', system-ui, sans-serif;
}

#catoh-home * { box-sizing: border-box; }
#catoh-home section, #catoh-home div { margin: 0; padding: 0; }

/* ── H1 — visible, discreto, no oculto (mejor práctica SEO 2026) ── */
#catoh-home .catoh-home-h1 {
    margin: 0;
    padding: 6px 24px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

/* ── CENTRADO GLOBAL ── */
#catoh-home .catoh-trust-inner,
#catoh-home .catoh-categories-inner,
#catoh-home .catoh-brands-inner,
#catoh-home .catoh-smart-inner,
#catoh-home .catoh-testimonios-inner,
#catoh-home .catoh-bestsellers-inner,
#catoh-home .catoh-seo-inner,
#catoh-home .catoh-seo-links-inner {
    max-width: 1400px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

/* ── ESPACIADO ENTRE SECCIONES ── */
#catoh-home .catoh-trust-bar   { padding-top: 20px; padding-bottom: 20px; }
#catoh-home .catoh-brands      { padding-top: 40px; padding-bottom: 48px; }
#catoh-home .catoh-categories  { padding-top: 56px; padding-bottom: 56px; }
#catoh-home .catoh-smart       { padding-top: 52px; padding-bottom: 52px; }
#catoh-home .catoh-testimonios { padding-top: 52px; padding-bottom: 52px; }
#catoh-home .catoh-bestsellers { padding-top: 52px; padding-bottom: 52px; }
#catoh-home .catoh-seo-text    { padding-top: 28px; padding-bottom: 28px; }
#catoh-home .catoh-seo-links   { padding-top: 36px; padding-bottom: 36px; }

/* ══════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════ */
.catoh-hero-section { width: 100%; overflow: hidden; line-height: 0; }
.catoh-hero-section .catoh-carousel {
    min-height: 0 !important;
    background-color: transparent !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    aspect-ratio: 4/1 !important;
}
.catoh-hero-section .catoh-carousel img {
    width: 100% !important; height: 100% !important;
    display: block !important; object-fit: cover !important;
    object-position: center !important;
}
.catoh-hero-section .swiper,
.catoh-hero-section .catoh-carousel.swiper {
    width: 100% !important; max-width: 100% !important; margin: 0 !important;
}
.catoh-hero-section .swiper-pagination-bullet {
    background: #888 !important; opacity: 0.5 !important;
    width: 8px !important; height: 8px !important;
}
.catoh-hero-section .swiper-pagination-bullet-active {
    background: var(--teal) !important; opacity: 1 !important;
}
.catoh-hero-section .swiper-pagination { bottom: 8px !important; }

/* ══════════════════════════════════════════════
   2. BARRA DE CONFIANZA
══════════════════════════════════════════════ */
.catoh-trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}
.catoh-trust-bar .catoh-trust-inner {
    max-width: 1400px !important;
    margin-left: auto !important; margin-right: auto !important;
    padding-left: 24px !important; padding-right: 24px !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.catoh-trust-item { display: flex; align-items: center; gap: 12px; }
.catoh-trust-icon {
    width: 36px; height: 36px; object-fit: contain; flex-shrink: 0;
    filter: invert(47%) sepia(61%) saturate(400%) hue-rotate(148deg) brightness(85%);
}
.catoh-trust-item svg { flex-shrink: 0; }
.catoh-trust-title { display: block; font-size: 13px; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.catoh-trust-sub   { display: block; font-size: 11px; color: var(--text-light); line-height: 1.3; }

/* ══════════════════════════════════════════════
   3. SPLIT GATOS / PERROS
   Todos los selectores con #catoh-home para ganar
   especificidad sobre Astra (frontend.min.css)
══════════════════════════════════════════════ */
#catoh-home .catoh-split {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    width: 100%;
}
#catoh-home .catoh-split-card {
    overflow: hidden;
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: filter 0.2s;
    color: inherit !important;
}
#catoh-home .catoh-split-card:hover { filter: brightness(0.97); }
#catoh-home .catoh-split-card--gatos  { background: #fde8cc; }
#catoh-home .catoh-split-card--perros { background: var(--teal-light); }

/* Constrainer */
#catoh-home .catoh-split-constrain {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 700px;
    min-height: 360px;
}
#catoh-home .catoh-split-constrain--perros .catoh-split-img { order: -1; }

/* Texto */
#catoh-home .catoh-split-content {
    padding: 40px 24px 40px 32px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}
#catoh-home .catoh-split-constrain--perros .catoh-split-content {
    padding: 40px 32px 40px 24px !important;
}
#catoh-home .catoh-split-eyebrow {
    display: block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--teal); margin-bottom: 6px;
}
#catoh-home .catoh-split-title {
    font-size: 42px; font-weight: 900;
    color: var(--text-dark); margin: 0 0 10px; line-height: 1;
}
#catoh-home .catoh-split-desc {
    font-size: 14px; color: var(--text-mid);
    line-height: 1.55; margin-bottom: 20px;
}
#catoh-home .catoh-split-cta {
    display: inline-block !important;
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-size: 13px; font-weight: 700;
    transition: background 0.2s;
    align-self: flex-start;
    text-decoration: none !important;
}
#catoh-home .catoh-split-card:hover .catoh-split-cta { background: var(--teal-dark) !important; }

/* Imagen desktop */
#catoh-home .catoh-split-img {
    display: flex; align-items: flex-end;
    justify-content: center;
    height: 100%; min-height: 360px; overflow: hidden;
}
#catoh-home .catoh-split-img img {
    max-height: 340px; width: auto;
    object-fit: contain; object-position: bottom center; display: block;
}
/* Ambos miran hacia adentro */
#catoh-home .catoh-split-card--gatos  .catoh-split-img img { transform: scaleX(-1); }
#catoh-home .catoh-split-card--perros .catoh-split-img img { transform: scaleX(-1); }

/* ── Responsive split ── */
@media (max-width: 768px) {
    #catoh-home .catoh-split { grid-template-columns: 1fr !important; }

    #catoh-home .catoh-split-card {
        position: relative !important;
        min-height: 240px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    #catoh-home .catoh-split-constrain {
        position: relative !important;
        z-index: 2;
        display: block !important;
        grid-template-columns: unset !important;
        max-width: 100% !important;
        width: 100% !important;
        min-height: 240px !important;
    }

    /* Texto: margen izq + margen der amplio para no quedar bajo la imagen */
    #catoh-home .catoh-split-content {
        padding: 28px 56% 20px 20px !important;
    }
    #catoh-home .catoh-split-constrain--perros .catoh-split-content {
        padding: 28px 20px 20px 56% !important;
    }

    #catoh-home .catoh-split-title { font-size: 30px !important; }
    #catoh-home .catoh-split-desc  { font-size: 13px !important; }

    /* Imagen: marca de agua absoluta, lado derecho */
    #catoh-home .catoh-split-img {
        position: absolute !important;
        right: 0 !important; left: auto !important;
        bottom: 0 !important;
        z-index: 1 !important;
        min-height: unset !important;
        height: 100% !important;
        width: 52% !important;
        overflow: hidden;
        opacity: 0.3;
        pointer-events: none;
        justify-content: flex-end;
        align-items: flex-end;
    }
    #catoh-home .catoh-split-img img {
        max-height: 100% !important;
        width: 100% !important;
        object-fit: contain;
        object-position: bottom right;
        transform: none !important;
    }
    /* Perros: marca de agua lado izquierdo */
    #catoh-home .catoh-split-constrain--perros .catoh-split-img {
        right: auto !important;
        left: 0 !important;
        justify-content: flex-start;
    }
    #catoh-home .catoh-split-constrain--perros .catoh-split-img img {
        object-position: bottom left;
    }
}

/* ══════════════════════════════════════════════
   4. CARRUSEL DE MARCAS — scroll automático CSS
══════════════════════════════════════════════ */
.catoh-brands {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.catoh-brands-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.catoh-brands-title {
    font-size: 15px; font-weight: 800;
    color: var(--text-dark); text-align: center; margin-bottom: 20px;
}
.catoh-brands-track-wrap {
    overflow: hidden;
    position: relative;
}
.catoh-brands-track-wrap::before,
.catoh-brands-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    width: 80px; z-index: 2; pointer-events: none;
}
.catoh-brands-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.catoh-brands-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

/* Track con animación de scroll infinito */
@keyframes catoh-scroll-brands {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.catoh-brands-track {
    display: flex;
    align-items: center;
    gap: 32px;
    /* El track contiene los logos duplicados en PHP → ancho = 2x logos */
    width: max-content;
    animation: catoh-scroll-brands 40s linear infinite;
    will-change: transform;
}
.catoh-brands-track:hover { animation-play-state: paused; }

.catoh-brand-item {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    height: 88px; padding: 10px 22px;
    text-decoration: none; opacity: 0.8;
    transition: opacity 0.2s, filter 0.2s;
    filter: grayscale(20%);
    background: var(--white);
    border: 1px solid var(--border); border-radius: 8px;
}
.catoh-brand-item:hover { opacity: 1; filter: grayscale(0%); border-color: var(--teal); }
.catoh-brand-item img { max-height: 64px; max-width: 150px; width: auto; height: auto; object-fit: contain; }

/* ══════════════════════════════════════════════
   5. CATEGORÍAS FAVORITAS
══════════════════════════════════════════════ */
.catoh-categories { background: var(--bg); padding: 48px 24px; }
.catoh-categories-inner { max-width: 1400px; margin: 0 auto; }
.catoh-categories-title { font-size: 22px; font-weight: 900; color: var(--text-dark); margin-bottom: 28px; text-align: center; }
.catoh-cat-group { margin-bottom: 40px; }
.catoh-cat-group:last-child { margin-bottom: 0; }
.catoh-cat-group-label { font-size: 13px; font-weight: 800; color: var(--teal); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.catoh-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.catoh-cat-item { text-decoration: none; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: transform 0.18s; }
.catoh-cat-item:hover { transform: translateY(-3px); }
.catoh-cat-img-wrap {
    width: 100%; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
}
.catoh-cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.catoh-cat-item span { font-size: 12px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }

/* Ver todo: sin fondo teal, solo flecha con borde */
.catoh-cat-item--ver-mas .catoh-cat-img-wrap {
    background: transparent;
    border: 2px solid var(--border);
}
.catoh-cat-item--ver-mas:hover .catoh-cat-img-wrap { border-color: var(--teal); }
.catoh-cat-item--ver-mas span { color: var(--teal); font-weight: 800; }
.catoh-ver-mas-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border: 2px solid var(--teal); border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}
.catoh-ver-mas-arrow svg { width: 22px; height: 22px; stroke: var(--teal); display: block; }
.catoh-cat-item--ver-mas:hover .catoh-ver-mas-arrow { transform: translateX(3px); background: var(--teal-light); }

/* ══════════════════════════════════════════════
   6. TU HOGAR SMART
══════════════════════════════════════════════ */
.catoh-smart { background: #f0f8f9; padding: 48px 24px; border-top: 1px solid var(--border); }
.catoh-smart-inner { max-width: 1400px; margin: 0 auto; }
.catoh-smart-header { text-align: center; margin-bottom: 28px; }
.catoh-smart-title { font-size: 22px; font-weight: 900; color: var(--text-dark); margin-bottom: 6px; }
.catoh-smart-sub { font-size: 14px; color: var(--text-mid); }
.catoh-smart-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.catoh-smart-item {
    background: var(--white); border-radius: 12px; overflow: hidden;
    text-decoration: none; display: flex; flex-direction: column;
    transition: box-shadow 0.2s; border: 1px solid var(--border);
}
.catoh-smart-item:hover { box-shadow: 0 4px 20px rgba(48,142,149,0.12); }
.catoh-smart-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--teal-light); }
.catoh-smart-item h3 { font-size: 14px; font-weight: 800; color: var(--text-dark); padding: 12px 14px 4px; margin: 0; }
.catoh-smart-item p  { font-size: 12px; color: var(--text-mid); padding: 0 14px 10px; margin: 0; line-height: 1.5; flex: 1; }
.catoh-smart-cta { display: block; padding: 10px 14px; font-size: 12px; font-weight: 700; color: var(--teal); border-top: 1px solid var(--border); }

/* ══════════════════════════════════════════════
   7. TESTIMONIOS
══════════════════════════════════════════════ */
.catoh-testimonios { background: var(--white); padding: 48px 24px; border-top: 1px solid var(--border); }
.catoh-testimonios-inner { max-width: 1400px; margin: 0 auto; }
.catoh-testimonios-title { font-size: 22px; font-weight: 900; color: var(--text-dark); text-align: center; margin-bottom: 4px; }
.catoh-testimonios-title span { color: var(--teal); }
.catoh-testimonios-sub { text-align: center; font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.catoh-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.catoh-testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.catoh-testi-stars { display: flex; gap: 2px; }
.catoh-star { color: var(--border); font-size: 18px; }
.catoh-star--on { color: #f5a623; }
.catoh-testi-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; flex: 1; margin: 0; }
.catoh-testi-name { font-size: 12px; font-weight: 700; color: var(--text-dark); }

/* ══════════════════════════════════════════════
   8. MÁS VENDIDOS
══════════════════════════════════════════════ */
.catoh-bestsellers { background: var(--white); padding: 48px 24px; border-top: 1px solid var(--border); }
.catoh-bestsellers-inner { max-width: 1400px; margin: 0 auto; }
.catoh-bestsellers-title { font-size: 22px; font-weight: 900; color: var(--text-dark); text-align: center; margin-bottom: 6px; }
.catoh-bestsellers-sub { font-size: 13px; color: var(--text-light); text-align: center; margin-bottom: 28px; }
.catoh-bestsellers-wrap { position: relative; overflow: hidden; }

.catoh-bestsellers-grid.woocommerce ul.products {
    display: flex !important; flex-wrap: nowrap !important;
    gap: 16px !important; margin: 0 !important; padding: 0 0 12px !important;
    list-style: none !important; overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
}
.catoh-bestsellers-grid.woocommerce ul.products::-webkit-scrollbar { display: none !important; }
.catoh-bestsellers-grid.woocommerce ul.products::before,
.catoh-bestsellers-grid.woocommerce ul.products::after { display: none !important; }
.catoh-bestsellers-grid.woocommerce ul.products li.product {
    flex: 0 0 220px !important; width: 220px !important; margin: 0 !important;
    border: 1px solid var(--border) !important; border-radius: 10px !important;
    overflow: hidden !important; background: var(--white) !important;
    transition: box-shadow 0.2s !important;
    display: flex !important; flex-direction: column !important;
    scroll-snap-align: start !important;
}
.catoh-bestsellers-grid.woocommerce ul.products li.product:hover { box-shadow: 0 4px 16px rgba(48,142,149,0.12) !important; }
.catoh-bestsellers-grid.woocommerce ul.products li.product .astra-shop-summary-wrap { flex: 1 !important; display: flex !important; flex-direction: column !important; }
.catoh-bestsellers-grid.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12px !important; padding: 10px 10px 4px !important; line-height: 1.3 !important; color: var(--text-dark) !important; text-align: center !important; }
.catoh-bestsellers-grid.woocommerce ul.products li.product .price { display: block !important; text-align: center !important; margin-top: auto !important; margin-bottom: 4px !important; padding: 0 10px !important; font-weight: 700 !important; font-size: 14px !important; color: var(--teal) !important; }

/* Estrellas centradas */
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product .star-rating {
    float: none !important; display: flex !important; justify-content: center !important;
    margin: 4px auto 6px !important; width: calc(100% - 20px) !important; text-align: center !important;
}
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product .star-rating::before,
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product .star-rating span::before { color: #f5a623 !important; }

/* Orden */
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product .woocommerce-loop-product__title { order: 1 !important; }
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product .price                           { order: 2 !important; }
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product .star-rating                     { order: 3 !important; }
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product a.button,
#catoh-home .catoh-bestsellers-grid.woocommerce ul.products li.product .button                          { order: 4 !important; }

/* Botón */
.catoh-bestsellers-grid.woocommerce ul.products li.product a.button,
.catoh-bestsellers-grid.woocommerce ul.products li.product .button {
    background: var(--orange) !important; color: #fff !important;
    border-radius: 6px !important; font-weight: 700 !important; font-size: 12px !important;
    width: calc(100% - 20px) !important; display: block !important;
    margin: 0 10px 10px !important; padding: 10px 16px !important;
    text-align: center !important; box-sizing: border-box !important; align-self: stretch !important;
}

/* Flechas carrusel — especificidad alta para ganar a Astra */
#catoh-home .catoh-bestsellers-nav {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 28px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}
#catoh-home .catoh-bestsellers-btn {
    background: var(--teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 36px !important; height: 36px !important;
    font-size: 18px !important;
    cursor: pointer; line-height: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s;
    flex-shrink: 0;
    padding: 0 !important;
    margin: 0 !important;
}
#catoh-home .catoh-bestsellers-btn:hover { background: var(--teal-dark) !important; }

/* CTA "Ver catálogo" — separación clara de las flechas */
#catoh-home .catoh-bestsellers-cta {
    text-align: center !important;
    margin-top: 36px !important;
    padding-bottom: 8px;
}
.catoh-btn-ver-mas {
    display: inline-block; background: var(--teal); color: var(--white) !important;
    padding: 12px 32px; border-radius: 8px; font-size: 14px; font-weight: 700;
    text-decoration: none; transition: background 0.2s;
}
.catoh-btn-ver-mas:hover { background: var(--teal-dark); }

/* ══════════════════════════════════════════════
   9. BLOQUE SEO
══════════════════════════════════════════════ */
.catoh-seo-text { background: var(--bg); border-top: 1px solid var(--border); padding: 24px; }
.catoh-seo-inner { max-width: 1400px; margin: 0 auto; }
.catoh-seo-inner p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin: 0; }
.catoh-seo-inner strong { color: var(--text-mid); font-weight: 600; }

/* ══════════════════════════════════════════════
   10. LINKS INTERNOS SEO
══════════════════════════════════════════════ */
.catoh-seo-links { background: var(--bg); border-top: 1px solid var(--border); padding: 32px 24px; }
.catoh-seo-links-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.catoh-seo-links-title { font-size: 12px; font-weight: 800; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.catoh-seo-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.catoh-seo-links ul li a { font-size: 12px; color: var(--text-light); text-decoration: none; transition: color 0.15s; line-height: 1.4; }
.catoh-seo-links ul li a:hover { color: var(--teal); text-decoration: underline; }

/* ══════════════════════════════════════════════
   RESPONSIVE GLOBAL
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .catoh-trust-bar .catoh-trust-inner { grid-template-columns: repeat(2, 1fr); }
    .catoh-smart-grid { grid-template-columns: repeat(2, 1fr); }
    .catoh-cat-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .catoh-hero-section .catoh-carousel { aspect-ratio: 768/430 !important; max-height: none !important; }
}
@media (max-width: 768px) {
    .catoh-testi-grid { grid-template-columns: 1fr; }
    .catoh-cat-grid   { grid-template-columns: repeat(3, 1fr); }
    .catoh-seo-links-inner { grid-template-columns: repeat(2, 1fr); }
    .catoh-bestsellers-grid.woocommerce ul.products li.product { flex: 0 0 160px !important; width: 160px !important; }
}
@media (max-width: 480px) {
    .catoh-trust-bar .catoh-trust-inner { grid-template-columns: 1fr; gap: 12px; }
    .catoh-trust-bar   { padding: 16px; }
    .catoh-smart-grid  { grid-template-columns: repeat(2, 1fr); }
    .catoh-cat-grid    { grid-template-columns: repeat(3, 1fr); }
    .catoh-categories  { padding: 32px 16px; }
    .catoh-testimonios { padding: 32px 16px; }
    .catoh-smart       { padding: 32px 16px; }
    .catoh-testi-grid  { grid-template-columns: 1fr; }
    .catoh-bestsellers { padding: 32px 16px; }
    .catoh-seo-links   { padding: 24px 16px; }
    .catoh-seo-text    { padding: 20px 16px; }
    .catoh-bestsellers-grid.woocommerce ul.products li.product { flex: 0 0 150px !important; width: 150px !important; }
    .catoh-seo-links-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
}