    /* Общие стили */
.v-catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.v-catalog-page>section:nth-child(odd) {
    background: #ecebeb;
}

/* Блок 1: Заголовок */
.v-catalog-hero {
    text-align: center;
    padding: 40px 0;
    background-color: #f5f5f5;
}

.v-catalog-hero__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* Блок 2: Вводный SEO-текст */
.v-catalog-intro {
    padding: 40px 0;
}

.v-catalog-intro__content {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Блок 3: Навигация по категориям */
.v-catalog-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.v-catalog-category-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.v-catalog-category-card__icon {
    position: relative;
}

.v-catalog-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.v-catalog-category-card__icon img {
    margin-bottom: 15px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.v-catalog-category-card__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.v-catalog-category-card__desc {
    margin-bottom: 15px;
}

.v-catalog-category-card__params ul {
    list-style: none;
    padding: 0;
}

.v-catalog-category-card__params li {
    margin-bottom: 5px;
}

.v-catalog-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #001017;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.v-catalog-btn:hover {
    background-color: #001017;
}

/* Блок 5: Таблица */
.v-catalog-table {
    padding: 40px 0;
}

.v-catalog-table__title {
    text-align: center;
    margin-bottom: 20px;
}

.v-catalog-table-wrapper {
    overflow-x: auto;
}

.v-catalog-table__content {
    width: 100%;
    border-collapse: collapse;
}

.v-catalog-table__content th,
.v-catalog-table__content td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.v-catalog-table__content th {
    background-color: #f2f2f2;
}

/* Блок 6: Преимущества */
.v-catalog-advantages {
    padding: 40px 0;
}

.v-catalog-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v-catalog-advantage-card {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.v-catalog-advantage-card__icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.v-catalog-advantage-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Блок 7: Формы */
.v-catalog-forms__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 30px; */
    gap: 250px;
}

.v-catalog-forms__grid.questions {
    padding-top: 20px;
}

.v-catalog-form {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}

.v-catalog-form__title {
    margin-bottom: 20px;
}

/* Блок 8: Доставка */
.v-catalog-delivery__title {
    text-align: center;
}
.v-catalog-delivery {
    padding: 40px 0;
}

.v-catalog-delivery__cities {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.v-catalog-delivery-city {
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #000;
}

.v-catalog-delivery-city__icon {
    font-size: 2rem;
}

/* Блок 9: SEO-текст */
.v-catalog-seo {
    padding: 40px 0;
}

.v-catalog-seo__title {
    text-align: center;
    margin-bottom: 20px;
}

.v-catalog-seo__content {
    line-height: 1.6;
}

/* Блок 10: Популярные товары */
.v-catalog-popular__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v-catalog-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.v-catalog-product-card__image img {
    max-width: 100%;
    border-radius: 8px;
}

.v-catalog-product-card__title {
    font-size: 1.3rem;
    margin: 15px 0;
}

.v-catalog-product-card__desc {
    margin-bottom: 15px;
}

.v-catalog-product-card__param {
    margin-bottom: 10px;
}

.v-catalog-product-card__price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.razdel {
    padding: 40px 0;
}
.v-catalog-delivery-city__desc {
    font-size: 14px;
    display: block;
}
.v-catalog-forms__grid.questions .questions__field {
    padding: 5px;
}

/* Адаптивность */
@media screen and (max-width: 1200px) {
    .v-catalog-delivery__cities {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {

    .v-catalog-categories__grid,
    .v-catalog-advantages__grid,
    .v-catalog-forms__grid,
    .v-catalog-popular__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .v-catalog-categories__grid,
    .v-catalog-advantages__grid,
    .v-catalog-forms__grid,
    .v-catalog-popular__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v-catalog-hero__title {
        font-size: 1.8rem;
    }
}
