#new_item_sect .carousel_item {
  height: auto;
  width: 250px;
  min-height: 350px;
  border: 1px solid #d5dbdb;
  border-radius:10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

#new_item_sect .add_cart_btn:hover {
    background-color: var(--black);
    color: var(--yellow);
}

#new_item_sect .carousel_item_desc {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: min-content;
    margin-bottom: 10px;
    margin: 0 auto;
    width: 90%;
    /*max-height: 80px;
    overflow: scroll;*/
}

#new_item_sect #new_items_carousel {
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width:100%;
}

#new_items_carousel::-webkit-scrollbar {
  height: 0;
}

#new_item_sect .carousel_item {
    border: 1px solid var(--black);
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
}

#new_item_sect .carousel_item_img {
    width: 75%;
    object-fit: contain;
    object-position: center;
    height: 100%;
    border-top-left-radius: 50px;
}

#new_item_sect .carousel_item > a {
    max-height: 250px;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#new_item_sect .carousel_item > a + .carousel_item_desc {
    transition: color 0.3s ease;
}

#new_item_sect .carousel_item > a:hover + .carousel_item_desc {
    color: var(--yellow);
    transition: color 0.3s ease;
}

#new_item_sect .carousel_content {
    padding-left: 2px;
}

#new_item_sect .carousel_item_detail {
    justify-content: flex-start;
    gap: 20px;
    margin: auto auto 15px auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    padding-left: 2%;
}

#new_item_sect .carousel_item_detail .price {
    margin-bottom: 0;
}

#new_item_sect .carousel-prev,
#new_item_sect .carousel-next {
    display: flex;
    justify-content: center;
    align-content: center;
    background: var(--yellow);
    border: none;
    padding: 13px 18px;
    border-radius: 5px;
    outline: 0;
    cursor: pointer;
    position: absolute;
    height: 50px;
    z-index: 100;
    transition: opacity 0.3s ease;
    top: calc(50% + 25px);
}

#new_item_sect .carousel-prev:hover,
#new_item_sect .carousel-next:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#new_item_sect .carousel-prev {
  left: 15px;
}

#new_item_sect .carousel-next {
  right: 15px;
}

#new_item_sect .arrow_disabled {
    cursor:default;
    opacity:50%;
    pointer-events: none;
}

#new_item_sect .carousel_content {
  display: flex;
  gap: 15px;
  overflow-x: hidden;  
  scroll-behavior: smooth;
  margin: auto;
  box-sizing: border-box;
  scrollbar-width: none;
}

#new_item_sect .carousel_content::-webkit-scrollbar {
  display: none; 
}