html {
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.proxima {
  font-family: "proxima-nova", sans-serif;
}

.meno {
  font-family: "meno-banner", serif;
}

.meno-bold {
  font-family: "meno-banner", serif;
  font-weight: bold;
}

:root {
  --bs-body-font-family: "proxima-nova", serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.bluegrey {
  background-color: #A1B5C7;
}

.charcoalgrey {
  background-color: #444545;
}

/* buttons */
.btn-charcoal {
  background: #444545;
  color: #fff;
  border-radius: 0;
  font-family: "meno-banner", serif;
  letter-spacing: 1px;
}

.btn-charcoal:hover {
  background-color: #333333;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #000;
  border-radius: 0;
  font-family: "meno-banner", serif;
  letter-spacing: 1px;
}

.btn-white:hover {
  background-color: #A1B5C7;
  color: #fff;
}

.outlinebtn {
  border: 1px solid #A1B5C7;
  background-color: #fff;
  color: #555;
  border-radius: 0;
  font-family: "meno-banner", serif;
  letter-spacing: 1px;
}

.outlinebtn:hover {
  background: #A1B5C7;
  color: #fff;
}
/* buttons */

/* 
semi-bold :
font-family: "proxima-nova", sans-serif;
font-weight: 600;
font-style: normal;

light :
font-family: proxima-nova, sans-serif;
font-weight: 300;
font-style: normal;

regular :
font-family: playfair-display, serif;
font-weight: 400;
font-style: normal;

bold :
font-family: playfair-display, serif;
font-weight: 700;
font-style: normal;
*/

/* Header search + autocomplete */
.search-submit {
    border: 0;
    background: transparent;
    padding: 0 .6rem;
    color: inherit;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 0;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.search-suggestions.show {
    display: block;
}

.search-suggestion {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .5rem .75rem;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.search-suggestion:last-child {
    border-bottom: 0;
}

.search-suggestion:hover,
.search-suggestion:focus {
    background: #f6f6f6;
}

.search-suggestion img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    flex: 0 0 auto;
}

.search-suggestion-text {
    min-width: 0;
}

.search-suggestion-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-meta {
    font-size: .8rem;
    color: #777;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #A1B5C7;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}

.me-3 {
  position: relative;
}