:root {
    --color-beige: #F5ECE3;
    --color-dark-beige: #EEE4DA;
    --color-white: #FFFFFF;
    --color-grey: #555555;
    --color-edit: #AC8F78;


    --font-family-base: 'Montserrat', sans-serif;
    --transition-duration: 0.2s;
    /*Время, за которое происходит анимационный переход: a button input */

    --product-card-width: 310px;
    --product-card-height: 430px;
    --gap: 20px;
}

body {
    background: var(--color-beige);
    font-family: 'Montserrat', sans-serif;
    min-width: 320px;
}

/* Переключение тем */
body.dark .footer-block {
    background-color: #1e1e1e;
    color: var(--color-beige);
}

body.dark .footer-block a {
    color: var(--color-beige);
}

.theme-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

body.dark {
    background-color: #121212;
    color: white;
}

/* Переключение тем */
.container {
    max-width: 1300px;
}

img {
    max-width: 100%;
}

.navigation {
    max-width: 1300px;
    height: 120px;
    justify-content: space-between;
    width: 100%;
    color: var(--color-white);
    display: flex;
    font-size: 14px;
    position: relative;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.capsule-text {
    color: var(--color-white);
    font-family: var(--font-family-base);
}

.navigation-list {
    max-width: 300px;
    align-items: center;
    display: none;
    gap: 47px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bourger {
    width: 22px;
    cursor: pointer;
}

.bourger span {
    display: block;
    height: 1px;
    background: var(--color-white);
}

.bourger span+span {
    margin-top: 10px;
}
.bourger-dark span{
    background: var(--color-grey);
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-beige);
    z-index: 10;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    /* Чтобы плавно показывалось меню */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /*Скрывать меню */
    opacity: 0.7;
    font-size: 24px;
    font-family: var(--font-family-base);
}

.burger-icons path {
    stroke: #555555;
}

.logo-burger {
    color: var(--color-grey);
    font-size: 33px;
}

.menu ul {
    list-style: none;
    text-align: center;
    height: 100%;
    padding-top: 80px;

}

.menu ul li a {
    display: block;
    text-decoration: none;
    color: var(--color-grey);
    font-size: 22px;
    padding: 10px 0;
}

.burger-nav {
    min-height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 10px;
    color: var(--color-grey);
    box-sizing: border-box;
    padding: 30px;
}

.left-nav,
.right-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.left-nav {
    justify-content: flex-start;
    align-items: center;
}

.right-nav {
    justify-content: flex-end;
}

.logo-dark {
    display: flex;
    justify-content: center;
}

/* .burger-icons,
.close {
    /* width: 18px;
    height: 18px;
} */

.close {
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 3px;
}

.burger-close {
    order: 2;
}

.menu.active {
    transform: translateX(0);
    visibility: visible;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.glass {
    margin-bottom: 7px;
}

.search-container {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    align-items: center;
    background-color: var(--color-beige);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
}

.icons-box {
    display: flex;
    align-items: center;
    padding-left: 0.5px;
}

.icon-logo {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}

.icon-logo:focus {
    outline: none;
}

.search-container.active {
    display: flex;
}

.search-input {
    font-size: 16px;
    padding: 12px;
    background-color: var(--color-beige);
    border: none;
    border-bottom: 2px solid #e0dcd7;
    color: var(--color-grey);
    width: 100%;
}

.dark-color {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);

}

.open-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navigation-search {
    display: none;
    align-items: center;
    gap: 20px;
}

.navigation-list a,
.contacts a {
    text-decoration: none;
    color: inherit;
}

.navbag {
    display: flex;
}

.navigation-list a:hover,
.contacts a:hover {
    text-decoration: none;
    color: inherit;
}

/* Dark-light theme */

.theme-btn {
    display: flex;
    width: 30px;
    height: 30px;
    background-size: cover;
    border: none;
    cursor: pointer;
}

.theme-btn svg {
    width: 100%;
    height: 100%;
}

.theme-btn.light g {
    fill: #000;
}

.theme-btn.dark g {
    fill: var(--color-dark-beige);
}

/* Dark-light theme */

header {
    display: flex;
    justify-content: center;
}

.bold-name {
    font-weight: bold;
}

.contacts {
    padding-right: 48px;
    margin: 0;
}

.search-icon,
.bag-icon,
.man-icon,
.navbag-icon {
    width: 14px;
    height: 14px;
    gap: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
    cursor: pointer;
    align-items: center;
}

.navbag-icon {
    display: flex;
}

.navbag-icon {
    background-image: url(../images/navbag-icon.svg);
}

.search-icon {
    background-image: url(../images/search-icon.svg);
}

.bag-icon {
    background-image: url(../images/bag-icon.svg);
}

.man-icon {
    background-image: url(../images/man-icon.svg);
}

.hero {
    min-height: 100vh;
    background-image: url(../images/Capsule_Collection_photo.png);
    background-repeat: no-repeat;
    background-position: 70%;
    background-size: cover;
}

.nav-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.visually-hidden {
    display: flex;
    justify-content: space-between;
}

.carousel {
    height: calc(100vh - 120px);
    width: 1330px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-inner {
    position: relative;
}

.carousel-item img {
    max-width: 386px;
    display: block;
    height: auto;
    margin: 0 auto;
}

.carousel-indicators {
    bottom: 0;
    margin-bottom: 40px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 8px;
}

.carousel-button {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-control-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 63px;
    height: 45px;
    border-radius: 60px;
    background-color: #8888884D;
    backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 10px;
}

/* Карти товарів */
.cards {
    padding-top: 70px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    margin: 0 auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    /*auto-fit, minmax Автоматический перенос карт без @media */
    grid-template-rows: repeat(3, 1fr);
    position: relative;
    gap: 10px;
}

.product-card {
    display: none;
    max-width: 310px;
    height: 430px;
    position: relative;
    background-repeat: no-repeat;
    background-color: var(--color-dark-beige);
    flex-direction: column;
}

.product-card.care,
.product-card.beauty,
.product-card.brows {
    display: flex;
}


.brows-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brows-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
    color: var(--color-grey);
    margin-top: auto;
    position: absolute;
    bottom: 21px;
    padding-left: 21px;
    padding-right: 24px;
}

.brows-text p {
    font-size: 16px;
    margin-bottom: 0;
}

.care {
    background-image: url(../images/care-logo.png);
    background-position: center;
}

.care-text {
    display: flex;
    color: var(--color-grey);
    font-size: 48px;
    padding-left: 30px;
    position: absolute;
    bottom: 5px;
}

.beauty {
    background-image: url(../images/beauty-logo.png);
}

.brows {
    background-image: url(../images/brows-logo.png);
}

.ceo-comment {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    position: relative;
    padding-bottom: 50px;
}

.ceo-comment>div {
    flex: 1 1 50%;
}

.text-block {
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ceo-text {
    align-items: center;
    justify-content: center;
    max-width: 492px;
    margin: 0 auto;
}

.ceo-picture {
    height: auto;
    width: 100%;
}

.ceo-picture img {
    width: 100%;
}

.brend-description {
    padding-top: 37px;
    font-family: var(--font-family-base);
    font-size: 26px;
    color: var(--color-grey);
}

.brand-text {
    font-family: var(--font-family-base);
    font-size: 18px;
    color: var(--color-grey);
    padding-top: 15px;
}

.name-class {
    display: flex;
    align-items: center;
    max-width: 320px;
    padding-top: 44px;
}

.name-block {
    flex-direction: column;
    max-width: 145px;
}

.autograph img {
    max-width: 140px;
    padding-left: 35px;
}

.dark-cosmetic {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
}

.dark-cosmetic p {
    font-size: 48px;
    color: var(--color-grey);
    max-width: 600px;
}

.insta-link {
    text-decoration: none;
}

.insta-block {
    max-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 66px;
    padding: 24px 98px 24px 98px;
    max-width: fit-content;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.insta-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insta-block p {
    font-size: 20px;
    font-family: var(--font-family-base);
    color: var(--color-grey);
    max-width: 113px;
    margin: 0;
}

.dark-cards {
    padding-top: 70px;
    margin: 0 auto;
}

.dark-grid {
    display: grid;
    margin: 0 auto;
    justify-content: center;
    padding-top: 100px;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    /*auto-fit, minmax Автоматический перенос карт без @media */
    grid-template-rows: repeat(2, 1fr);
    position: relative;
    gap: 10px;
    bottom: 50px;
}

.product-darkcard {
    /* display: none; */
    max-width: 300px;
    height: 300px;
    position: relative;
    background-repeat: no-repeat;
    background-color: var(--color-dark-beige);
    flex-direction: column;
}

.footer-block {
    background-color: var(--color-dark-beige);
}

.footer-columns {
    display: flex;
    flex-direction: row;
    padding-top: 100px;
    justify-content: space-between;
}

.logo-footer {
    padding-top: 70px;
    display: flex;
    justify-content: center;
}

.footer-autograph {
    max-width: 250px;
}

.text-autograph {
    font-size: 20px;
    color: var(--color-grey);
    font-family: var(--font-family-base);
}

.autograph-text {
    font-size: 14px;
    color: var(--color-grey);
    font-family: var(--font-family-base);
}

.footer-icons {
    max-width: 220px;
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    border-radius: 50px;
    width: 48px;
    height: 48px;

}

.icons {
    padding: 12px;
    max-width: fit-content;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}

.facebook-logo {
    background-image: url(../images/facebook.svg);
}

.inst-logo {
    background-image: url(../images/inst.svg);
}

.twitter-logo {
    background-image: url(../images/twitter.svg);
}

.youtube-logo {
    background-image: url(../images/youtube.svg);
}

.footer-autograph {
    padding-top: 10px;
    max-width: 250px;
}

.footer-autograph img {
    padding-top: 10px;
    max-width: 140px;
}

.footer-navigation {
    max-width: 250px;
    font-family: var(--font-family-base);
    display: none;
}

.footer-navigation ul {
    padding-left: 0;
    margin: 0;
}

.footer-navigation li {
    list-style: none;
    padding-top: 20px;
}

.footer-navigation a {
    color: var(--color-grey);
    text-decoration: none;
}

.footer-navigation a:hover {
    text-decoration: underline;
}

.footer-products {
    max-width: 250px;
    font-family: var(--font-family-base);
    display: none;
}

.footer-products ul {
    padding-left: 0;
    margin: 0;
}

.footer-products li {
    list-style: none;
    padding-top: 20px;
}

.footer-products a {
    color: var(--color-grey);
    text-decoration: none;
}
.footer-products a:hover {
    text-decoration: underline;
}
.icons-footer {
    max-width: 220px;
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.icons-footer p {
    margin-bottom: 0;
}

.e-mail {
    background-image: url(../images/e-mail.svg);
}

.whatsapp {
    background-image: url(../images/whatsapp.svg);
}

.text-rights {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    color: var(--color-grey);
}

.footer-company {
    max-width: 250px;
    display: none;
}

.text-company {
    font-size: 20px;
    color: var(--color-grey);
    font-family: var(--font-family-base);
}

.footer-text {
    font-size: 14px;
    color: var(--color-grey);
    font-family: var(--font-family-base);
}

/* Category page */
.navigation-category {
    max-width: 1300px;
    height: 120px;
    justify-content: space-between;
    width: 100%;
    color: var(--color-grey);
    display: flex;
    font-size: 14px;
    position: relative;
    align-items: center;
}

.navigation-cosmetic {
    display: none;
    justify-content: center;
    background-color: var(--color-dark-beige);
}

.nav-list {
    max-width: 700px;
    width: 100%;
}

.nav-list ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 70px;
}

.nav-list li {
    display: flex;
    text-align: center;
    font-size: 14px;
    font-weight: var(--font-family-base);
}

.nav-list a {
    text-decoration: none;
    list-style: none;
    color: var(--color-grey);
}

.searchcat-icon {
    background-image: url(../images/search-icon-dark.svg);
}

.bagcat-icon {
    background-image: url(../images/dark-bag-icon.svg);
}

.mancat-icon {
    background-image: url(../images/dark-man-icon.svg);
}

.carecosm-text {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 30px;
}

.catalog-grid {
    margin: 0 auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(3, 1fr);
    position: relative;
    gap: 10px;
    padding-top: 60px;
}

.secound-grid {
    display: flex;
    padding-top: 20px;
    gap: 20px;
}

.big-block,
.right-block {
    flex: 1;
    /*flex: 1 лучше работает с gap, чем width: 50% */
}

.productcard-grid {
    display: grid;
    margin: 0 auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /*auto-fit, minmax Автоматический перенос карт без @media */
    position: relative;
    gap: 20px;
}

.productcat-card {
    display: flex;
    justify-content: center;
    max-width: 630px;
    height: 880px;
    position: relative;
    background-repeat: no-repeat;
    background-color: var(--color-dark-beige);
    flex-direction: column;
}

.bigbrows-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
    color: var(--color-grey);
    margin-top: auto;
    position: absolute;
    bottom: 21px;
    padding-left: 21px;
    padding-right: 24px;
}

.right-block {
    display: grid;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(2, 2fr);
    position: relative;
    gap: 20px;
}

.searchcat-icon,
.bagcat-icon,
.mancat-icon {
    width: 14px;
    height: 14px;
    gap: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
    cursor: pointer;
    align-items: center;
}

.navbag-icon {
    display: flex;
}

/* Product card */
.card-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-left,
.card-right {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.card-left {
    background: #EEE4DA;
}

.swiper-thumb {
    max-height: 350px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--color-grey);
}


.right-blockcard {
    align-items: center;
    justify-content: center;
    max-width: 492px;
    margin: 0 auto;
}

.favorit {
    display: flex;
    align-items: center;
    max-width: 197px;
}

.heart-icon {
    background-image: url(../images/heart-icon.svg);
}

.heart-icon {
    width: 16px;
    height: 16px;
    border: none;
    background-repeat: no-repeat;
    background-color: transparent;
}

.heart-text {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: 14px;
    color: var(--color-grey);
    padding-left: 12px;
}

.milk-text {
    font-family: var(--font-family-base);
    font-size: 48px;
    color: var(--color-grey);
}

.price-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 410px;
}

.price-calc {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-dark-beige);
    border-radius: 40%;
    width: 165px;
    height: 46px;
}

.btn-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /*занять всю ширину .price-calc */
    padding: 0 20px;
    box-sizing: border-box;

}

.btn-minus,
.btn-plus {
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: var(--color-grey);
}

.btn-value span {
    font-size: 20px;
    text-align: center;
    width: 30px;
    display: inline-block;
    color: var(--color-grey);
}

.shopping-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark-beige);
    border-radius: 76px;
    max-width: 410px;
    height: 80px;
    margin-top: 30px;
}

.bagcat-icon {
    background-image: url(../images/dark-bag-icon.svg);
}

.shopping-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.shopping-text p {
    margin: 0;
}

.carousel-right {
    padding-top: 53px;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 340px;
}

.nav-item {
    background-color: transparent;
}

.carousel-right .nav .nav-link.active {
    color: var(--color-grey);
    background-color: var(--color-dark-beige);
    border-radius: 56px;
}

.tab-content p {
    font-size: 14px;
    color: var(--color-grey);
}

.carousel-right .nav-link {
    color: var(--color-grey);
}

.wecare {
    max-width: 600px;
    padding-left: 35px;
}

.wecare p {
    font-family: var(--font-family-base);
    font-size: 48px;
    color: var(--color-grey);
}

.slider-nav {
    margin: 20px auto;
    width: 90%;
}

/* Slider line  */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide2 {
    text-align: center;
    font-size: 18px;
    background: var(--color-beige);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Второй свайпер — со своими стилями */
.mySwiper2 {
    /* max-width: 600px; */
    /* height: 300px; */
    margin: 40px auto;
}

.mySwiper2 .swiper-slide2 {
    background: var(--color-beige);
    color: #333;
    font-size: 16px;
}

/* Свои стрелки, если надо */
.second-next,
.second-prev {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}


/* Slider line  */

/* order page */

.block-order {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.checkout {
    background-color: var(--color-beige);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: clamp(20px, 5vw, 70px);
}

.check-left {
    /* width: 90%; */
}

.check-leftpart {
    padding-right: 50px;

}

.check-left h3 {
    font-size: 48px;
    font-family: var(--font-family-base);
    color: var(--color-grey);
    justify-content: flex-start;
    padding-bottom: 48px;
}


.check-left p {
    font-size: 13px;
    font-family: var(--font-family-base);
    color: #AC8F78;
    margin-bottom: 8px;
    justify-content: flex-start;
}

.check-left input {
    width: 100%;
    max-width: 400px;
    border: none;
    border-bottom: 1px solid var(--color-grey);
    background-color: transparent;
    padding: 10px 4px;
    font-size: 16px;
    font-family: var(--font-family-base);
    color: var(--color-grey);
    outline: none;
}

.check-left input :focus {
    border-bottom: 1px solid var(--color-grey);
}

.checktext {
    padding-top: 45px;
}

.checktext label {
    color: var(--color-grey);
}

.favoritadd {
    display: flex;
    align-items: center;
}

.heart-icon {
    background-image: url(../images/heart-icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px;
    display: inline-flex;
    align-items: center;
    padding-left: 24px;
    border: none;
    background-color: transparent;
    font-family: var(--font-family-base);
    font-size: 14px;
    color: var(--color-grey);
    cursor: pointer;
    white-space: nowrap;
    height: 16px;
}

.set-up {
    padding-top: 52px;
    padding-bottom: 10px;
    font-size: 16px;
    color: var(--color-grey);
}

.registered-text {
    font-size: 14px;
    color: var(--color-grey);

}

.left-text {
    min-width: 287px;
    padding-top: 20px;
}

.sign-in {
    display: flex;
    align-items: center;
    max-width: 80px;
    padding-top: 16px;
}

.dark-man-icon {
    background-image: url(../images/dark-man-icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px;
    display: inline-flex;
    align-items: center;
    padding-left: 24px;
    gap: 8px;
    border: none;
    background-color: transparent;
    font-family: var(--font-family-base);
    font-size: 14px;
    color: var(--color-grey);
    cursor: pointer;
    white-space: nowrap;
    height: 16px;
}

.dark-man-icon img {
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* dropdown */
.choose-text {
    padding-top: 63px;
    color: var(--color-grey);
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: bold;
}


.checkbox-choose {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.choose-btn {
    max-width: 280px;
    height: 55px;
    background-color: var(--color-dark-beige);
    display: flex;
    align-items: center;
    padding-left: 23px;
    color: var(--color-grey);
    font-family: var(--font-family-base);
    font-size: 16px;
    cursor: pointer;
    background-image: url(../images/arr-choose.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 10px 12px;
}

.checkbox-choose {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.choose-wrapper {
    position: relative;
    max-width: 280px;
    width: 100%;
}

.choose-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /* ограничиваем по ширине родителя */
    background: white;
    border: 1px solid #ccc;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.choose-menu .option {
    padding: 5px 16px;
    font-size: 16px;
    white-space: nowrap;
    /* предотвращает перенос */
    overflow: hidden;
    text-overflow: ellipsis;
    /* обрезка с "..." при слишком длинном тексте */
}

.choose-menu .option:hover {
    background-color: var(--color-light-beige);
}

.hidden {
    display: none;
}

.shipping {
    max-width: 243px;
    padding-top: 20px;
    color: var(--color-grey);
    font-family: var(--font-family-base);
    font-size: 14px;
}

/* dropdown */



.order {
    background-color: var(--color-dark-beige);
    width: 40%;
}

.order-small {
    max-width: 320px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;

}

.order-box {
    display: flex;
    justify-content: space-between;

}

.box-text {
    padding-top: 50px;
    max-width: 320px;
    display: flex;
    align-items: center;
    position: relative;
}

.arrov-order {
    display: flex;
    position: absolute;
    right: -64px;
}

.order-prev,
.order-next {
    width: 32px;
    height: 32px;
    background-color: var(--color-beige, #f9f4ef);
    border-radius: 10%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    cursor: pointer;
    display: inline-block;
}

.order-prev,
.order-next::after {
    color: black;
    font-size: 12px;
}

.order-prev {
    background-image: url(../images/arrow-prev.svg);
}

.order-next {
    background-image: url(../images/arrow-next.svg);
}

.order-prev:hover,
.order-next:hover {
    background-color: var(--color-beige);
}

.order-prev::after,
.order-next::after {
    display: none;
    content: none;
}


.ord-text {
    font-size: 36px;
    font-family: var(--font-family-base);
    padding-right: 20px;
}

.products-text {
    color: var(--color-grey);
    font-family: var(--font-family-base);
}

.order-block {
    background-color: var(--color-dark-beige);
    padding: 40px 20px;
    box-sizing: border-box;
    align-items: center;
}

.order-box {
    max-width: 320px;
}

.total-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

.total-text p {
    font-size: 24px;

}

.order-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
}

.send-order {
    min-width: 320px;
    height: 80px;
    border-radius: 66px;
    background-color: var(--color-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.send-order p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 18px;
    font-family: var(--font-family-base);
    position: relative;
}

.send-order p::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("../images/Order-arrow-right.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.edit-order {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 110px;
    padding-top: 20px;
    margin: 0 auto;
    color: var(--color-edit);
    font-family: var(--font-family-base);
    font-size: 14px;
}

.edit-order p {
    display: flex;
    align-items: center;
    gap: 6px;
}

.edit-order p::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("../images/pensil-edit.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Слайдер order */
.ord-swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ord-card {
    background: var(--color-beige, #f9f4ef);
    height: 130px;
    width: 100px;
    /* Установи подходящую ширину */
    display: flex;
    justify-content: center;
    align-items: center;
}

.ord-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 10px;
}

/* Слайдер order */
/* order page */

.hidden {
    display: none;
}

.dropdown-menu {
    border: 1px solid #ccc;
    background: var(--color-dark-beige);
    padding: 10px;
    margin-top: 5px;
}

/* Слайдер order вариант 2 */



/* Слайдер order вариант 2 */

/* admin-panel */
.admin-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.submit {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* admin-panel */


.gallery-container {
    display: none;
    position: relative;
    justify-content: space-between;
    overflow: hidden;
}

.gallery-main {
    position: relative;
    width: 810px;
    height: 500px;
    box-shadow: 0 50px 75px 50px rgba(#1e1e1e, 0.18);
    border: 1px solid #e9e9e9;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-button {

        &-prev,
        &-next {
            position: absolute;
            bottom: 0;
            right: 0;
            top: auto;
            left: auto;
            height: 75px;
            width: 40px;
            color: #e9e9e9;
            background: #1e1e1e;

            &::after {
                font-size: 12px;
            }
        }

        &-prev {
            right: 40px;
            border-right: 1px solid #e9e9e9;
        }
    }
}

.gallery-title {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: "Epilogue", sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(#000, 0.3);
    color: #ffffff;

    .swiper-slide-active & {
        animation: slide-in 0.3s ease-in both;
    }
}

.gallery-thumbs {
    order: -1;
    width: 100px;
    height: 350px;
    margin-right: 15px;
    padding-left: 15px;

    .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #EEE4DA;

        img {
            transition: 0.3s;
            /* width: 70px;
            height: 80px; */
            object-fit: cover;
        }

        &-active {
            opacity: 0.9;
        }

        &-thumb-active {
            opacity: 1;

            img {
                margin-left: -15px;
            }
        }
    }
}


@media (min-width: 576px) {
    .product-card {
        display: flex;
    }

    .capsule-text {
        font-size: 36px;
    }

    .navbag {
        padding-left: 10px;
        /* Отступ слева от корзины */
    }

    .cards {
        grid-template-rows: repeat(1, 1fr);
    }
}

@media (min-width: 628px) {
    .product-card {
        display: flex;
    }

    .ceo-picture {
        margin-left: 0;
    }

    .ceo-comment,
    .dark-cosmetic {
        flex-direction: row;
    }

    .footer-navigation {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

}

/* От 768 и больше */
@media (min-width: 768px) {
    .bourger {
        display: none;
    }

    .navigation-list,
    .navigation-search {
        display: flex;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: flex;
    }

    .navbag {
        display: none;
    }

    .cards {
        grid-template-rows: repeat(2, 1fr);
    }

    .navigation {
        padding-top: 51px;
    }

    .menu.active .logo {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        z-index: 15;
    }

    .ceo-comment {
        flex-direction: row;
        align-items: center;
    }

    .footer-products {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .navigation-cosmetic {
        display: flex;
    }


}

@media (min-width: 992px) {

    .footer-company {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .block-order {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .gallery-container {
        display: flex;
    }

    .card-left,
    .card-right {
        min-height: 900px;
    }

    .order-block {
        width: 40%;
        padding: 80px 60px;
    }

    .checkout {
        width: 60%;
    }

    .check-left {
        width: 65%;
    }

    .container-left {
        padding-right: 50px;
    }

    .check-right {
        padding-left: 50px;
    }

}

@media (min-width: 1240px) {
    .cards {
        grid-template-rows: repeat(3, 1fr);
    }

    .footer-company {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .card-block {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .checkout {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        box-sizing: border-box;
    }

    .left-text {
        min-width: 287px;

    }
}


/* 
@media (min-width: 576px)
@media (min-width: 768px)
@media (min-width: 992px)
@media (min-width: 1200px) 
*/
