.hero {
    width: 100%;
    margin: 0 auto;
    height: 800px;
    background-color: #f5f5f5;
}


.hero .swiper {
    width: 100%;
    height: 100%;
}

.hero__content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-1 {
    background-image: url('/static/whl/banner/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-2 {
    background-image: url('/static/whl/banner/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-3 {
    background-image: url('/static/whl/banner/3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__title {
    font-family: var(--font-family);
    font-size: var(--header-font-size-xl);
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

/* --------------------------------------------
   文字动画效果
   -------------------------------------------- */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* 副标题先出现，标题后出现 */
.swiper-slide-active .hero__left-subtitle {
    transition-delay: 0.1s;
}

.swiper-slide-active .hero__left-title {
    transition-delay: 0.25s;
}

@media screen and (max-width: 768px) {
    .hero {
        height: 300px;
    }
}

/* --------------------------------------------
   新闻动态模块 (News Section)
   -------------------------------------------- */
.news {
    width: 100%;
    background-color: #f5f5f5;
    padding: 100px 0;
    background-image: url('./bg-xinwen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* 新闻头部 - 标题与副标题 */
.news__header {
    text-align: center;
    margin-bottom: 60px;
}

.news__title {
    font-size: var(--header-font-size-lg);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px;
    line-height: 1.2;
}

.news__subtitle {
    font-size: var(--header-font-size-md);
    color: #888888;
    margin: 0;
    line-height: 1.5;
}

/* 新闻列表 - 四列网格布局 */
.news__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* 新闻卡片 */
.news__item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.news__item:hover {
    border-color: var(--header-color-accent-2);
    box-shadow: 0 10px 28px rgba(4, 153, 225, 0.2);
    transform: translateY(-4px);
}

/* 新闻封面图容器 - 固定 16:9 比例 */
.news__item-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f5f5f5;
}

/* 新闻封面图 */
.news__item-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* 悬停时封面图轻微放大 */
.news__item:hover .news__item-image {
    transform: scale(1.05);
}

/* 新闻文字内容区 */
.news__item-body {
    display: flex;
    flex-direction: column;
    padding: 20px 22px 22px;
    flex: 1;
}

/* 新闻标签 - 不同分类的徽章颜色 */
.news__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.news__tag--company {
    color: #4a7df0;
    background-color: rgba(74, 125, 240, 0.12);
}

.news__tag--industry {
    color: #8b6ce6;
    background-color: rgba(139, 108, 230, 0.12);
}

.news__tag--tech {
    color: #3ec28f;
    background-color: rgba(62, 194, 143, 0.12);
}

/* 新闻标题 */
.news__item-title {
    font-size: var(--header-font-size-md);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* 新闻描述 */
.news__item-desc {
    font-size: var(--header-font-size-base);
    color: #777777;
    margin: 0 0 20px;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 新闻日期 */
.news__item-date {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #999999;
    line-height: 1.4;
}

/* 日期图标 */
.news__item-icon {
    margin-right: 4px;
    color: #999999;
}

/* --------------------------------------------
   新闻动态模块 - 响应式适配
   -------------------------------------------- */
@media screen and (max-width: 1200px) {
    .news__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* @media screen and (max-width: 600px) {
    .news {
        padding: 40px 0;
    }

    .news__header {
        margin-bottom: 28px;
    }

    .news__title {
        font-size: 24px;
    }

    .news__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
} */

/* --------------------------------------------
   关于我们模块 (About Section)
   -------------------------------------------- */
.about {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    background-image: url('./bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* 关于我们 - 左右两栏内容容器 */
.about__content {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

/* 关于我们 - 左侧图片媒体区 */
.about__media {
    flex: 1;
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
}

.about__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 关于我们 - 右侧文字信息区 */
.about__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.about__title {
    font-size: var(--header-font-size-xl);
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 24px;
    line-height: 1.2;
}

/* 关于我们 - 描述段落 */
.about__desc {
    margin-bottom: 36px;
}

.about__desc p {
    font-size: 20px;
    color: #555555;
    line-height: 1.8;
    margin: 0 0 12px;
    text-align: justify;
    /* text-indent: 2em; */
}

.about__desc p:last-child {
    margin-bottom: 0;
}

/* 关于我们 - 数据统计区 */
.about__stats {
    display: flex;
    gap: 60px;
}

.about__stat {
    display: flex;
    flex-direction: column;
}

.about__stat-num {
    font-size: 30px;
    font-weight: 700;
    color: #4a7df0;
    line-height: 1.2;
    margin-bottom: 6px;
}

.about__stat-label {
    font-size: 13px;
    color: #999999;
    line-height: 1.4;
}

/* 关于我们 - 联系我们按钮 */
.about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background-color: #4a7df0;
    border-radius: 6px;
    text-decoration: none;
    line-height: 1.4;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.about__btn:hover {
    background-color: #3a6ad9;
    box-shadow: 0 6px 18px rgba(74, 125, 240, 0.32);
    transform: translateY(-2px);
}

.about__btn:active {
    background-color: #2f5cc2;
    box-shadow: 0 2px 6px rgba(74, 125, 240, 0.2);
    transform: translateY(0);
}

/* 关于我们 - 平板及以下响应式适配 */
@media screen and (max-width: 992px) {
    .about {
        padding: 50px 0;
    }

    .about__content {
        flex-direction: column;
        gap: 36px;
    }

    .about__image {
        height: auto;
    }

    .about__info {
        padding: 0;
    }
}

/* 关于我们 - 移动端响应式适配 */
/* @media screen and (max-width: 600px) {
    .about {
        padding: 40px 0;
    }

    .about__title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .about__desc {
        margin-bottom: 28px;
    }

    .about__stats {
        gap: 28px;
    }

    .about__stat-num {
        font-size: 24px;
    }

    .about__btn {
        padding: 10px 26px;
        font-size: 14px;
    }
} */

/* --------------------------------------------
   核心优势模块 (Advantage Section)
   展示企业六大核心竞争力
   -------------------------------------------- */
.advantage {
    width: 100%;
    background-color: #f5f5f5;
    padding: 100px 0;
    background-image: url('./bg-hexin.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* 核心优势 - 头部标题区域 */
.advantage__header {
    text-align: center;
    margin-bottom: 60px;
}

.advantage__title {
    font-size: var(--header-font-size-lg);
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 25px;
    line-height: 1.2;
}

.advantage__subtitle {
    font-size: var(--header-font-size-md);
    color: #888888;
    margin: 0;
    line-height: 1.5;
}

/* 核心优势 - 卡片列表网格布局 */
.advantage__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 核心优势 - 单个优势卡片 */
.advantage__item {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 60px 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-top: 4px solid var(--header-color-accent-2);
}

.advantage__item:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./youshi-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.advantage__item:nth-child(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./youshi-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.advantage__item:nth-child(3)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./youshi-3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.advantage__item:nth-child(4)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./youshi-4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.advantage__item:nth-child(5)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./youshi-5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.advantage__item:nth-child(6)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./youshi-6.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.advantage__item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* 核心优势 - 左侧图标容器 */
.advantage__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f1fb;
    color: #4a7df0;
    border-radius: 6px;
    margin-right: 16px;
}

.advantage__icon svg {
    display: block;
}

/* 核心优势 - 右侧文字信息区 */
.advantage__info {
    flex: 1;
    min-width: 0;
}

.advantage__item-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 4px 0 10px;
    line-height: 1.4;
}

.advantage__item-desc {
    font-size: 18px;
    color: #777777;
    margin: 0px 20px 0px 0px;
    line-height: 1.6;
}

/* 核心优势 - 平板端响应式适配 */
@media screen and (max-width: 992px) {
    .advantage__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 核心优势 - 移动端响应式适配 */
@media screen and (max-width: 600px) {
    .advantage {
        padding: 40px 0;
    }

    .advantage__header {
        margin-bottom: 28px;
    }

    .advantage__title {
        font-size: 24px;
    }

    .advantage__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .advantage__item {
        padding: 22px 20px;
    }
}

/* --------------------------------------------
   工程案例模块 (Case Section)
   展示企业成功案例:案例图片 + 案例介绍,一行 4 列
   -------------------------------------------- */
.case {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

/* 工程案例 - 头部标题区域(标题 + 副标题) */
.case__header {
    text-align: center;
    margin-bottom: 30px;
}

/* 工程案例 - 主标题 */
.case__title {
    font-size: var(--header-font-size-lg);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.2;
}

/* 工程案例 - 副标题 */
.case__subtitle {
    font-size: var(--header-font-size-md);
    color: #888888;
    margin: 0;
    line-height: 1.5;
}

/* 工程案例 - 卡片列表(四列网格布局) */
.case__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* 工程案例 - 单个案例卡片(图片 + 文字介绍) */
.case__item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* 工程案例 - 卡片悬停效果 */
.case__item:hover {
    border-color: #e0e0e0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* 工程案例 - 案例图片容器(固定 4:3 比例) */
.case__item-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f5f5f5;
}

/* 工程案例 - 案例图片(铺满容器,缩放时保持居中) */
.case__item-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* 工程案例 - 悬停时图片轻微放大 */
.case__item:hover .case__item-image {
    transform: scale(1.05);
}

/* 工程案例 - 文字信息区(标题 + 描述 + 时间) */
.case__item-body {
    display: flex;
    flex-direction: column;
    padding: 20px 22px 22px;
    flex: 1;
}

/* 工程案例 - 案例标题(单行省略) */
.case__item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* 工程案例 - 案例描述(两行省略) */
.case__item-desc {
    font-size: 13px;
    color: #777777;
    margin: 0 0 16px;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 工程案例 - 案例底部元信息(日期等) */
.case__item-meta {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #999999;
    line-height: 1.4;
    border-top: 1px dashed #f0f0f0;
    padding-top: 12px;
}

/* 工程案例 - 平板及以下响应式适配(降为 2 列) */
@media screen and (max-width: 1200px) {
    .case__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 工程案例 - 移动端响应式适配(降为 1 列) */
/* @media screen and (max-width: 600px) {
    .case {
        padding: 40px 0;
    }

    .case__header {
        margin-bottom: 28px;
    }

    .case__title {
        font-size: 24px;
    }

    .case__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case__item-body {
        padding: 18px 18px 20px;
    }
} */

/* --------------------------------------------
   产品展示模块 (Product Section)
   顶部为分类切换,下方为产品卡片网格(一页 4 列)
   点击分类标签切换对应产品数据(由 product 模块 JS 控制)
   -------------------------------------------- */
.product {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0 0;
}

/* 产品展示 - 头部区域(标题 + 分类切换) */
.product__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

/* 产品展示 - 标题容器 */
.product__title {
    flex-shrink: 0;
}

/* 产品展示 - 主标题 */
.product__title-text {
    font-size: var(--header-font-size-lg);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.product__title-text-zh {
    color: var(--header-color-accent-2);
}

.product__title-text-en {
    font-size: 26px;
}

/* 产品展示 - 分类切换列表(横向排列) */
.product__category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 产品展示 - 分类项 */
.product__category-item {
    display: flex;
}

/* 产品展示 - 分类链接(默认 + 激活态) */
.product__category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    background-color: #f5f5f5;
    border-radius: 4px;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

/* 产品展示 - 分类链接悬停 */
.product__category-link:hover {
    color: #4a7df0;
    background-color: #e8f1fb;
}

/* 产品展示 - 分类链接激活态(由 JS 切换 is-active) */
.product__category-link.is-active {
    color: #ffffff;
    background-color: #4a7df0;
    box-shadow: 0 4px 12px rgba(74, 125, 240, 0.28);
}

/* 产品展示 - 分类链接激活态悬停 */
.product__category-link.is-active:hover {
    color: #ffffff;
    background-color: #3a6ad9;
}

/* 产品展示 - "更多产品" 容器(与分类项分隔) */
.product__category-item--more {
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid #e0e8ec;
}

/* 产品展示 - "更多产品" 链接(描边样式 + 右箭头) */
.product__category-link--more {
    padding: 10px 18px;
    color: var(--header-color-accent-2);
    background-color: #ffffff;
    border: 1px solid var(--header-color-accent-2);
    font-weight: 500;
    position: relative;
    padding-right: 30px;
}

.product__category-link--more::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--header-color-accent-2);
    border-right: 2px solid var(--header-color-accent-2);
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.2s ease;
}

.product__category-link--more:hover {
    color: #ffffff;
    background-color: var(--header-color-accent-2);
    box-shadow: 0 4px 12px rgba(4, 153, 225, 0.28);
}

.product__category-link--more:hover::after {
    border-color: #ffffff;
    right: 10px;
}

/* 产品展示 - 产品列表容器(承载多个分类组) */
.product__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--banxin-width);
    margin: 0 auto;
    padding: 0 0 60px;
}

/* 产品展示 - 单个分类组(自身为 4 列 grid,通过 hidden 控制显隐) */
.product__group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}


/* 产品展示 - 单个产品卡片(图片 + 文字) */
.product__item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* 产品展示 - 卡片悬停效果 */
.product__item:hover {
    border-color: var(--header-color-accent-2);
    box-shadow: 0 10px 28px rgba(4, 153, 225, 0.2);
    transform: translateY(-4px);
}

/* 产品展示 - 产品图片容器(固定 4:3 比例) */
.product__item-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f5f5f5;
}

/* 产品展示 - 产品图片(铺满容器) */
.product__item-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* 产品展示 - 悬停时图片轻微放大 */
.product__item:hover .product__item-image {
    transform: scale(1.05);
}

/* 产品展示 - 文字信息区(蓝底白字) */
.product__item-body {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    flex: 1;
    background-color: var(--header-color-accent-2);
    color: #ffffff;
    transition: background-color 0.3s ease;
}

/* 产品展示 - 悬停时加深背景色 */
.product__item:hover .product__item-body {
    background-color: #0380bd;
}

/* 产品展示 - 产品标题 */
.product__item-title {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    /* margin: 0 0 8px; */
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

/* 产品展示 - 产品描述(两行省略) */
.product__item-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 产品展示 - 平板及以下响应式适配(降为 2 列) */
@media screen and (max-width: 1200px) {
    .product__group {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 产品展示 - 平板端响应式适配(标题与分类垂直堆叠) */
@media screen and (max-width: 768px) {
    .product {
        padding: 50px 0 0;
    }

    .product__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 24px;
    }

    .product__list {
        padding-bottom: 50px;
    }
}

/* 产品展示 - 移动端响应式适配(降为 1 列) */
/* @media screen and (max-width: 600px) {
    .product {
        padding: 40px 0 0;
    }

    .product__title-text {
        font-size: 24px;
    }

    .product__category-link {
        padding: 6px 14px;
        font-size: 13px;
    }

    .product__group {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product__list {
        padding-bottom: 40px;
    }
} */