/* Base styles */
html {
  font-size: 100%;
  /* 1rem = 16px */
  box-sizing: border-box;
  scroll-behavior: smooth;
}
@media (min-width: 2560px) {
  html {
    font-size: 105%;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 95%;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 80%;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: quatro, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  font-size: 1rem;
  /* Default body font size is 16px */
  color: #1e1e1e;
  background-color: #1e1e1e;
  letter-spacing: 1px;
}
/* Responsive typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin: 0.5rem 0;
}
h1 {
  font-family: ruddy, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 4rem;
  /* 32px */
}
h2 {
  font-family: ruddy, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.75rem;
  /* 28px */
}
h3 {
  font-family: ruddy, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  /* 24px */
}
p {
  margin: 0;
}
a {
  cursor: pointer;
}
a.button {
  display: inline-block;
  background-color: #851618;
  color: #f0f0f0;
  font-size: 1rem;
  font-family: ruddy, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 20px 2rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}
a.button:hover {
  background-color: #a41c20;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
a.button:active {
  transform: translateY(2px) scale(1.05);
  /* Moves the button down slightly on click */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  /* Smaller shadow when button is pressed */
}
a.button .alt {
  background-color: transparent;
  color: #851618;
  border: 2px solid #851618;
}
@media (max-width: 490px) {
  a.button {
    font-size: 1.1rem;
  }
}
form button {
  display: inline-block;
  font-family: quatro, sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #851618;
  color: #f0f0f0;
  padding: 1.25rem 2rem;
  border-radius: 4px;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}
form button:hover {
  background-color: #a41c20;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
form button:active {
  transform: translateY(2px) scale(1.05);
  /* Moves the button down slightly on click */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  /* Smaller shadow when button is pressed */
}
form button .alt {
  background-color: transparent;
  color: #851618;
  border: 2px solid #851618;
}
@media (max-width: 490px) {
  form button {
    font-size: 1.1rem;
  }
}
/* Target the spinner controls and set their height */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  /* Remove default appearance */
}
.hidden {
  display: none;
}
.globalShadow {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.textShadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.headingShadow {
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}
.svgShadow {
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}
.cart-count {
  position: absolute;
  bottom: 0px;
  right: -5px;
  background-color: #a41c20;
  color: white;
  border-radius: 50%;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: bold;
  display: none;
  /* Initially hidden */
}
.mobile-cart-count {
  position: absolute;
  bottom: 0px;
  right: -5px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: bold;
  display: none;
  /* Initially hidden */
  pointer-events: none;
}
button {
  background-color: transparent;
}
.divider {
  height: 2px;
  background-color: #c9c9c9;
  width: 100%;
}
.hotOriginalColor {
  color: #d91024;
  text-shadow: 2px 2px 8px rgba(0, 0, 0 / 25%);
}
.originalColor {
  color: #007bff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.hotGarlicColor {
  color: #ff6347;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.garlicColor {
  color: #fff176;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.hotOnionColor {
  color: #ff6f61;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.onionColor {
  color: #e3c19b;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
/* Responsive container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
/* Responsive grid */
.flex {
  display: flex;
}
.row {
  flex-direction: row;
}
.col {
  flex-direction: column;
  align-items: flex-start;
  /* Ensures the items are aligned to the start and not stretched */
}
.flex-wrap {
  flex-wrap: wrap;
}
.buttonWrap {
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
section {
  height: auto;
  width: 100%;
  padding: 3rem 1rem;
}
.title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.title h2 {
  text-align: center;
  color: #1e1e1e;
  font-size: 3rem;
}
.title p {
  text-align: center;
  font-size: 1.75rem;
  letter-spacing: 1px;
}
.darken {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.dark {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.05);
}
.filtered-image {
  -webkit-filter: brightness(1) contrast(0.3);
  filter: brightness(1) contrast(0.3);
  /* Apply exposure effect here */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
}
.fullCenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  letter-spacing: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.fullCenter:hover {
  opacity: 1;
}
.fullCenter:hover + img {
  -webkit-filter: blur(1px);
  filter: blur(1px);
  pointer-events: none;
  /* Prevent the image from interrupting the hover state */
}
.fullCenter div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.msg-logo-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
#cookieConsentBanner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 10px;
  text-align: center;
  z-index: 1000;
  border-top: 4px solid #851618;
  font-size: 0.85rem;
}
#cookieConsentBanner a {
  text-decoration: none;
  color: #f0f0f0;
}
#cookieConsentBanner a:hover {
  color: #851618;
  text-decoration: underline;
}
#cookieConsentBanner .consent-wrap {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
@media (max-width: 768px) {
  #cookieConsentBanner .consent-wrap {
    flex-direction: column;
  }
}
#cookieConsentBanner .consent-button-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  #cookieConsentBanner .consent-button-wrap {
    margin: 1rem 0 0 0;
  }
}
#cookieConsentBanner button {
  background-color: #851618;
  border-radius: 0.5rem;
  color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease;
}
#cookieConsentBanner button:hover {
  background-color: #af2230;
}
.modalBlur {
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  margin: auto;
  padding: 2rem;
  width: 50%;
}
@media (max-width: 768px) {
  .modal-content {
    width: 80%;
  }
}
@media (max-width: 550px) {
  .modal-content {
    margin: auto;
    padding: 1rem;
    width: 95%;
  }
}
.modal-content button {
  background-color: #851618;
  color: #f0f0f0;
  font-size: 0.8rem;
  font-family: quatro, sans-serif;
  font-weight: 300;
  font-style: normal;
  border-radius: 4px;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}
.modal-content button:hover {
  background-color: #a41c20;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
.modal-content button:active {
  transform: translateY(2px) scale(1.05);
  /* Moves the button down slightly on click */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  /* Smaller shadow when button is pressed */
}
@media (max-width: 1024px) {
  .modal-content button {
    font-size: 1.15rem;
  }
}
.modal-content .divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  margin-top: 1rem;
  max-width: 490px;
  width: 100%;
  align-self: flex-end;
}
@media (max-width: 490px) {
  .modal-content .divider {
    width: 100%;
  }
}
.modal-content .update {
  font-size: 0.5rem;
  padding: 0;
  background-color: transparent;
  color: #1e1e1e;
  text-decoration: underline;
  font-weight: 400;
  box-shadow: none;
  transition: color 0.1s ease, transform 0.1s ease;
}
.modal-content .update:hover {
  color: rgba(0, 0, 0, 0.2);
  background-color: transparent;
  box-shadow: none;
  transform: scale(1.05);
}
.modal-content .update:active {
  transform: translateY(2px) scale(1.05);
  /* Moves the button down slightly on click */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  /* Smaller shadow when button is pressed */
}
@media (max-width: 768px) {
  .modal-content .update {
    display: none;
  }
}
.modal-content .remove {
  width: 0px;
  opacity: 0;
  font-size: 1.5rem;
  padding: 0;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-weight: 400;
  box-shadow: none;
  visibility: hidden;
  transition: width 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, color 0.1s ease;
}
.modal-content .remove:hover {
  color: rgba(0, 0, 0, 0.6);
  background-color: transparent;
  box-shadow: none;
  transform: scale(1.05);
}
.modal-content .remove:active {
  transform: translateY(2px) scale(1.05);
  /* Moves the button down slightly on click */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  /* Smaller shadow when button is pressed */
}
.modal-content .rowWrap {
  display: flex;
  flex-direction: row;
  align-self: flex-end;
  gap: 1rem;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .modal-content .rowWrap {
    flex-direction: column-reverse;
  }
}
.modal-content .checkoutWrap {
  flex: 0 0 auto;
  display: flex;
  min-width: 225px;
  flex-direction: column;
  align-self: flex-end;
  /* Make sure the individual item doesn't stretch */
  width: auto;
  /* Ensure the width is only as wide as its content */
  gap: 0.5rem;
  margin-right: 0.5rem;
}
@media (max-width: 550px) {
  .modal-content .checkoutWrap {
    margin-right: 0;
  }
}
.modal-content .payWrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-self: flex-end;
  margin-top: 0.5rem;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 512px) {
  .modal-content .payWrap {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }
  .modal-content .payWrap #paypalButton,
  .modal-content .payWrap #checkoutButton {
    align-self: center;
  }
}
@media (max-width: 490px) {
  .modal-content .payWrap {
    flex-direction: column;
    width: 100%;
  }
}
.modal-content #paypalButton {
  background-color: darkgray;
  max-width: 185px;
  width: 100%;
  font-size: 1rem;
}
.modal-content #paypalButton::after {
  content: "";
  display: block;
  padding: 1rem;
  background-image: url("/img/static/paypal.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50%;
  /* Adjust the size of the image */
  height: 50%;
  /* Adjust the size of the image */
  margin: 5px auto 0 auto;
  /* Adds some space between the text and the image */
}
@media (max-width: 1024px) {
  .modal-content #paypalButton::after {
    padding: 1.75rem;
    margin: 16px auto 0 auto;
  }
}
.modal-content #paypal-button-container {
  flex: 1 1 auto;
  width: 100%;
  /* Make container responsive */
  max-width: 185px;
  /* Maximum width for larger screens */
}
@media screen and (max-width: 512px) {
  .modal-content #paypal-button-container {
    max-width: 100%;
    /* Ensure full width on smaller devices */
  }
}
.modal-content #paypal-button-container iframe {
  width: 100% !important;
  /* Make PayPal button take full width of the container */
}
.modal-content #checkoutButton {
  height: 45px;
  padding: 8px;
  width: calc(225px + 1rem);
  align-self: flex-start;
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .modal-content #checkoutButton {
    flex: 0 0 50%;
  }
}
@media (max-width: 512px) {
  .modal-content #checkoutButton {
    flex: 1 1 auto;
    width: 100%;
    height: 55px;
  }
}
.modal-content #clearCartButton {
  margin-top: -0.75rem;
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.3);
  width: auto;
  min-width: auto;
  max-width: 250px;
  background-color: transparent;
  font-size: 0.7rem;
  font-family: quatro, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  box-shadow: none;
  padding: 0;
  align-self: flex-start;
  transition: color 0.1s ease, transform 0.1s ease;
}
.modal-content #clearCartButton:hover {
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 550px) {
  .modal-content #clearCartButton {
    margin-right: 0;
  }
}
.modal-content .cartHeading {
  font-family: quatro, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.modal-content .cartHeading h2 {
  font-family: inherit;
  font-weight: 600;
  font-style: inherit;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.modal-content .cartHeading span {
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1;
}
.modal-content .cartHeading .close-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.modal-content .cartHeading .close-icon .line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #aaaaaa;
  top: 50%;
  left: 0;
  transform-origin: center;
  transition: transform 0.3s ease, background-color 0.15s ease;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.modal-content .cartHeading .close-icon .line.line1 {
  transform: rotate(45deg);
}
.modal-content .cartHeading .close-icon .line.line2 {
  transform: rotate(-45deg);
}
.modal-content .cartHeading .close-icon:hover {
  transform: scale(1.2);
}
.modal-content .cartHeading .close-icon:hover .line {
  background-color: #333333;
}
.modal-content .cartHeading .close-icon:hover .line1 {
  transform: rotate(-45deg);
}
.modal-content .cartHeading .close-icon:hover .line2 {
  transform: rotate(45deg);
}
.modal-content .cart-product-image {
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
  object-fit: cover;
  /* Ensures the image is cropped properly */
  margin-right: 10px;
}
.modal-content #cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-content .cart-item {
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  box-shadow: 0px 10px 60px 0px rgba(38, 45, 118, 0.05);
  align-items: center;
  transition: background-color 0.1s ease, box-shadow 0.1s ease, transform 0.1s ease;
}
.modal-content .cart-item:hover {
  box-shadow: 0px 5px 10px 0px rgba(38, 45, 118, 0.1);
  transform: scale(1.01);
}
.modal-content .cart-item:hover .remove,
.modal-content .cart-item.active .remove {
  width: 30px;
  opacity: 1;
  visibility: visible;
  margin-right: 10px;
  margin-left: 0.25rem;
  margin-top: -3px;
}
.modal-content .totalWrap {
  font-family: quatro, sans-serif;
  font-weight: 300;
  font-style: normal;
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.modal-content .cart-total {
  text-align: right;
  align-self: flex-end;
}
.modal-content .cart-total-price {
  text-align: right;
  align-self: flex-end;
  font-size: 1.5rem;
}
.modal-content .shippingWrap {
  font-family: quatro, sans-serif;
  font-weight: 300;
  font-style: normal;
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.modal-content .cart-shipping {
  font-size: 0.8rem;
  text-align: right;
  align-self: flex-start;
}
.modal-content .cart-shipping-price {
  max-width: 50%;
  font-size: 0.8rem;
  text-align: right;
  align-self: flex-end;
}
.modal-content .quantityWrap {
  gap: 0.5rem;
  display: flex;
  align-items: center;
}
.modal-content .quantity {
  width: 45px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.modal-content .item-price {
  min-width: 5rem;
  text-align: right;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .modal-content .item-price {
    font-size: 1.15rem;
  }
}
.modal-content .item-name {
  width: 100%;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .modal-content .item-name {
    font-size: 1.15rem;
  }
}
.modal-content .imgTitleWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  align-items: center;
}
.modal-content .trustBadge {
  flex: 1 1 auto;
  width: 100%;
  min-width: 200px;
  max-width: 240px;
  margin-bottom: 6px;
}
.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}
.add-to-cart-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.add-to-cart-form .size-qty {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 1.5rem;
  justify-items: center;
}
.add-to-cart-form .size-select {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  color: white;
  background-color: #333;
  border: #555555 1px solid;
  border-radius: 4px;
  font-family: quatro, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.add-to-cart-form .size {
  width: 100%;
}
.add-to-cart-form button {
  font-family: quatro, sans-serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  font-size: 0.9rem;
}
.add-to-cart-form input {
  aspect-ratio: 1 / 1;
  max-height: 40px;
  text-align: center;
  border-radius: 4px;
  color: #f0f0f0;
  background-color: #333333;
  border: 1px solid #555555;
}
.add-to-cart-form.light {
  gap: 1.5rem !important;
}
.add-to-cart-form.light .size-select {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  color: #1e1e1e;
  background-color: #f0f0f0;
  border: #555555 1px solid;
  border-radius: 4px;
  font-family: quatro, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.add-to-cart-form.light .size-qty {
  align-items: center;
  justify-content: center;
}
.add-to-cart-form.light input[type="number"] {
  height: 100%;
  /* Match the parent */
  width: auto;
  /* Prevent squishing */
  aspect-ratio: 1 / 1;
  /* Try to stay square */
  padding: 0.5em;
  box-sizing: border-box;
  font-size: 1em;
  display: flex;
  /* Ensures sizing respects parent */
  align-items: center;
  justify-content: center;
}
nav {
  justify-content: space-between;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
  /* Subtle shadow */
  align-items: center;
  background-color: #1e1e1e;
  padding: 0 2rem;
  color: #f0f0f0;
  z-index: 999;
  transform: translateY(-1px);
  /* Responsive Menu */
  /* Mobile menu */
}
nav .countWrap {
  position: relative;
  cursor: pointer;
  -webkit-filter: drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.25));
}
@media (min-width: 768px) {
  nav .countWrap {
    display: none;
  }
}
nav ul {
  font-size: 1.25rem;
  gap: 4rem;
  list-style-type: none;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  nav ul {
    display: none !important;
  }
}
nav li {
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}
nav a {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: #f0f0f0;
  transition: color 0.1s ease;
  padding: 20px 20px;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #a41c20;
  /* Color of the line */
  transition: all 0.3s ease;
  /* Smooth transition */
  transform: translateX(-50%);
  /* Center the line */
}
nav a:hover::after {
  width: 100%;
  /* Expand the line on hover */
}
nav #cart,
nav .cart {
  position: relative;
  height: 35px;
  width: 35px;
  cursor: pointer;
  -webkit-filter: drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.25));
}
nav #cart:hover svg .d,
nav .cart:hover svg .d {
  fill: #aaaaaa;
}
nav #cart svg .d,
nav .cart svg .d {
  width: 100%;
  height: 100%;
  fill: #f0f0f0;
  transition: fill 0.2s ease;
}
nav .left {
  align-self: flex-start;
}
nav .center {
  align-self: center;
}
nav .right {
  align-self: flex-end;
}
nav #navLogo {
  height: 50px;
  width: auto;
  cursor: pointer;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  -webkit-filter: drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.25));
}
nav #navLogo img {
  width: auto;
  height: 100%;
}
nav #navLogo a {
  padding: 0;
}
@media (max-width: 768px) {
  nav #cartButton {
    display: none;
  }
}
nav .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
nav .hamburger:hover span {
  background-color: #aaaaaa;
}
nav .hamburger span {
  background: #f0f0f0;
  border-radius: 2px;
  display: block;
  height: 3px;
  width: 25px;
  margin: 4px;
  transition: background 0.2s ease;
}
nav .hamburger .menu-line {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
nav .hamburger .animate-line1 {
  transform: rotate(45deg);
}
nav .hamburger .animate-line2 {
  transform: scaleY(0);
}
nav .hamburger .animate-line3 {
  transform: rotate(-45deg);
}
nav .mobile-menu {
  border-top: 2px solid #851618;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  background-color: #1e1e1e;
  position: absolute;
  justify-content: space-between;
  align-items: center;
  top: 62px;
  width: 100%;
  left: 0;
  padding: 5px 2rem;
  z-index: 999;
  gap: 1rem;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
  /* Subtle shadow */
}
@media (max-width: 490px) {
  nav .mobile-menu {
    flex-direction: column;
    padding: 2rem;
  }
}
@media (min-width: 769px) {
  nav .mobile-menu {
    display: none !important;
  }
}
nav .mobile-menu ul {
  align-self: center;
  display: flex !important;
  flex-direction: row;
  list-style: none;
  padding: 0;
  gap: 1rem;
}
@media (max-width: 490px) {
  nav .mobile-menu ul {
    flex-direction: column;
  }
}
nav .mobile-menu ul li {
  padding: 1rem 0;
}
@media (max-width: 490px) {
  nav .mobile-menu ul li:first-child {
    padding-top: 0;
  }
}
nav .mobile-menu ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  nav .hamburger {
    display: flex;
  }
  nav .mobile-menu #cartButton {
    display: flex !important;
  }
}
nav .show {
  display: flex;
  /* Show the mobile menu when active */
  visibility: visible;
  opacity: 1;
}
nav .hide {
  display: none !important;
  /* Element is hidden */
}
#hero {
  position: relative;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  background-image: url(/img/static/steam.webp), url(/img/static/banner2.webp);
  background-position: bottom center, center;
  /* Anchors the image to the bottom */
  background-size: cover, cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat, no-repeat;
  /* Prevents the image from repeating */
}
#hero h1 {
  font-size: 2rem;
  text-align: center;
  color: #a41c20;
}
#hero img {
  width: 275px;
  z-index: 2;
}
#hero p {
  text-align: center;
  font-size: 1.1rem;
  z-index: 2;
  color: #f0f0f0;
  max-width: 600px;
}
#hero a {
  z-index: 2;
}
#hero em {
  font-weight: 500;
}
#header {
  position: relative;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  background-image: url(/img/static/steam.webp), url(/img/static/banner2.webp);
  background-position: bottom center, center;
  /* Anchors the image to the bottom */
  background-size: cover, cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat, no-repeat;
  /* Prevents the image from repeating */
}
#header h1 {
  font-size: 2rem;
  text-align: center;
  color: #a41c20;
}
#header img {
  width: 275px;
  z-index: 2;
}
#header p {
  text-align: center;
  font-size: 1.1rem;
  z-index: 2;
  color: #f0f0f0;
  max-width: 600px;
}
#header a {
  z-index: 2;
}
#header em {
  font-weight: 500;
}
#header h1 {
  z-index: 1;
  text-align: center;
  color: #af2230;
  font-size: 3.5rem;
  stroke: white;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}
#header p {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 2px;
  align-self: center;
}
#promo {
  font-size: 1.15rem;
  letter-spacing: 4px;
  padding: 0.75rem 0.75rem;
  text-align: center;
  color: #f0f0f0;
  background-color: #a41c20;
  border: 2px dashed #f0f0f0;
  /* 8px dash */
  border-width: 2px;
  /* The width of the dashes */
  border-style: dashed;
  /* Dashed style */
  border-color: #f0f0f0;
  /* Color of the border */
  -o-border-image: repeating-linear-gradient(to right, #f0f0f0 0, #f0f0f0 8px, transparent 8px, transparent 12px) 1;
  border-image: repeating-linear-gradient(to right, #f0f0f0 0, #f0f0f0 8px, transparent 8px, transparent 12px) 1;
  /* Defines the custom dash and gap sizes */
}
#compare {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  position: relative;
}
#compare .title,
#compare .optionWrap,
#compare .usda-wrap {
  z-index: 1;
}
#compare h1 {
  text-align: center;
  color: #851618;
  font-size: 3rem;
  margin-bottom: 0;
}
#compare p {
  text-align: center;
  font-size: 1.5rem;
}
#compare p.text {
  font-size: 1rem;
  max-width: 800px;
  align-self: center;
}
#compare .usda {
  display: flex;
  flex-direction: column;
}
#compare .usda span {
  font-family: ruddy, sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #a41c20;
  font-size: 1.75rem;
}
#compare .usda h2 {
  font-family: quatro, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  color: #1e1e1e;
  font-size: 2rem;
  letter-spacing: 2px;
}
#compare .usda p {
  font-family: ruddy, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
#compare .usda-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#compare .optionWrap {
  width: 100%;
  max-width: 60%;
  min-width: 825px;
  margin: 0 auto;
  padding: 0.75rem 1rem calc(0.75rem + 10px) 1rem;
  font-family: "quatro", sans-serif;
  font-weight: 800;
  font-style: normal;
}
@media (max-width: 1024px) {
  #compare .optionWrap {
    max-width: 70%;
    min-width: 675px;
  }
}
@media (max-width: 768px) {
  #compare .optionWrap {
    max-width: 90%;
    min-width: 275px;
  }
}
#compare .option {
  display: flex;
  align-items: center;
  width: 100%;
  flex: 1;
  height: 95px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
  font-size: 1.75rem;
  padding-right: 1rem;
}
@media (max-width: 490px) {
  #compare .option {
    font-size: 1.5rem;
  }
}
#compare .options {
  width: 100%;
}
#compare .optionBlank {
  width: 100%;
  height: 32px;
  border-bottom: 2px solid #851618;
}
#compare .optionYes {
  display: flex;
  height: 95px;
  align-items: center;
  padding: 1.75rem;
  justify-content: center;
  border-left: 2px dotted rgba(0, 0, 0, 0.2);
  border-right: 2px dotted rgba(0, 0, 0, 0.2);
  transition: opacity 0.75s ease-out 1s;
}
#compare .optionYes:last-child {
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
}
#compare .optionYes svg {
  opacity: 0;
  transition: opacity 0.75s ease-out 0.5s;
  width: 3.5rem;
}
#compare .optionYes svg .checkmark-path {
  fill: #ff0019;
}
#compare .optionYes svg .background-path {
  fill: lightgray;
}
#compare .optionNo {
  display: flex;
  height: 95px;
  align-items: center;
  padding: 2rem;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
#compare .optionNo:last-child {
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
}
#compare .optionNo svg {
  width: 1.5rem;
  fill: rgba(0, 0, 0, 0.45);
}
#compare .titleYes {
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #851618;
  border-bottom: 2px solid #851618;
  border-right: 1px solid #851618;
  font-size: 1.25rem;
  background-color: #851618;
  color: #f0f0f0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
#compare .titleNo {
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #851618;
  font-size: 1rem;
}
#ticker {
  display: flex;
  align-items: center;
  width: 100%;
  /* Full-width ticker */
  overflow: hidden;
  /* Hide content outside the container */
  white-space: nowrap;
  /* Ensure items stay in one line */
  box-sizing: border-box;
  position: relative;
  height: 125px;
  background-image: url(/img/static/jerky-slide-1.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  /* Inner container that moves the content */
  /* Span elements inside the ticker */
  /* Ticker animation */
}
#ticker span {
  display: inline-block;
  z-index: 1;
  color: #f0f0f0;
  font-family: ruddy, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.75rem;
  /* 32px */
  margin-right: 128px;
  /* Spacing between each item */
}
#ticker .ticker-inner {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  -webkit-animation: ticker 20s linear infinite;
  animation: ticker 20s linear infinite;
  /* Set animation duration and loop */
  z-index: 2;
}
@-webkit-keyframes ticker {
  0% {
    transform: translateX(0);
    /* Start at the beginning */
  }
  100% {
    transform: translateX(-50%);
    /* Move to the left by the width of the entire ticker content */
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
    /* Start at the beginning */
  }
  100% {
    transform: translateX(-50%);
    /* Move to the left by the width of the entire ticker content */
  }
}
#policies {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
#faq {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  z-index: 1;
}
#shipping-policy {
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  padding: 4rem 4rem 4rem 4rem;
  position: relative;
  width: 100%;
  z-index: 1;
}
#shipping-policy ul {
  margin-left: 2rem;
  margin-top: 1rem;
}
#shipping-policy ol {
  margin-left: 2rem;
  margin-top: 1rem;
}
#shipping-policy h1 {
  font-size: 2rem;
}
#shipping-policy h2 {
  font-size: 1.5rem;
}
#faq-section {
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  padding: 4rem 4rem 4rem 4rem;
  position: relative;
  width: 100%;
}
#faq-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#content {
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  padding: 4rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  width: 100%;
}
#content .title {
  padding: 0 2rem;
}
#content .title,
#content .button,
#content #ourStory,
#content .showcase {
  z-index: 1;
}
@media (max-width: 768px) {
  #content {
    padding: 2rem;
  }
}
@media (max-width: 490px) {
  #content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
#locations {
  position: relative;
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  padding: 0;
}
#locations .locationGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  /* Responsive columns */
  gap: 2rem;
  /* Gap between cards */
  padding: 4rem;
  /* Left and right padding */
  position: relative;
  z-index: 1;
}
@media (max-width: 490px) {
  #locations .locationGrid {
    padding: 2rem;
  }
}
@media (max-width: 375px) {
  #locations .locationGrid {
    padding: 1rem;
  }
}
#locations .locationGrid .location {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1 1 auto;
}
#locations .locationGrid .flipCard {
  aspect-ratio: 1 / 1;
  flex-grow: 1;
  perspective: 1000px;
  /* Creates the 3D effect */
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 0;
}
#locations .locationGrid .flipCard:hover {
  transform: scale(1.05);
}
#locations .locationGrid .flipCard:active {
  transform: scale(1.05) translateY(0.5rem);
  z-index: 1;
}
#locations .locationGrid .flipCard:active .flipCard-front {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
#locations .locationGrid .flipCard:hover .flipCard-front {
  background-color: #252525;
}
#locations .locationGrid .flipCard h3 {
  font-size: 1.25rem;
}
#locations .locationGrid .flipCard p {
  font-size: 0.9rem;
}
#locations .locationGrid .flipCard-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
#locations .locationGrid .flipCard.flipped .flipCard-inner {
  transform: rotateY(180deg);
}
#locations .locationGrid .flipCard.flipped {
  transform: translateY(-1rem) scale(1.25);
  z-index: 2;
}
@media (max-width: 768px) {
  #locations .locationGrid .flipCard.flipped {
    transform: scale(1.05);
  }
}
#locations .locationGrid .flipCard.flipped .flipCard-back {
  overflow: hidden;
  box-shadow: 16px 16px 24px rgba(0, 0, 0, 0.25);
}
#locations .locationGrid .flipCard.flipped:active {
  transform: scale(1.25) translateY(0);
}
#locations .locationGrid .flipCard-front,
#locations .locationGrid .flipCard-back {
  background-color: #1e1e1e;
  color: #f0f0f0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  padding: 2rem;
  box-sizing: border-box;
  transition: background-color 0.2s ease, box-shadow 0.1s ease;
  flex-direction: column;
}
#locations .locationGrid .flipCard-front h3,
#locations .locationGrid .flipCard-back h3 {
  margin: 0 0 0.25rem 0;
  padding-bottom: 0.25rem;
  text-align: left;
  width: 100%;
}
#locations .locationGrid .flipCard-front {
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}
#locations .locationGrid .flipCard-front h3 {
  margin: 0 0 0 0;
  padding-top: 0.25rem;
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
  color: #d42d33;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 742px) {
  #locations .locationGrid .flipCard-front h3 {
    font-size: 2rem;
  }
}
#locations .locationGrid .flipCard-front div {
  text-align: center;
  align-items: center;
}
#locations .locationGrid .flipCard-front span {
  font-style: italic;
  text-align: center;
  color: #f0f0f0;
  letter-spacing: 2px;
  font-size: 0.9rem;
}
@media (max-width: 742px) {
  #locations .locationGrid .flipCard-front p {
    font-size: 1.25rem;
  }
}
#locations .locationGrid .flipCard-front .location-sizes {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2rem;
}
#locations .locationGrid .flipCard-front .location-sizes span {
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 742px) {
  #locations .locationGrid .flipCard-front .location-sizes span {
    font-size: 1.1rem;
  }
}
#locations .locationGrid .flipCard-front .location-sizes .size-container {
  margin-top: 0.25rem;
}
#locations .locationGrid .flipCard-front .location-sizes .size-container .size-badge {
  font-size: 1.25rem !important;
  color: #ff0019;
  font-weight: 800;
  padding: 0.25rem 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  background-color: #333333;
  box-shadow: rgba(0, 0, 0, 0.25) 2px 2px 6px;
}
#locations .locationGrid .flipCard-back {
  transform: rotateY(180deg);
  overflow-y: auto;
  /* Enable vertical scrolling */
  padding: 0;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  flex-direction: column;
}
#locations .locationGrid .flipCard-back .map {
  width: 100%;
  aspect-ratio: 1 / 1;
}
#locations .locationGrid .flipCard-back span {
  font-style: italic;
  text-align: center;
  color: #f0f0f0;
  letter-spacing: 2px;
}
#locations .locationGrid .flipCard-back p,
#locations .locationGrid .flipCard-front p {
  margin: 0;
  /* Ensure no extra margin is causing overflow */
}
#locations .locationGrid .location .nameLocation {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.showcase {
  padding: 0.625rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}
.showcase .card {
  aspect-ratio: 16 / 9;
  width: calc((100% / 4) - (1.5rem * 3 / 4));
  min-width: auto;
  box-sizing: border-box;
  /* Ensure padding is included in width */
}
.showcase .productImage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  /* Horizontally center the image */
  align-items: center;
  /* Vertically center the image */
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  -webkit-filter: drop-shadow(0px -6px 12px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px -6px 12px rgba(0, 0, 0, 0.2));
}
.showcase .productImage img {
  width: 100%;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.showcase .productImage a {
  color: #f0f0f0;
}
.showcase .productDetails {
  padding: 1rem 1.5rem;
  background-color: #1e1e1e;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  gap: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.showcase .productDetails .row {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.showcase .productDetails h3 {
  font-size: 1.5rem;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}
.showcase .productDetails p {
  font-size: 1rem;
  color: #f0f0f0;
}
.showcase .productDetails svg {
  height: 40px;
  width: 40px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}
.showcase .productDetails svg .e {
  fill: #ff0019;
}
.showcase .productDetails #addToCart {
  width: 100%;
  gap: 1.125rem;
  align-items: center;
  justify-content: center;
}
.showcase .productDetails .button {
  font-size: 1rem;
  width: 90%;
  text-decoration: none;
  color: #f0f0f0;
  font-family: quatro, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.showcase .productDetails .linkTitle {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.showcase .productDetails .linkTitle:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */
}
@media (max-width: 1280px) {
  .showcase .card {
    width: calc((100% / 3) - (1.5rem * 3 / 4));
    box-sizing: border-box;
    /* Ensure padding is included in width */
  }
  .showcase .card:last-child {
    display: none;
  }
}
@media (max-width: 980px) {
  .showcase .card {
    width: calc((100% / 2) - (1.5rem * 3 / 4));
    box-sizing: border-box;
    /* Ensure padding is included in width */
    max-width: 350px;
  }
  .showcase .card:last-child {
    display: block;
  }
}
@media (max-width: 600px) {
  .showcase .card {
    width: calc(100% - (1.5rem * 3 / 4));
    max-width: 350px;
    box-sizing: border-box;
    /* Ensure padding is included in width */
  }
}
#original .productDetails {
  border: 2px solid #007bff;
}
#original .productDetails h3 {
  color: #007bff;
}
#hot .productDetails {
  border: 2px solid #af2230;
}
#hot .productDetails h3 {
  color: #ff0019;
}
#hotGarlic .productDetails {
  border: 2px solid #ff4500;
}
#hotGarlic .productDetails h3 {
  color: #ff6347;
}
#garlic .productDetails {
  border: 2px solid #c5ad59;
}
#garlic .productDetails h3 {
  color: #fff176;
}
#onion .productDetails {
  border: 2px solid #d2b48c;
}
#onion .productDetails h3 {
  color: #e3c19b;
}
#hotOnion .productDetails {
  border: 2px solid #cd5c5c;
}
#hotOnion .productDetails h3 {
  color: #ff6f61;
}
#allProducts {
  position: relative;
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  padding: 4rem 0 0 0;
}
@media (max-width: 768px) {
  #allProducts {
    padding: 2rem 2rem 0 2rem;
  }
}
#allProducts .productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* Responsive columns */
  gap: 2rem;
  /* Gap between cards */
  padding: 4rem;
  /* Left and right padding */
  position: relative;
  z-index: 1;
}
@media (min-width: 1440px) {
  #allProducts .productGrid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Responsive columns */
    padding: 4rem;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  #allProducts .productGrid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* Responsive columns */
    padding: 2rem;
  }
}
#allProducts .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
#allProducts .productImage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  /* Horizontally center the image */
  align-items: center;
  /* Vertically center the image */
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  -webkit-filter: drop-shadow(0px -6px 12px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px -6px 12px rgba(0, 0, 0, 0.2));
}
#allProducts .productImage img {
  width: 100%;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
#allProducts .productImage a {
  color: #f0f0f0;
}
#allProducts .productDetails {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #1e1e1e;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  gap: 1.5rem;
}
#allProducts .productDetails .row {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
#allProducts .productDetails h3 {
  font-size: 1.5rem;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}
#allProducts .productDetails p {
  font-size: 1rem;
  color: #f0f0f0;
}
#allProducts .productDetails svg {
  height: 50px;
  width: 50px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}
#allProducts .productDetails svg .e {
  fill: #ff0019;
}
#allProducts .productDetails #addToCart {
  width: 100%;
  gap: 1.125rem;
  align-items: center;
  justify-content: center;
}
#allProducts .productDetails .linkTitle {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  min-height: 50px;
}
#allProducts .productDetails .linkTitle:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */
}
#productDesc {
  position: relative;
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  padding: 0;
}
#productDesc .product {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4rem;
  padding: 4rem 4rem 4rem 4rem;
  z-index: 1;
}
@media (max-width: 768px) {
  #productDesc .product {
    flex-direction: column;
    padding: 2rem;
  }
}
#productDesc .product .default-img {
  max-height: 600px;
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
}
#productDesc .product #original-image {
  max-height: 600px;
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-image: url(/img/flavors/original.webp);
}
#productDesc .product #hot-original-image {
  max-height: 600px;
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-image: url(/img/flavors/hot.webp);
}
#productDesc .product #garlic-image {
  max-height: 600px;
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-image: url(/img/flavors/garlic.webp);
}
#productDesc .product #hot-garlic-image {
  max-height: 600px;
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-image: url(/img/flavors/hot-garlic.webp);
}
#productDesc .product #onion-image {
  max-height: 600px;
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-image: url(/img/flavors/onion.webp);
}
#productDesc .product #hot-onion-image {
  max-height: 600px;
  background-position: center;
  /* Anchors the image to the bottom */
  background-size: cover;
  /* Resizes the image to fill the div */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-image: url(/img/flavors/hot-onion.webp);
}
#productDesc .product .imgWrap {
  margin-top: 1rem;
  flex: 1 1 45%;
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  justify-content: center;
  /* Horizontally center the image */
  align-items: center;
  /* Vertically center the image */
  overflow: hidden;
}
@media (max-width: 768px) {
  #productDesc .product .imgWrap {
    aspect-ratio: 3.75 / 2;
  }
}
@media (max-width: 490px) {
  #productDesc .product .imgWrap {
    aspect-ratio: 2.5 / 2;
  }
}
#productDesc .product img {
  height: 65%;
  align-self: flex-start;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  #productDesc .product img {
    height: auto;
    width: 100%;
    margin-top: 0;
  }
}
#productDesc .product .productListing {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
#productDesc .product .productListing p {
  font-size: 1.1rem;
}
#productDesc .product .productListing .em {
  font-size: 1.2rem;
  font-weight: 400;
}
#productDesc .product .productListing form {
  max-width: 75%;
  align-self: center;
  gap: 0.5rem;
}
#productDesc .product .productListing form input {
  color: #1e1e1e;
  background-color: #f0f0f0;
  border: 1px solid #1e1e1e;
}
#productDesc .product .productListing .productFeatures {
  font-family: ruddy, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5rem;
  color: #851618;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  list-style-type: none;
  /* Remove the default bullet points */
  padding-left: 0;
  /* Remove default padding */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#productDesc .product .productListing .productFeatures li {
  padding-left: 3.5rem;
  position: relative;
}
#productDesc .product .productListing .productFeatures li:nth-child(1)::before {
  content: url('/img/icons/man-served.svg');
  /* Path to the second icon */
  position: absolute;
  left: 0;
  top: 50%;
  /* Center vertically */
  transform: translateY(-55%);
  /* Ensure vertical centering */
  width: 40px;
  /* Adjust the size of the icon */
  height: 40px;
}
#productDesc .product .productListing .productFeatures li:nth-child(2)::before {
  content: url('/img/icons/seasoning.svg');
  /* Path to the second icon */
  position: absolute;
  left: 0;
  top: 50%;
  /* Center vertically */
  transform: translateY(-55%);
  /* Ensure vertical centering */
  width: 40px;
  /* Adjust the size of the icon */
  height: 40px;
}
#productDesc .product .productListing .productFeatures li:nth-child(3)::before {
  content: url('/img/icons/meat-slice.svg');
  /* Path to the second icon */
  position: absolute;
  left: 0;
  top: 50%;
  /* Center vertically */
  transform: translateY(-55%);
  /* Ensure vertical centering */
  width: 40px;
  /* Adjust the size of the icon */
  height: 40px;
}
#productDesc .product .productListing .productDetails {
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.4);
  line-height: 1.6;
  font-style: italic;
  margin-left: 2rem;
}
#productDesc .product .productListing .productTitle h2 {
  font-size: 2.5rem;
}
#productDesc .product .productListing .productTitle p {
  font-size: 1.5rem;
}
#productDesc .product .productListing .expand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#productDesc .product .productListing .expand .expandTitle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  width: 100%;
  cursor: pointer;
  background-color: #1e1e1e;
  color: #f0f0f0;
}
#productDesc .product .productListing .expand .expandTitle span {
  font-weight: 500;
  font-size: 1.2rem;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}
#productDesc .product .productListing .expand svg {
  height: 8px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  fill: #f0f0f0;
  stroke: #f0f0f0;
}
#productDesc .product .productListing .expand .rotateSvg {
  transform: rotate(0deg);
}
#productDesc .product .productListing .expand .expandContent {
  padding: 0 1rem 0 1rem;
  /* Positioning the content absolutely within the parent */
  left: 0;
  right: 0;
  top: 100%;
  /* Positioned just below the parent */
  max-height: 0;
  overflow: hidden;
  border-bottom: 2px solid #c9c9c9;
  transition: max-height 0.5s ease;
  margin-bottom: 2rem;
}
#productDesc .product .productListing .expand .expandContent p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  #productDesc .product .productListing .expand .expandContent {
    position: relative;
  }
}
#productDesc .product .productListing .expand .showExpandContent {
  max-height: 1000px;
}
#ourStory {
  scroll-margin-top: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  z-index: 1;
}
#ourStory p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}
#ourStory .titleBar {
  background-color: #1e1e1e;
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem;
  color: #f0f0f0;
  font-size: 2rem;
  font-family: ruddy, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 8px;
}
#ourStory .ourStoryImage {
  aspect-ratio: 5 / 6;
  position: relative;
  width: 33%;
  height: auto;
  display: flex;
  justify-content: center;
  /* Horizontally center the image */
  align-items: center;
  /* Vertically center the image */
  overflow: hidden;
}
@media (max-width: 768px) {
  #ourStory .ourStoryImage {
    width: 100%;
  }
}
@media (max-width: 490px) {
  #ourStory .ourStoryImage {
    width: 100%;
  }
}
#ourStory .ourStoryImage img {
  bottom: 0;
  position: absolute;
  width: 100%;
}
#ourStory .storyWrap {
  padding: 0 6rem;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1441px) {
  #ourStory .storyWrap {
    padding: 0 15%;
  }
}
@media (max-width: 768px) {
  #ourStory .storyWrap {
    padding: 0 1rem;
  }
}
@media (max-width: 490px) {
  #ourStory .storyWrap {
    align-items: center;
    flex-direction: column;
    padding: 0 2rem;
  }
}
#ourStory .pWrap {
  width: 66%;
}
@media (max-width: 768px) {
  #ourStory .pWrap {
    width: 100%;
  }
}
#cancel {
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  min-height: 75vh;
  justify-content: center;
}
#cancel h1 {
  text-align: center;
  color: #851618;
  font-size: 2.5rem;
}
#cancel p {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 1rem;
  max-width: 800px;
}
.extra-logo {
  width: 300px;
}
.success {
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  min-height: 75vh;
  justify-content: center;
  background-image: none;
  z-index: 1;
}
.success h1 {
  text-align: center;
  color: #851618;
  font-size: 2.5rem;
}
.success p {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 1rem;
}
#success {
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  min-height: 75vh;
  justify-content: center;
}
#success h1 {
  text-align: center;
  color: #851618;
  font-size: 2.5rem;
}
#success p {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 1rem;
}
footer {
  width: 100%;
  background-color: #1e1e1e;
  padding: 0.625rem;
  color: #f0f0f0;
}
footer .footerContent {
  width: 100%;
  gap: 4rem;
  justify-content: space-evenly;
  padding: 4rem 10%;
}
footer .footerContent .col {
  gap: 2rem;
  justify-content: flex-start;
}
@media (max-width: 790px) {
  footer .footerContent .col {
    gap: 2rem;
  }
}
footer .footerContent .col .row {
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1024px) {
  footer .footerContent {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 790px) {
  footer .footerContent {
    justify-content: space-around;
  }
}
footer a {
  color: #f0f0f0;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer a:visited {
  color: #a2a2a2;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.625rem;
  align-items: center;
  justify-content: center;
}
footer .copyright p {
  margin-top: 0.5rem;
  letter-spacing: 2px;
}
footer img {
  width: 300px;
}
#error {
  background-image: url(/img/static/texture-alt.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  min-height: 75vh;
  justify-content: center;
}
#error .msg-logo-wrap {
  gap: 0;
}
#error h1 {
  text-align: center;
  color: #851618;
  font-size: 2.5rem;
  margin-top: 3rem;
}
#error h2 {
  text-align: center;
  width: 100%;
  margin-top: 3rem;
}
#error p {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 1rem;
}
#error .button {
  margin-top: 1rem;
  font-family: quatro, sans-serif;
  font-weight: 500;
  font-style: normal;
}
