.s-shop {
    padding: 40px 0;
    background: var(--cream);
}
.s-shop .s-filter {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}
.s-shop .s-filter .s-item {
    width: 47%;
}
.s-shop .s-filter .s-btn {
    padding: 0px 19px;
    background: var(--primary-color);
    border-radius: 12px;
    line-height: 38px;
    cursor: pointer;
    color: var(--brown-color);
    font-weight: bold;
}
.store-card {
    background: var(--white);
    border-radius: var(--radius-m);
    overflow: hidden;
    border: 1px solid rgba(43, 27, 18, .06);
    transition: transform .3s;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.store-card:hover {
    transform: translateY(-6px);
}
.store-img {
    background: linear-gradient(135deg, #E8CE9E, #C89A55);
    position: relative;
}
.store-body {
    padding: 18px;
}
.store-body .store-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.store-line {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 7px;
    line-height: 1.5;
}
.store-line svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--seal);
}