/** Shopify CDN: Minification failed

Line 150:12 Unexpected "#610F23s-container"

**/
.search-wrapper {
  position: relative;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.custom-search-box-container {
  width: 92%;
  height: auto;
  display: flex;
  padding: 8px 20px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #ddd6fe;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-search-box-container:focus-within {
  border-color:#610F23;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.target-icon-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.target-icon-container:hover {
  background:#610F23;
}

.store-locator-form {
  display: flex;
  gap: 20px;
}

.search-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  color: #374151;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.search-wrapper input::placeholder {
  color: #9ca3af;
}

.search-wrapper .custom-search-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  cursor: pointer;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color:#610F23;
}

.search-wrapper .custom-target-icon {
  width: 40px;
  height: 40px;
  color: white;
  fill: white;
  stroke: #610F23;
}

.suggestion-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  z-index: 99;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  width: 100%;
  margin-top: 8px;
  border: 2px solid #e5e5e5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggestion-place {
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.suggestion-place:hover {
  background-color: #f5f3ff;
}

.suggestion-place.highlighted {
  background-color: #ede9fe;
  color: #610F23;
}

.store-count {
  color: #374151;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 32px;
  text-align: center;
}

.view-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.view-buttons-container .view-buttons-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  fill: currentColor;
}

.view-button#610F23s-container .view-buttons {
  color:#610F23 ;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: #f5f3ff;
  border: 2px solid #ddd6fe;
  border-radius: 8px;
  text-transform: uppercase;
  display: flex;
  min-width: 120px;
  height: 48px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.view-buttons-container .view-buttons:hover {
  background: #ede9fe;
  border-color: #c4b5fd;
  color: #610F23;
}

.view-buttons-container .view-buttons.active {
  background: #610F23;
  color: white;
  border-color: #610F23;
}

.store-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  margin-bottom: 24px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.store-card.loaded {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease forwards;
      display: block;
    font-size: medium;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.store-card:hover {
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

.first-pair,
.second-pair,
.third-pair {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.store-card .store-card-icons {
  width: 20px;
  height: 20px;
  color: #610F23;
  fill:#610F23;
}

.store-name {
  color: #610F23;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.store-address {
  color: #6b7280;
  font-size: 14px;
  line-height: 20px;
  margin-left: 36px;
}

.store-phone-number,
.store-directions {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.store-phone-number a,
.store-directions a {
  color:#610F23;
  text-decoration: none;
  transition: color 0.3s ease;
}

.store-phone-number a:hover,
.store-directions a:hover {
  color: #610F23;
  text-decoration: underline;
}


@media screen and (max-width: 750px) {
  .search-wrapper {
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .custom-search-box-container {
    max-width: 100%;
  }

  .target-icon-container {
    align-self: center;
    width: fit-content;
  }

  .store-address {
    font-size: 14px;
    line-height: 20px;
    margin-left: 32px;
  }

  .store-name {
    font-size: 16px;
    line-height: 24px;
  }

  .store-card {
    padding: 20px;
    gap: 16px;
  }

  .view-buttons-container {
    flex-direction: column;
    gap: 12px;
  }

  .view-buttons-container .view-buttons {
    width: 100%;
    max-width: 200px;
  }

  .store-locator-form {
    flex-direction: column;
    align-items: stretch;
  }

  #searchBtn {
    width: 100%;
  }

  .store-locator h1,
  .store-locator .section-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 750px) {
  .search-wrapper {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .custom-search-icon {
    left: 20px;
  }

  .custom-search-box-container {
    padding: 9px 24px;
  }

  .custom-target-icon {
    width: 45px;
    height: 45px;
    stroke: #610F23;
  }

  .store-card-big-screens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: 4px 50px
  }

  .store-name {
    font-size: 20px;
  }

  .store-address {
    font-size: 15px;
  }

  .store-card {
    gap: 24px;
    padding: 28px;
  }

  .suggestion-place {
    font-size: 18px;
    padding: 16px 20px;
  }

  .store-count {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .view-buttons-container {
    margin-bottom: 48px;
  }
}

@media screen and (min-width: 1200px) {
  .store-card-big-screens {
    grid-template-columns: repeat(3, 1fr);
  }
}


.dropdown-group {
  flex: 1 1 85px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
}

.dropdown-group label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #1f2937;
}

.dropdown-select,
.dropdown-input {
  padding: 12px 16px;
  border: 2px solid #ddd6fe;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.dropdown-select:focus,
.dropdown-input:focus {
  border-color:#610F23;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
  outline: none;
}

#searchBtn {
  height: 48px;
  padding: 0 24px;
  border: 2px solid #610F23;
  background-color: #610F23;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
}

#searchBtn:hover {
  background-color: #610F23;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.3);
}

.store-locator {
  padding-top: 10px;
  background: #F9F6F0;
}

.store-locator h1,
.store-locator .section-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
  text-align: center;
  color: #610F23;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 0 #ede9fe, 2px 2px 4px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.store-locator h1:hover,
.store-locator .section-title:hover {
  transform: translateY(-2px);
  text-shadow: 2px 2px 0 #ede9fe, 4px 4px 6px rgba(124, 58, 237, 0.3);
}

.yotpo-review-form .yotpo-name-email-wrapper {
  gap: 8px;
}

div:empty {
  display: none !important;
}
.store-locator-breadcrumb {
  max-width: 1200px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
}

.store-locator-breadcrumb a {
  color:#610F23;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.store-locator-breadcrumb a:hover {
  color:#610F23;
}
#loadMoreBtn.view-buttons {
  background-color: #610F23;
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(97, 15, 35, 0.3);
  width: auto;
  min-width: 160px;
  height: 48px;
  margin-bottom: 50px;
}

#loadMoreBtn.view-buttons:hover {
  background-color: #820f2c;
  box-shadow: 0 6px 16px rgba(97, 15, 35, 0.4);
  transform: translateY(-2px);
}
.store-card-wrapper {
  position: relative;
  min-height: 200px; 
}

.no-store-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 20px;
  padding: 24px 16px;
  color: #1f2937;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  width: 100%;
}

