
.allStoreList-banner {
  height: 240px;
  width: 100%;
}
.allStoreList-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.allStoreList-header {
  padding: 40px 5%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

h1.allStoreList-title {
  font-size: 48px;
  font-weight: 600;
  color: #ff6e00;
  margin: 0;
  text-align: center;
}

h3.allStoreList-subPara {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin: 10px 0 30px;
  text-align: center;
}

.allStoreList-searchForm {
  margin: 0px;
  padding: 0px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.allStoreList-searchBox {
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  gap: 10px;
  background-color: #ffffff;
  padding: 12px 16px;
}
.allStoreList-searchIcon {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.allStoreList-searchIcon img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}
input.allStoreList-searchInput {
  border: none;
  outline: none;
  background-color: transparent;
}

.allStoreList-storeCardsList {
  padding: 0px 5%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1020px) {
  .allStoreList-storeCardsList {
    flex-direction: row;
    justify-content: center;
  }
}

.allStoreList-storeCardsListItem {
  width: 100%;
  max-width: 350px;
  height: 640px;
  padding: 24px 24px 32px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.allStoreList-storeCardsImage {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.allStoreList-storeCardsImage img {
  width: 100%;
  height: 100%;
}
.allStoreList-storeCardsDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

h5.allStoreList-storeCardsName {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
h5.allStoreList-storeCardsName a {
  font-size: 18px;
  color: #ff6e00;
  line-height: 32px;
  font-weight: 600;
}
.allStoreList-storeCardsLinkIcon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.allStoreList-storeCardsLinkIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.allStoreList-storeCardsLocation,
.allStoreList-storeCardsPhone {
  display: flex;
  gap: 10px;
  align-items: center;
}
.allStoreList-storeCardsLocIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
span.allStoreList-storeCardsPhoneIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.allStoreList-storeCardsLocIcon img,
.allStoreList-storeCardsPhoneIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.allStoreList-storeCardsPhoneText a,
.allStoreList-storeCardsLocText a {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none !important;
  color: #140900;
}
.allStoreList-storeCardsPhoneText a b {
  font-weight: 700;
  text-decoration: underline;
}

.allStoreList-storeCardsBtns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.allStoreList-storeCardsBtns a,
.allStoreList-storeCardsBtns button {
  padding: 8px 14px;
  height: 30px;
  line-height: normal;
  background-color: #ff6e00;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: center;
}
