@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --main-font: "Raleway";
    --main-color: #000000;
    --green-color: #c1ba39;
    --gray-color: #e7e8e7;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-feature-settings: 'pnum' on, 'lnum' on;
    font-family: var(--main-font), sans-serif;;
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    font-optical-sizing: auto;
}

a {
    color: var(--main-color);
    text-decoration: none;
    transition: color .3s ease;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main {
    flex-grow: 1;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background-color: #ffffff;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

.header-place {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;

}

.header-logo {
    text-align: center;
}

.header-logo a {
    font-weight: 700;
    font-size: 32px;
}

.header-logo a img {
    display: block;
    height: 36px;
}

.hader-top__right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    line-height: 20px;
    width: 30%;
    justify-content: flex-end;
}

.hader-top__right a {
    display: inline-block;
    position: relative;
}

.hader-top__right a span {
    display: block;
    position: absolute;
    top: 0px;
    right: 0;
    width: 18px;
    height: 18px;
    background-color: #000000;
    color: #ffffff;
    font-size: 11px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.header-top__left {
    width: 30%;
}

.header-bottom {
    padding: 10px 0px 30px;
}

.header-bottom__menu {

}

.header-bottom__menu ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.header-bottom__menu ul li {
    list-style-type: none;
}

.header-bottom__menu ul li a {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.header-bottom__menu ul li a::after {
    content: "";
    height: 1px;
    width: 0;
    background-color: #000000;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    transition: width .3s ease-in-out;
}

.header-bottom__menu ul li a:hover::after {
    width: 100%;
}

.footer {
    color: #000;
    padding: 50px 0 10px;
}

.footer-bottom {
    border-top: #D8D8D8 1px solid;
    padding-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-copyright {
    font-size: 12px;
    color: #AFB1BD;
}

.footer-regnum {
    font-size: 14px;
    line-height: 18px;
    color: #AFB1BD;
    text-align: center;
    margin-bottom: 20px;
}

.footer-middle {
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials a {
    color: #000;
    font-size: 22px;
}

.footer-phone {
    color: #000;
    font-weight: 600;
}

.footer-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

.footer-middle__col ul {
    list-style-type: none;
}

.footer-middle__col ul li {
    margin-bottom: 10px;
}

.footer-middle__col ul li a {
    color: #000;
    font-size: 14px;
    line-height: 17px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 30px 0px;
}

.breadcrumbs .delim {
    display: inline-block;
    padding: 0 12px;
}

.breadcrumbs .current {
    font-weight: 600;
}

.pagetitle {
    font-size: 32px;
    line-height: 38px;
    font-weight: 500;
    margin-bottom: 30px;
}

.section {
    padding: 30px 0px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 500;
}


.product-item {

}

.product-item__img {
    display: block;
    margin-bottom: 15px;
}

.product-item__img img {
    display: block;
    width: 100%;
    height: auto;
}

.product-item__name {
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-item__prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.product-item__price {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

.product-item__old-price {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #82828B;
    text-decoration: line-through;
}


.section {
    margin-bottom: 50px;
}

.header-burger {
    display: none;
}

.products-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.products-grid .product-item {
    width: 265px;
    margin-bottom: 20px;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: baseline;
}

.categories-grid a {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    display: inline-block;
}

.categories-grid a sup {
    font-size: 12px;
    color: #82828B;
}

.footer-banks__logo {

}

.footer-banks__logo img {
    display: block;
    width: 100%;
}

.page-content {
    padding-bottom: 40px;

}
.page-content.short {
    max-width: 700px;
}

.page-content p {
    margin: 0px 0 25px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.page-content ul {
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 22px;
    padding-left: 0;
}

.page-content ul li {
    margin-bottom: 0px;
    margin-left: 20px;
}

.product-item__buttons {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.product-item__buttons a {
    font-size: 18px;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F9F9F9;
    border-radius: 3px;
}

.product-item__buttons a:hover {
    color: #ffffff;
    background-color: #000000;

}

.cart-table-header {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

.col-h-1 {
    width: 60%;
}

.col-h-2 {
    width: 20%;
}

.col-h-3 {
    width: 10%;
}

.col-h-4 {
    width: 10%;
}

.cart-table-content {
    border-bottom: 1px solid #0b1964;
    margin-bottom: 15px;
}

.cart-table-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    padding: 15px 0px;
}

.cart-table-row:last-child {
    border: none;
}

.col-c-1 {
    width: 60%;
}

.col-c-2 {
    width: 20%;
}

.col-c-3 {
    width: 10%;
}

.col-c-4 {
    width: 10%;
}

.cart-row-name {
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.cart-row-name img {
    width: 80px;
    margin-right: 15px;
}

.cart-row-name a {
    color: inherit;
    text-decoration: none;
}

.cart-row-qty {
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

.cart-row-qty input {
    border: none;
    background: #f1f1f1;
    height: 40px;
    font-family: inherit;
    text-align: center;
    width: 45px;
    outline: none;
    font-size: 16px;
    font-weight: 500;
}

.cart-row-qty button {
    border: none;
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    font-size: 20px;
    cursor: pointer;
    outline: none;
}

.col-c-2 {
    display: flex;
    align-items: center;
}

.cart-row-delete {
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: 10px;
}

.cart-table-footer {
    font-weight: 500;
    font-size: 15px;
}

.cart-to-order {
    margin: 20px 0px;
}

.cart-to-order a {
    text-decoration: none;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: 0;
    border-radius: unset;
    cursor: pointer;
    width: 180px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
}

.order-form-wrap {
    display: flex;
    align-items: flex-start;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    gap: 50px;
}

.payments-caption {
    margin-top: 30px;
}

.order-form-col {
    width: 35%;
}

.order-form-col h2 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.order-form-col .form-group {
    margin-bottom: 10px;
}

.order-form-col .form-group label {
    display: block;
    margin-bottom: 3px;
}

.order-form-col .form-group input {
    font-family: inherit;
    outline: none;
    padding: 8px 10px;
    width: 100%;
    max-width: 385px;
    font-size: 15px;
}

.order-form-col .form-group .error {
    color: red;
    font-size: 11px;
}

.delivery-row {
    margin-bottom: 10px;
}

.delivery-row label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
}

.delivery-row label input[type='radio'] {
    margin-right: 5px;
}

.order-form-sg {
    margin-bottom: 20px;
}

.order-form-sg label {
    display: flex;
    align-items: center;
    align-items: center;
}

.order-form-sg label input {
    margin-right: 5px;
}

.order-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    width: 180px;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    outline: none;
}


.main-page__content {
    width: 100%;
    max-width: 700px;
    padding-top: 0px;
}

.main-page__content h1 {
    margin: 0 0 25px;
}

.main-page__content p {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 15px;
    font-weight: 500;
}

.section-slider__btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-slider__btns a {
    font-size: 26px;
}

.main-banner {
    position: relative;
    width: 100%;
    height: 440px;
    height: 400px;
    overflow: hidden;
    z-index: 0;
}

.main-banner img {
    display: block;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 440px;
    z-index: 1;
}

.main-banner__content {
    position: relative;
    z-index: 2;
    padding: 40px 40px;
}

.main-banner__content-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #ffffff;
}

.main-banner__content-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 15px;
    max-width: 350px;
    text-shadow: 1px 1px 2px #ffffff;
}

.product-page {
    display: flex;
    gap: 50px;
}

.product-page__slider {
    width: 100%;
}

.product-page__info {
    width: 100%;
}

.product-page__info h1 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 20px ;
}

.product-page__info-prices {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.product-page__info-prices .price {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
}

.product-page__info-prices .old-price {
    color: #82828B;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    text-decoration: line-through;
}

.product-page__info-top {
    padding-bottom: 15px;
    border-bottom: #E6E6EB 1px solid;
}

.product-page__slider a img {
    display: block;
    width: 100%;
}

.product-page__middle {
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.product-page__text {
    padding-top: 25px;
}

.product-page__text p {
    margin-bottom: 15px;
    font-size: 14px;
}

.fancybox-slide--image .fancybox-content {
    background-color: #ffffff;
}

.incart-btn {
    text-decoration: none;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: 0;
    border-radius: unset;
    cursor: pointer;
    width: 180px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
}

.addButton {
    text-decoration: none;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: 0;
    border-radius: unset;
    cursor: pointer;
    width: 180px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    font-family: inherit;
}

#cartInfo {
    display: none;
    max-width: 420px;
}

#cartInfo h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

.cartInfo-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cartInfo-btns a:first-child {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: 0;
    border-radius: unset;
    cursor: pointer;
    /*width: 180px;*/
    /* height: 50px; */
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    margin-right: 20px;
}

.cartInfo-btns a:last-child {
    display: inline-block;
    font-size: 13px;
    color: inherit;
    font-weight: 500;
}

.mobile-menu__container {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 100;
    transition: left .3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 50px 50px;
}

.mobile-menu__container.active {
    left: 0;
}

.mobile-menu__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
}

body.fixed {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mobile-menu__section {
    margin-bottom: 20px;
}

.mobile-menu__section h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mobile-menu__section ul {
    list-style-type: none;
}

.mobile-menu__section ul li {
    margin-bottom: 10px;
}

.main-banner {
    background-color: #e4e5e080;
}

.main-banner__row {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-banner__row img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    max-width: 455px;
    max-width: 375px;
}


@media (max-width: 787px) {
    .main-page__content p {
        font-size: 14px;
    }
    .main-banner {
        height: auto;
        padding: 30px 0px;
    }
    .main-banner__row {
        flex-direction: column;
    }
    .header-bottom {
        display: none;
    }

    .header-place {
        display: none;
    }

    .header-logo a {
        font-size: 18px;
    }

    .header-burger {
        display: flex;
        font-size: 20px;
    }

    .header-top__left {
        width: 65px;
    }

    .product-item__name {
        font-size: 16px;
        line-height: 18px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-middle {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .products-grid .product-item {
        width: 155px;
        margin-bottom: 20px;
    }

    .cart-table-header {
        display: none;
    }

    .cart-table-row {
        flex-wrap: wrap;
        padding-bottom: 15px;
    }

    .col-c-1 {
        width: 100%;
    }

    .col-c-2 {
        width: 50%;
    }

    .col-c-3 {
        width: 25%;
    }

    .col-c-4 {
        width: 25%;
    }

    .order-form-wrap {
        flex-direction: column;
    }

    .order-form-col {
        width: 100%;
    }

    .pagetitle {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .page-content p {
        margin: 0 0 15px;
        font-size: 14px;
        line-height: 18px;
    }

    .page-content ul {
        margin: 0 0 15px;
        font-size: 14px;
        line-height: 18px;
        padding-left: 0;
    }

    .product-page {
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-page__info-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .product-page__info h1 {
        margin-bottom: 0;
        font-size: 18px;
        line-height: 18px;
    }

    .product-page__info-prices .price {
        font-size: 18px;
        font-weight: 600;
        line-height: 18px;
    }

    .product-page__info-prices .old-price {
        font-size: 14px;
        line-height: 18px;
    }

    .product-page__info-prices {
        gap: 10px;
    }

    .header-logo a img {
        height: 16px;
    }

    .hader-top__right {
        width: 65px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-regnum {
        text-align: center;
    }

}

.main-page__content p span {
    font-family: 'Inter';
    font-weight: 400;
    text-transform: uppercase;
}
