/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 117:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .custom-menu-wrapper {
    background-color: var(--container-bg-color);
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .custom-menu-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
  }

  .custom-menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .custom-menu-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    background-color: var(--tab-bg-color);
    color: var(--tab-text-color);
    transition: background-color 0.3s, color 0.3s;
  }

  .custom-menu-tab.active {
    background-color: var(--tab-active-bg-color);
    color: var(--tab-active-text-color);
  }

  .filter-wrapper {
    text-align: center;
    margin: 20px 0;
  }

  .filter-select {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
  }

  .product-grid {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 30px;
  }

  .product-grid.active {
    display: grid;
  }

  .product-card {
    border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .product-card a {
    text-decoration: none;
    color: inherit;
  }

  .product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-title {
    font-size: 14px;
    margin: 10px 0 5px;
  }

  .product-price {
    font-size: 16px;
    font-weight: bold;
  }

  .add-to-cart-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #333;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .add-to-cart-btn:hover {
    background: #000;
  }
</style>