/* Stockist Locator Container */
.stockist-locator {
  margin: 1.5em 0;
}

/* Input Field */
.stockist-locator__input {
  padding: 0.75em 1em;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  width:100%;
  margin-bottom: 10px;
}

.stockist-locator__input:focus {
  outline: none;
  border-color: #4CAF50;
}

/* Button */
.stockist-locator__button {
  padding: 0.75em 1.5em;
  font-size: 16px;
  background-color: white;
  border: 1px solid #000;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
  width:100%;
}

.stockist-locator__button:hover {
  background-color: black;
  color: white;
}

.stockist-locator__button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Results Container */
.stockist-locator__results {
  margin-top: 1.5em;
}

.stockist-locator__results-title {
  font-size: 1.25em;
  margin-bottom: 1em;
  color: #333;
  font-weight: 600;
}

/* Results List */
.stockist-locator__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stockist-locator__item {
  padding: 1.25em;
  margin-bottom: 1em;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
}

.stockist-locator__item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stockist-locator__item:last-child {
  margin-bottom: 0;
}

/* Item Header */
.stockist-locator__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #f0f0f0;
}

.stockist-locator__name {
  font-size: 1.1em;
  color: #333;
  margin: 0;
}

.stockist-locator__distance {
  font-size: 0.95em;
  color: #4CAF50;
  font-weight: 600;
}

/* Item Details */
.stockist-locator__address,
.stockist-locator__postcode,
.stockist-locator__contact {
  margin: 0.5em 0;
  color: #666;
  font-size: 0.95em;
}

.stockist-locator__contact {
  color: #4CAF50;
  font-weight: 500;
}

/* Status Messages */
.stockist-locator__error,
.stockist-locator__loading {
  padding: 1em;
  border-radius: 4px;
  margin-top: 1em;
}

.stockist-locator__error {
  background-color: #ffebee;
  color: #c62828;
  border-left: 4px solid #c62828;
}

.stockist-locator__loading {
  background-color: #e3f2fd;
  color: #1565c0;
  border-left: 4px solid #1565c0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stockist-locator {
    padding: 1em;
  }

  .stockist-locator__input {
    width: 100%;
    max-width: none;
    margin-bottom: 0.5em;
  }

  .stockist-locator__button {
    width: 100%;
    margin-left: 0;
  }

  .stockist-locator__item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .stockist-locator__distance {
    margin-top: 0.5em;
  }
}