    .custom-category-title{
        color: #E7345A;
        font-size: 60px;
        font-weight: 500;
        margin-bottom: 16px;
        display: block;
        font-family: var(--font-family);
    }

        body {
          font-family: "Truculenta", Sans-serif;
          font-size: 17px;
        }

    :root {
        --custom-primary: #E7345A;
        --custom-pink-bg: #FFE4E8;
        --custom-text: #333;
        --custom-border: #E6E6E6;
         --font-family: "Truculenta", Sans-serif;
    }

    /* Layout principal */
    .custom-catalog-wrapper {
        display: flex;
        gap: 20px; /* Reduced gap */
        margin: 20px 0;
        font-family: var(--font-family);
    }

    .custom-sidebar {
        width: 230px; /* Minimized width for laptops */
        flex-shrink: 0;
    }

    .custom-main-content {
        flex: 1;
        min-width: 0;
    }

    /* Mobile Filters Button and Backdrop */
    .custom-mobile-filters-btn {
        display: none;
        width: 300px;
        padding: 12px;
        background: #e7345a;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-weight: 700;
        color: white;
        text-align: center;
        margin-bottom: 20px;
        cursor: pointer;
        transition: background 0.2s;
    }
    .custom-mobile-filters-btn:hover {
        background: #e0e0e0;
    }

    .custom-filters-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .custom-filters-backdrop.is-visible {
        opacity: 1;
    }

    /* Mobile Sidebar Header */
    .custom-sidebar-mobile-header {
        display: none;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }
    .custom-sidebar-mobile-title {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }
    .custom-sidebar-close {
        background: none;
        border: none;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        color: #555;
    }
    .custom-sidebar-inner {
        	font-family: var(--font-family);
     }

    @media (max-width: 991px) {
        .custom-catalog-wrapper {
            flex-direction: column;
        }
        
        /* Hide sidebar by default on mobile */
        .custom-sidebar {
            display: none; 
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 85%;
            max-width: 320px;
            background: #fff;
            z-index: 9999;
            padding: 0;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        /* Show sidebar when active */
        .custom-sidebar.is-open {
            display: block;
            transform: translateX(0);
        }
        
        .custom-mobile-filters-btn {
            display: block;
        }

        .custom-filters-backdrop.is-visible {
            display: block;
        }

        .custom-sidebar-mobile-header {
            display: flex;
        }
        
        /* Add padding to sidebar content logic if needed, but sidebar has padding usually? 
           The current sidebar logic has sections with margin. We might need internal padding. */
        .custom-sidebar-inner {
            padding: 20px;
        }
    }

    /* --- FILTROS (Sidebar) --- */
    .custom-filter-section {
        margin-bottom: 24px;
    }

    .custom-filter-header-pill {
        background: var(--custom-pink-bg);
        color: var(--custom-primary);
        font-weight: 700;
        padding: 8px 16px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 12px;
        font-size: 22px;
    }
    
    .custom-filter-header-text {
        font-size: 26px;
        font-weight: 700;
        color: #555;
        margin-bottom: 16px;
        display: block;
    }

    /* Slider simulado */
    .custom-price-slider {
        padding: 10px 0;
    }
    .custom-range-track {
        height: 4px;
        background: var(--custom-primary);
        position: relative;
        border-radius: 2px;
    }
    .custom-range-thumb {
        width: 16px;
        height: 16px;
        background: var(--custom-primary);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        border: 2px solid #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        cursor: pointer;
    }
    .custom-range-thumb.left { left: 0%; transform: translate(0, -50%); }
    .custom-range-thumb.right { right: 0%; transform: translate(0, -50%); }
    
    .custom-price-label {
        text-align: center;
        margin-top: 12px;
        font-size: 17px;
        color: var(--custom-primary);
        font-weight: 600;
    }

    /* Links for Categories */
    .custom-filter-link {
        display: block;
        padding: 1px 0 1px 16px; 
        text-decoration: none;
        color: #444;
        font-size: 20px;
        position: relative;
        transition: color 0.2s;
        border-bottom: 0px solid #f9f9f9;
    }
    .custom-filter-link:hover {
        color: var(--custom-primary);
    }
    .custom-filter-link.is-active {
        color: #111;
        font-weight: 700;
    }
    /* Dot indicators for active category */
    .custom-filter-link.is-active:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px; 
        height: 6px; 
        background: var(--custom-primary); 
        border-radius: 50%;
    }

    .custom-cat-scroll {
        max-height: 250px;
        overflow-y: auto;
        padding-right: 5px;
    }
    .custom-cat-scroll::-webkit-scrollbar { width: 4px; }
    .custom-cat-scroll::-webkit-scrollbar-track { background: #f1f1f1; }
    .custom-cat-scroll::-webkit-scrollbar-thumb { background: #888; border-radius: 2px; }

    
    /* --- PRODUCT CARD (Pixel Perfect v3) --- */
    .custom-catalogo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        justify-items: center; /* Center cards in grid */
    }
    @media (min-width: 1670px) {
        .custom-catalogo-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    @media (max-width: 991px) { 
        .custom-catalogo-grid { 
            grid-template-columns: repeat(2, 1fr); 
            gap: 16px;
        } 
    }
 /*   @media (max-width: 575px) { 
        .custom-catalogo-grid { 
            grid-template-columns: 1fr; 
            gap: 20px;
            padding: 0 10px;
        } 
    }*/

    .custom-new-price{
        font-size: 26px;
        font-weight: 700;
        color: var(--custom-text);
        margin-bottom: 10px;
    }

    .custom-card {
        border: 1px solid var(--custom-primary);
        border-radius: 20px;
        padding: 20px 20px 25px 20px;
        background: #fff;
        position: relative;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s;
        height: 100%;
        min-height: 420px;
        width: 100%; /* Changed from fixed 290px to 100% */
        max-width: 290px; /* Max width for desktop */
        box-sizing: border-box;
    }
 .custom-card:hover {
        transform: scale(1.03); /* <-- Esto amplía toda la tarjeta un 3% */
        box-shadow: 0 8px 20px rgba(231, 52, 90, 0.2); /* <-- Sombra un poco más amplia para acompañar el efecto de que "sale" de la pantalla */
        z-index: 10; /* <-- Evita que al ampliarse se quede por debajo de otras tarjetas vecinas */
    }


    /* Top Right Saber Mas */
    .custom-card-header {
        position: absolute;
        top: 25px; /* Adjusted down a bit */
        right: 25px;
        z-index: 2;
    }
    .custom-saber-mas-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--custom-primary);
        line-height: 1;
        gap: 4px;
    }
    .custom-icon-plus {
        font-size: 44px;
        font-weight: 800;
        display: block;
        height: 28px;
        line-height: 20px;
    }
    .custom-text-saber {
        font-size: 15px;
        font-weight: 500;
    }

    .custom-card-img-wrap {
       height: 221px; /* Reduced for desktop */
        /* display: flex; */
        align-items: center;
        justify-content: center;
        margin: 10px 0 25px; 
        padding: 0 20px;
    }
    .custom-card-img-wrap img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        transform: scale(0.9); 
    }

    /* Mobile Card Responsive Styles */
    @media (max-width: 991px) {
        .custom-card {
            max-width: 100%; /* Full width on tablet */
            min-height: 380px;
        }
        .custom-card-img-wrap {
            height: 180px;
            margin: 40px 0 20px;
        }
    }

    @media (max-width: 575px) {
        .custom-card {
            max-width: 100%; /* Full width on mobile */
            min-height: auto; 
            padding: 15px 15px 20px 15px;
            margin: 0 auto; /* Center the card */
        }
        .custom-card-img-wrap {
            height: 150px;
            margin: 30px 0 15px; 
            padding: 0 15px;
        }
        .custom-card-img-wrap img {
            max-height: 100%;
            transform: scale(1); 
        }
        .custom-card-title {
            font-size: 20px;
            margin: 0 0 20px;
        }
        .custom-card-header {
            top: 15px;
            right: 15px;
        }
        .custom-icon-plus {
            font-size: 32px;
            height: 22px;
            line-height: 16px;
        }
        .custom-text-saber {
            font-size: 12px;
        }
    
        .custom-star-num {
            font-size: 12px;
        }
    }

    .custom-card-title {
		font-family:"Truculenta", sans-serif;
        font-size: 27px;
        color: #555; /* Not completely black */
        text-align: center;
        line-height: 1.4;
        margin: 0 0 30px; /* Spacer before footer */
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .custom-card-footer {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        font-family: var(--font-family);
    }
    
    .custom-footer-row-prices {
        display: flex;
        justify-content: space-between;
        align-items: baseline; /* Align baselines */
        width: 100%;
    }
    
    /* Left Price (Old) */
    .custom-old-price {
        color: #999; /* Gray text */
        text-decoration: line-through;
        text-decoration-color: #999; /* Gray line */
        font-size: 26px;
        font-weight: 600;
    }
    
  /* Right Price (New) */
    .custom-new-price {
        color: #E7345A;
        font-size: 28px; /* (O el tamaño que hayas configurado) */
        font-weight: 800;
        line-height: 1; /* Reduce el espacio invisible del texto */
        
        /* Nueva forma de hacer la línea para poder acercarla */
        text-decoration: underline;
        text-decoration-thickness: 2px; /* Grosor de la línea */
        text-underline-offset: 3px; /* <-- ESTA ES LA CLAVE: Bájalo a 0px o súbelo a 3px para ajustar la distancia exacta */
    }

    /* Bottom Row: Stock */
    .custom-stock-avail {
        font-size: 16px;
        color: #666;
        text-align: left;
        font-family: var(--font-family);
    }
    
    /* For new price underline, if primary color: */
    /* User said "Subrallado del precio original es gris no rojo". Implicitly, new price might be? Image shows dark/black underline. */
    /* For new price underline */
    
    /* Pagination */
    .custom-pagination {
        margin-top: 40px;
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .custom-pagination a,
    .custom-pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 14px;
        background: #f4f4f4;
        color: #555;
        text-decoration: none;
        cursor: pointer;
        border-radius: 8px; /* Slightly rounded */
        font-weight: 600;
        transition: all 0.2s;
        font-size: 14px;
    }

    .custom-pagination a:hover {
        background: var(--custom-primary);
        color: #fff;
        transform: translateY(-2px);
    }

    /* Active/Current page */
    .custom-pagination .current {
        background: var(--custom-primary);
        color: #fff;
        box-shadow: 0 4px 10px rgba(231, 52, 90, 0.3); /* Soft shadow matching primary */
    }