.logo-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background-color: #ffffff;

}

.logo-setup {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    align-items: first baseline;
    padding: 0 80px 0 50px;
}

.lop-icon img {
    width: 19px;
    height: 16px;
}

.lop-icon {
    display: flex;
    justify-content: start;
    z-index: 10001;
}

/*search-panel*/

.search-container {
    position: absolute;
    display: none;
    background-color: #FAF0E3;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-20px);
    padding: 5px;
    width: 200px;
    z-index: 1010;
}

.search-container input {
    background-color: #FAF0E3;
    border: none;
    outline: none;
    padding: 5px;
    width: 90%;
    margin-left: 15px;
}

.search-container.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cart-icon a {
    font-size: 20px;
    color: black;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration: underline;
}

.cart-icon {
    display: flex;
    justify-content: end;
}

#mygnif{
    width: 18px;
    margin-left: 160px;
    margin-top: 6px;
}

.bag-icon {
    width: 30px;
    height: 30px;
}

#shop-btn img {
    width: 10px;
    height: 10px;
}

.header_cont {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    max-height: 110px;
    background: #fff;
    z-index: 500;
    min-height: 66px;
}

#shop-panel {
    display: none;
}


/*link for shop*/

.nav-links-black {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    background-color: #fff;
    position: relative;
    z-index: 1000;
}



.nav-links-black .a1 {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.nav-links-black .a1::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #000000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-out;

}

.nav-links-black a:hover::after {
    width: 100%;
}

.nav-links-black a:hover ~ .overlay1 {
    opacity: 1;
}

.space {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.product-item1 {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 10px;
    padding: 10px;
}

.product-item1 a:hover {
    box-shadow: 0 4px 20px rgba(77, 54, 116, .15);
    transition: all .3s ease-out;
}

.product-item1 {
    width: 70%;
}


.product-item1 a {
    display: block;
    position: relative;
    padding: 15px;
    border-radius: 10px;
    transition: all .3s ease-out;
}

.product-item img {
    object-fit: cover;
    border-radius: 14px;
    width: 100%;
}


.product-item1 .price {
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.product-item1 .stars {
    color: #1a1d20;
    align-items: center;
    display: flex;
    justify-content: normal;
    padding: 12px 0;
}

.product-item1 img {
    border-radius: 18px;
}

.product-item1 span {
    text-align: left;
    margin: 0 0 10px;
    color: #444;
    display: block;
    line-height: 21px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.product-item1 a {
    display: block;
    position: relative;
    padding: 15px;
    border-radius: 10px;
    transition: all .3s ease-out;
    color: inherit;
    text-decoration: none;
}

.product-item1 a {
    border: black;
}


/*shop panel*/

.overlay1 {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
    z-index: 999;

}

.shop-panel {
    display: block;
    position: fixed;
    top: 10%;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: white;
    z-index: 1000;
    overflow-y: auto;
    padding: 2px;
    box-sizing: border-box;
    border-top: 1px solid black;
}

.shop-panel a{
    text-decoration: none;
    color: black;
}

/*card-panel*/
.proceed h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 90%;
    margin: 0 auto;
    padding: 0 5%;
    text-transform: capitalize;
    font-size: 1.4rem;
    border-radius: 30px;
    background-color: #FF8D38;;
    color: white;
    cursor: pointer;
}

.info-about-pay {
    display: flex;
    justify-content: center;
    padding: 20px;
    align-items: center;

}

.sub_total1 {
    font-size: 24px;
    font-weight: 700;
    padding: 23px 0;
}

.sub_total2 {
    text-align: right;
    font-size: 24px;
    font-weight: 700;
    padding: 23px 0;
}

.sub_total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 10px;
}

.cart-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #e2e2e2;
    height: 210px;
}

.card-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 20px;
    z-index: 1;
    background: #fff;
}

.card-head h2 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.card-head button {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 33px;
    display: inline-block;
    padding: 0 20px;
    font-weight: 400;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}
.burger-content.active {
    display: block;
}

/*mobile*/
.logo-mobile {
    display: none;
}
.cart-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 42vh;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}


/*burger menu*/
.burger-menu.active + .search-icon {
    display: block;
}

.burger-menu.active ~ .logo-mobile-version {
    opacity: 0;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
    position: absolute;
}

.bar1 {
    top: 0;
}

.bar2 {
    top: 8px;
}

.bar3 {
    bottom: 0;
}

.burger-menu.active .bar1 {
    transform: rotate(45deg);
    top: 8px;
}

.burger-menu.active .bar2 {
    opacity: 0;
}

.burger-menu.active .bar3 {
    transform: rotate(-45deg);
    bottom: 8px;
}
.logo-mobile-version {
    transition: opacity 0.3s ease;
}
.burger-content {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-top: 26px solid #f5f5f7;
}
.overlay-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 998;
    transition: opacity 0.3s ease;
}

/*search icon*/
.search-icon {
    display: none;
    cursor: pointer;
    font-size: 20px;
    transition: opacity 0.3s ease;
    margin-left: -130px;
}


@media (max-width: 770px) {

    .logo-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: white;
    }
    .burger-menu {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .logo-block {
        display: none;
    }

    .logo-setup {
        font-size: large;
    }
}

@media (max-width: 960px) {
    .shop-panel {
        top: 10%;
        height: 450px;
    }
    .product-item1 {
        width: 74%;
    }

    .product-item1 {
        padding: 0;
    }
    #cart-icon-shopping img {
        width: 30px;
        height: 30px;
    }
    .nav-links-black .a1{
        font-size: 10px;
    }

}
@media (max-width: 500px) {
    .burger-menu {
        width: 91px;
    }
}

@media (max-width: 400px) {
    #mygnif{
        width: 20px;
        margin-left: 135px;
        margin-top: 6px;
    }
}
