 .fa-solid{
        color: var(--primary-color);
    }

    .requirement-btn {
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .requirement-btn:hover:not(.disabled-btn) {
        opacity: 0.8;
    }

    .requirement-btn.disabled-btn {
        cursor: not-allowed;
    }

    .requirement-btn.disabled-btn .request_img {
        opacity: 0.5;
    }

    .requirement-btn.disabled-btn .request-text {
        opacity: 0.5;
        /* color: #999; */
    }

    .requirement-btn.pending .request-text {
        color: var(--primary-color);
    }
    
    .request-text .btn-label {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .request_img i {
        font-size: 30px !important;
    }

    .requirement-btn.accepted-no-chat .request-text {
        color: var(--primary-color);
        margin-top: 10px;
    }

    .requirement-btn.chat-initiated .request-text {
        color: var(--primary-color);
        margin-top: 10px;
    }

    .request_img_disabled {
        opacity: 0.5;
        /* filter: grayscale(100%); */
    }

    .request-text-disabled {
        opacity: 0.5;
        color: #999 !important;
    }

    .send-request-btn {
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .send-request-btn:hover {
        opacity: 0.8;
    }

    .login-required-btn {
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .login-required-btn:hover {
        opacity: 0.8;
    }

    .btn-reset {
        background-color: #6c757d;
        color: white;
        border: none;
        margin-left: 10px;
        transition: all 0.3s ease;
    }

    .btn-reset:hover {
        background-color: #5a6268;
        color: white;
        text-decoration: none;
    }

    .search-results-section {
        background: #f8f9fa;
        padding: 10px 0 20px 0;
        animation: slideDown 0.3s ease-in-out;
        max-width: 700px;
        margin: auto;
    }

    /* div#searchResultsSection {
        max-width: 700px;
        margin: auto;
    } */

    .search-results-wrapper {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 30px;
        position: relative;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .search-results-content {
        padding: 0;
        max-height: 400px;
        overflow: auto;
        padding: 10px;
    }

    .search-category-group {
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e0e0e0;
    }

    .search-category-group:last-child {
        border-bottom: none;
    }

    .search-category-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .search-items-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .search-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .search-item:last-child {
        border-bottom: none;
    }

    .search-item-link {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
        padding: 8px 12px;
        border-radius: 4px;
    }

    .search-item-link:hover {
        background-color: #f5f5f5;
        color: var(--primary-color);
    }

    .search-item-image {
        width: 50px;
        height: 50px;
        border-radius: 4px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .search-item-content {
        flex: 1;
    }

    .search-item-title {
        font-weight: 500;
        color: #333;
        margin-bottom: 4px;
    }

    .search-item-meta {
        font-size: 12px;
        color: #999;
    }

    .search-item-distance {
        font-size: 12px;
        color: var(--primary-color);
        font-weight: 500;
    }

    .search-no-results {
        text-align: center;
        padding: 40px 20px;
        color: #999;
    }

    .search-loading {
        text-align: center;
        padding: 40px 20px;
    }

    .search-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary-color);
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .search-close-btn:hover {
        background-color: #bdbabaff;
    }

    .swiper-wrapper{
        height: auto !important
    }

    .feeds-cards-section .post-card .post-image img{
        height: 300px !important;
    }

    .feeds-cards-section .offer-card .offer-image img{
        height: 300px !important;
    }

    #feedImageModal .modal-content {
        border-radius: 12px;
    }

    #feedImageModal .modal-header {
        border-bottom: 1px solid #e0e0e0;
    }

    #feedImageModal .modal-title {
        font-size: 17px;
        font-weight: 600;
        color: #333;
    }

    #feedImageModal .modal-body {
        padding: 20px;
    }

    .modal-details-content h6 {
        font-size: 14px;
        font-weight: 600;
        color: #d42431;
        margin: 10px 0;
    }

    .modal-details-content p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        font-weight: 600;
    }

    .custom-bullet-list {
        padding-left: 0;
        list-style: none;
    }

    .custom-bullet-list li {
        padding: 5px 0;
        font-size: 14px;
        font-weight: 600;
        color: #555;
        position: relative;
        padding-left: 20px;
    }

    .custom-bullet-list li::before {
        content: '•';
        color: #d42431;
        font-size: 14px;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 0.2rem;
    }

    .read-more-modal-link {
        color: #d42431;
        text-decoration: none;
        font-weight: 600;
        margin-left: 5px;
        font-size: 14px;
    }

    .read-more-modal-link:hover {
        color: #a01d27;
        text-decoration: underline;
    }

    .modal-description-text {
        margin-bottom: 0;
    }

    .modal-image-container {
        position: relative;
    }

    .image-zoom-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden !important;
    }

    .image-zoom-wrapper::-webkit-scrollbar {
        display: none;
    }

    .image-zoom-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .zoom-image {
        cursor: zoom-in;
        max-width: 100%;
        user-select: none;
    }

/* Caution Modal */
.home-caution-modal .modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.home-caution-modal .modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 22px 14px;
}

.home-caution-modal .caution-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-caution-modal .caution-modal-header-icon {
    color: #d42431;
    font-size: 22px;
}

.home-caution-modal .modal-title {
    color: #d42431;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.3px;
}

.home-caution-modal .modal-body {
    padding: 22px 24px 10px;
}

.home-caution-modal .caution-modal-main-text {
    font-size: 15px;
    font-weight: 600;
    color: #d42431;
    margin-bottom: 16px;
    line-height: 1.5;
}

.home-caution-modal .caution-modal-section-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.home-caution-modal .caution-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.home-caution-modal .caution-modal-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
}

.home-caution-modal .caution-modal-list-item--border {
    border-bottom: 1px solid #f5f5f5;
}

.home-caution-modal .caution-modal-list-icon {
    color: #d42431;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.home-caution-modal .caution-modal-list-item span {
    font-size: 14px;
    color: #333;
}

.home-caution-modal .modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 14px 24px 18px;
}

.home-caution-modal .caution-modal-dismiss-btn {
    width: 100%;
    padding: 11px;
    background: #d42431;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
}
/* End Caution Modal */
