
/* .casino-finder-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}
.casino-finder-btn:hover,
.casino-finder-btn:focus {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
    transform: translateY(-3px) scale(1.05);
    text-decoration: none;
}
.casino-finder-btn svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff !important;
    fill: none !important;
} */

/* Tooltip */
.casino-finder-btn::before {
    content: 'Casino Finder';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}
.casino-finder-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Overlay */
.cf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cf-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Popup */
.cf-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 100%;
    max-width: 1300px;
    max-height: 95vh;
    background: #fff;
    border-radius: 16px;
    z-index: 99991;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.cf-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.cf-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    color: #333;
    line-height: 1;
}
.cf-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.cf-header {
    display: grid;
    grid-template-columns: 180px 1fr 220px;
    align-items: center;
    gap: 24px;
    padding: 40px 20px 0px;
    border-bottom: 1px solid #f0f0f0;
}

/* Left column - Casino Finder image */
.cf-left {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cf-left-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}


.cf-center {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}
.cf-title {
    margin: 0 0 6px;
    font-size: 35px;
    font-weight: 700;
    color: #1a2332;
    font-family: 'Ubuntu-Bold', sans-serif;
}
.cf-subtitle {
    margin: 0;
    font-size: 19px;
    color: #666;
    font-family: 'Ubuntu-Light', sans-serif;
    font-weight: 500;
}


.cf-filters-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.cf-filter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 14px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
}
.cf-filter-header:hover {
    border-color: #9E0518;
}
.cf-filter-header.active {
    border-color: #9E0518;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.cf-filter-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
}
.cf-filter-icon svg {
    width: 25px;
    height: 25px;
    stroke: #9E0518;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-filter-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    gap: 5px;
}
.cf-filter-label {
    display: block;
    font-size: 14px;
    color: #888;
    font-family: 'Ubuntu-Light', sans-serif;
    line-height: 1.2;
}
.cf-filter-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    font-family: 'Ubuntu-Medium', sans-serif;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cf-filter-arrow {
    font-size: 11px;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.cf-filter-header.active .cf-filter-arrow {
    transform: rotate(180deg);
}


.cf-filter-col {
    position: relative;   
    min-width: 0;
    z-index: 1;          
}

.cf-filter-list {
    position: absolute;  
    top: 100%;         
    left: 0;
    right: 0;             
    background: #fff;
    border: 2px solid #9E0518;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    max-height: 320px;
    overflow-y: auto;
    padding: 12px;
    z-index: 101;        
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    box-sizing: border-box; 
    margin-top: 0;        
}

.cf-filter-list.show {
    display: block;
}

.cf-search-wrap {
    margin-bottom: 10px;
}
.cf-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Ubuntu-Light', sans-serif;
    outline: none;
    box-sizing: border-box;
}
.cf-search-input:focus {
    border-color: #9E0518;
}
.cf-subgroup-title {
    font-size: 14px;
    font-weight: 700;
    color: #9E0518;
    margin: 10px 0 6px;
    font-family: 'Ubuntu-Medium', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cf-subgroup-title svg {
    flex-shrink: 0;
    stroke: #9E0518;
}
.cf-option {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    font-family: 'Ubuntu-Light', sans-serif;
    transition: background 0.15s ease;
}
.cf-option:hover {
    background: #f5f5f5;
}
.cf-option input[type="radio"],
.cf-option input[type="checkbox"] {
    accent-color: #9E0518;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 1px 0 0 !important;
}

.cf-flag {
    display: none;
}


.cf-flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
}


.cf-option:has(input:checked) {
    background: #faeaec;
}

.cf-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}
.cf-cta-text {
    text-align: center;
    width: 100%;
}
.cf-find-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}
.cf-find-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.cf-find-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF333A, #373D46);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Ubuntu-Bold', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px #f5a9b2;
    width: 100%;
}
.cf-find-btn:hover {
    background: linear-gradient(135deg, #FF333A, #373D46);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 40, 40, 0.45);
}
.cf-find-hint {
    font-size: 11px;
    color: #999;
    font-family: 'Ubuntu-Light', sans-serif;
    text-align: center;
}

/* Trust row */
.cf-trust-row {
    display: flex;
    /* gap: 30px; */
    padding: 20px 30px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.cf-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    font-family: 'Ubuntu-Light', sans-serif;
}

.cf-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.cf-trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: #9E0518;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Results step */
.cf-step-results {
    padding: 30px;
}
.cf-back-btn {
    background: none;
    border: none;
    color: #9E0518;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu-Medium', sans-serif;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}
.cf-back-btn:hover {
    color: #9E0518;
}
.cf-results-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    font-family: 'Ubuntu-Bold', sans-serif;
}
.cf-results-subtitle {
    margin: 0 0 24px;
    font-size: 14px;
    color: #888;
    font-family: 'Ubuntu-Light', sans-serif;
}
.cf-results-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cf-result-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.2s ease;
}
.cf-result-card:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* border-color: #28a745; */
}

.cf-result-logo {
    flex-shrink: 0;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    padding: 4px;
}
.cf-result-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.cf-result-info {
    flex: 1;
    min-width: 0;
}
.cf-result-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin-bottom: 4px;
}
.cf-result-bonus {
    font-size: 13px;
    color: #9E0518;
    font-weight: 600;
    font-family: 'Ubuntu-Medium', sans-serif;
}
.cf-result-meta {
    font-size: 12px;
    color: #888;
    font-family: 'Ubuntu-Light', sans-serif;
}
.cf-result-rating {
    flex-shrink: 0;
    text-align: center;
}
.cf-result-score {
    font-size: 20px;
    font-weight: 700;
    color: #9E0518;
    font-family: 'Ubuntu-Bold', sans-serif;
}
.cf-result-stars {
    font-size: 12px;
    color: #FFD700;
    letter-spacing: 1px;
}

.cf-result-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 12px;
    color: #FFD700;
    letter-spacing: 1px;
    margin-top: 2px;
}

.cf-result-stars svg {
    display: inline-block;
    vertical-align: middle;
}

.cf-result-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    background: #9E0518;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Ubuntu-Bold', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
}


/* Loading */
.cf-loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-family: 'Ubuntu-Light', sans-serif;
}
.cf-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #9E0518;
    border-radius: 50%;
    animation: cfSpin 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes cfSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .cf-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px 16px;
    }
    .cf-left {
        order: 1;
    }
    .cf-left-img {
        max-width: 140px;
    }
    .cf-center {
        order: 2;
    }
    .cf-right {
        order: 3;
        flex-direction: row;
        justify-content: center;
    }
    .cf-find-img {
        max-width: 160px;
    }
    .cf-find-wrap {
        width: auto;
    }
    .cf-find-btn {
        width: auto;
    }
    .cf-filters-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .casino-finder-btn {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    .casino-finder-btn svg {
        width: 20px;
        height: 20px;
    }
    .cf-popup {
        width: 96%;
        max-height: 95vh;
    }
    .cf-title {
        font-size: 20px;
    }
    .cf-subtitle {
        font-size: 13px;
    }
    .cf-right {
        flex-direction: column;
    }
    .cf-trust-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .cf-result-card {
        flex-wrap: wrap;
    }
    .cf-result-btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .cf-title {
        font-size: 18px;
    }
    .cf-filter-header {
        padding: 10px 12px;
    }
    .cf-filter-value {
        font-size: 13px;
    }
}

.cf-flag-inline {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

#cfCountryValue {
    display: flex;
    align-items: center;
    gap: 6px;
}



.cf-popup.cf-overflow-visible {
    overflow-y: visible !important;
}

.cf-popup:has(.cf-filter-list.show) {
    overflow-y: visible;
}


.cf-result-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}





.cf-step-results {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cf-step-results .cf-back-btn {
    align-self: flex-start;
    margin-bottom: 12px;
}

.cf-step-results .cf-results-title,
.cf-step-results .cf-results-subtitle {
    align-self: flex-start;
    width: 100%;
    max-width: 850px;
}

.cf-results-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 850px; 
    margin: 0 auto;
}

.cf-result-card {
    display: grid;
    grid-template-columns: 40px 56px 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.cf-result-card:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* border-color: #28a745; */
}

.cf-result-rank {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #9E0518;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Ubuntu-Bold', sans-serif;
}

.cf-result-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    padding: 8px;
    box-sizing: border-box;
}

.cf-result-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.cf-result-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cf-result-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.cf-result-bonus {
    font-size: 13px;
    color: #9E0518;
    font-weight: 600;
    font-family: 'Ubuntu-Medium', sans-serif;
    line-height: 1.3;
    margin: 0;
}

.cf-result-meta {
    font-size: 12px;
    color: #888;
    font-family: 'Ubuntu-Light', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.cf-result-rating {
    flex-shrink: 0;
    text-align: center;
    min-width: 60px;
}

.cf-result-score {
    font-size: 22px;
    font-weight: 700;
    color: #9E0518;
    font-family: 'Ubuntu-Bold', sans-serif;
    line-height: 1;
}

.cf-result-stars {
    font-size: 11px;
    color: #FFD700;
    letter-spacing: 1px;
    margin-top: 2px;
}

.cf-result-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    background: #9E0518;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Ubuntu-Bold', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cf-result-btn:hover {
    background: #9E0518;
    color: #fff !important;
    text-decoration: none;
}

.cf-result-btn:focus {
    background: #9E0518;
    color: #fff !important;
    text-decoration: none;
}



.cf-view-all {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: #9E0518;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu-Medium', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}
.cf-view-all:hover {
    color: #9E0518 !important;
    text-decoration: none;
}
.cf-view-all:focus {
    color: #9E0518 !important;
    text-decoration: none;
}


@media (max-width: 768px) {
    .cf-result-card {
        grid-template-columns: 36px 48px 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 8px 10px;
        padding: 12px 14px;
        align-items: start;
    }

  
    .cf-result-rank {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
    }


    .cf-result-logo {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 48px;
        height: 48px;
        align-self: center;
    }


    .cf-result-info {
        grid-column: 3;
        grid-row: 1;
        min-width: 0;
    }

    .cf-result-rating {
        grid-column: 4;
        grid-row: 1 / 3;
        text-align: right;
        min-width: 60px;
    }

    .cf-result-btn {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
        text-align: center;
        padding: 12px 18px;
    }
}


.cf-popup.cf-popup-narrow {
    max-width: 750px;
}

.cf-popup {
    transition: max-width 0.35s ease, all 0.35s ease;
}



.cf-popup:not(.show) {
    display: none !important;
}

.cf-overlay:not(.show) {
    display: none !important;
}



.cf-country-extra {
    display: none;
}







.casino-finder-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 10px 12px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    max-width: 270px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .casino-finder-widget:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  

  .cf-widget-close {
    position: absolute;
    top: -6px;
    left: 6px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #000000;
    padding: 0;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 2;
  }
  
  .cf-widget-close:hover {
    background: #f5f5f5;
    color: #333;
  }
  
 
  .cf-widget-spy-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #FF333A, #373D46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  

  .cf-widget-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
  }
  
  .cf-widget-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;

    line-height: 1.2;
  }
  
  .cf-widget-text span {
    font-size: 12px;
    color: #666;

    line-height: 1.2;
  }
 
  .cf-widget-arrow {
    width: 48px;
    height: 48px;
    min-width: 44px;
    background: linear-gradient(135deg, #FF333A, #373D46);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 0;
  }
  


  .casino-finder-btn {
    display: none;
  }
  

  @media (max-width: 768px) {
    .casino-finder-widget {
      bottom: 90px;
      right: 20px;
      max-width: 320px;
      padding: 10px 14px 10px 10px;
      gap: 10px;
    }
    
    .cf-widget-spy-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
    }
    
    .cf-widget-spy-icon svg {
      width: 22px;
      height: 22px;
    }
    
    .cf-widget-text strong {
      font-size: 13px;
    }
    
    .cf-widget-text span {
      font-size: 11px;
    }
    
    .cf-widget-arrow {
      width: 38px;
      height: 38px;
      min-width: 38px;
    }
    
    .cf-widget-arrow svg {
      width: 16px;
      height: 16px;
    }
  }




.casino-finder-widget {
    position: fixed;
    bottom: 20px;
    right: 21px;

}


@media (max-width: 768px) {
    .casino-finder-widget {
        bottom: 20px;  
        right: 20px;
    }
}




.cf-filter-list {
   
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    
  
    &::-webkit-scrollbar {
        width: 0px;
    }
    
    &::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-bottom-right-radius: 12px;
    }
    
    &::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }
    
    &::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}



.cf-filter-col:has(.cf-filter-header.active) {
    z-index: 10;
}


.cf-filter-col:has(.cf-filter-header.active) .cf-filter-list {
    z-index: 102;
}


@media (max-width: 480px) {
    .cf-result-card {
        grid-template-columns: 32px 40px 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 6px 8px;
        padding: 10px 12px;
    }
    .cf-result-rank {
        grid-column: 1;
        grid-row: 1;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .cf-result-logo {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 40px;
        height: 40px;
    }
    .cf-result-info {
        grid-column: 3;
        grid-row: 1;
    }
    .cf-result-rating {
        grid-column: 3;
        grid-row: 2;
        text-align: left;
    }
    .cf-result-btn {
        grid-column: 1 / -1;
        grid-row: 4;
    }
}