/* COMMON STYLES */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

img {
    max-width: 100%;
}

li {
    position: relative;
    list-style: none;
    z-index: 1;
}

body {
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    color: #000000;
    background: linear-gradient(180deg, #FFDCDC 0%, #FFF 50%, #FDD 100%);
}

/* COMMON STYLES */
.button {
    border: none;
    cursor: pointer;
    transition: .5s;
}

.button:hover {
    transition: .5s;
}

.mob {
    display: none;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

/* HEADER */
/* header-top */
.header-top {
    position: relative;

    background: #000000;
    z-index: 1050;
}

.header-top .container {
    padding: 12px 0;
    background: #000000;

    margin-bottom: 10px;
}

.header-top-logo {
    font-weight: 600;
    font-size: 53px;
    line-height: 126.7%;
    color: #FFFFFF;
}

.header-top-navigation-mobile, .bg-blur {
    display: none;
}

/* header-bottom */
.header-bottom {
    position: sticky;
    top: 0;

    background: #FFFFFF;
    transform: translateY(0);
    transition: all .3s ease;
    z-index: 1000;
}

.header-bottom.out {
    transform: translateY(-100%);
    transition: all .3s ease;
}

.header-bottom .container {
    padding: 5px 0;

    margin-bottom: 15px;
}

.header-bottom-navigation ul {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.header-bottom-navigation ul li {
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: #000;

    background: #D9D9D9;
    transition: all .2s ease-in;
}

.header-bottom-navigation ul li:hover {
    background: #a9a9a9;
}

/* ARTICLE */
.article .container {
    padding: 19px 0 50px 0;
    background: #FFFFFF;
    margin: 0 auto;
}

.article-wrapper {
    padding: 0 35px;
}

h1.article-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 146%;
    color: #000;
    margin-bottom: 14px;
}

.article-text {
    font-size: 20px;
    line-height: 137%;
    color: #0F0F0F;
    margin-bottom: 14px;
}

.article-image {
    margin: 20px 0;
}

.article-images {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.article-images img:not(:last-child) {
    margin-right: 23px;
}

p.yellow-block {
    padding: 20px 34px;
    font-weight: 500;
    font-size: 32px;
    line-height: 170%;
    color: #0F0F0F;

    background: #FFED3B;
}

/* ORDER */
.order {
    max-width: 100%;
    width: 1220px;
    height: max-content;
    background-image: url("../img/order-bg.png");
    background-position: top center;
    background-size: cover;
    overflow-x: hidden;
    margin: 0 auto;
}

.order .container {
    max-width: 100%;
    width: 1290px;
    position: relative;
    padding: 46px 34px 13px 64px;
    margin: 0 auto;
    z-index: 1;
}

.order-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.order-info {
    position: relative;
    max-width: 524px;
    text-align: center;
}

.order-info-image {
    display: none;
}

.order-title {
    height: max-content;
    margin-bottom: 26px;
}

.order-description {
    font-family: 'Old Standard TT', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    text-align: center;
    color: #FFF;

    margin: 0 auto 14px;
}

.order-image {
    position: relative;
    max-width: 350px;
}

.sale {
    position: absolute;
    left: -58px;
    bottom: -40px;
    animation: pulse 1.5s linear infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .3;
    }
    100% {
        opacity: 1;
    }
}

.order-form {
    max-width: 335px;
    margin: 0 auto;
}

.order-form input {
    padding: 14px 22px;
    width: 100%;
    height: 53px;

    font-family: 'Old Standard TT', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #ffffff;

    border-radius: 6px;
    border: 3px solid #EBE8E9;
    background: transparent;
    outline: none;
    margin-bottom: 22px;
}

.order-form input::placeholder {
    font-family: 'Old Standard TT', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #ffffff;
}

.order-button {
    width: 251px;
    height: 45px;
    font-family: 'Old Standard TT', sans-serif;
    font-weight: 7000;
    font-size: 20px;
    color: #EBE8E9;

    border-radius: 7px;
    background: #5A4F4E;

    cursor: pointer;
    transition: .5s;
    position: relative;
    overflow: hidden;
}

.order-button .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.6));
    animation: flareAnimation 3s infinite linear forwards;
}

.order-button:hover {
    transition: .5s;
}

.order-button.mob {
    display: none;
}

.order-price {
    max-width: max-content;
    width: max-content;

    font-family: 'Old Standard TT', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;

    margin: 0 auto 20px;
}

.new-price {
    color: #FAFF00;
}

.old-price {
    padding-right: 31px;
    text-decoration-line: line-through;
    color: #474444;
    border-right: 2px solid #474444;
    margin-right: 10px;
}


/* COMMENTS */
.comments .container {
    max-width: 960px;
    padding: 57px 114px;
    background: #ffffff;
    margin: 0 auto;
}

.article-comments {
    max-width: 757px;
    font-family: 'HelveticaNeue', sans-serif;
}

.comments-item {
    margin: 0 5px 0 0;
}

.comments-item {
    position: relative;
    margin-bottom: 42px;
}

.comment-wrapper {
    display: flex;
}

.comments-item-image {
    min-width: 70px;
    margin-right: 10px;
}

.comments-item-info {
    max-width: 100%;
}

.comments-item-info-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
}

.comments-item-info-name span {
    font-size: 11px;
    line-height: 30px;
    color: #888888;
}

.comments-item-info-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    max-width: 677px;
}

.comments-item-wrapper {
    display: flex;
    align-items: center;
    margin-left: 70px;
}

.comment-like img {
    padding: 10px 0 10px 10px;
    width: 30px;
}


.comment-like:nth-child(1) {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.comment-like:nth-child(2) {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.comment-like img {
    margin-right: 5px;
}

.review-image img {
    padding-top: 5px;
    height: 150px;
}

.commentForm-text {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-left: 99px;
    margin-bottom: 16px;
}

form.commentForm {
    max-width: 100%;
    margin-left: 131px;
    margin-right: 79px;
}

.input-comment {
    width: 100%;
    padding: 6px;
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: lowercase;
    background: transparent;
    color: rgb(54, 54, 54);
    border: none;
    border-bottom: 1px solid #959595;
    outline: none;
    margin-bottom: 24px;
}

.input-comment::placeholder {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    color: rgba(201, 201, 201);
}

.commentForm .wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.commentForm .wrapper a:first-child {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-right: 47px;
}

.commentForm .wrapper button {
    width: 191px;
    height: 31px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    background: #63C7FF;
    box-shadow: inset 4px 4px 5px rgba(255, 255, 255, 0.25), inset -3px -3px 4px rgba(0, 0, 0, 0.25);
    border: none;
}

#cansel {
    cursor: pointer;
}

/* FOOTER */
.pp {
    padding: 10px 0;
    font-size: 14px;
    line-height: 120%;
    font-weight: 300;
    text-align: center;
    color: #0B0B0B;

    margin-top: 20px;
    background: #ffdfde;
}

.pp a {
    font-weight: 500;
    transition: all .3s;
}

.pp a:hover {
    color: #504747;
    transition: all .3s;
}


@keyframes flareAnimation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(7.5px);
    z-index: 1500;
}

.modal-wrapper {
    padding: 33px 0 24px 0;
    width: 534px;
    height: 164px;
    position: absolute;
    top: calc(50% - 82px);
    left: calc(50% - 267px);
    background: rgba(217, 217, 217, 0.8);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.close {
    position: absolute;
    top: 17px;
    right: 32px;
    z-index: 10;
    cursor: pointer;
}

.close:before {
    content: '';
    position: absolute;
    top: calc(50% - 16px);
    right: calc(50% - 15px);
    width: 29px;
    height: 29px;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: -10;
}

.done {
    position: relative;
    margin-bottom: 38px;
    z-index: 10;
}

.done:before {
    content: '';
    position: absolute;
    top: calc(50% - 42px);
    right: calc(50% - 42px);
    width: 83px;
    height: 83px;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: -10;
}

/* MODAL FORM */
.modal-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(195, 195, 195, .1);
    backdrop-filter: blur(9px);
    text-align: center;
    z-index: 1100;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.modal-form .order-form {
    padding-top: 150px;
    display: block;
    max-width: 335px;
}

.modal-form .order-form input {
    color: #000;

    border-radius: 6px;
    border: 3px solid #EBE8E9;
    background: rgba(255, 255, 255, 0.50);
}

.modal-form .order-form input::placeholder {
    color: #000;
}


