.castleRow {
  width: 100%;
  margin-top: 50px;
}

:root {
  --bs-font-sans-serif: "Montserrat", sans-serif;
  --bs-body-font-family: "Montserrat", sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
select,
textarea,
label {
  font-family: "Montserrat", sans-serif;
}

.castleRow img {
  padding-left: 3px;
  margin-left: 15%;
}

#patternBanner {
  width: 100%;
  height: 55px;
  background-image: url('../IMAGES/element1.png');
  background-repeat: repeat;

}

#gMap {
  margin-bottom: -10px;
}

.navbar {
  margin-top: 25px;
}

#filtersButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 65px;
  text-align: center;
  height: 65px;
}

@media(max-width: 990px) {
  .mainLogo {
    height: 80px;
  }

  #filtersSidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: white;
    padding-top: 20px;
    height: 100vh;
    overflow-y: auto;
    display: none;
  }

  .onlyMobile {
    display: block;
  }

}

@media(min-width: 991px) {
  .onlyMobile {
    display: none;
  }
}

/* Product grid: uniform card and image sizing */
.col-lg-4.col-sm-6 {
  display: flex;
  margin-bottom: 1.5rem;
}

.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.product .mb-3.position-relative {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background-color: #f8f9fa;
}

.product .mb-3.position-relative a.d-block {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.product .mb-3.position-relative a.d-block img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain;
  padding: 10px;
}