```css
/* =========================================================
   CATALOG
========================================================= */

.catalog {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.catalog-header {
        background:#fff;
    border:1px solid #e9ecef;
    border-radius:14px;
    padding:20px;
    margin-bottom:20px;
	font-size:16px;
    line-height:1.5;
    color:#444;
}

.catalog-header h1 {
    margin: 0 0 20px;
    font-size:25px;
    font-weight:700;
    line-height:1.2;
    color:#222;
}
.catalog-header h1::after{
    content:"";
    display:block;
    width:100px;
    height:3px;
    margin-top:9px;
    background:#4ee37d;
    border-radius:3px;
}
 
.catalog-description {
    max-width: 800px;

    margin: 0 0 20px;

    color: #687780;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   SEARCH
========================================================= */

.catalog-search {
    position: relative;

    width: 100%;

    box-sizing: border-box;
}

.catalog-search i {
    position: absolute;

    top: 50%;
    left: 16px;

    transform: translateY(-50%);

    color: #7d8a91;

    font-size: 15px;
}

.catalog-search input {
    width: 100%;
    height: 48px;

    padding: 0 18px 0 45px;

    box-sizing: border-box;

    border: 1px solid #dce5e0;
    border-radius: 9px;

    outline: none;

    background: #fff;

    color: #1a2e35;

    font-size: 15px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.catalog-search input:focus {
    border-color: #39d86f;

    box-shadow:
        0 0 0 3px rgba(57,216,111,.10);
}

.catalog-search input::placeholder {
    color: #9aa6ac;
}


/* =========================================================
   MOBILE TOOLS
========================================================= */

.catalog-mobile-tools {
    display: none;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 15px;
}

.catalog-mobile-tools button,
.catalog-mobile-sort {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    height:42px;
    padding:0 12px;
    box-sizing:border-box;
    border:1px solid #dce5e0;
    border-radius:8px;
    background:#fff;
    color:#34464d;
    font-size:14px;
    font-weight:600;
}

.catalog-mobile-tools button {
    cursor:pointer;
}

.catalog-mobile-tools button i,
.catalog-mobile-sort i {
    color:#198754;
}

.catalog-mobile-sort select {
    min-width:0;
    width:auto;
    max-width:100%;
    padding:0 22px 0 0;
    border:0;
    outline:none;
    background:#fff;
    color:#34464d;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

/* =========================================================
   CATALOG BODY
========================================================= */

.catalog-body {
    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);
    margin: 0 0 20px;
    gap: 25px;

    align-items: start;
}


/* =========================================================
   FILTERS
========================================================= */

.catalog-filters {
    min-width: 0;

    padding: 18px;

    box-sizing: border-box;

    border: 1px solid #e1e9e4;
    border-radius: 12px;

    background: #fff;
}

.filters-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

    color: #1a2e35;
}

.filters-header strong {
    font-size: 17px;
}

.filters-reset {
    padding: 0;

    border: 0;

    background: none;

    color: #198754;

    font-size: 12px;

    cursor: pointer;
}

.filters-reset:hover {
    text-decoration: underline;
}


/* =========================================================
   FILTER GROUP
========================================================= */

.filter-group {
    padding-bottom: 18px;

    margin-bottom: 18px;

    border-bottom: 1px solid #edf1ef;
}

.filter-group:last-child {
    padding-bottom: 0;
    margin-bottom: 0;

    border-bottom: 0;
}

.filter-title {
    margin-bottom: 12px;

    color: #1a2e35;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   FILTER OPTION
========================================================= */

.filter-option {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 9px;

    color: #596970;

    font-size: 14px;

    cursor: pointer;
}

.filter-option:last-of-type {
    margin-bottom: 0;
}

.filter-option input {
    flex-shrink: 0;

    width: 15px;
    height: 15px;

    margin: 0;

    accent-color: #39d86f;

    cursor: pointer;
}

.filter-option input:checked + span {
    color: #198754;

    font-weight: 600;
}


/* =========================================================
   FILTER MORE
========================================================= */

.filter-more {
    margin-top: 10px;

    padding: 0;

    border: 0;

    background: none;

    color: #198754;

    font-size: 13px;

    cursor: pointer;
}

.filter-more:hover {
    text-decoration: underline;
}


/* =========================================================
   RESULTS
========================================================= */

.catalog-results {
    min-width: 0;
	background:
    radial-gradient(circle at 0% 0%, rgba(57, 216, 111, 0.09), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(57, 216, 111, 0.07), transparent 55%),
    #ffffff;
    border:1px solid #e9ecef;
    border-radius:14px;
    padding:20px;
    margin-bottom:20px;
	font-size:16px;
    line-height:1.5;
    color:#444;
}


/* =========================================================
   RESULTS TOOLBAR
========================================================= */

.results-toolbar {
    display: flex;

    align-items: center;
    justify-content: space-between;
	padding: 0;
    margin-bottom:20px;
    gap: 15px;
	

}

.results-count {
    color:#687780;
    font-size:14px;
}

.results-count strong {
    color:#1a2e35;
    font-size:16px;
    font-weight:700;
}

.results-sort {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #687780;

    font-size: 13px;
}

.results-sort select {
    height: 36px;

    padding: 0 30px 0 10px;

    border: 1px solid #dce5e0;
    border-radius: 6px;

    outline: none;

    background: #fff;

    color: #34464d;

    font-size: 13px;

    cursor: pointer;
}

.results-sort select:focus {
    border-color: #39d86f;
}


/* =========================================================
   CARDS GRID
========================================================= */

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   CATALOG CARD
========================================================= */

.catalog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #e1e9e4;
    border-radius: 12px;
    background: #fff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
		  
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.catalog-card:hover {
    border-color: #bde8ca;
    box-shadow:
        0 5px 18px rgba(0,0,0,.05);
    transform: translateY(-1px);
}


/* =========================================================
   CARD TOP
========================================================= */

.catalog-card-top {
    display: flex;
    align-items: flex-start;
    min-height: 66px;
    gap: 14px;  
	
}

.catalog-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50%;
    border-radius: 8px;
}

.catalog-card-logo img {
    display: block;
    width: 100%;
    object-fit: contain;
}
.catalog-card-info { 
    flex: 1;
    min-width: 0;
}

.catalog-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.2;
    margin-bottom: 5px;
    overflow: hidden;
    color: #1a2e35;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-overflow: ellipsis; 
}

.catalog-card-title:hover {
    color: #198754;
}

/* =========================================================
   CARD RATING
========================================================= */

.cashback-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.2;
}

.cashback-card__star {
    color: #f59e0b; font-size: 18px; line-height: 1.0;
}

.cashback-card__score {
    color: #111827;
    font-weight: 600;
}

.cashback-card__reviews-icon {
    display: none;
}

/* =========================================================
   CARD STATS
========================================================= */

.catalog-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 10px;
}

.catalog-card-stats:has(.catalog-stat:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
}

.catalog-stat { 
    padding: 5px;
    text-align: center;
}

.catalog-stat-value {
    display: block;
    margin-bottom: 3px;
    color: #159447;
    font-size: 15px;
    font-weight: 700;
}

.catalog-stat-label {
    display: block;
    color: #7b888e;
    font-size: 12px;
    line-height: 1.3;
}


/* =========================================================
   CARD BUTTON
========================================================= */

.catalog-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 16px;
    background: #16a34a;
    color: #fff;
    border: 1px solid #16a34a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, border-color .2s;
}

.catalog-card:hover .catalog-card-button {
    background: #15803d;
    border-color: #15803d;
}


/* =========================================================
   PAGINATION
========================================================= */

.catalog-pagination {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-top: 30px;
}

.catalog-pagination a,
.catalog-pagination span {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    padding: 0 8px;

    box-sizing: border-box;

    border-radius: 6px;

    color: #53636a;

    font-size: 14px;

    text-decoration: none;
}

.catalog-pagination a {
    border: 1px solid #dfe7e2;

    background: #fff;
}

.catalog-pagination a:hover {
    border-color: #39d86f;

    color: #198754;
}

.catalog-pagination .pagination-active {
    border-color: #39d86f;

    background: #39d86f;

    color: #10251a;

    font-weight: 700;
}

.catalog-pagination span {
    border: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .catalog-header {
        margin-bottom: 18px;
    }

    .catalog-header h1 {
        font-size: 26px;
    }

    .catalog-description {
        font-size: 14px;
    }


    /* MOBILE FILTER / SORT */

    .catalog-mobile-tools {
        display: grid;
    }


    /* CATALOG BODY */

    .catalog-body {
        display: block;
    }


    /* FILTERS HIDDEN BY DEFAULT */

    .catalog-filters {
        display: none;

        margin-bottom: 15px;
    }


    /* OPEN FILTERS */

    .catalog-filters.is-open {
        display: block;
    }


    /* DESKTOP SORT HIDDEN */

    .results-sort {
        display: none;
    }


    /* RESULTS TOOLBAR */

    .results-toolbar {
        margin-bottom: 12px;
    }


    /* CARDS */

    .catalog-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .catalog-card {
        padding: 15px;
    }


    /* PAGINATION */

    .catalog-pagination {
        gap: 3px;

        margin-top: 25px;
    }

    .catalog-pagination a,
    .catalog-pagination span {
        min-width: 34px;
        height: 34px;
    }
    .results-sort.is-open{
        display:flex;
        width:100%;
        padding:12px;
        box-sizing:border-box;
        margin-top:10px;
        border:1px solid #e1e9e4;
        border-radius:9px;
        background:#fff;
    }

    .results-sort.is-open select{
        flex:1;
    }

    .catalog-mobile-tools button.is-active{
        border-color:#39d86f;
        background:rgba(57,216,111,.08);
        color:#198754;
    }
	
	
	
    .cashback-card__identity .cashback-card__rating {
        display: flex;
        gap: 5px;
        font-size: 14px;
        white-space: nowrap;
    }
    .cashback-card__reviews-icon {
        display: inline; padding-left: 8px;
    }

    .cashback-card__reviews-label {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

.catalog-results {
    border-radius:10px;
    padding:15px;
    margin-bottom:15px;
	font-size:16px;
}
    .catalog-header h1 {font-size: 24px; }
    .catalog-card-top { gap: 10px;}
    .catalog-card-logo { width: 50%;}
    .catalog-card-logo img { width: 100%; }
    .catalog-card-title {font-size: 17px; }

}



 
