.jc-menu-list *:focus {
  outline: 0;
}
html {
  scroll-behavior: smooth;
}
.jc-menu-list a:hover,.jc-menu-list a:focus {
  outline: 0;
  text-decoration:none;
}

.jc-menu-list__cat {
  box-shadow: 10px 0 50px -25px rgba(0,0,0,0.1);
  flex: 0 0 300px;
  margin-right: 40px;
}

.jc-menu-list__cat--wrap::-webkit-scrollbar {
  width: 0;
}

.jc-menu-list__cat--wrap {
  max-height: 550px;
  overflow-Y: auto;
  padding: 10px 20px;
  position: sticky;
  scrollbar-width: none;
  top: 0;
  bottom: 20px;
}

.jc-menu-list img {
  flex:1;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.jc-menu-list__item {
  padding: 15px 0 0;
}

.jc-menu-list__item--head {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 5px;
}

.jc-menu-list__prod--head a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none!important;
  letter-spacing: 0.58px;
}

.jc-menu-list__item--img {
  background-color: #000;
  border-radius: 50%;
  display: flex;
  margin-right: 10px;
  overflow: hidden;
}

.jc-menu-list__item--title {
  flex: 1;
  font-weight: bold;
}

.jc-menu-list__icon {
  line-height: 0;
  margin: 0 10px;
}

.jc-menu-list__icon svg {
  width:24px;
  height:24px;
}

.jc-menu-list__link {
  display: flex;
  flex-direction: column;
  padding:25px 5px;
}

.jc-menu-list__link span {
  color: #000;
  cursor: pointer;
  line-height: 1.2;
  margin-bottom: 10px;
  padding: 0 10px 0 30px;
}

.jc-menu-list {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}

{# Product Listing Start #}

.jc-menu-list__prod {
  margin-right: 36px;
}

.jc-menu-list__prod:nth-of-type(2) {
  margin-right: 0;
}

.jc-menu-list__prod--head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.jc-menu-list__prod--head h3{
  font-weight: bold;
  padding: 25px 20px 15px 0;
  position: relative;
  color: #000;
  margin: 0;
}

.jc-menu-list__prod--head h3:after {
  border-radius: 50px;
  bottom: 8px;
  content: '';
  left: 0;
  position: absolute;
}

.jc-menu-list__prod--all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.jc-menu-list__prod--item-set {
  display: flex;
  margin: 40px 0 0 0;
  flex-wrap: wrap;
}

.jc-menu-list__prod--item-set > a {
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.09);
  padding: 12px;
  flex: 0 0 calc(33.3% - 17px);
  margin: 0 25px 30px 0;
}

.jc-menu-list__prod--item-set > a:nth-child(3n) {
  margin-right: 0;
}

.jc-menu-list__prod--img {
  border-radius: 10px;
  display: flex;
  margin-bottom: 10px;
  max-height: 166px;
  overflow: hidden;
}

.jc-menu-list__prod--img img {
  flex: 1;
  object-fit: cover;
}

.jc-menu-list__prod--content {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.jc-menu-list__prod--name {
  color: #000000;
  flex: 1;
  order: 1;
}

.jc-menu-list__prod--price {
  font-weight: bold;
  order: 2;
}

{# Product Listing End #}

{# Mobile Menu icons Start #}

.jc-menu-list__menu--open, .jc-menu-list__menu--close {
  color: #9f060a;
  cursor: pointer;
  display: none;
  font-family: sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}

.jc-menu-list__menu--close {
  position: absolute;
  right: 15px;
  top: 5px;
  transform: rotate(45deg);
}

{# Mobile Menu icons End #}

@media screen and (max-width: 1140px) and (min-width: 992px) {
  .jc-menu-list__prod--item-set > a {
    flex: 0 0 calc(50% - 10px);
    margin-right: 20px;
  }
  
  .jc-menu-list__prod--item-set > a:nth-of-type(3n) {
    margin-right: 20px;
  }
  
  .jc-menu-list__prod--item-set > a:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width:991px) { 
  .jc-menu-list__cat {
    background-color: #ffffff;
    bottom: 0;
    box-shadow: 10px 0 50px -25px rgba(0,0,0,0.1);
    left:-20px;
    right: 0;
    position: absolute;
    top: 10px;
    transition: transform 0.3s linear;
    z-index: 9;
    margin: 0;
    transform: translateX(-100%);
  }
  
  .jc-menu-list__cat--slide-left {
    transform: translateX(0);
  }

  .jc-menu-list__menu--open {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    line-height: 0;
    margin: 15px 0;
    padding: 15px;
    position: sticky;
    top: 150px;
    z-index: 1;
  }

  .jc-menu-list__menu--open img {
    height: auto;
    width: 24px;
  }

  .jc-menu-list__menu--open, .jc-menu-list__menu--close {
    display: inline-block;
  }

  .jc-menu-list__prod--item-set > a {
    flex: 1 0 calc(33.3% - 30px);
  }
  
  .jc-menu-list__cat--wrap {
    margin: 20px 10px;
    max-height: 350px;
    position: static;
    padding: 10px;
  }

  .jc-menu-list__item {
    padding: 15px 0 0;
    margin-top: 20px;
  }

  .jc-menu-list__item--head {
    padding: 5px;
  }

  .jc-menu-list__item--img {
    margin-right: 10px;
    display:none;
  }

  .jc-menu-list__item--title {
    font-weight: bold;
  }

  .jc-menu-list__icon {
    margin: 0 10px;
  }

  .jc-menu-list__link {
    padding:20px 5px;
  }

  .jc-menu-list__link span {
    margin-bottom: 5px;
    padding: 0 10px 0 30px;
  }

  {# Product Listing Start #}

  .jc-menu-list__prod {
    margin-right: 0;
  }

  .jc-menu-list__prod--head {
    padding: 0 0 10px;
  }

  .jc-menu-list__prod--head:after {
    bottom: 5px;
    left: 10px;
  }

  .jc-menu-list__prod--item-set > a {
    padding: 10px;
    flex: 0 0 calc(33.3% - 20px);
  }

  .jc-menu-list__prod--item-set > a:nth-of-type(3n) {
    margin-right: 0;
  }

  .jc-menu-list__prod--img {
    margin-bottom: 10px;
  }

  .jc-menu-list__prod--all {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .jc-menu-list__prod--item-set > a {
    flex: 0 0 calc(50% - 10px);
    margin-right: 20px;
    padding: 10px;
  }
  
  .jc-menu-list__prod--item-set > a:nth-of-type(3n) {
    margin-right: 20px;
  }
  
  .jc-menu-list__prod--item-set > a:nth-of-type(2n) {
    margin-right: 0;
  }
}

.jc-menu-list__link--border {
  padding-left: calc(30px - 6px)!important;
}
