.header .logo img {
  max-height: 70px !important;
  margin-right: 8px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.hero {
  width: 100%;
  min-height: auto;
  position: relative;
  padding: 20px 0 20px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
  background-color: #ebebeb;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #A90233;
  font-size: 15px;
  padding: 10px 25px;
  margin: 0 0 0 30px;

  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  background: #A90233;
  font-size: 13px;
  padding: 12px 25px;
  margin: 0 0 0 30px;
  text-transform: uppercase;
  transition: 0.3s;
  font-weight: 500;
}

.fullWidth {
  width: 100%;
  max-width: 100%;
}

.filter-container {
  display: flex;
  justify-content: center;
  padding: 20px;
  border: 1px solid #ddd;

  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  flex-direction: column;
  row-gap: 20px;
}

p#storeCount {
  text-align: center;
  /* padding-top: 15px; */
  font-size: 15px;
  font-weight: 600;
  color: #AF073A;
  margin-bottom: 0px !important;
  text-transform: uppercase;
}

.filterBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.filters select,
.filters button {
  padding: 12px;
  margin: 0;
  border: 1px solid #ddd;

  font-size: 14px;
  width: 24%;
}


.filters button {
  background-color: #A90233;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: auto;
}

.filters button:hover {
  background-color: #c0392b;
}


#storesList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0;
  padding: 0;
  list-style-type: none;
}

.store-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;

  padding: 10px;
  width: 100%;
  text-align: left;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-item p {
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.store-item,
h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #A90233;
}

h3.store-name:active {
  color: #A90233;

}

.store-item.active h3 {

  color: #fff;

}

.store-item.active p {

  color: #fff;

}

/* Hover effect for store items */
.store-item:hover {
  background-color: #A90233;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgb(209 209 209 / 50%);
  color: #fff;
}

.store-item:hover h3 {

  color: #fff;
}

.store-item:hover {
  background-color: #A90233;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgb(209 209 209 / 50%);
  color: #fff;
}

.store-item:hover p {
  color: #fff !important
}

/* Add spacing around stores */
.store-item+.store-item {
  margin-top: 10px;
}

/* Style for "No stores found" message */
#storesList p {
  font-size: 14px;
  text-align: left;
  padding-top: 5px;
  color: #444;
}

.store-item:hover #storesList p {
  color: #fff
}

.store-item:hover .store-buttons button {
  background-color: #fff;
  color: #A90233
}


.store-item.active p {
  color: #fff !important
}

/* Responsive design */
@media (max-width: 768px) {
  .store-item {
    width: 100%;
  }
}


.search-icon {
  font-size: 18px;
}

.searchStore button {
  background-color: #AF073A;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: auto;

  padding: 12px;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  width: 200px;
}

.storeNames {
  background-color: var(--surface-color);
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 500px;
}

.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 0px 0 30px 0;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
  height: 500px;
  overflow-y: scroll;
}

.store-item.active {
  background-color: #AF073A;
  border-color: #818181;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

section#faq {
  padding-top: 100px;
  padding-bottom: 100px;
}

.store-details {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  margin-top: 5px;
}

/* Style the scrollbar */
::-webkit-scrollbar {
  width: 5px;
  /* Width of the scrollbar */
}


::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Track color */
  border-radius: 10px;
  /* Rounded corners */
}


::-webkit-scrollbar-thumb {
  background: #bdbcbc;
  /* Thumb color */
  border-radius: 10px;
  /* Rounded corners */
}

/* Style the scrollbar thumb when hovering */
::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Darker thumb color on hover */
}

.header .btn-getstarted {
  order: 2;
  margin: 0 23px 0 0;
  padding: 10px 15px;
  text-align: center;
}

.container.fullWidth {
  width: 104% !important;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

img.cb {
  margin-bottom: 12px;
}


.footer .copyright {
  padding-top: 32px !important;
  padding-bottom: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.copyrightSec {
  color: #fff;
}


.store-item {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #dddddd00
}

.store-buttons button {

  padding: 10px 20px;
  background-color: #AF073A;
  color: white;
  border: none;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.store-buttons button:hover {
  background-color: #ffffff;
  color: #000000;
}

.store-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  border-bottom: 1px solid #cccccc4d;
  padding-bottom: 10px;
}

.store-item:hover .store-name {
  border-bottom: 1px solid #ccccccad;
}

.store-details {
  margin-top: 10px;
}

.timingsBox {
  display: flex;
  justify-content: start;
  gap: 10px;
}


.phoneBox {
  display: flex;
  justify-content: start;
  gap: 10px;
}


.store-item.active .store-buttons button:hover {
  background-color: #000000;
  border-color: #818181;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.store-item.active .store-buttons button {

  background-color: #ffffff;
  color: #000000;
}


.idx-str-header {
  padding: 10px 15px;
  background-color: #a31834 !important;


  text-align: center;
}

h3.idx-str-srch-h2.mb-0 {
  color: #fff !important;
  font-size: 20px;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  #mapBox {
    display: flex;
    flex-direction: column;
  }

  .sidebar {
    order: 2;
  }

  .mapContainer {
    order: 3;
  }

  .filters select,
  .filters button {
    padding: 12px;
    margin: 0;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
  }
  section#faq {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .section-title {
    padding-bottom: 40px;
  }
  a.btn-getstarted {
    margin-right: 0 !important;
    padding: 10px 5px !important;
    font-size: 13px !important;
    background: #ad083a !important;
  }
  .widgets-container,.storeNames {
    padding: 20px;
  }
  .col-lg-7.mapContainer {
    display: none;
  }
   .widgets-container {
	 height: auto;
   }
}