/* Viva Takeaway Public CSS */

.viva-takeaway-container {
  display: flex;
  gap: 25px;
}

.viva-takeaway-categories {
  width: 25%;
}

.viva-takeaway-products {
  width: 75%;
}

.viva-takeaway-category-list-wrapper {
  position: sticky;
  top: 45px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.08), 0 3px 3px 0 rgba(0, 0, 0, 0.07);
}

.viva-takeaway-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.viva-takeaway-category-list li a {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid #ededed;
  white-space: nowrap;
}

.viva-takeaway-category-list li a.active {
  background: #550f0d;
  color: #fff;
}

.viva-takeaway-category-thumbnail {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viva-takeaway-category-thumbnail img {
  height: 20px;
  width: auto;
  display: block;
}

.viva-takeaway-category-name {
  transition: color 0.3s;
}

.viva-takeaway-product-section {
  margin-bottom: 25px;
  padding-top: 25px;
}

.viva-takeaway-category-list li a:hover {
  background: #550f0d;
  color: #fff;
  cursor: pointer;
}

.viva-takeaway-category-thumbnail img {
  transition: 0.3s ease;
  filter: brightness(0) invert(0);
}

.viva-takeaway-category-list li a:hover .viva-takeaway-category-thumbnail img {
  filter: brightness(0) invert(1);
}

.viva-takeaway-category-list li a.active .viva-takeaway-category-thumbnail img {
  filter: brightness(0) invert(1);
}

.viva-takeaway-product-section .products {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.viva-takeaway-product-section .products li.product {
  flex: 0 0 calc(50% - 10px);
  box-sizing: border-box;
  list-style: none;
}
.category-header h2 {
  font-weight: bold;
  font-size: 22px;
  color: #550f0d;
}

.category-header {
  margin-bottom: 15px;
}
ul.viva-takeaway-category-list {
  margin: 0;
  padding: 0;
}

ul.viva-takeaway-category-list li {
  list-style: none;
  margin-bottom: 5px;
}
ul.viva-takeaway-category-list li:last-child {
  margin-bottom: 0 !important;
}
.viva-takeaway-category-list-wrapper {
  padding: 15px;
  border: 1px solid #ededed;
  border-radius: 8px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .viva-takeaway-container {
    flex-direction: column;
  }
  .viva-takeaway-categories {
    width: 100%;
  }
  .viva-takeaway-products {
    width: 100%;
  }
  ul.viva-takeaway-category-list {
    display: flex;
  }

  ul.viva-takeaway-category-list li {
    margin: 0;
    margin-right: 10px;
  }
  ul.viva-takeaway-category-list li a {
    min-width: 100px;
  }
  .viva-takeaway-category-list-wrapper {
    overflow-x: scroll;
  }
  .viva-takeaway-categories {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    padding: 0 !important;
  }
  .viva-takeaway-product-section .products li.product {
    flex: 0 0 100%;
  }
}

h2.product-title a {
  font-weight: bold;
  font-size: 16px;
  color: #550f0d;
}
.wrcc_price_cart {
  gap: 25px !important;
}
.takeaway-product-inner .add-to-cart a:before {
  top: -9px;
  left: -9px;
  background-color: #550f0d;
  height: 20px;
  width: 20px;
}
.allergener p {
  font-weight: bold;
  margin-bottom: 10px;
}

.allergener {
  margin-bottom: 5px;
}
span.viva-takeaway-category-name {
  text-transform: uppercase;
}
