.cl {
    display: block;
    text-align: center;
}

/* img{

} */
.logo {
    font-size: 24px;
    margin-right: 0;
    font-weight: bold;
}
                            /* sverhu */
body{
    padding-top: 130px;
    background-color:#fce4b9;
}
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
}
aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    height: auto; /* Задаем фиксированную высоту */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Добавляем тень */
    z-index: 950; /* Устанавливаем высокий z-index для отображения поверх остального контента */
}

aside h3 {
    margin-top: 0;
    font-size: 35px;
    margin-bottom: 0;
}

aside li, aside a {
    list-style: none;
    text-decoration: none;
    display: inline-block;
    margin-right: 40px;
    font-weight: bold;
    font-size: 18px;
    color: rgba(255, 234, 234, 0.96); /* Изменяем цвет текста на белый */
    transition: all 0.6s ease;
}

/* Добавляем стиль для ul, если он существует */
aside ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
input{
    border:none;
    background:none;
    color:#f5f5f5;
}
input:focus {
    outline: none;
  }
  
.search-container {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}

.search-result-item {
    padding: 10px;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}
@media (max-width: 768px) {
    aside {
        /* flex-direction: column;
        height: auto;
        align-items:center; */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 20px;
    }
    #menuToggle {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle input {
        display: flex;
        width: 40px;
        height: 32px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
    }

    #menuToggle span:not(.logo) {
        display: flex;
        width: 29px;
        height: 2px;
        margin-bottom: 5px;
        position: relative;
        background: #ffffff;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 5px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-3px, -1px);
        background: #36383F;
    }

    #menuToggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menu {
        position: absolute;
        width: 100%;
        height: 100vh;
        /* box-shadow: 0 0 10px #85888C; */
        margin: 30px 0 0 -50px;
        padding: 50px 20px 50px 50px;
        border-radius:20px 0px 20px 0px;
        background-color: #000000;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    #menu li {
        padding: 10px 0;
        text-align: center;
    }

    #menuToggle input:checked ~ ul {
        transform: none;
    }
    .logo {
        padding: 0 30%;
        /* margin-left: 50vw;     */
        /* float:inline-start;  */
    }
    aside li, aside a{
        margin-right: 0;
    }
    aside ul {
        flex-direction: column;
        align-items: center;
    }
    
    li, a {
        margin: 5px 0;
    }
}
                                    /* sverhu */
                /* sleva */
/* aside{
    float: left;
    width: 20%;
    padding: 2.5%;
    height: 100%;
    border-right: 5px solid #221515;
    border-bottom: 5px solid #6d636384;
    border-bottom-right-radius: 12%;
}
aside h3{
    margin-top: 50px;
    font-size: 35px;
    margin-bottom: 45px;
}
li, a{
    list-style: none;
    text-decoration: none;
    margin-right: 40px;
    font-weight: bold;
    font-size: 18px;
    color: rgb(24, 19, 19);
    text-align: center;
    transition: all 0.6s ease;
} */
                /* sleva */
i{
    transition: all 0.15s ease-out;
}
li:not(.dropdown):hover, a:not(.dropdown):hover{
    /* transform: scale(1.05); */
    color:rgb(252, 190, 91);
    cursor:pointer;
}
.dropdown:hover, 
.dropdown .dropbtn:hover {
    /* color: rgb(252, 190, 91); */
    cursor: pointer;
    transform: none;
}
.cards {
    display: grid;
    /* Автоматически заполняем на всю ширину grid-контейнера */
    grid-template-columns: repeat(auto-fill, 200px);
    width: 100%;
    /* background-color: #221515; */
    max-width: 1000px; /* Ширина grid-контейнера*/
    justify-content: center;
    justify-items: center; /*Размещаем карточку по центру */
    column-gap: 30px; /* Отступ между колонками */
    row-gap: 40px; /* Отступ между рядами */
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .card {
    /* width: 225px; */
    /* width: 100%; */
    min-height: 150px;
    max-height: 150px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    background-color:rgba(75, 68, 68, 0);
    flex-direction:column; /* Размещаем элементы в колонку */
    border-radius: 10px;
    transition: 0.2s;
    position: relative;
  }
/* При наведении на карточку - меняем цвет тени */
.card:hover {
    box-shadow: 4px 8px 16px rgba(39, 40, 10, 0.99);
    transform: scale(1.03);
  }
.out-of-stock img{
    filter: blur(3.3px);
    opacity: 0.6;
}
.price-container {
    position: absolute;
    top: 73%;
    left: 10%;
    width: 80%;
    background: linear-gradient(#ffffff00, rgba(255, 183, 67, 0.843));
    padding: 0px;
    border-radius: 10px;
    opacity: 1;
    transition: ease 0.6s all;
}

.card:hover .price-container {
    opacity: 1;
    transform: scale(1.05);
    top: 65%;
}
.nprice {
    margin: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff7644da 33%, #ff9d00 66%, #ff7644);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
}
.copy-right-sec{
    /* padding: 1.8rem; */
      background: #000000;
      color: grey;
      text-align: center;
  }
.copy-right-sec a{
    color: #fcd462;
    /* color:rgb(252, 190, 91); */
    font-weight: 500;
  }
  @media (max-width:720px){
    .copy-right-sec{padding: 1.8rem;}
  }
.footer{
    background:#000;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
.footer .row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row; 
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    /* font-size:0.8em; */
    }
    
.footer .row a{
    flex: 0;
    text-align: center;
    text-decoration:none;
    color:gray;
    transition:0.5s;
    }
    
.footer .row a:hover{
    color:#fff;
    }
    
.footer .row ul{
    width:40%; 
    }
    
.footer .row ul li{
    display:inline-block;
    margin: 0 auto;
    }
    
.footer .row a i{
    font-size:1.6em;
    /* margin:0% 1%; */
    }
    
@media (max-width:720px){
    .footer{
    text-align:left;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }
  body::-webkit-scrollbar {
    width: 10px;
  }
  
  body::-webkit-scrollbar-track {
    -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
    background-color: #101010;
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #feb87b;
    background-image: -webkit-linear-gradient(45deg,rgba(255, 255, 255, .25) 25%,
                      transparent 25%,
                      transparent 50%,
                      rgba(255, 255, 255, .25) 50%,
                      rgba(255, 255, 255, .25) 75%,
                      transparent 75%,
                      transparent);
  }