/* custom css  */

.footer-working-hours {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc; /* Adjust based on theme */
}

.footer-working-hours .footer-hours-block {
  margin-bottom: 15px;
}

.footer-working-hours strong {
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 5px;
}


/* Page - Menu */
.menu-sidebar .product-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-sidebar .product-categories li {
    margin: 6px 0;
}

.menu-sidebar .product-categories li a {
    display: block;
    padding: 6px 0;
    text-decoration: none;
    color: #333;
    transition: color .2s ease;
    border-bottom: 1px solid #eee;
}

.menu-sidebar .product-categories li a:hover {
    color: #b48a1e;
    text-decoration: underline;
}

.menu-sidebar .product-categories li.active-cat > a {
    font-weight: 700;
    color: #b48a1e;
    text-decoration: underline;
    background: #fff8e1;
    border-radius: 6px;
    padding: 6px 8px;
}


/* Hide Add to Cart buttons */
.products-dynamic-wrapper .product__icon .add_to_cart_button {
    display: none !important;
}

/* Disable product title and price links */
.products-dynamic-wrapper .product__title a,
.products-dynamic-wrapper .product__price a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
}

/* Page - Reservation */
.book-a-table-3-bottom-wrapper .book-a-table-3-bottom__item:nth-child(2) {
    display: none !important;
}



/* === Footer Column Width Fix === */


/* Food Menu Footer - Two Columns + Styling */
#menu-cholas-footer-menu {
  column-count: 2;
  column-gap: 40px; /* space between columns */
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu-cholas-footer-menu li {
  break-inside: avoid;
  margin-bottom: 6px; /* spacing between items */
}

#menu-cholas-footer-menu li a {
  color: #fff; /* white text like Bayleaf */
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

#menu-cholas-footer-menu li a:hover {
  color: #d4a15a; /* goldish hover color like Bayleaf */
}

/* Mobile: revert to single column */
@media (max-width: 768px) {
  #menu-cholas-footer-menu {
    column-count: 1;
  }
}




