/** Shopify CDN: Minification failed

Line 50:21 Expected ")" to end URL token
Line 86:52 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}
.search-container {
  display: flex;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.search-container input {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 14px;
  width: 220px;
  outline: none;
}
.search-container button {
  background: #FFF1A8;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 700;
  border-left: 1px solid #000;
  cursor: pointer;
}
.search-drip {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url({{ 'honey-drip.png' | asset_url }}) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}
.blog-filters select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #000;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}
.blog-article.hidden {
  display: none;
}

/* Fix iOS blue coloring on buttons and selects */
.search-container button,
.blog-filters select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: black; /* override iOS blue */
}

/* Optional: Remove iOS Safari tap highlight (if desired) */
.search-container button,
.blog-filters select {
  -webkit-tap-highlight-color: transparent;
}

  .blog-filters select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem; /* Add spacing for arrow */