/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 53:0 Unexpected "<"

**/
/* START_SECTION:multi-horizontal-menus (INDEX:51) */
<style>
/* Menu Row Grid Layout */
.menu-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-left: 1px solid #e5e7eb;
}

/* Menu Column with Vertical Divider */
.menu-column {
  padding: 0 1rem;
  border-right: 1px solid #e5e7eb;
}

/* Updated Menu Title Styling — Bigger, Bolder */
.menu-title {
  font-weight: 800;
  font-size: 1.5rem; /* 24px — Equivalent to Tailwind's text-2xl */
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Menu Links List with Divider and Bullets */
.menu-links {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  list-style-type: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.menu-links li {
  margin-bottom: 0.4rem;
}

/* Link Styles */
.menu-links a {
  text-decoration: none;
  color: inherit;
}

.menu-links a:hover {
  text-decoration: underline;
}
</style>
/* END_SECTION:multi-horizontal-menus */
