/* Основной контейнер */
.store-about {
    font-family: Arial, sans-serif; /* Укажи основной шрифт твоего сайта */
    background-color: #ffffff;
    color: #333333;
    padding: 60px 20px;
    line-height: 1.6;
}

.store-about__container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Заголовки и тексты */
.store-about__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.store-about__intro {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
    max-width: 800px;
}

.store-about__subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Список ассортимента */
.store-about__assortment {
    margin-bottom: 50px;
}

.store-about__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-about__list-item {
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.store-about__list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007BFF; /* Цвет акцента (замени на свой) */
    font-weight: bold;
}

/* Сетка преимуществ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

/* Карточка преимущества */
.feature-card {
    background: #f9f9fc;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-card__icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #222;
}

.feature-card__text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Адаптив для телефонов */
@media (max-width: 768px) {
    .store-about__title {
        font-size: 28px;
    }
    
    .store-about__intro {
        font-size: 16px;
    }
}