﻿.headerBoxFoodwrapper {
  border-radius: var(--b-radius) var(--b-radius) 0 0;
  border-bottom: 0.1rem solid var(--lsilver);
}

.headerBoxFoodwrapper.HasDiscount {
  background-color: var(--accent-color2);
}

.headerBoxFoodwrapper span {
  color: var(--accent-color3);
}

.HasDiscount.headerBoxFoodwrapper span {
  color: var(--White);
}

.foodquantity span {
  font-size: 0.8rem;
}

.foodquantity {
  border-bottom: 1px solid var(--accent-color3);
}

.rotate-icon {
  transition: transform 0.3s ease;
}

.rotate-icon.open {
  transform: rotate(180deg);
}

#workingHours {
  display: none;
}

#workingHours.open {
  display: flex;
}

span.checkoutList__Item_Actions_Increase,
.checkoutList__Item_Actions_Decrease {
  color: var(--accent-color2);
  box-shadow: 0 0 3px -1px var(--accent-color3);
  border-radius: calc(var(--b-radius) * 4);
  width: 2rem;
  height: 2rem;
  font-size: 1.7rem;
}

.checkoutListWrapper svg {
  width: 1rem;
  height: 1rem;
  font-size: 1.7rem;
}

.ItemDeliveryExpress {
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.1);
  border-radius: 5rem;
}

.vendor_lovely .swiper-slide {
  height: unset !important;
  width: 268px;
  max-width: 90%;
  margin-left: 1rem;
}

.vendor_lovely .swiper-slide:last-child {
  margin-left: 0;
}

.vendor_lovely_pagination {
  position: absolute;
  bottom: 0 !important;
}

.vendor_lovely_pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 2px solid #FFBC01;
  border-radius: 50%;
  transition: all 0.5s;
}

.vendor_lovely_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 1.8rem;
  height: 0.8rem;

  background-color: #FFBC01;
  border-radius: 35%;
}

.wraper_logo_card>img {
  width: 4rem;
  height: 4rem;
}

.wraper_logo_card {
  transform: translate(-50%, -70%);
  left: 50%;
}

.bottomsection_list strong {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  height: 4rem;
}

.shadow__tatli_card {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.h-50 {
  height: 50%;
}

.coverwrapper img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

.FoodCats .active {
  color: var(--Black);
  font-weight: 800;
  position: relative;
}

.FoodCats .active:after {
  content: "";
  width: 0.1rem;
  height: 100%;
  position: absolute;
  background-color: var(--Black);
  left: -0.7rem;
}

.FoodCats span {
  cursor: pointer;
}

.FoodCats .HasDiscount {
  color: var(--accent-color2);
}

.p-sticky {
  position: sticky;
  top: 9rem;
  height: fit-content;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.pagination .page-item {
  display: flex;
  background-color: var(--White);
  flex-shrink: 0;
  border-radius: var(--b-radius);
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  color: var(--Dark);
}

.pagination .page-item.active,
.pagination .page-item:hover {
  background-color: var(--accent-color);
  color: var(--White);
}

.pagination .page-item:hover a {
  color: var(--White);
}

.pagination .page-item a,
.pagination .page-item.active {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;

}

.productstabinfo .SideBar {
  position: sticky;
  top: 9rem;
  height: fit-content;
}

.checkoutListbtn {
  display: none;
  background-color: var(--accent-color2);
  border-radius: var(--b-radius);
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 44444;
}
.SideCheckout{
  position: sticky;
  top: 9rem;
  height: fit-content;
}
@media(max-width:970px) {
  .productstabinfo .SideBar {
    position: static;
  }
  .SideCheckout{
    position: static;
  }

  .checkoutListWrapper {
    transition: bottom 0.4s ease;
    transform: translateY(-10px);
    position: fixed;
    max-height: 27rem;
    overflow-y: auto;
    bottom: -100%;
    width: 100%;
    left: 0;
    z-index: 9999999999;
    &.active{
      bottom: 0;
    }
  }

  .checkoutListbtn {
    display: block;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); 
    z-index: 999; 
    display: none;
  }
}