.product-banner {
    position: relative;
    margin: 24px 0 40px 0;
}

.product-banner__image {
    height: 246px;
}

.product-banner__slogan {
    position: absolute;
    top: 10%;
    z-index: 1;
    margin-left: 25px;
}

.product-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 45px;
}

.product-banner__link {
    color: #F2F2F5;
    text-decoration: none;
    position: relative;
}

.product-banner__link:hover {
    color: #e0e0e0;
}

.product-banner__link:not(.product-banner__link--current)::after {
    content: "";
    display: inline-block;
    width: 8px;
}

.product-banner__link--current::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: white;
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.product-banner__text {
    display: flex;
    gap: 8px;
    color: #ffffff;
    flex-direction: column;
}

.product-banner__title {
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: -0.4px;
}

.product-banner__subtitle {
    font-family: 'Sansita Swashed';
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.product-tabs__nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.product-tabs__btn {
    height: 44px;
    padding: 10px 12px;
    min-width: 155px;
    font-size: 15px;
    font-weight: 500;
    color: #2cb5d2;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-tabs__btn--active {
    color: #ffffff;
    border-radius: 8px;
    background-color: #2cb5d2;
    border: 1px solid #2cb5d2;
}

.product-tabs__content {
    display: none;
    animation: fade .3s;
}

.product-tabs__content--active {
    display: block;
}

.product-category {
   display: flex;
   gap: 16px;
   margin-bottom: 24px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.product-category__header {
   position: relative;
   display: flex;
   flex-direction: column;
   width: 330px;
   min-width: 330px;
   height: 310px;
   border: 1px solid #DEE5EF;
   border-radius: 12px;
   overflow: hidden;
   background:
      linear-gradient(355.7deg, rgba(255, 255, 255, 0) 33.1%, rgba(255, 255, 255, 0.8) 80.92%),
      linear-gradient(0deg, #CAEBF1, #CAEBF1);
}

.product-category__image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

.product-category__title {
   font-size: 22px;
   font-weight: 700;
   position: absolute;
   text-align: center;
   padding-left: 32px;
   top: 20px;
   color: #061839;
}

.product-category__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.product-category__item {
    width: 225.5px;
    border: 1px solid #DEE5EF;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    height: 310px;
}

.product-category__item-image {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.product-category__item-body {
   padding: 24px;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.product-category__item-title {
   font-weight: 700;
   font-size: 17px;
   color: #061839;
   line-height: 24px;
   margin-bottom: 0;
   height: 48px;
   /* display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden; */
}

.product-category__item-link {
   display: inline-block;
   border: none;
   color: #0385FF;
   background: none;
   margin-top: auto;
   margin-top: 16px;
   font-weight: 500;
   font-size: 15px;
   text-decoration: none;
   cursor: pointer;
}

.product-category__item-link:hover {
    text-decoration: underline;
}

.product-category__item-link i {
    margin-left: 4px;
}

.m-product-category__title{
    display: none;
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .product-banner__image {
        height: 180px;
    }

    .product-banner__slogan {
        top: 5%;
        margin-left: 15px;
    }

    .product-banner__title {
        font-size: 24px;
    }

    .product-banner__subtitle {
        font-size: 28px;
    }

    .product-category {
        flex-direction: column;
    }

    .product-category__header {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .product-category__list {
        overflow-x: auto;
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .product-category__list::-webkit-scrollbar {
        display: none;
    }

    .product-category__item {
        min-width: 241px;
        flex-shrink: 0;
    }
}