
/* ===== FEATURES SECTION ===== */

.store-features {
    width: 100%;
    background: #eef3f4;
    padding: 70px 20px;
    box-sizing: border-box;
}

.store-features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ===== ITEM ===== */

.store-feature-item {
    text-align: center;
}

.store-feature-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.store-feature-icon svg {
    width: 34px;
    height: 34px;
    stroke: #1d2b28;
}

.store-feature-item h3 {
    margin: 0 0 14px;
    color: #1b2926;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.store-feature-item p {
    margin: 0;
    color: #495854;
    font-size: 17px;
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {

    .store-features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

}

@media (max-width: 767px) {

    .store-features {
        padding: 55px 20px;
    }

    .store-features-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .store-feature-item h3 {
        font-size: 22px;
    }

}

