* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: unset;
    outline: none;
}

img {
    width: 100%;
}

input, button, textarea, select {
    font: inherit;
    outline: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

input:focus, textarea:focus {
    outline: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.scroll-element {
    position: relative;
    scroll-margin-top: 110px;
}

body {
    /* font-family: "Roboto", sans-serif; */
    font-family: "Rubik", sans-serif;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: linear-gradient(to right, #434343 0%, black 100%);
    /* background-color: black; */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    /* box-shadow: 1px 1px 8px #292929; */
    border: 2px solid #676767;
}

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

.header-wrap .navigation .desktop-nav-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-wrap .navigation .desktop-nav-list .desktop-nav-item a {
    color: white;
    font-size: 14px;
}

.header-wrap .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.burger {
    width: 28px;
    height: 28px;
    display: none;
    justify-content: space-around;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 100%;
    height: 2px;
    background-color: white;
}

.navigation {
    display: flex;
}

.mobile-nav-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}


.mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-bottom: 30px; */
    padding-top: 35px;
}

.mobile-nav-item a {
    color: white;
    font-size: 14px;
    text-align: center;
}

.mobile-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* .offers-header {
    position: sticky;
	z-index: 4;
	top: 29px;
}

.offers-header-top {
    text-align: center;
    color: #121212;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.offers-header-bottom-mobile {
    background-color: #ceff5a;
}

.offers-header-bottom-mobile .offers-header-swiper {
    max-height: 27px;
	height: 100%;
}

.mobile-offer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #121212;
    line-height: 1;
    height: 100%;
}

.offers-header-bottom-mobile .offers-header-swiper .swiper-button-next,
.offers-header-bottom-mobile .offers-header-swiper .swiper-button-prev {
    color: #121212;
}

.offers-header-bottom-mobile .offers-header-swiper .swiper-button-next:after,
.offers-header-bottom-mobile .offers-header-swiper .swiper-button-prev:after {
    font-size: 15px;
} */

.cat-menu {
    padding: 20px 0;
    margin-top: 25px;
}

.cat-menu-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cat-menu-item {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    padding: 4px;
    border-radius: 4px;
    background-color: #ceff5a;
    color: black;
    box-shadow: 1px 1px 5px #777777;
    /* text-align: center; */
}


.products-section {
    padding: 30px 0;
}

.products-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

.product-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    min-width: 0;
}

.product-item .swiper {
    border-radius: inherit;
}

.product-item .swiper .swiper-wrapper .swiper-slide img {
    aspect-ratio: 1/1.3;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.product-item .product-item-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
}

.text-sizes {
    display: none;
}

.text-colors {
    /* display: none; */
}

.product-item .product-item-bottom .product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.product-item .product-item-bottom p {
    font-size: 13px;
    /* font-weight: 600; */
    /* margin-bottom: 10px; */
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
}

.product-item .product-item-bottom .product-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 13px;
    margin-bottom: 20px;
}

.product-item .product-item-bottom .product-prices .new-price {
    white-space: nowrap;
    font-weight: 500;
}

.product-item .product-item-bottom .product-prices .old-price {
    color: gray;
    text-decoration: line-through;
    white-space: nowrap;
    font-weight: 300;
}

.product-item .product-item-bottom .product-btn {
    border-radius: 5px;
    border: 1px solid black;
    background-color: #ceff5a;
    padding: 13px 45px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.how-order {
    padding: 40px 0;
}

.how-order-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    line-height: normal;
    color: rgb(28, 75, 179);
    font-weight: 600;
    margin-bottom: 30px;
}

.how-order-title span {
    color: black;
    font-size: 30px;
    display: block;
}

.order-steps {
    max-width: 600px;
    margin: 0 auto 35px;
}

.order-steps-item {
    display: flex;
    align-items: center;
}

.order-steps-item:not(:last-child) {
    margin-bottom: 20px;
}

.order-steps-item img {
    display: block;
    margin-right: 30px;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.order-steps-item .steps-wrap h4 {
    font-size: 21px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 10px;
}

.order-steps-item .steps-wrap p {
    line-height: normal;
    font-size: 13px;
    font-weight: 300;
}

.how-order .button {
    background-color: #333333;
    color: white;
    border-radius: 30px;
    padding: 15px 30px;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 190px;
}

.reviews {
    padding: 30px 0 40px;
}

.reviews-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    line-height: normal;
    color: black;
    font-weight: 600;
    margin-bottom: 45px;
}

.review-swiper {
    max-width: 500px;
    margin: 0 auto;
    /* padding-bottom: 50px; */
}

.review-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-swiper .swiper-wrapper .swiper-slide img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

.review-swiper .swiper-wrapper .swiper-slide .review-text{
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.3;
    width: 75%;
}

.review-swiper .swiper-wrapper .swiper-slide .review-name{
    color: black;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
}

.review-swiper .swiper-wrapper .swiper-slide span{
    color: #666666;
    font-size: 13px;
}

.swiper-button-next, .swiper-button-prev {
    color: #333333;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
}

.swiper-pagination-bullet-active {
    background: #333333;
}

.callback {
    background-color: black;
    padding: 30px 0;
    color: white;
}

.callback-wrap {
    max-width: 535px;
    margin: 0 auto;
}

.callback-title {
    font-size: 36px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 24px;
}

.callback-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 200;
    margin-bottom: 32px;
}

.callback-form {
    display: flex;
    flex-direction: column;
}

.callback-form input {
    padding: 17px 20px;
    background-color: white;
    color: black;
    border: none;
    margin-bottom: 10px;
}

.callback-form button {
    color: #000000;
    background-color: #ffffff;
    border-radius: 30px;
    text-align: center;
    padding: 15px 30px;
    text-align: center;
    display: block;
    margin: 10px auto 0;
    max-width: 250px;
    border: none;
    font-weight: 500;
}

footer {
    background-color: rgb(23, 23, 23);
    padding: 25px 0;
}

footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer div p:not(:last-child) {
    margin-bottom: 8px;
}

footer a {
    color: white;
    font-weight: 300;
    font-size: 14px;
}

.description-modal .modal-dialog {
    max-width: 1240px;
    margin-top: 0;
    margin-bottom: 0;
    /* height: 100%; */
}

.description-modal .modal-dialog .modal-content {
    /* height: 100%; */
}

.description-modal-wrap {
    display: flex;
    justify-content: space-between;
}

.description-modal-left {
    min-width: 0;
    width: 50%;
}

.description-modal-left .modal-slider {
    padding-bottom: 30px;
}

.description-modal-left .modal-slider .swiper-button-next, .description-modal-left .modal-slider .swiper-button-prev {
    color: black;
    font-size: 35px;
}

.description-modal-left .modal-slider .swiper-pagination {
    bottom: 0;
}

.description-modal-right {
    width: 45%;
}

/* .modal-slider .swiper-slide img {
    aspect-ratio: 1/1;
    height: 100%;
    object-fit: cover;
} */

.description-modal-right .modal-product-title {

}

.description-modal-right .modal-product-prices {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.description-modal-right .modal-product-prices .new-price {
    white-space: nowrap;
    font-weight: 500;
}


.description-modal-right .modal-product-prices .old-price {
    color: gray;
    text-decoration: line-through;
    white-space: nowrap;
    font-weight: 300;
}

.product-variants {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 10px;
}

/* .product-sizes-wrap span {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
} */


.product-colors-wrap span {
    display: inline-block;
    /* margin-bottom: 8px; */
    font-weight: 500;
    margin-right: 5px;
}

.product-colors-wrap .product-color {
    font-weight: 400;
    margin-right: 0;
}

.product-variants .field {
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 4px center;
    background-size: 16px;
    display: block;
    padding: 5px 10px 5px 30px;
    width: 100%;
    max-width: 180px;
    border: 1px solid #c5c5c5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 15px;
    color: #777;
}

.description-modal-right .product-sizes-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

/* .description-modal-right .product-sizes-list .product-sizes-item:not(:last-child) {
    margin-right: 7px;
} */

.description-modal-right .product-sizes-list .product-sizes-item input {
    display: none;
}

.description-modal-right .product-sizes-list .product-sizes-item label {
    padding: 7px;
    color: rgb(40, 40, 40);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    background-color: #fff;
    border: 1px solid #9d9d9d;
    min-width: 57px;
    min-height: 40px;
    border-radius: 3px;
    box-shadow: 2px 2px 4px #dbdbdb;
}

.description-modal-right .product-sizes-list .product-sizes-item input[type=radio]:checked + label {
    border: 1px solid #000;
    /* background-color: #ceff5a; */
    box-shadow: 2px 2px 4px #000;
    background-color: #ceff5a;
    color: black;
    transition: 0.2s;
}

.add-to-cart {
    display: block;
    background-color: #000;
    color: white;
    padding: 12px 20px;
    max-width: 175px;
    width: 100%;
    border-radius: 6px;
    text-align: center;
}

.description-modal-right .product-modal-content {
    margin-top: 25px;
    font-size: 15px;
}

.description-modal-right .product-modal-content ul {
    list-style: disc;
    padding-left: 15px;
}

.description-modal-right .product-modal-content .third-list {
    list-style: square;
}

.description-modal-right .product-modal-content .bold-text {
    font-weight: 700;
}

.description-modal-right .product-modal-content .normal-text {
    font-weight: 400;
}

.description-modal-right .product-modal-content span {
    display: block;
    font-weight: 700;
}

.description-product {
    display: none;
}

.product-modal-content .description-product {
    display: block;
}

.description-product p {
    font-size: 16px;
    margin-bottom: 15px;
}

.description-product ul {
    padding: 0;
    margin-bottom: 15px;
    list-style: none;
}

.cart-modal .modal-content {
    padding: 20px 25px;
}

.cart-modal .modal-content .modal-body {
    padding: 0;
}

/* .modal-products-list {
    border-bottom: 1px solid #dee2e6;
} */

.cart-product-item {
    display: grid;
    align-items: center;
    grid-template-columns: 70px 1fr auto;
    grid-gap: 10px;
    padding: 13px 0;
}

.cart-product-item:last-child {
    /* margin-bottom: 10px; */
    border-bottom: 1px solid #dee2e6;
}

.cart-product-item .product-img {
    width: 70px;
    height: 70px;
}

.cart-product-item .product-img img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 2px;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-info-left {
    width: 45%;
}

.product-info-left .product-info-title {
    font-weight: 500;
    font-size: 14px;
}

.product-info-left .product-info-sizes {
    font-size: 13px;
    color: grey;
    font-weight: 400;
}

.product-info-left .product-info-colors {
    font-size: 13px;
    color: grey;
    font-weight: 400;
}

.product-info-right {
    width: 45%;
}

.product-info-right .product-quantity {
    display: flex;
    align-items: center;
    gap: 9px;
}

.product-info-right .product-quantity-wrap {
    display: flex;
    align-items: center;
}

.change-product-count {
    display: flex;
    border: none;
    background: unset;
    width: 16px;
    height: 16px;
    padding: 0;
}

.product-quantity input {
    margin: 0px 4px;
    width: 30px;
    text-align: center;
    outline: none;
    border: none;
    font-weight: 300;
    font-size: 14px;
}

.quantity-text {
    font-weight: 300;
    font-size: 14px;
}

.product-delete .product-delete-btn {
    border: none;
    background: unset;
    width: 16px;
    height: 16px;
    padding: 0;
}

.modal-product-result {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    font-weight: 500;
    margin-top: 20px;
}

.shopping-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 105px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .8);
    border: 1px solid black;
    z-index: 999;
    cursor: pointer;
}

.shopping-cart svg {
    width: 40px;
    height: 40px;
}


.shopping-cart .total-count {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    width: initial;
    height: 30px;
    padding: 0 5px;
    background-color: red;
    color: #fff;
    border-radius: 30px;
    position: absolute;
    right: -3px;
    bottom: -3px;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.empty-text {
    text-align: center;
    margin-top: 20px;
}

.order-form {
    margin-top: 20px;
}

.order-form .field-wrap {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.order-form .field-wrap label {
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 300;
}

.order-form .field-wrap input {
    background-color: white;
    border: 1px solid black;
    padding: 16px 12px;
    font-size: 16px;
}

.order-form .order-btn {
    display: block;
    background-color: #000;
    color: white;
    padding: 16px 20px;
    width: 100%;
    text-align: center;
    border: 0;
}

@media only screen and (max-width: 992px) {
    .products-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


@media only screen and (max-width: 850px) {
    .burger {
        display: flex;
    }

    .navigation {
        display: none;
    }

    /* .header-wrap .navigation .desktop-nav-list {
        display: none;
    } */
    
    .header-wrap .social-links {
        /* display: none; */
    }

    .products-list {
        grid-template-columns: 1fr 1fr;
    }

    .description-modal .modal-dialog {
        margin: 0;
    }

    .description-modal-wrap {
        flex-direction: column;
    }

    .description-modal-left {
        width: 100%;
        margin-bottom: 15px;
    }

    .description-modal-right {
        width: 100%;
    }

    .shopping-cart {
        width: 60px;
        height: 60px;
    }

    .shopping-cart svg {
        width: 30px;
        height: 30px;
    }

    .shopping-cart .total-count {
        min-width: 25px;
        height: 25px;
    }
}

@media only screen and (max-width: 500px) {
    .product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .product-info-left {
        width: 100%;
    }

    .product-info-right {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .product-item .product-item-bottom .product-btn {
        padding: 13px 25px;
    }
}


@media only screen and (max-width: 450px) {
    .product-item .product-item-bottom {
        padding: 25px 10px;
    }

    .product-item .product-item-bottom p {
        /* margin-bottom: 15px; */
    }

    .product-item .product-item-bottom .product-prices {
        font-size: 14px;
    }
}


@media only screen and (max-width: 350px) {
    .products-list {
        grid-template-columns: 1fr;
    }
}