/* Homepage Stockist Search */
#homeStockistSearch {
  margin: -20px 0 25px;
  z-index: 5;
}

.stockist-search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  width: 100%;
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(0, 45, 80, 0.12);
  text-align: left;
}

.stockist-search-info {
  display: flex;
  align-items: center;
  gap: 1em;
  min-width: 330px;
}

.stockist-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  background: #0073bd;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.stockist-search-icon svg {
  width: 28px;
  height: 28px;
}

.stockist-search-info h2 {
  margin: 0;
  color: #111;
  font-size: 1.55em;
  line-height: 120%;
}

.stockist-search-info p {
  margin: 0.25em 0 0;
  color: #5f6673;
  font-size: 0.95em;
  line-height: 140%;
}

.stockist-search-form {
  display: flex;
  align-items: center;
  gap: 0.8em;
  flex: 1;
}

.stockist-search-form input {
  flex: 1;
  min-width: 220px;
  height: 52px;
  border: 1px solid #ccd4df;
  border-radius: 6px;
  padding: 0 18px;
  font: inherit;
  font-size: 1em;
  color: #424251;
}

.stockist-search-form input:focus {
  outline: none;
  border-color: #3CAF2A;
  box-shadow: 0 0 0 3px rgba(60, 175, 42, 0.15);
}

.stockist-search-btn,
.stockist-location-btn {
  height: 52px;
  white-space: nowrap;
  font-size: 1em;
  font-weight: 500;
}

.stockist-search-btn {
  padding: 0 24px;
}

.stockist-location-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #fff;
  border: 1px solid #0073bd;
  color: #0073bd;
  padding: 0 22px;
}

.stockist-location-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.stockist-location-btn:hover {
  background: #0073bd !important;
  color: #fff !important;
}

/* Tablet */
@media only screen and (max-width: 1075px) {
  #homeStockistSearch {
    margin: -15px 0 20px;
  }

  .stockist-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2em;
  }

  .stockist-search-info {
    min-width: 0;
  }

  .stockist-search-form {
    width: 100%;
  }
}

/* Mobile */
@media only screen and (max-width: 650px) {
  #homeStockistSearch {
    margin: 15px 0 15px;
  }

  #homeStockistSearch .padding-x {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .stockist-search-bar {
    padding: 16px;
    border-radius: 10px;
  }

  .stockist-search-info {
    align-items: flex-start;
  }

  .stockist-search-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .stockist-search-info h2 {
    font-size: 1.25em;
  }

  .stockist-search-info p {
    font-size: 0.9em;
  }

  .stockist-search-form {
    flex-direction: column;
    gap: 0.7em;
  }
  .stockist-search-form input,
  .stockist-search-btn,
  .stockist-location-btn {
    width: 100%;
  }
  .stockist-search-form input {
    height: 100px;
    padding: 15px;
    font-size: 1.2em;
  }
  .stockist-search-btn,
  .stockist-location-btn {
    width: 100%;
    height: 45px;
  }

  .stockist-location-btn {
    justify-content: center;
  }
}

/* Mobile */
@media only screen and (max-width: 600px) {
  #homeStockistSearch {
    margin: -50px 0 15px;
  }
}