.section-search {
    margin: 4.8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.search-desc {
    font-size: 1.8rem;
}

.search-input {
    height: 3.6rem;
    width: 30rem;
    font-size: 1.8rem;
}

.search-button {
    width: 6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    font-size: 2.4rem;
}




.No-donations-found {
    display: none;
    margin-top: 4.8rem;
    font-size: 3.2rem;
    color: rgb(255, 0, 0);
    text-align: center;
}

.No-donations-found.Display-NMF {
    display: block;
}

.loading-message {
    display: none;
    margin-top: 4.8rem;
    font-size: 3.2rem;
    text-align: center;
}

.loading-message.Display-NMF {
    display: block;
}


.charities {
    max-width: 140rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.charity-container {
    background: rgba(239, 250, 255, 0.25);
    box-shadow: 0.5rem 1rem 1rem 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 0.3rem solid rgba(0, 0, 0, 0.482);
    overflow: hidden;
    width: 25rem;
    transition: 0.3s all;
}

.charity-container:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0.5rem 1rem 1rem 0 rgba(31, 38, 135, 0.05);
}

.charity-imageContainer {
    aspect-ratio: 460/215;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.charity-image {
    width: 100%;
    transition: scale 0.2s;
}

.charity-container:hover .charity-image {
    scale: 1.05;
}

.charity-info {
    height: 17rem;
    padding: 1rem;
    display: grid;
    gap: 0.5rem;
    justify-content: center;
}

.charity-title {
    font-size: 1.8rem;
    font-weight: bold;
    align-self: center;
}

.charity-description {
    margin-top: 0.5rem;
    line-height: 1.4;
    color: #333;
    align-self: end;
}

.charity-price {
    text-align: right;
    display: block;
    align-self: center;
}

.charity-addToCart {
    display: block;
    background-color: rgba(0, 86, 171, 0.5);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 999rem;
    border: none;
    outline: 1px solid transparent;
    transition: outline-color var(--transition-time);
    cursor: pointer;
    line-height: 1;
}

.charity-addToCart:hover {
    outline: 1px solid white;
}

.charity-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.charity-payment input {
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    border-radius: 2rem;
    border: 1px solid gray;
}