/* Basic modal styles - extend as needed */
.store-locator-modal-btn {
  background: none;
  color: rgb(13, 24, 54);
  border: none;
  padding: 0 0 0 25px;
  font: inherit;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  border-radius: 0;
  background-image: url(../images/map-pin.svg);
  background-repeat: no-repeat;
  background-size: .8em;
  font-weight: 500;
  background-position: 0 8px;
}

.location-button-container {
  text-align: right;
}
.store-locator-modal-btn:hover, .store-locator-modal-btn:focus {
  color: rgb(13, 24, 54);
  text-decoration: underline;
  outline: none;
  background-color: transparent;
}
.modal__container {
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  max-width: 800px;
  min-width: 600px;
  margin: 0 auto;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__close {
  background: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}
div[data-sc-id].sc-omnichannel {
  padding: 15px 0;
}

/* Accordion styles */
.store-locator-accordion-content {
  background: #fff;
  margin-top: 15px;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
.store-locator-accordion-content.open {
  max-height: 1200px; /* Large enough for content */
  opacity: 1;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
.accordion__container {
  margin: 0 auto;
}
.accordion__title {
  font-size: 1.25em;
  margin-bottom: 1em;
}

.sc-pl-product-selector-form__content-product-img {
  background-image: url(https://mycorneacare.com/wp-content/uploads/2025/08/map_product_image.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
.sc-pl-product-selector-form__content-product-img img {
  display: none;
}