.sm-store-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
}

.sm-store-card{
    border:1px solid #ddd;
    border-radius:8px;
    padding:20px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.sm-store-title{
    margin:0 0 10px;
    font-size:22px;
    font-weight:700;
}

.sm-store-address{
    margin-bottom:15px;
    color:#555;
    line-height:1.6;
}

.sm-store-time{
    font-weight:600;
    color:#0a7d32;
}
form.sm-store-filter
 {
    background-color: #146709 !important;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 10px;
}
/*detail page*/
.location-wrapper {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0B5D1E;
}

/* Radio Buttons */

.location-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.location-option input {
    display: none;
}

.location-option span {

    display: inline-block;

    padding: 12px 26px;

    border: 2px solid #0B5D1E;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;

    color: #0B5D1E;

    background: #fff;
}

.location-option input:checked+span {

    background: #0B5D1E;

    color: #fff;

    border-color: #0B5D1E;

}

/* Address Grid */

.address-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}

/* Address Card */

.address-card {

    background: #fff;

    border-radius: 18px;

    padding: 25px;

    border: 1px solid #E6ECE7;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);

    transition: .3s;

}

.address-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);

}

.address-header {

    font-size: 22px;

    font-weight: 600;

    color: #0B5D1E;

    margin-bottom: 18px;

}

.address-text {

    color: #555;

    line-height: 1.7;

    margin-bottom: 20px;

}

.store-time {

    display: inline-block;

    background: #F4FAF4;

    color: #0B5D1E;

    padding: 8px 15px;

    border-radius: 8px;

    font-weight: 600;

    margin-bottom: 20px;

}

.map-link {

    float: right;

    text-decoration: none;

    color: #0B5D1E;

    font-weight: 600;

    transition: .3s;

}

.map-link:hover {

    color: #7DBE3C;

}

/* Responsive */

@media(max-width:768px) {

    .address-list {

        grid-template-columns: 1fr;

    }

    .location-filter {

        justify-content: center;

    }

}

/*enddetail page*/
/* Section Title */

.location-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
}

.location-title span {
    font-size: 26px;
}

/* Grid */

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */

.location-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid #e8ece8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    transition: all .35s ease;

    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

/* Top Gradient Border */

.location-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0B5D1E, #D9E021);
}

/* Status Badge */

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #edf9ef;
    color: #0B5D1E;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

/* Location Icon */

.icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B5D1E, #1D8A35);

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    font-size: 18px;

    margin-bottom: 18px;

    box-shadow: 0 6px 15px rgba(11, 93, 30, .18);
}

/* Location Name */

.location-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

/* Count */

.count {
    font-size: 30px;
    font-weight: 700;
    color: #0B5D1E;
    line-height: 1;
}

.count span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #777;
    font-weight: 500;
}

/* View Details Link */

.location-link {
    margin-top: auto;
    align-self: flex-end;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    text-decoration: none;
    color: #0B5D1E;

    font-size: 15px;
    font-weight: 600;

    transition: .3s;
    position: relative;
}

.location-link span {
    transition: .3s;
}

.location-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #D9E021;
    transition: .3s;
}

.location-link:hover {
    color: #1D8A35;
}

.location-link:hover span {
    transform: translateX(5px);
}

.location-link:hover::after {
    width: 100%;
}

/* Responsive */

@media (max-width:1200px) {

    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width:992px) {

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:576px) {

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-title {
        font-size: 28px;
    }

    .location-name {
        font-size: 24px;
    }

    .count {
        font-size: 38px;
    }

    .location-card {
        min-height: auto;
    }

}