body {
    /* font-family: "Roboto Condensed", serif; */
    /* font-family: "Montserrat", serif; */
    /* font-family: "Roboto", serif; */
    /* font-family: "Open Sans", serif; */


    /* font-family: "Manrope", serif;
    font-size: 12px;
    letter-spacing: 0.071em; */
    background-color: #EEEDE9;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.92px;
}
h1 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    letter-spacing: -0.1rem;
    font-size: 2rem;
}
header h3 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    letter-spacing: -0.1rem;
    font-size: 2rem;
}
a {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
}
.hidden-h1 {
    visibility: hidden; /* Hides the element visually */
    display: block; /* Ensures it still takes up space in the DOM */
    height: 0; /* Removes its impact on layout height */
}
.btn.primary {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.071em;
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-radius: 100vw;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}

.btn.primary::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    background-color: #EA1917;
    border: 1px solid #EA1917;
}
.btn.primary:hover {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}
.btn.primary:hover::before {
    left: 100%;
    background-color: #fff;
    border: 1px solid transparent;
    color: #000;
}
.btn.primary:active {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}
    div.cta a.btn.primary:not(:first-of-type) {
    margin-left: 1rem !important;
}
.btn.secondary {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.071em;
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-radius: 100vw;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

.btn.secondary::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    background-color: #EA1917;
    border: 1px solid #EA1917;
}
.btn.secondary:hover {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
}
.btn.secondary:hover::before {
    left: 100%;
    background-color: #000;
    border: 1px solid transparent;
    color: #fff;
}
.btn.secondary:active {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
}
div.cta a.btn.secondary:not(:first-of-type) {
    margin-left: 1rem !important;
}
footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
}

footer h3 {
    border-bottom: 1px solid #4d4d4d;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.row.motto {
    padding: 25px 0px;
    text-transform: uppercase;
}
.row.content img {
    width: 650px;
}

.feature h2 {
    /* font-family: "Manrope", serif; */
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    /* letter-spacing: -0.001rem; */
    font-size: 1.2rem;
    padding: 0px 0px 10px 0px;
    color: #474747;
}

.logo {
    letter-spacing: 2.5px;
}

img.logo  { 
    width: 20px;
    /* transform: rotateX(180deg); */
}

.prod-desc {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 30px;
    font-size: 10px;
    letter-spacing: 3px;
}
.hamburger {
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: 0;
        margin-left: auto;
    }
}


.image-swap {
    position: relative;
    width: 100%;
    max-width: 770px;
    aspect-ratio: 11 / 10; /* Maintains 770x700 ratio */
    overflow: hidden;
  }

  .image-swap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
  }

  .hover-img {
    opacity: 0;
  }

  .image-swap:hover .hover-img {
    opacity: 1;
  }

  .image-swap:hover .default-img {
    opacity: 0;
  }





.btn.pop {
  background-color: #fff; /* base color */
  border: 2px solid black;
  color: black;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 4px 4px 0px 0px #1e1e1e;
  cursor: pointer;
  outline: none;
  transition: 
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn.pop:hover {
  background-color: #c08287; /* hover color */
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 8px 8px 0px 0px #1e1e1e;
}