.store-list-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.store-card {
    padding: 20px;
    border: #E9E9E9 1px solid;
    border-radius: 8px;
}

.store-card-title {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    margin-bottom: 0px;
}

.store-card .listing-details {
    margin-top: 24px;
}

.store-card .listing-label {
    font-family: 'inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #595959;
    margin-bottom: 5px;
}

.store-card .listing-label-value {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}


.store-list-more-btn {
    font-family: 'inter', sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #004123; 
    display: inline-block;
    margin-top: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.store-list-more-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    z-index: 1;

    background-color: #004123;

}

.store-list-more-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: #3a9046;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
}

.load-more-stores {
    min-width: 110px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    line-height: 14px;
    background-color: #004123;
    border: 1px solid #004123;
    color: #fff;
    padding: 8px 16px;
    display: inline-block !important;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 0px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    cursor: pointer;
       margin-top: 20px;
 
}

.iti__dropdown-content { 
    padding: 10px 10px 10px 10px;
}
.iti__country-list { 
    margin-top: 10px;
}


@media (hover: hover) and (pointer: fine) {
    .store-list-more-btn:hover {
        color: #3a9046;
    }

    .store-list-more-btn:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
  .load-more-stores:hover {
        background-color: #3A9046;
        border-color: #3A9046;
        color: #fff;
    }

}


@media screen and (min-width: 1000px) {
    .store-list-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;

    }

    .store-list-more-btn {
        line-height: 20px;
    }

    .load-more-stores {
        margin-top: 30px;
        padding: 12px 16px;
    }
}


@media screen and (min-width: 1200px) {
    .store-list-grid {
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: 30px;

    }

    .store-card {
        padding: 40px;
    }
}