@import url('https://fonts.googleapis.com/css2?family=Days+One&family=Farro:wght@300;400;500;700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    background-color: #F9F9F9;
}

@font-face {
    font-family: 'DaysFont';
    src: url('../fonts/Days.ttf');
}

.container {
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 17.5px;
}

.overflow-hidden {
    overflow: hidden !important;
}

.h-screen {
    height: 100vh !important;
}

.rotate-180 {
    transform: rotate(180deg) !important;
}

/* header start */

.header {
    padding: 40px 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    color: #264065;
    font-size: 24px;
    line-height: 31px;
    text-decoration: none;
    font-family: 'DaysFont', sans-serif;
    text-transform: uppercase;
    user-select: none;
}

.header__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__item-dropMenu {
    position: absolute;
    background-color: white;
    list-style: none;
    max-width: 140px;
    border-top: 1px solid #264065;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    width: 100%;
    margin-top: 10px;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease-out;
    transform: translateY(20px);
    opacity: 0;
}

.header__item-dropMenu.open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.drop_menu span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.drop_menu.open span {
    transform: rotate(180deg);
}

.header__item-dropMenu li {
    padding: 15px 20px;
}

.header__item-dropMenu li:hover {
    background-color: rgba(0, 0, 0, 0.062);
}

.header__item-dropMenu li:hover a {
    color: #264065;
}

.header__item-dropMenu li a,
.header__link {
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    letter-spacing: 0.05em;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: none;
    color: #333333;
}

.header__link.drop_menu {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.header__link.drop_menu span {
    display: flex;
}

.header__link:hover {
    color: #264065;
    opacity: 0.8;
}

.header__actions-items {
    position: relative;
}

.header__actions-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__actions-num {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: white;
    border: 2px solid #307FDD;
    border-radius: 9999px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.header__profile-links,
.header__actions-links {
    color: #264065;
    transition: all 0.3s ease-in-out;
}

.header__profile-links:hover,
.header__actions-links:hover {
    opacity: 0.8;
}

.header__profile-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__actions-responsive {
    display: none;
}

.header__actions-list-res,
.header__profile-list-res {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 1200px) {

    .header__actions,
    .header__profile {
        display: none;
    }

    .header__actions-responsive {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .header__actions-num {
        width: 17px;
        height: 17px;
        font-size: 8.62px;
        right: -6px;
        top: -6px;
    }
}

@media (max-width: 820px) {
    .header__list {
        display: none;
    }

    .header {
        padding: 25px 0 10px 0;
    }

    .header__actions-links span svg,
    .header__profile-links span svg {
        width: 25px;
        height: 25px;
    }

    .header__container {
        margin-bottom: 10px;
    }
}

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #264065;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #264065;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.navbar__menu {
    max-height: 500px;
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:before,
.header .menu-btn:checked~.menu-icon .navicon:after {
    top: 0;
}

.navbar__menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    overflow: hidden;
    background: #F9F9F9;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    position: fixed !important;
    width: 100%;
    top: 60px;
    left: 0;
    z-index: 5;
}

.header__menu-overlay.active {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.436);
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.navbar__menu-item {
    padding: 15px 30px;
}


.navbar__faq-menu li a,
.navbar__menu-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    letter-spacing: 0.05em;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: none;
    color: #333333;
}

.navbar__menu-link.nav_faq {
    background: transparent;
    border: none;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.navbar__faq-menu {
    list-style: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.navbar__faq-menu.active {
    max-height: 500px;
}

.navbar__menu-catalog-rotate-btn {
    display: inline-block;
    transition: transform 0.3s ease-out;
}

.navbar__faq-menu.active .navbar__menu-catalog-rotate-btn {
    transform: rotate(180deg);
}

.navbar__faq-menu li {
    padding: 10px 20px;
}

.navbar__faq-menu li:first-child {
    margin-top: 20px;
}

.navbar__faq-menu li:hover a {
    color: #264065;
    opacity: 0.8;
}

.navbar__faq-menu li a {
    text-decoration: none;
}

.navbar__menu-link.nav_faq span {
    display: flex;
}

.navbar__menu-item:last-child {
    margin-bottom: 30px;
}

.navbar__menu-item:first-child {
    margin-top: 30px;
}

.navbar__menu-item:hover {
    background-color: rgba(0, 0, 0, 0.062);
}

.navbar__menu-item:hover .navbar__menu-link {
    color: #264065;
    opacity: 0.8;
    transition: all .1s ease;
}

.hero__right-mobile {
    display: none;
}

@media (min-width: 820px) {
    .navbar__menu {
        max-height: none;
        display: none;
    }

    .header .menu-icon {
        display: none;
    }

    .header__menu-overlay {
        display: none;
    }
}

/* header end */


/* hero start  */

/* Base styles for hero container and layout */
.hero__container {
    display: flex;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero__left {
    max-width: 657px;
    grid-column: span 2;
}

.hero__right {
    max-width: 919px !important;
    grid-column: span 3;
    transform: translateX(50px);
}

.hero__left-btns {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.hero__left-btns-first,
.hero__left-btns-second,
.hero__left-btns-third {
    padding: 6px 12px;
    font-size: 12px;
    line-height: 16.2px;
    text-decoration: none;
    border-radius: 5px;
}

.hero__left-btns-first {
    color: #00AD48;
    background-color: white;
}

.hero__left-btns-second {
    color: white;
    background-color: #00AD48;
}

.hero__left-btns-third {
    color: white;
    background-color: #307FDD;
}

/* Star ratings styles */
.hero__left-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hero__left-stars-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.hero__left-stars-rank {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
}

.hero__title {
    color: #264065;
    font-family: 'DaysFont', sans-serif;
    font-size: 68px;
    line-height: 71.4px;
    text-transform: uppercase;
}

.hero__text {
    color: #333333;
    font-size: 34px;
    font-weight: 600;
    line-height: 45.9px;
    margin-bottom: 50px;
}

.hero__left_bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero__left__price {
    color: #333333;
    font-size: 34px;
    font-weight: 600;
    line-height: 45.9px;
}

.hero__left_bottom-btn-catalog,
.hero__left_bottom-btn {
    border-radius: 9999px;
    transition: opacity 0.2s;
}

.hero__left_bottom-btn-catalog {
    padding: 20px 35px;
    font-size: 18px;
    color: white;
    background-color: #F2722C;
    text-decoration: none;
}

.hero__left_bottom-btn {
    width: 54px;
    height: 54px;
    background-color: #264065;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__left_bottom-btn-catalog:hover,
.hero__left_bottom-btn:hover {
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .hero {
        padding: 28px 0;
    }

    .hero__title {
        font-size: 50px;
    }

    .hero__text {
        font-size: 30px;
        line-height: 30px;
    }

    .hero__left_bottom-btn {
        width: 45px;
        height: 45px;
    }

    .hero__left_bottom-btn-catalog {
        padding: 17px 18px;
    }

    .hero__left__price {
        font-size: 26px !important;
    }

    .hero__right {
        max-width: 800px !important;
        width: 100%;
    }
}

@media (max-width: 1050px) {
    .hero__title {
        font-size: 40px;
        line-height: 40px;
    }

    .hero__text {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero__left__price {
        font-size: 20px !important;
    }
}

.hero_price-mobile {
    display: none;
}

@media (max-width: 900px) {
    .hero__container {
        flex-direction: column;
        gap: 40px;
    }

    .hero__title {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 10px;
    }

    .hero__right {
        display: none !important;
    }

    .hero__right-mobile {
        display: flex;
        max-width: 500px;
        width: 100%;
    }

    .hero__left-stars {
        margin-bottom: 10px;
    }

    .hero_price-mobile {
        display: flex;
        flex-direction: column;
    }

    .hero_price__btns {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .hero__left_bottom {
        display: none;
    }

    .hero_price-mobile-title {
        font-size: 34px;
        font-weight: 600;
        line-height: 45.9px;
    }

    .hero__left_bottom-btn-catalog {
        padding: 12px 30px;
    }

    .hero__left_bottom-btn {
        width: 36px;
        height: 36px;
    }

    .capsule-slide .btn-icon {
        width: 25px !important;
        height: 25px !important;
        right: 0 !important;
    }

    .capsule-slide .btn-icon svg {
        width: 15px;
    }
}

@media (max-width: 1332px) {
    .hero__left_bottom-btn-catalog {
        font-size: 12px;
    }

    .hero__left__price {
        font-size: 30px;
    }
}

/* hero end  */


/* slider start  */

.main-slider {
    margin-bottom: 30px;
}

.main-slider {
    padding-top: 50px;
}

.swiper-pagination {
    margin: 0 auto;
    max-width: 394px;
    display: flex;
    justify-content: space-between;
    position: static !important;
}

.swiper-pagination span {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: rgba(102, 102, 102, 1);
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #F2722C;
}

.capsule-slide {
    height: 132px;
    display: flex;
    align-items: center;
    max-width: 407px;
    background: #FFFFFF;
    border-radius: 70px;
    position: relative;
}

.capsule-slide img:not(.btn > img) {
    height: 150px;
    position: absolute;
    left: 0;
    z-index: 333;
    bottom: 0;
    border-radius: 0 0 0 70px;
}

.capsule-slide p {
    font-size: 14px;
    font-family: "IBM Plex Sans", serif;
    width: 159px;
    margin-left: 160px;
}

.capsule-slide .btn-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -25px;
    z-index: 333;
}

.btn-icon {
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #264065;
    border-radius: 50px;
    box-shadow: 0px 15px 23px 0px #26406540;
}


.btn-icon-primary {
    background-color: #307fdd;
}

.btn-icon:hover {
    background-color: #264065;
    transform: scale(1.05);
}

/* slider end  */


/* category card start  */

.category_card {
    padding-top: 90px;
    padding-bottom: 60px;
}

.category_card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 1024px) {
    .category_card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


.category_card_card-ac {
    padding: 24px 12px;
    border: 1px solid #E5E8ED;
    border-radius: 15px;
    background-color: #FFFFFF;
    display: flex;
    gap: 12px;
    position: relative;
}

.category_card_card-ac:hover {
    box-shadow: 0px 4px 4px -4px #1E212C08,
        0px 12px 10px -6px #9A9CA50A,
        0px 30px 24px -10px #9A9CA50D,
        0px 80px 80px -20px #9A9CA514;
}

.category_card_card-logo {
    color: #264065;
    transition: all .2s ease;
}

.category_card_card-ac:hover .category_card_card-logo {
    color: #307FDD;
}

.category_card-title {
    color: #333333;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 10px;
    font-weight: normal;
}

.category_card-title_mobile {
    color: #333333;
    font-size: #333333;
    font-weight: normal;
    display: none;
}

.category_card_card-top-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category_card-type_btnContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.category_card-type_btn {
    padding: 8px;
    color: #666666;
    font-size: 12px;
    background-color: #F9F9F9;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
}

.category_card-type_btn.active {
    background-color: #307FDD !important;
    color: white !important;
}

.category_explore-btn {
    position: absolute;
    background: #307FDD;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 15px 23px 0px #26406540;
    border-radius: 9999px;
    right: 0;
    bottom: -25px;
    transform: scale(0.8);
    transition: all .2s ease;
    opacity: 0;
}

.category_card_card-ac:hover .category_explore-btn {
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 768px) {
    .category_card-title_mobile {
        display: block;
    }

    .category_card-title {
        display: none;
    }

    .category_card_card-ac {
        display: flex;
        flex-direction: column;
    }

    .category_card-container {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* category card end*/

/* Best offers start */

.best_offers {
    padding-top: 60px;
    padding-bottom: 90px;
    text-align: center;
}

.slider.swiper-wrapper {
    text-align: left;
}

.swiper_product {
    width: 100%;
    border-radius: 10px;
    position: relative;
    object-fit: cover;
    margin-bottom: 10px;
}

.swiper_product img {
    margin-bottom: 10px;
}

.main_offer-top-active {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 6px;
}

.swiper_product-pagination {
    padding: 0 20px;
}

.main_offer-top-active_first {
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    background-color: #00AD48;
    border-radius: 5px;
}

.main_offer-top-active-rek {
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    background-color: #307FDD;
    border-radius: 5px;
}

.best__offers-title {
    color: #264065;
    font-size: 42px;
    font-family: 'DaysFont';
    margin-bottom: 42px;
    text-transform: uppercase;
    text-align: left;
}

.main_offer-text-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.main_offer-texts-art {
    font-size: 12px;
    font-weight: 400;
    line-height: 16.2px;
    color: #333333;
}

.main_offer-texts-abo {
    color: #00AD48;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.2px;
    padding: 6px 12px;
    background-color: #fff;
    border-radius: 5px;
}

.main_offer-texts-level {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_offer-texts-stars {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.main_offer-texts-rank {
    color: #666666;
    font-size: 14px;
}

.main_offer-texts-text {
    color: #2A2F2F;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.6px;
    margin-bottom: 8px;
}

.main_offer-texts-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_offer-texts-prices {
    display: flex;
    align-items: start;
    gap: 10px;
}

.main_offer-texts_main-price {
    color: #264065;
    font-size: #264065;
    font-weight: 500;
}

.main_offer-texts_old_price {
    color: #666666;
    font-size: 12px;
    text-decoration: line-through;
}

.main_offer-slide-slider {
    max-width: 250px;
    width: 100%;
}

.main_offer-slide-slider-catalog {
    max-width: 318.33px;
    width: 100%;
}

.main_offer-slide-slider-catalog .swiper_product-wrapper.slider.swiper-wrapper {
    max-width: 250px;
    width: 100%;
    margin: auto;
}

.main_offer-texts_addCard {
    background-color: transparent;
    border: none;
    outline: none;
}

.best_offers_btn {
    color: #264065;
    font-size: 18px;
    font-weight: 400;
    line-height: 18.9px;
    padding: 20px 30px;
    border: 1px solid #264065;
    border-radius: 9999px;
    background-color: transparent;
    cursor: pointer;
    transition: .2s ease;
}

.best_offers_btn:hover {
    color: white;
    background-color: #264065;
}

.best_offers_btn:active {
    opacity: 0.8;
}

.best_offers-pagination.swiper-pagination {
    margin-top: 60px;
}

@media (max-width: 900px) {
    .best__offers-title {
        font-size: 24px;
        line-height: 24px;
    }

    .best_offers_btn {
        display: none;
    }
}

/* Best offers end  */

/* Logos start  */

.logos {
    padding: 0 0 90px;
}

.logos_swiper-slider {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.logos_slide.swiper-slide,
.logos_slide-img {
    max-width: 171px;
    width: 100%;
    border-radius: 15px;
}

/* Logos end  */


/* blog start  */

.blog {
    padding-bottom: 90px;
}

.blog_container {
    background-color: #fff;
    padding: 60px;
    border-radius: 15px;
    border: 1px solid #E5E8ED;
}

.blog__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.blog_title {
    color: #264065;
    font-size: 42px;
    font-weight: 400;
    line-height: 44.1px;
    font-family: 'DaysFont';
}

.blog_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #264065;
    padding: 10px 30px;
    border-radius: 9999px;
    border: 1px solid #264065;
    text-decoration: none;
    font-size: 12px;
    transition: all .2s ease;
}

.blog_btn:hover {
    color: white;
    background-color: #264065;
}

.blog_btn:active {
    opacity: 0.8;
}

.blog__cards-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .blog__cards-main {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .blog_title {
        font-size: 24px;
    }

    .blog_btn {
        padding: 10px 15px;
    }

    .blog_container {
        padding: 15px;
    }
}

@media (max-width: 1054px) {
    .blog__cards-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {

    .blog__card {
        max-width: 392px;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .blog__card:hover .blog__img-div {
        max-height: 439px;
        height: 100%;
    }

    .blog__card_overlay {
        background: linear-gradient(360deg, rgba(0, 0, 0, 0) -1.07%, rgba(0, 0, 0, 0.84) 99.56%);
        max-height: 439px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        transition: opacity 0.3s ease-out;
        z-index: 2;
    }

    .blog__card:hover .blog__card_overlay {
        opacity: 1;
    }


    .blog__card:hover .blog__texts {
        background-color: transparent;
        transform: translateY(-430px);
        color: white;
    }

    .blog__card:hover .blog__texts .blog_heading-text,
    .blog__card:hover .blog__texts .blog_heading-time,
    .blog__card:hover .blog__texts .blog_card_title,
    .blog__card:hover .blog__texts .blog_card_text,
    .blog__card:hover .blog__texts .blog_card_button {
        color: white;
    }

    .blog__img-div {
        max-height: 202px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;
        transition: .3s ease-out;
    }

    .blog__texts {
        background-color: white;
        padding: 24px;
        transition: all .3s ease-out;
        position: absolute;
        max-width: 392px;
        z-index: 3;
    }
}

@media (max-width: 900px) {

    .blog__img-div img {
        max-height: 202px;
        height: 100%;
        max-width: 900px;
        width: 100%;
        object-fit: cover;
        overflow: hidden;
    }

    .blog__img-div {
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        overflow: hidden;
    }

    .blog__texts {
        padding: 10px;
    }
}


.blog_heading-text {
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    line-height: 12.6px;
    margin-bottom: 5px;
}

.blog_heading-time {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    margin-bottom: 18px;
}

.blog_card_title {
    color: #264065;
    font-size: 18px;
    font-weight: 500;
    line-height: 24.3px;
    margin-bottom: 8px;
}

.blog_card_text {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    margin-bottom: 18px;
}

.blog_card_button {
    color: #264065;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    letter-spacing: 0.05em;
    text-decoration: none;
}

/* blog end  */

/* about company start  */

.company {
    padding-bottom: 90px;
}

.company__container {
    background-color: #307FDD;
    padding: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.company__left {
    max-width: 600px;
    width: 100%;
}

.company__title {
    color: white;
    font-family: 'DaysFont';
    font-size: 42px;
    font-weight: 400;
    line-height: 44.1px;
    margin-bottom: 42px;
    text-transform: uppercase;
}

.company__text {
    color: white;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 42px;
}

.company__time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.company__time_elements {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.6px;
    margin-bottom: 42px;
}

.company__bottom-btn-but {
    color: white;
    font-size: 12px;
    font-weight: 400;
    line-height: 12.6px;
    padding: 12px 30px;
    border: 1px solid #FFFFFF;
    border-radius: 9999px;
    text-decoration: none;
}


.company__right,
.company__right img {
    max-width: 600px;
    width: 100%;
}

@media (max-width: 1200px) {
    .company__time_elements {
        font-size: 14px !important;
    }

    .company__text {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .company__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .company__right img {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .company__container {
        display: flex;
        flex-direction: column;
        padding: 30px 15px;
    }
}

/* about company end */


/* review start  */

.review {
    padding-bottom: 90px;
}

.review__container {
    padding: 60px;
    border: 1px solid #E5E8ED;
    border-radius: 15px;
    background-color: white;
}

.review_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.review__title-main {
    color: #264065;
    font-family: 'DaysFont';
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 400;
    line-height: 44.1px;
}

.review__btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.review_first-btn {
    padding: 12px 30px;
    color: #333333;
    font-size: 12px;
    border: 1px solid #264065;
    border-radius: 9999px;
    text-decoration: none;
    transition: all .2s ease;
}

.review_first-btn:hover {
    color: white;
    background-color: #264065;
}

.review_first-btn:active {
    opacity: 0.8;
}

.review_second-btn {
    padding: 12px 30px;
    color: #264065;
    font-size: 12px;
    text-decoration: none;
}

.review_second-btn:hover {
    text-decoration: underline;
}

.review__cards-con {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review__card {
    background-color: #F9F9F9;
    padding: 24px;
    border-radius: 15px;
}

.review__heading {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
}

.review__heading.mb {
    margin-bottom: 18px;
}

.review__card_title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #264065;
    font-size: 18px;
    font-weight: 500;
    line-height: 24.3px;
    margin-bottom: 8px;
}

.review__card_text {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    margin-bottom: 18px;
}

.review__card-btn {
    color: #264065;
    font-size: #264065;
    border: none;
    outline: none;
    background-color: transparent;
}

.review__btns-mobile {
    display: none !important;
}

@media (max-width: 1200px) {
    .review__cards-con {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .review__cards-con {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 12px;
    }

    .review__container {
        padding: 15px;
    }

    .review__title-main {
        font-size: 24px;
    }

    .review__btns {
        display: none;
    }

    .review__btns-mobile {
        display: flex !important;
    }
}

/* review start  */


/* coming soon start  */

.coming_soon {
    padding: 90px 0;
}

.coming_soon-container {
    padding: 60px;
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #E5E8ED;
}

.coming_soon_title {
    color: #264065;
    font-family: 'DaysFont';
    font-size: 42px;
    font-weight: 400;
    line-height: 44.1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.coming_soon_cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.coming_soon_card-big {
    display: flex;
    max-width: 600px;
    width: 100%;
    border: 1px solid #F9F9F9;
    padding: 24px;
    position: relative;
    border-radius: 15px;
}

.coming_soon-card-heading {
    color: #666666;
    font-size: 12px;
    margin-bottom: 5px;
}

.coming_soon-card-heading-text {
    color: #264065;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.coming_soon_card_title {
    color: #264065;
    font-family: 'DaysFont';
    font-size: 56px;
    font-weight: 400;
    line-height: 58.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.coming_soon_card_text {
    color: #333333;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
}

.coming_soon-right {
    transform: translateX(-100px);
}

.coming_soon-main-img,
.coming_soon_first-mini {
    max-width: 288px;
    width: 100%;
    border-radius: 15px;
    position: relative;
}

.coming_soon-main-img img {
    max-width: 288px;
    width: 100%;
    border-radius: 15px;
}

.coming_soon_mini-texts {
    position: absolute;
    bottom: 50px;
    left: 24px;
    right: 24px;
}

.coming__soon-mini_heading {
    color: white;
    font-size: 12px;
    font-weight: 400;
    line-height: 12.6px;
}

.coming__soon-mini_heading.margin-bottom {
    margin-bottom: 10px;
}

.coming__soon-mini_title {
    font-family: 'DaysFont';
    text-transform: uppercase;
    color: white;
    font-size: 24px;
    font-weight: 400;
    line-height: 25.2px;
}

.coming_soon_cards-mini {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1277px) {
    .coming_soon_cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .coming_soon_title {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .coming_soon-container {
        padding: 15px;
    }

    .coming__soon-mini_title {
        font-size: 14px;
        line-height: 14px;
    }

    .coming__soon-mini_heading {
        font-size: 10px;
    }

    .coming_soon_card_title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 8px;
        max-width: 157px;
    }

    .coming_soon_title {
        font-size: 24px;
        margin-bottom: 24px;
        text-align: left;
    }
}

/* coming soon end  */


/* mini blog start  */
.mini_blog {
    padding-bottom: 90px;
}

.mini_blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mini_blog-card:first-child {
    background-image: url(../img/mini-blog/1.png);
}

.mini_blog-card:nth-child(2) {
    background-image: url(../img/mini-blog/2.png);
}

.mini_blog-card:nth-child(3) {
    background-image: url(../img/mini-blog/3.png);
}

.mini_blog-card {
    max-width: 432px;
    width: 100%;
    background-size: cover;
    height: 240px;
    border-radius: 15px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
}

.mini_blog-card-texts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.mini_blog-title {
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 24.3px;
}

.mini-blog-switch__button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #264065;
    border-radius: 9999px;
    cursor: pointer;
    transition: all .3s ease-out;
}

.mini_blog-card:hover .mini-blog-switch__button {
    transform: translateX(10px);
}

/* mini blog end  */


/* footer start  */
.footer__container-top {
    padding: 42px;
    background-color: #212121;
}

.footer__container-top-main {
    max-width: 1029px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer__container-top-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 32.4px;
}

.footer__container-form {
    display: flex;
    align-items: center;
    max-width: 450px;
    width: 100%;
}

.footer__container-inp {
    padding: 20px;
    background-color: #F9F9F9;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
    outline: none;

}

.footer__container-form-btn {
    padding: 20px;
    background-color: #307FDD;
    color: white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
    cursor: pointer;
}

.footer__container {
    padding: 60px 0;
    background-color: #333333;
}

.footer__container-links {
    max-width: 1240px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer__container-links-main {
    padding-bottom: 32px;
    border-bottom: 1px solid #FFFFFF14;
    margin-bottom: 32px;
}

.footer__container-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_link-title,
.footer__container-category-item {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
}

.footer_link-title {
    margin-bottom: 12px;
}

.footer_link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_link-link {
    text-decoration: none;
    color: #999999;
    font-size: 16px;
    transition: all .2s ease;
}

.footer_link-link:hover {
    opacity: 0.8;
}

.footer__adress-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__adress-list-mobile {
    display: none;
}

.footer__adress-heading {
    color: #999999;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.2px;
}

.footer__adres-text {
    color: white;
    text-decoration: none;
    font-size: 20px;
    line-height: 27px;
}

.footer__adres-text.tel {
    font-size: 24px;
    font-weight: 700;
}

.footer_text {
    text-align: center;
    color: #999999;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.2px;
}

.footer_texts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 760px) {
    .footer_link-link {
        font-size: 14px;
    }

    .footer_link-title,
    .footer__container-category-item {
        font-size: 16px;
    }

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

    .footer__container-top-main {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer__container-form {
        max-width: 100%;
        width: 100%;
    }

    .footer__container-top {
        padding: 30px 15px;

    }

    .footer__container-inp {
        width: 100%;
    }
}


@media (max-width: 900px) {
    .footer__container-top-title {
        font-size: 20px;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer__adress-list {
        display: none;
    }

    .footer__adress-list-mobile {
        display: block;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
        list-style: none;
        margin-top: 32px;
    }
}

/* footer end  */

.catalog_hero {
    padding-bottom: 30px;
}

.catalog_hero-container {}

.catalog_top-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.catalog_top-btn {
    background-color: white;
    padding: 8px;
    border-radius: 5px;
    color: #666666;
    font-size: 12px;
    text-decoration: none;
}

.catalog_top-btn.active {
    background-color: #F2722C !important;
    color: white !important;
}

.catalog_hero-textss {
    display: flex;
    align-items: end;
    gap: 10px;
}

.catalog_hero-title {
    color: #264065;
    font-size: 68px;
    font-family: "DaysFont";
    text-transform: uppercase;
    line-height: 60px;
}

.catalog_hero-num {
    color: #666666;
    font-size: 20px;
}


/* catalog navigation start  */
.category_navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category_navigation-item {
    max-width: 253.71px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
    border-radius: 9999px;
    background-color: #fff;
    position: relative;
}

.category_navigation-item:hover span {
    color: #307FDD;
}

.category_navigation-item span {
    color: #264065;
    transition: all .1s ease-out;
}

.category_navigation-name {
    color: #333333;
    font-size: 18px;
}

.cancel_button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #264065;
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    position: absolute;
    right: -25px;
    box-shadow: 0px 15px 23px 0px #26406540;
    cursor: pointer;
    transform: scale(0.8);
    transition: all .2s ease-out;
    opacity: 0;
}

.category_navigation-item:hover .cancel_button {
    transform: scale(1);
    opacity: 1;
}

.category_navigation__pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* catalog navigation end  */

/* product list start  */


/* Default styles */
.product-list {
    padding-bottom: 30px;
}

.product-list__container-main {
    position: relative;
    max-width: 1240px;
    margin: auto;
}

.product-list__container {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1123px;
    margin: auto;
    overflow-x: hidden;
}

.product-list__items {
    display: flex;
    transition: transform 0.5s ease;
}

.product-list__item {
    border: 1px solid #E5E8ED;
    background-color: white;
    padding: 20px 60px;
    max-width: 1113px;
    width: 100%;
    margin: 0 10px;
    justify-content: space-between;
    gap: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.product-list__title {
    font-family: "DaysFont";
    font-size: 36px;
    font-weight: 400;
    line-height: 37.8px;
    color: #264065;
    margin-bottom: 5px;
}

.product-list__description {
    color: #333333;
    font-weight: bold;
    font-size: 24px;
    line-height: 32.4px;
}

.product-list__img {
    max-width: 346px;
    width: 100%;
}

.product-list-btn-left,
.product-list-btn-right {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.product-list-btn-left {
    left: 10px;
}

.product-list-btn-right {
    right: 10px;
}


@media (max-width: 767px) {
    .product-list__container {
        max-width: 100%;
        padding: 0 15px;
    }

    .product-list__item {
        display: block;
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .product-list__title {
        font-size: 20px;
        line-height: 24px;
    }

    .product-list__description {
        font-size: 16px;
        line-height: 22px;
    }

    .product-list__img {
        margin: 0 auto;
    }

    .product-list-btn-left,
    .product-list-btn-right {
        display: none;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .product-list__container {
        max-width: 100%;
        padding: 0 20px;
    }

    .product-list__item {
        display: flex;
        flex-direction: column;
        padding: 20px 20px;
        margin-bottom: 20px;
    }

    .product-list__title {
        font-size: 24px;
        line-height: 28px;
    }

    .product-list__description {
        font-size: 20px;
        line-height: 26px;
    }

    .product-list-btn-left,
    .product-list-btn-right {
        display: block;
    }
}


/* product list end  */


/* shop start  */

.shop {
    padding-bottom: 90px;
}

.shop__container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}

.shop__filter {
    max-width: 317px;
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
}

.shop-filter_title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #264065;
    font-family: 'DaysFont';
    font-size: 24px;
    font-weight: 400;
    line-height: 25.2px;
    margin-bottom: 10px;
}

.shop-search_group {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    gap: 15px;
    background-color: #F9F9F9;
    margin-bottom: 10px;
}

.shop-search_input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    background-color: transparent;
    border: none;
    outline: none;
    color: #264065;
}

.shop-search_input::placeholder {
    font-size: 14px;
    line-height: 18.9px;
    color: #264065;
}


.shop-filter_price {
    margin-bottom: 10px;
}

/* Container styles */
.our__offers {
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    margin-bottom: 10px;
}

.filter__title {
    color: #252B42;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
}

.our__offers-select-btn {
    display: flex;
    align-items: center;
    padding: 11px 10px;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    background-color: #F9F9F9;
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
    color: #737373;
    font-size: 14px;
}

.our__offers-select-btn span {
    display: flex;
}

.dropdown-menu {
    position: absolute;
    max-width: 257px;
    width: 100%;
    margin-top: 5px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    background-color: #FFFFFF;
    display: none;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: scaleY(1);
}

.dropdown-item {
    padding: 10px;
    font-size: 16px;
    color: #252B42;
    cursor: pointer;
    transition: background-color 0.3s ease;
    list-style: none;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.assortment {
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    margin-bottom: 10px;
}

.assortment__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
}

.assortment__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.assortment__icon {
    display: flex;
    transition: transform 0.3s ease;
}

.assortment__button.open .assortment__icon {
    transform: rotate(180deg);
}

.assortment__options {
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.assortment__button.open+.assortment__options {
    max-height: 200px;
    gap: 5px;
    margin-top: 10px;
}

.assortment__option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.assortment__checkbox {
    border: 2px solid #307FDD;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    appearance: none;
    cursor: pointer;
    position: relative;
}

.assortment__checkbox:checked {
    background-color: #307FDD;
    border-color: #307FDD;
}

.assortment__checkbox:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 9px;
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.8539 0.647321C11.9005 0.693767 11.9374 0.748942 11.9626 0.809687C11.9878 0.870433 12.0008 0.935554 12.0008 1.00132C12.0008 1.06709 11.9878 1.13221 11.9626 1.19295C11.9374 1.2537 11.9005 1.30888 11.8539 1.35532L4.8539 8.35532C4.80745 8.40188 4.75228 8.43883 4.69153 8.46403C4.63079 8.48924 4.56567 8.50221 4.4999 8.50221C4.43413 8.50221 4.36901 8.48924 4.30827 8.46403C4.24752 8.43883 4.19234 8.40188 4.1459 8.35532L0.645899 4.85532C0.552012 4.76143 0.499268 4.6341 0.499268 4.50132C0.499268 4.36855 0.552012 4.24121 0.645899 4.14732C0.739786 4.05343 0.867123 4.00069 0.999899 4.00069C1.13267 4.00069 1.26001 4.05343 1.3539 4.14732L4.4999 7.29432L11.1459 0.647321C11.1923 0.600758 11.2475 0.563815 11.3083 0.538609C11.369 0.513402 11.4341 0.500427 11.4999 0.500427C11.5657 0.500427 11.6308 0.513402 11.6915 0.538609C11.7523 0.563815 11.8075 0.600758 11.8539 0.647321Z" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.assortment__option-text,
.assortment__option-count {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
}

.assortment__option-count {
    margin-left: auto;
}

.inventory {
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    margin-bottom: 10px;
}

.inventory__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    color: #252B42;
    font-weight: 500;
    font-size: 18px;
}

.inventory__icon {
    display: flex;
    transition: transform 0.3s ease;
}

.inventory__button.active .inventory__icon {
    transform: rotate(180deg);
}

.inventory__list {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: all .2s ease;
}

.inventory__button.active+.inventory__list {
    max-height: 299px;
}

.inventory__list-item {
    padding: 10px 0;
    border-bottom: 1px solid #E8E8E8;
    color: #333;
    font-size: 16px;
}

.inventory__list-item:last-child {
    border-bottom: none;
}

.product-filter {
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-filter__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    color: #252B42;
    font-weight: 500;
    font-size: 18px;
}

.product-filter__icon {
    display: flex;
    transition: transform 0.3s ease;
}

.product-filter__list {
    list-style: none;
    padding-left: 0;
    margin-top: 0px;
    max-height: 0;
    overflow: hidden;
    transition: all .2s ease;
}

.product-filter__list-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-filter__list-item label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product_radio-count {
    margin-left: auto;
    color: #666666;
    font-size: 14px;
}

.product-filter__radio-title {
    color: #666666;
    font-size: 14px;
}

.product-filter__item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.product-filter__radio {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #007BFF;
    position: relative;
    appearance: none;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.product-filter__radio:checked {
    background-color: #007BFF;
    border-color: #007BFF;
}

.product-filter__radio:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
}

.product-filter__radio-count {
    font-size: 14px;
    color: #555;
    margin-left: auto;
}

.product-filter__list-item label {
    font-size: 16px;
    color: #252B42;
}

.product-filter__list-item span {
    color: #6C757D;
}

.product-filter__list-item label {
    font-size: 16px;
    color: #252B42;
}

.product-filter__list-item span {
    color: #6C757D;
}

.product-filter__button.active+.product-filter__list {
    max-height: 299px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-filter__button.active .product-filter__icon {
    transform: rotate(180deg);
}




.shop__products {
    max-width: 1003px;
    width: 100%;
}

.shop__products-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.shop__products-sort__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop__products-sort__label {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
}

.shop__products-sort__select {
    color: #264065;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.shop__products-sort__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop__products-sort__button {
    background-color: transparent;
    border: none;
    color: #264065;
    padding: 4px;
    background-color: white;
    border-radius: 5px;
}

.shop__products-sort__button:first-child {
    color: #307FDD;
    padding: 4px;
    background-color: #E9E9E9;
    border-radius: 5px;
}


.search-history {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    color: #666666;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 9999px;
    padding: 6px 10px;
}

.icon-close {
    display: flex;
    cursor: pointer;
}

.catalog__main-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.catalog_products-btn-add {
    text-align: center;
}

.catalog_products-btn-add button {
    color: #264065;
    font-size: 18px;
    padding: 20px 30px;
    border: 1px solid #264065;
    border-radius: 9999px;
    background-color: transparent;
    transition: .2s ease-out;
    cursor: pointer;
    margin-bottom: 15px;
}

.catalog_products-btn-add button:hover {
    background-color: #264065;
    color: white;
}

.catalog_products-btn-add button:active {
    opacity: 0.8;
}


.pagination__shop-product {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.pagination__button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.pagination__button__prev {
    color: #264065;
}

.pagination__button__page {
    color: #264065;
    font-size: 18px;
    font-weight: 400;
}

.pagination__button__page:nth-child(3) {
    border: 1px solid #264065;
    border-radius: 9999px;
}

.pagination__dots {
    color: #264065;
}

.pagination__button__next {
    color: white;
    background-color: #252B42;
    border-radius: 9999px;
    box-shadow: 0px 15px 23px 0px #26406540;
}

.special-clothing {
    padding-bottom: 90px;
}

.special-clothing__container {
    padding: 60px;
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #E5E8ED;
}

.special-clothing__title {
    color: #264065;
    font-family: 'DaysFont';
    font-size: 24px;
    font-weight: 400;
    line-height: 25.2px;
    margin-bottom: 15px;
}

.special-clothing__subtitle {
    color: #264065;
    font-size: 24px;
    font-weight: 700;
    line-height: 32.4px;
    margin-bottom: 15px;
}

.special-clothing__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.special-clothing__item {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.6px;
}

.special-clothing__advantages-title {
    color: #264065;
    font-size: 24px;
    font-weight: 700;
    line-height: 32.4px;
    margin-bottom: 15px;
}

.special-clothing__advantages {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.special-clothing__advantage {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 398px;
    width: 100%;
}

.special-clothing__icon {
    display: flex;
}

.special-clothing__advantage-title {
    color: #264065;
    font-size: 18px;
    font-weight: 400;
    line-height: 18.9px;
}

.special-clothing__advantage-description {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.6px;
}

/* 
.shop-filter_price {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.shop-filter_price_title {
    font-size: 18px;
    margin-bottom: 10px;
}

.range-slider {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #E6E6E6; 
    border-radius: 5px;
    outline: none;
    position: absolute;
    pointer-events: none;
    margin: 0; 
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #307FDD;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    pointer-events: auto;
    box-shadow: none; 
    outline: none; 
    border: 3px solid white; 
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #307FDD;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    box-shadow: none;
    outline: none;
    border: 3px solid white;
}

.range-values {
    position: absolute;
    top: -40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.range-value {
    font-size: 14px;
    font-weight: bold;
    background: #1a3e6f;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
}

.range-value.active {
    opacity: 1;
    transform: translateY(0);
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.price-inputs input {
    width: 48%;
    padding: 10px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    text-align: center;
} */


/* shop end  */