* {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.box1 a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    transition: 0.4s;
}

.headerA:hover {
    color: rgba(201, 158, 113, 1);
} 

.container {
    background-color: rgba(20, 17, 14, 1);
    width: 1920px;
    height: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.box1 {
    background-color: rgba(28, 24, 20, 1);
    width: 1920px;
    height: 125px;
    display: flex;
}

.box1 .ul1 {
    display: flex;
    margin-left: 300px;
}

.box1 .ul2 li {
    margin-left: 0px;
    margin-right: 48px;
}

.box1 .ul2 {
    display: flex;
    margin-left: 181px;
}

.box1 ul li {
    margin-left: 48px;
    margin-top: 51px;
    margin-bottom: 52px;
}

.licart {
    position: relative;
}

.spanCounts {
    background-color: red;
    color: rgb(255, 255, 255);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 72px;
    height: 60px;
}
/* 
li a img:hover {
    transform: scale(1.1);
    transition: 0.4s;
} */

.logo {
    width: 72px;
    height: 60px;
    margin-left: 181px;
    margin-top: 32px;
}

.h1youcart {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    color: rgb(232, 231, 229);
    width: 410px;
    height: 50px;
    font-size: 24px;
    font-family: "Inter", sans-serif;
}

                          /* Carts */

.cartbg {
    margin-top: 30px;
    margin-bottom: 200px;
    width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.cartImgempty {
    display: none;
}

.cart {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

             /* Карточка товара в корзине */


.newcart {
    background-image: linear-gradient(to right, 
    rgb(239, 239, 239), rgb(220, 220, 220), rgb(228, 207, 207));
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    border: 4px solid rgb(58, 57, 57);
}

.cartZoom {
    cursor: pointer;
    margin-left: 5px;
    width: 110px;
    height: 110px;
    overflow: hidden;
}

.cartZoom:hover .cartImg {
    transform: scale(1.4);
}

.cartImg {
    width: 110px;
    height: 110px;
    object-fit: cover;
    transition: all .5s;
}

.cartTitle {
    color: rgb(52, 50, 50);
    font-size: 26px;
    font-family: "Montaga", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 2px rgb(71, 77, 109);
}

.cartPrice {
    color: rgb(195, 5, 5);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.counts {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.counts span {
    cursor: pointer;
    background-color: rgb(229, 229, 229);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 4px;
    transition: all .7s;
}

.counts span:hover {
    background-color: rgb(187, 187, 187);
    color: #000000;
}

.inputcount {
    background-color: rgb(228, 207, 207);
    width: 30px;
    height: 20px;
    text-align: center;
    outline: none;
    border: none;
}

.btclosed {
    margin-right: 5px;
    cursor: pointer;
    background-color: #bfbfbf;
    color: rgb(255, 255, 255);
    width: 22px;
    height: 22px;
    border: none;
    transition: all .4s;
}

.btclosed:hover {
    background-color: #8e8e8e;
}

.totals {
    border-bottom: 1px solid rgb(108, 108, 108);
    width: 100%;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: end;
}

.textTotal {
    color: rgb(219, 219, 219);
    margin-right: 30px;
    font-size: 22px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.spanTotal {
    color: rgb(219, 219, 219);
    margin-right: 5px;
    margin-right: 30px;
    font-size: 22px;
    font-weight: 700;
}

                          /* Footer */

.footer {
    position: relative;
    /* margin-top: 350px; */
    background-color: rgba(20, 17, 14, 1);
    width: 1170px;
    height: 144px;
    display: flex;
}

.footer::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -375px;
    width: 1920px;
    height: 2px;
    background-color: rgb(63, 61, 61);
}

.footer .ulmenu {
    display: flex;
}

.ulmenu li {
    margin-top: 20px;
}

.ulmenu li a {
    text-decoration: none;
    cursor: pointer;
    margin-left: 40px;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: "Urbanist";
    transition: 0.4s;
}

.ulmenu li a:hover {
    color: rgba(201, 158, 113, 1);
}

.footer .imglogs {
    width: 72px;
    height: 60px;
} 

.inpcircle {
    background-color: rgba(28, 24, 20, 1);
    color: rgba(255, 255, 255, 0.8);
    width: 308px;
    height: 72px;
    border: none;
    border-radius: 36px;
    outline: none;
    font-size: 16px;
    font-family: "Urbanist";
    padding-left: 20px;
}

.divinput {
    position: relative;
    width: 328px;
    height: 72px;
    margin-left: 90px;
    border-radius: 36px; 
}

.btinp {
    cursor: pointer;
    background-color: rgba(201, 158, 113, 1);
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
}

.strelka {
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
}

.box15 {
    background-color: rgba(28, 24, 20, 1);
    width: 1920px;
    height: 90px;
    display: flex;
}

.h4text1 {
    width: 1920px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-family: "Urbanist";
    font-weight: 400;
    margin-top: 33px;
    display: flex;
    justify-content: center;
}

