/** Shopify CDN: Minification failed

Line 567:19 Expected identifier but found whitespace
Line 567:20 Unexpected "#123D44"

**/
/* ════════════════════════════════════════════════════════════════════════
   blm-main-search — full search results page (Bloomable redesign)
   ════════════════════════════════════════════════════════════════════════ */

/* ─── Hero header ───────────────────────────────────────────────────── */

.blm-search {
  --blm-teal: #123D44;
  --blm-sage: #8FA787;
  --blm-mint: #73C8AF;
  --blm-cream: #fcfcfc;
  --blm-warm: #f5f3ee;
  --blm-muted: #6D7687;
  --blm-border: rgba(18, 61, 68, 0.08);
  padding: 0 0 80px;
}

.blm-search__hero {
  background: linear-gradient(168deg, #f8f7f4 0%, #f0efe9 100%);
  border-bottom: 1px solid var(--blm-border);
  text-align: center;
  padding: 48px 24px 52px;
}

.blm-search__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blm-sage);
  margin: 0 0 8px;
}

.blm-search__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--blm-teal);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.blm-search__term {
  color: var(--blm-sage);
}

/* ─── Search form ───────────────────────────────────────────────────── */

.blm-search__form {
  display: flex;
  justify-content: center;
  width: 100%;
}

.blm-search__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: min(600px, 100%);
  background: #fff;
  border-radius: 56px;
  border: 2px solid rgba(18, 61, 68, 0.10);
  box-shadow: 0 2px 12px rgba(18, 61, 68, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.blm-search__input-wrap:focus-within {
  border-color: var(--blm-teal);
  box-shadow: 0 4px 20px rgba(18, 61, 68, 0.10);
}

.blm-search__input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(18, 61, 68, 0.4);
  fill: none;
  pointer-events: none;
  flex-shrink: 0;
  display: block;
}

.blm-search__input-icon circle,
.blm-search__input-icon line {
  fill: none;
}

.blm-search__input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 0 0 48px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  color: var(--blm-teal);
}

.blm-search__input::placeholder {
  color: #a0a8b4;
}

.blm-search__input:focus {
  outline: none;
}

.blm-search__submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  margin: 6px;
  padding: 0 22px;
  background: var(--blm-teal);
  color: #fff;
  border: none;
  border-radius: 48px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.blm-search__submit:hover {
  background: #0e3038;
  transform: translateX(2px);
}

.blm-search__submit svg {
  transition: transform 0.2s ease;
}

.blm-search__submit:hover svg {
  transform: translateX(3px);
}

/* ─── Empty + no results states ─────────────────────────────────────── */

.blm-search__empty-state,
.blm-search__no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--blm-muted);
}

.blm-search__empty-state svg,
.blm-search__no-results svg {
  color: rgba(18, 61, 68, 0.15);
  margin-bottom: 16px;
}

.blm-search__empty-state p,
.blm-search__no-results-hint {
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.blm-search__no-results-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blm-teal);
  margin: 0 0 8px;
}

.blm-search__no-results-hint {
  color: var(--blm-muted);
}

/* ─── Results container ─────────────────────────────────────────────── */

.blm-search__results {
  padding-top: 40px;
}

/* ─── Section headers ───────────────────────────────────────────────── */

.blm-search__section {
  margin-bottom: 48px;
}

.blm-search__section:last-child {
  margin-bottom: 0;
}

/* ─── Featured section (results page) ───────────────────────────────── */

#blm-featured-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.blm-feat__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(115, 200, 175, 0.12), rgba(18, 61, 68, 0.05));
  border: 1.5px solid rgba(115, 200, 175, 0.4);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  flex: 1;
  min-width: 280px;
}

.blm-feat__card:hover {
  border-color: #73C8AF;
  box-shadow: 0 6px 24px rgba(18, 61, 68, 0.10);
  transform: translateY(-2px);
}

.blm-feat__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.blm-feat__title {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  color: #123D44;
  font-family: inherit;
}

.blm-feat__cta {
  font-size: 14px;
  font-weight: 600;
  color: #73C8AF;
  white-space: nowrap;
}

.blm-search__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blm-teal);
}

.blm-search__section-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blm-search__section-label svg {
  color: var(--blm-sage);
  flex-shrink: 0;
}

/* Sans-serif and title case, not the serif page-heading style. Matches the
   predictive-search group labels so the dropdown and the results page read as
   one system. */
.blm-search__section-head h2 {
  margin: 0;
  color: var(--blm-teal);
  font-family: var(--body-font-family);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.blm-search__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  background: var(--blm-warm);
  color: var(--blm-muted);
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
}

/* ─── Sort dropdown ─────────────────────────────────────────────────── */

.blm-search__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--blm-muted);
  flex-shrink: 0;
}

.blm-search__sort label {
  white-space: nowrap;
}

.blm-search__sort select {
  padding: 8px 32px 8px 12px;
  border: 1px solid rgba(18, 61, 68, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--blm-teal);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236D7687' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.blm-search__sort select:hover {
  border-color: var(--blm-teal);
}

/* ─── Locations grid ────────────────────────────────────────────────── */

.blm-loc__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px;
  /* Equal row heights, so a card with a region subtitle and one without
     still match across wrapped rows. */
  grid-auto-rows: 1fr;
}

.blm-loc {
  border-radius: 10px;
  overflow: hidden;
}

.blm-loc__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  /* The li stretches to the row; the card has to follow it or short cards
     float at their own content height. */
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--blm-teal);
  background: #fff;
  border: 1px solid rgba(18, 61, 68, 0.08);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.blm-loc__link:hover {
  border-color: var(--blm-sage);
  background: rgba(142, 167, 135, 0.06);
  box-shadow: 0 2px 8px rgba(18, 61, 68, 0.06);
  text-decoration: none;
  transform: translateY(-1px);
}

.blm-loc__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blm-warm);
  border-radius: 8px;
  color: var(--blm-sage);
  flex-shrink: 0;
}

.blm-loc__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.blm-loc__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--blm-teal);
}

.blm-loc__parent {
  font-size: 12px;
  color: var(--blm-muted);
}

.blm-loc__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  background: rgba(18, 61, 68, 0.06);
  color: var(--blm-teal);
  white-space: nowrap;
  flex-shrink: 0;
}

.blm-loc__tag--country {
  background: var(--blm-teal);
  color: #fff;
}

.blm-loc__tag--province {
  background: rgba(18, 61, 68, 0.12);
  color: var(--blm-teal);
}

.blm-loc__tag--city {
  background: rgba(142, 167, 135, 0.18);
  color: #4a6944;
}

.blm-loc__tag--town {
  background: rgba(142, 167, 135, 0.1);
  color: #4a6944;
}

.blm-loc__tag--suburb {
  background: var(--blm-warm);
  color: var(--blm-muted);
}

/* ─── Collections grid ──────────────────────────────────────────────── */

.blm-col__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blm-col__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  color: var(--blm-teal);
  text-decoration: none;
  border: 1px solid rgba(18, 61, 68, 0.10);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.blm-col__link svg {
  color: var(--blm-sage);
  flex-shrink: 0;
}

.blm-col__link:hover {
  background: var(--blm-sage);
  color: #fff;
  border-color: var(--blm-sage);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(142, 167, 135, 0.25);
}

.blm-col__link:hover svg {
  color: #fff;
}

/* ─── Products grid overrides ───────────────────────────────────────── */

.blm-search__products-grid {
  margin-top: 4px;
}

/* ─── Pagination ────────────────────────────────────────────────────── */

.blm-search__pagination {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--blm-border);
  text-align: center;
}

/* ─── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 720px) {
  .blm-search__hero {
    padding: 32px 16px 36px;
  }

  .blm-search__title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .blm-search__submit span {
    display: none;
  }

  .blm-search__submit {
    padding: 0 14px;
    min-width: 40px;
  }

  .blm-search__results {
    padding-top: 24px;
  }

  .blm-search__section {
    margin-bottom: 36px;
  }

  .blm-search__section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .blm-loc__grid {
    grid-template-columns: 1fr;
  }

  .blm-col__grid {
    gap: 8px;
  }

  .blm-col__link {
    font-size: 13px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .blm-search__input {
    font-size: 16px;
    height: 46px;
  }

  .blm-search__submit {
    height: 36px;
    margin: 5px;
  }
}
  border-top-color: #123D44;
  border-radius: 50%;
  vertical-align: -2px;
  animation: blm-s-spin 0.6s linear infinite;
}

@keyframes blm-s-spin {
  to { transform: rotate(360deg); }
}

.blm-loc--loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #6D7687;
  font-size: 14px;
  list-style: none;
}

.blm-loc__spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(18, 61, 68, 0.18);
  border-top-color: #123D44;
  border-radius: 50%;
  animation: blm-s-spin 0.6s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
