@font-face {
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../assets/fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../assets/fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
}




/*NULL*/
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: "times new roman", serif;
    font-size: inherit;
    font-weight: inherit;
}

p {
    margin: 0;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    display: block;
}

input, button {
    border: 0;
    font-family: inherit;
}
/*NULL*/




/*CONTAINER*/
.container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
/*CONTAINER*/




/*SOCIAL*/
.social__link {
    display: inline-block;
    background: #eecccc;
    padding: 5px;
    border: 1px solid #eecccc;
    border-radius: 10px;
    vertical-align: middle;
    transition: linear .1s all;
}

.social__link:hover {
    background: #fff;
    border-color: #e27b7b;
}

.social__icon {
    width: 25px;
    height: 25px;
    transition: linear .1s all;
}

.shop__link .social__icon {
    width: 30px;
    height: 30px;
}

.social__link:hover .social__icon {
    fill: #cb2552;
}
/*SOCIAL*/



/*LOGO*/
.header__logo {
    padding: 0 20px 0 0;
}

.logo__header {
    font-family: 'Times New Roman', serif;
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
}
/*LOGO*/



/*SECTION*/
.section {
    padding: 60px 0;
}

.section--gray-blue {
    background: rgba(236, 244, 245, 0.8);
}

.section--shop {
    padding: 120px 0 100px;
}

.section__header {
    margin: 0 0 60px;
    font-size: 60px;
    font-weight: 700;
}

.section__header--shop {
    font-size: 30px;
    font-weight: 300;
}
/*SECTION*/




/*PAGE*/
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/*PAGE*/




/*HEADER*/
.header {
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 30px 10px rgba(180, 180, 180, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
/*HEADER*/




/*NAV*/
.nav {
    flex-grow: 1;
}

.nav__link {
    margin: 0 15px;
    font-size: 18px;
    text-transform: uppercase;
    transition: linear .1s color;
}

.nav__link:hover {
    color: #cb2552;
}

.nav__link:first-child {
    margin-left: 0;
}

.nav__link:last-child {
    margin-right: 0;
}
/*NAV*/




/*NAV-TOGGLE*/
.nav__toggle {
    display: none;
    width: 30px;
    background: transparent;
    padding: 10px 0;
    cursor: pointer;
}

.nav__toggle-item {
    width: 100%;
    height: 3px;
    background: #000;
    position: relative;
    transition: linear .2s background;
}

.nav__toggle-item:before,
.nav__toggle-item:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #000;
    position: absolute;
    left: 0;
    z-index: 10;
    transition: linear .2s transform;
}

.nav__toggle-item:before {
    top: -10px;
}

.nav__toggle-item:after {
    bottom: -10px;
}

.nav__toggle.active .nav__toggle-item {
    background: none;
}
.nav__toggle.active .nav__toggle-item:before {
    transform-origin: left top;
    transform: rotate(45deg);
}
.nav__toggle.active .nav__toggle-item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg);
}
/*NAV-TOGGLE*/




/*CONTENT*/
.content {
    flex-grow: 1;
    width: 100%;
}
/*CONTENT*/




/*SHOP*/
.shop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
}

.shop__card {
    flex-basis: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 32%;
    max-height: 400px;
    background: rgb(236, 244, 245);
}

.shop__image {
    margin: 0 0 10px;
}

.shop__photo {
    min-width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.shop__content {
    padding: 0 5px 5px;
}

.shop__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop__price {
    font-size: 20px;
    font-weight: 700;
    color: #3a3a3a;
}

.shop__link:hover .social__icon {
    fill: #cb2552;
}
/*SHOP*/




/*FOOTER*/
.footer {
    flex-shrink: 0;
    width: 100%;
    background: rgb(238, 238, 238);
    padding: 60px 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}

.footer__item {
    text-align: center;
}

.footer__title {
    margin: 0 0 25px;
    padding: 0 0 5px;
    border-bottom: 1px solid #000;
    font-size: 20px;
    font-weight: 400;
    color: #708996;
    text-transform: uppercase;
}

.footer__list li {
    margin: 0 0 12px;
}

.footer__link {
    font-size: 17px;
    transition: linear .1s color;
}

.footer__link:hover {
    color: #cb2552;
}
/*FOOTER*/




/*POPUP-CARD*/
.popup-card__background {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all .5s ease 0s;
    pointer-events: none;
}

.popup-card__background.active {
    opacity: 1;
    pointer-events: all;
}

.popup-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    height: 100vh;
}

.popup-card__photo {
    max-width: 90%;
    max-height: 90vh;
    object-fit: cover;
    object-position: 50% 50%;
}

.popup-card__close {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 10px;
    z-index: 1;
}
/*POPUP-CARD*/










@media (max-width: 991px) {
/*NAV*/
    .nav__link {
        margin-right: 12px;
        margin-left: 12px;
        font-size: 16px;
    }
/*NAV*/

/*SECTION*/
    .section--shop {
        padding-bottom: 90px;
    }
/*SECTION*/

/*LOGO*/
    .logo__header {
        font-size: 18px;
    }
/*LOGO*/

/*FOOTER*/
    .footer__title {
        margin-bottom: 22px;
        font-size: 18px;
    }

    .footer__list li {
        margin-bottom: 10px;
    }

    .footer__link {
        font-size: 15px
    }
/*FOOTER*/
}


@media (max-width: 880px) {
/*NAV*/
    .nav__link {
        margin-right: 10px;
        margin-left: 10px;
        font-size: 14px;
    }
/*NAV*/

/*SOCIAL*/
    .shop__link .social__icon {
        width: 28px;
        height: 28px;
    }

    .social--footer .social__link {
        padding: 4.5px;
    }

    .social--footer .social__icon {
        width: 22px;
        height: 22px;
    }
/*SOCIAL*/

/*LOGO*/
    .logo__header {
        font-size: 16px;
    }
/*LOGO*/

/*SECTION*/
    .section--shop {
        padding-top: 110px;
        padding-bottom: 80px;
    }
/*SECTION*/
}


@media (max-width: 771px) {
/*NAV*/
    .nav {
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #000;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    .nav__link {
        display: block;
        margin: 0;
        padding: 12px 15px;
    }
    
    .nav__toggle {
        display: block;
    }
/*NAV*/

/*SOCIAL*/
    .social--header {
        width: 100%;
        background-color: #fff;
        padding: 12px 15px;
        box-shadow: 0 10px 10px rgba(180, 180, 180, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .social--header .social__link {
        padding: 4.5px;
    }

    .social--header .social__icon {
        width: 22px;
        height: 22px;
    }

    .shop__link .social__icon {
        width: 30px;
        height: 30px;
    }
/*SOCIAL*/

/*SECTION*/
    .section--shop {
        padding-top: 100px;
        padding-bottom: 70px;
    }
/*SECTION*/

/*SHOP*/
    .shop__card {
        max-width: 48.5%;
    }

    .shop__photo {
        height: 220px;
    }
/*SHOP*/

/*FOOTER*/
    .footer__title {
        margin-bottom: 18px;
        padding-bottom: 4px;
    }

    .footer__list li {
        margin-bottom: 9px;
    }
/*FOOTER*/
}


@media (max-width: 660px) {
/*SECTION*/
    .section--shop {
        padding-top: 90px;
    }

    .section__header {
        margin-bottom: 50px;
    }
/*SECTION*/

/*SHOP*/
    .shop__photo {
        height: 180px;
    }
/*SHOP*/

/*FOOTER*/
    .footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer__title {
        font-size: 17px;
    }

    .footer__link {
        font-size: 14px
    }
/*FOOTER*/
}


@media (max-width: 576px) {
/*SOCIAL*/
    .shop__link .social__icon {
        width: 28px;
        height: 28px;
    }
/*SOCIAL*/

/*SECTION*/
    .section__header {
        margin-bottom: 40px;
    }
/*SECTION*/

/*POPUP-CARD*/
    .popup-card__close {
        top: 40px;
        right: 40px;
    }
/*POPUP-CARD*/

/*SHOP*/
    .shop__photo {
        height: 160px;
    }
/*SHOP*/

/*FOOTER*/
    .footer__title {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .footer__list li {
        margin-bottom: 8px;
    }

    .footer__link {
        font-size: 13px
    }
/*FOOTER*/
}


@media (max-width: 480px) {
/*NAV*/
    .nav__toggle-item:before {
        top: -8px;
    }

    .nav__toggle-item:after {
        bottom: -8px;
    }

    .nav__toggle.active .nav__toggle-item:before {
        transform-origin: left top;
        transform: rotate(45deg) translate3d(0, -2px, 0);
    }
    .nav__toggle.active .nav__toggle-item:after {
        transform-origin: left bottom;
        transform: rotate(-45deg) translate3d(-1px, 3px, 0);
    }
/*NAV*/

/*SOCIAL*/
    .social--header .social__link {
        padding: 4.4px;
        border-radius: 9px;
    }

    .social--header .social__icon {
        width: 20px;
        height: 20px;;
    }

    .shop__link .social__icon {
        width: 30px;
        height: 30px;
    }

    .social--footer .social__link {
        padding: 4.2px;
        border-radius: 9px;
    }

    .social--footer .social__icon {
        width: 18px;
        height: 18px;
    }
/*SOCIAL*/

/*SECTION*/
    .section--shop {
        padding-top: 85px;
        padding-bottom: 60px;
    }

    .section__header {
        margin-bottom: 35px;
        font-size: 25px;
    }
/*SECTION*/

/*SHOP*/
    .shop__card {
        max-width: 100%;
    }

    .shop__photo {
        height: 250px;
    }
/*SHOP*/

/*FOOTER*/
    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer__title {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .footer__list li {
        margin-bottom: 6px;
    }

    .footer__link {
        font-size: 12px
    }
/*FOOTER*/
}


@media (max-width: 411px) {
/*SECTION*/
    .section--shop {
        padding-top: 80px;
        padding-bottom: 55px;
    }
/*SECTION*/

/*SHOP*/
    .shop__photo {
        height: 220px;;
    }
/*SHOP*/

/*FOOTER*/
    .footer__title {
        margin-bottom: 10px;
        padding-bottom: 3px;
    }

    .footer__list li {
        margin-bottom: 4px;
    }

    .footer__link {
        font-size: 11px
    }
/*FOOTER*/
}


@media (max-width: 376px) {
/*SOCIAL*/
    .shop__link .social__icon {
        width: 28px;
        height: 28px;
    }

    .social--footer .social__link {
        padding: 3.5px;
        border-radius: 8px;
    }

    .social--footer .social__icon {
        width: 15px;
        height: 15px;
    }
/*SOCIAL*/

/*NAV*/
    .nav__link {
        font-size: 12px;
    }
/*NAV*/

/*LOGO*/
    .logo__header {
        font-size: 14px;
    }
/*LOGO*/

/*SECTION*/
    .section--shop {
        padding-bottom: 50px;
    }

    .section__header {
        font-size: 22px;
    }
/*SECTION*/

/*POPUP-CARD*/
    .popup-card__close {
        top: 25px;
        right: 25px;
    }
/*POPUP-CARD*/

/*SHOP*/
    .shop__photo {
        height: 200px;;
    }
/*SHOP*/

/*FOOTER*/
    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer__title {
        margin-bottom: 8px;
        padding-bottom: 2px;
        font-size: 12px;
    }

    .footer__list li {
        margin-bottom: 2px;
    }

    .footer__link {
        font-size: 10px
    }
/*FOOTER*/
}


@media (max-width: 320px) {
/*SOCIAL*/
    .shop__link .social__icon {
        width: 26px;
        height: 26px;
    }

    .social--footer .social__link {
        padding: 3px;
        border-radius: 7px;
    }

    .social--footer .social__icon {
        width: 12px;
        height: 12px;
    }
/*SOCIAL*/

/*SECTION*/
    .section--shop {
        padding-bottom: 40px;
    }

    .section__header {
        margin-bottom: 30px;
        font-size: 20px;
    }
/*SECTION*/

/*POPUP-CARD*/
    .popup-card__close {
        width: 25px;
        height: 25px;
    }
/*POPUP-CARD*/

/*SHOP*/
    .shop__photo {
        height: 170px;
    }
/*SHOP*/

/*FOOTER*/
    .footer__title {
        margin-bottom: 6px;
        padding-bottom: 1px;
        font-size: 11px;
    }

    .footer__list li {
        margin-bottom: 0;
    }

    .footer__link {
        font-size: 9px
    }
/*FOOTER*/
}



















