/* Property Search Section */
.property-search {
    padding-top: 120px;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Filter Styles */
.search-filters {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filter-header h4 {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.btn-reset {
    background: none;
    border: none;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    color: #0d6efd;
}

/* Search Row Styling */
.search-row {
    display: flex;
    gap: 20px;
}

.search-col {
    position: relative;
}

.search-input {
    position: relative;
}

.search-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
    z-index: 1;
}

.search-input .form-control {
    height: 50px;
    padding-left: 45px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.15);
}

/* Category Items */
.filter-categories {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-item.active {
    background: #e8f0fe;
    color: #0d6efd;
}

.category-item i {
    font-size: 1.1rem;
}

.item-count {
    background: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* Advanced Filters */
.advanced-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.filter-row {
    display: flex;
    gap: 20px;
}

.filter-col {
    flex: 1;
}

.filter-col label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.price-inputs,
.area-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group {
    flex: 1;
}

.input-group-text {
    background: #fff;
    border-right: none;
    padding-right: 5px;
}

.input-group .form-control {
    border-left: none;
    padding-left: 5px;
}

.separator {
    color: #666;
    font-weight: 500;
}

/* Action Buttons */
.filter-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.filter-actions .btn {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .search-row,
    .filter-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .search-filters {
        padding: 20px;
    }

    .category-item {
        padding: 10px 15px;
    }

    .advanced-filters {
        padding: 15px;
    }

    .filter-actions {
        flex-direction: column;
    }

    .filter-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.results-header {
    margin-bottom: 20px;
}

.results-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.results-header p {
    color: #666;
    margin: 0;
}

.promo-banner {
    background: #e8f3ff;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.promo-icon {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.promo-text {
    font-size: 0.95rem;
    color: #333;
}

.promo-text a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

/* Search Form Styles */
.search-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

/* Select2 Customization */
.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 48px !important;
    padding-left: 40px;
    border-radius: 8px !important;
    border: 1px solid #dee2e6 !important;
    display: flex !important;
    align-items: center;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 20px !important;
    line-height: normal !important;
    color: #333 !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
}

.select2-dropdown {
    border-color: #dee2e6 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px;
}

.select2-results__option {
    padding: 8px 12px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0d6efd !important;
}

/* Property Grid Styles */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .property-search {
        padding-top: 80px;
    }

    .search-form {
        padding: 15px;
    }

    .select2-container .select2-selection--single {
        height: 42px !important;
    }

    .select2-container .select2-selection--single .select2-selection__arrow {
        height: 40px !important;
    }
}

@media (max-width: 768px) {
    .filter-group {
        margin-bottom: 10px;
    }

    .search-form .row {
        margin: 0 -8px;
    }

    .search-form [class*="col-"] {
        padding: 0 8px;
        margin-bottom: 10px;
    }

    .search-input {
        margin-bottom: 0;
    }

    .select2-container .select2-selection--single {
        font-size: 0.9rem;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .search-form {
        padding: 12px;
    }

    .search-input i {
        font-size: 0.9rem;
        left: 12px;
    }

    .select2-container .select2-selection--single {
        padding-left: 35px;
    }
}

/* Property Grid Animation */
.property-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
.property-card:nth-child(1) { animation-delay: 0.1s; }
.property-card:nth-child(2) { animation-delay: 0.2s; }
.property-card:nth-child(3) { animation-delay: 0.3s; }
.property-card:nth-child(4) { animation-delay: 0.4s; }

/* Navbar styles for property page */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar .navbar-brand,
.navbar .nav-link,
.navbar .btn-search {
    color: #333 !important;
}

.navbar .navbar-brand i {
    color: #0d6efd;
}

.navbar .nav-link i {
    color: #0d6efd;
    margin-right: 5px;
}

.navbar .btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.navbar .btn-outline-primary:hover {
    background: #0d6efd;
    color: #fff;
}

.navbar .btn-primary {
    background: #0d6efd;
    border-color: #0d6efd;
}

.navbar .btn-primary:hover {
    background: #0b5ed7;
}

.navbar .navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Topbar styles for property page */
.topbar {
    background: #0d6efd;
    padding: 8px 0;
    color: #fff;
}

.topbar-info {
    display: flex;
    gap: 20px;
}

.topbar-info-item {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar-info-item i {
    font-size: 1rem;
}

.topbar .social-links {
    justify-content: flex-end;
}

.social-links a {
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        margin-bottom: 15px;
    }

    .navbar-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .navbar-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .navbar {
        top: 0 !important;
    }

    .property-search {
        padding-top: 76px;
    }
}

/* Modal Filter Styles */
.modal-content {
    border: none;
    border-radius: 16px;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 20px;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 20px;
}

.filter-sections {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.filter-section {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.filter-section h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.range-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-input input {
    flex: 1;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
}

.range-input span {
    color: #666;
    font-weight: 500;
}

.price-shortcuts {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shortcut-btn {
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    background: #fff;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.shortcut-btn:hover,
.shortcut-btn.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.room-options {
    display: flex;
    gap: 10px;
}

.room-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.room-btn:hover,
.room-btn.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.facility-item input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #dee2e6;
    cursor: pointer;
}

.facility-item span {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.facility-item i {
    color: #0d6efd;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .price-shortcuts {
        gap: 6px;
    }

    .shortcut-btn {
        font-size: 0.85rem;
        padding: 5px 10px;
    }

    .room-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 576px) {
    .range-input {
        flex-direction: column;
        gap: 8px;
    }

    .range-input span {
        display: none;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Property Card Title Styles */
.property-card .property-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* height: 44px; */
}

.property-card .property-content .developer {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-card .property-content .location {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Property Card Hover Effect */
.property-card:hover .property-content h3 {
    color: #0d6efd;
}

/* Responsive styles */
@media (max-width: 768px) {
    .property-card .property-content h3 {
        font-size: 1rem;
        /* height: 40px; */
    }

    .property-card .property-content .developer,
    .property-card .property-content .location {
        font-size: 0.8rem;
    }
}

/* Add to existing styles */
.keyword-search {
    position: relative;
}

.keyword-search .search-input {
    margin-bottom: 0;
}

.keyword-search .form-control {
    height: 48px;
    padding-left: 45px;
    padding-right: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
}

.keyword-search .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.keyword-search .search-input i {
    font-size: 1.1rem;
    color: #666;
    transition: all 0.3s ease;
}

.keyword-search .form-control:focus + i {
    color: #0d6efd;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .keyword-search .form-control {
        height: 42px;
        font-size: 0.9rem;
        padding-left: 40px;
    }

    .keyword-search .search-input i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .keyword-search .form-control {
        font-size: 0.85rem;
        padding-left: 35px;
    }

    .keyword-search .search-input i {
        left: 12px;
    }
}

/* Comparison Feature Styles */
.comparison-feature {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Property Card Checkbox Styles */
.property-actions {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.compare-checkbox {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    margin: 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.compare-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #0d6efd;
    border-radius: 4px;
    margin-right: 6px;
    position: relative;
    background: #fff;
    display: inline-block;
    flex-shrink: 0;
}

.compare-checkbox:hover {
    background: #fff;
    transform: scale(1.02);
}

.compare-checkbox input:checked ~ .checkbox-wrapper .checkmark:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #0d6efd;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.compare-label {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    user-select: none;
}

.favorite-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.favorite-btn:hover {
    background: #fff;
    color: #dc3545;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .compare-checkbox {
        padding: 4px 8px;
    }

    .compare-label {
        font-size: 0.75rem;
    }

    .checkmark {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    .compare-checkbox input:checked ~ .checkbox-wrapper .checkmark:after {
        left: 4px;
        top: 1px;
        width: 5px;
        height: 9px;
    }
}

.comparison-grid {
    width: 100%;
    overflow-x: auto;
}

.comparison-slots {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.comparison-slot {
    flex: 0 0 220px;
    height: 140px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-slot.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    cursor: pointer;
}

.comparison-slot.empty:hover {
    border-color: #0d6efd;
    background: #f1f7ff;
}

.empty-state {
    color: #adb5bd;
    font-size: 24px;
}

.comparison-slot:not(.empty) {
    border: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slot-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slot-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    border-radius: 0 0 8px 8px;
}

.slot-info h6 {
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-comparison {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 2;
}

.remove-comparison:hover {
    background: #fff;
    color: #dc3545;
}

@media (max-width: 768px) {
    .comparison-slots {
        gap: 10px;
    }

    .comparison-slot {
        flex: 0 0 180px;
        height: 120px;
    }

    .slot-info h6 {
        font-size: 0.8rem;
    }
}

/* Floating Comparison Bar */
.comparison-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.comparison-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.comparison-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-info p {
    color: #666;
    font-size: 0.9rem;
}

.comparison-slots {
    display: flex;
    gap: 15px;
    flex-grow: 1;
    overflow-x: auto;
    padding: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.comparison-slots::-webkit-scrollbar {
    display: none;
}

.comparison-slot {
    flex: 0 0 160px;
    height: 100px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-slot.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.empty-state {
    color: #adb5bd;
    font-size: 20px;
}

.slot-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slot-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.slot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    border-radius: 0 0 6px 6px;
}

.slot-info h6 {
    color: #fff;
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-comparison {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
}

.remove-comparison:hover {
    background: #fff;
    color: #dc3545;
    transform: scale(1.1);
}

.comparison-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .comparison-bar-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .comparison-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .comparison-slots {
        order: 2;
    }

    .comparison-actions {
        order: 3;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .comparison-slot {
        flex: 0 0 140px;
        height: 90px;
    }

    .comparison-info h5 {
        font-size: 1rem;
    }

    .comparison-info p {
        font-size: 0.85rem;
    }

    .comparison-actions {
        flex-direction: row;
        width: 100%;
    }

    .comparison-actions .btn {
        flex: 1;
    }
}

.label-status {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.label-status-2 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-wishlist:hover {
    background: #fff;
    transform: scale(1.1);
}

.btn-wishlist i {
    color: #dc3545;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-wishlist[data-is-wishlisted="false"] i {
    color: #6c757d;
}

.btn-wishlist[data-is-wishlisted="true"] i {
    color: #dc3545;
} 