html,
body {
    height: 100%;
    background-color: #f8f8f8;
}

body {
    min-width: 320px;
}

body.no-scroll {
    overflow: hidden;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main.main {
    flex: 1 1 auto;
    margin-top: 60px;
}

.wrapper .header {
    width: 100%;
    height: 60px;
    margin: 20px auto;
    padding: 7px 0px 0px 0px;
    border-bottom: 0.5px solid #cecece;
}

.wrapper .header .logotext {
    margin-top: 4px;
    margin-left: 20px;
}

.wrapper .header .logotext .lt1 {
    color: black;
    font-family: 'Voga', sans-serif;
    font-size: 32px;
    font-weight: lighter;
    letter-spacing: 2px;
    
}

.burger {
    display: none;
    position: absolute;
    z-index: 50;
    align-items: center;
    width: 25px;
    height: 18px;
    margin-top: -33px;
    /* margin-left: 45px; */
    right: 20px;
}

.burger span {
    height: 2px;
    width: 80%;
    transform: scale(1);
    background-color: black;
    position: absolute;
    right: 0;
}

.burger::before,
.burger::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: black;
    transition: all 0.3s ease 0s;
}

.burger::before {
    top: 0px;
}

.burger::after {
    bottom: 0;
}

.burger.active span {
    transform: scale(0);
}

.burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}

@media (max-width: 1920px) {
    .burger {
        display: flex;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        height: auto;
        bottom: 0;
        left: 0;
        top: 0;
        z-index: 50;
        overflow-y: auto;
        width: 100%;
        background-color: white;
        animation: burgerAnimation 0.4s;
    }
}

@media (max-width: 330px) {
    .nav ul {
        width: 100%;
        position: fixed;
        left: 10px;
    }
}

.nav ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    margin: 80px auto auto;
    width: 100%;
    margin-left: 20px;
    z-index: 1000;
}

.open {
    display: flex;
}

@keyframes burgerAnimation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nav ul li a {
    text-decoration: none;
    color: black;
}

.cart img {
    height: 25px;
    width: 25px;
    margin-left: 320px;
    margin-top: -81px;
}

.about_title .golovna a {
    text-decoration: none;
    color: black;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.about_title .about {
    color: #cecece;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.about_title .about2 {
    color: black;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.about_title {
    margin-top: 15px;
    width: 300px;
    margin: 20px auto;
}

.spring_description {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -65px;
}


.sending .sending_title {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-top: 26px;
}

.sending .sending_description {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.sending .delivery_title {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-top: 26px;
}

.sending .delivery_description {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.sending .return_title {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-top: 26px;
}

.sending .return_description {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}































.footer {
    margin-top: 22px;
    /* height: 185px; */
    text-align: center;
    color: #f8f8f8;
    border-top: 1px solid grey;
    background-color: #fff;
}

.footer .nav_menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    margin-top: 16px;
}

.footer .nav_menu li {
    display: inline-block;
    margin-right: 15px;
    color: black;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 11px;
}

.footer .nav_menu li a {
    text-decoration: none;
    color: black;
}

.footer .logo {
    color: black;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin-top: 5px;
}

.footer .logo .logo1 {
    color: black;
    font-family: 'Voga', sans-serif;
    font-size: 32px;
    font-weight: lighter; 
    letter-spacing: 2px;
}

.footer .footb {

    margin-top: 20px;
    color: grey;
    font-family: 'Voga', sans-serif;
    font-size: 16px;
    font-weight: lighter;
    letter-spacing: 2px;
}






































.cart-title {
    font-size: 24px;
    margin: 20px;
    text-align: center;
}

.cart-item {
    display: flex;
    /* align-items: center; */
    margin: 20px;
    /* border: 1px solid #ddd; */
    padding: 10px;
    /* border-radius: 5px; */
}

.cart-item img {
    width: 140px;
    height: 170px;
    object-fit: cover;
    margin-right: 20px;
    margin-top: -115px;
    margin-left: 0px;
}

.cart-item-details {
    flex: 1;
}





svg.bi.bi-trash {
    margin-right: 5px;
}


.cart {
    position: absolute;
    right: 70px;


}



button#confirmDeleteButton {
    border: 1px solid black;
    border-radius: 0;
    color: #000;
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

button.btn.btn-secondary {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #fff;
    background-color: #2d2d2d;
    border: none;
    border-radius: 0;
}

.modal-body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

h5#confirmDeleteModalLabel {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 650;
    font-style: normal;
    font-size: 17px;
}



.cart-badge {
    position: absolute;
    top: -33.5px;
    right: 3px;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-badge2 {
    position: absolute;
    top: -33.5px;
    right: 3px;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.custom-select {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    left: 0;
    right: 0;
    margin-top: 25px;
    margin-left: 15px;
}
.custom-select.show {
    max-height: 340px;
    margin-left: 40px;
}

.custom-select {
    color: black;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 20px;
    margin-left: 40px;
}
.custom-select select {
    display: none;
}


.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
}

.cart-item-image img {
    max-width: 100px;
    height: auto;
}

.cart-item-details {
    margin-left: -160px;
    flex: 1;
    height: 285px;
}

.cart-item-name {
    font-weight: bold;
    font-size: 16px;
}

.cart-item-article {
    color: #888;
    margin-bottom: 5px;
}

.cart-item-color,
.cart-item-size {
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: bold;
    margin-top: 10px;
}

.cart-item-remove {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;


 

}

@media (min-width: 433px) {
    .phone_cart {
        margin-bottom: 68px;
    }
}

.line_footer {
    width: 90%;
    margin: 0 auto;
    border-bottom: 0.8px solid #cecece;
}




.container {
    width: 80%;
    margin: 0 auto;
    padding: 0 10px ;
    color: #000;
}


.info-block {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin-left: -9px;
    font-family: 'Futura Std', sans-serif;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .025rem;
    line-height: 1rem;
    margin-top: 20px;

}

.details {
    overflow: hidden; /* Щоб приховати деталі, які виходять за межі контейнера */
    transition: max-height 0.3s ease; /* Додаємо анімацію для відкриття/закриття */
    max-height: 0; 
}

.right {
    font-family: 'Futura Std', sans-serif;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .025rem;
    line-height: 1rem;
    margin-right: -15px;
}

.right.open {
    transform: rotate(45deg); /* Повертаємо кнопку на 45 градусів */
}






.toggle-container,.toggle-container2,.toggle-container3 {
    width: 92%;
    margin: 20px auto;
}

.toggle-header,.toggle-header2,.toggle-header3 {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    width: 95%;
    margin: 0 auto;
}

.arrow,.arrow2,.arrow3 {
    transition: transform 0.3s;
}

.toggle-content,.toggle-content2,.toggle-content3 {
    display: flex;
    flex-direction: row;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.toggle-content.active,.toggle-content2.active,.toggle-content3.active {
    max-height: 500px; /* Достатньо велике значення для плавного переходу */
    padding: 10px;
}

.left-block, .left-block2, .left-block3 {
       /* margin-top: 10px; */
       width: 100%;
       font-size: 13px;
       line-height: 24px;
       color: grey;
       text-align: left;
       margin-left: 20px;
       font-weight: 200;
}

.right-block, .right-block2, .right-block3 {
    margin-top: 10px;
    width: 50%;
    color: #7b7b7b;
    font-weight: 300;
    font-size: 13px;
    line-height: 24px;
}

#det_tov, #det_tov2, #det_tov3 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 580;
    font-style: normal;
    font-size: 13px;
    color: #000;
}

.title {
    width: 90%;
    margin: 0 auto;
    font-family: 'Futura Std', sans-serif;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: .035rem;
    line-height: 2rem;
    
}







@media (max-width: 380px) {
    .phone_cart {
        position: absolute;
        font-size: 0.925rem;
        font-weight: 400;
        letter-spacing: .025rem;
        line-height: 1.5rem;
        margin-left: 155px;
        width: max-content;
        width: 40%;
    }
}

@media (max-width: 400px) {
    .phone_cart {
        position: absolute;
        font-size: 0.925rem;
        font-weight: 400;
        letter-spacing: .025rem;
        line-height: 1.5rem;
        margin-left: 155px;
        width: max-content;
        width: 45%;
    }
}

@media (max-width: 420px) {
    .phone_cart {
        position: absolute;
        font-size: 0.925rem;
        font-weight: 400;
        letter-spacing: .025rem;
        line-height: 1.5rem;
        margin-left: 155px;
        width: max-content;
        width: 50%;
    }
}

@media (max-width: 440px) {
    .phone_cart {
        position: absolute;
        font-size: 0.925rem;
        font-weight: 400;
        letter-spacing: .025rem;
        line-height: 1.5rem;
        margin-left: 155px;
        width: max-content;
        width: 50%;
    }
}

@media (max-width: 460px) {
    .phone_cart {
        position: absolute;
        font-size: 0.925rem;
        font-weight: 400;
        letter-spacing: .025rem;
        line-height: 1.5rem;
        margin-left: 155px;
        width: max-content;
        width: 55%;
    }
}

@media (max-width: 480px) {
    .phone_cart {
        position: absolute;
        font-size: 0.925rem;
        font-weight: 400;
        letter-spacing: .025rem;
        line-height: 1.5rem;
        margin-left: 155px;
        width: max-content;
        width: 45%;
    }
}