/** Shopify CDN: Minification failed

Line 80:8 Expected identifier but found whitespace
Line 80:10 Unexpected "{"
Line 80:19 Expected ":"
Line 80:49 Expected ":"
Line 81:9 Expected identifier but found whitespace
Line 81:11 Unexpected "{"
Line 81:20 Expected ":"
Line 81:51 Expected ":"
Line 210:10 Expected identifier but found whitespace
Line 210:12 Unexpected "{"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Basic layout styling */
.footer-custom {
  padding: 40px 0;
}
.footer-custom .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-custom .footer-column {
  flex: 1 1 22%;
  margin-bottom: 20px;
}
.footer-custom h4 {
  margin-bottom: 10px;
  font-weight: bold;
}
.footer-custom a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}
.footer-custom .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-custom .social-icons img {
  width: 24px;
  height: 24px;
}
.filter-buttons {
  text-align: center;
}
.filter-buttons a {
  display: inline-block;
  border: 1px solid black;
  background: white;
  color: black;
  padding: 8px 15px;
  margin: 0 5px;
  text-decoration: none;
  cursor: pointer;
  font-weight: normal !important;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  user-select: none;
  width: 250px;
}
.filter-buttons a.selected {
  background: #f8d429 !important;
  color: black;
}
.filter-buttons a:hover {
  background:hsla(50, 93.70%, 56.70%, 0.80) !important;
  color: black;
}
.stoplight-container {
  position: absolute;
  top: 5px;
  right: 5px;
  width: {{ section.settings.stoplight_width }}px;
  height: {{ section.settings.stoplight_height }}px;
  border-radius: 5px;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transform: scale({{ section.settings.stoplight_scale | divided_by: 100.0 }});
  z-index: 15;
}
.stock_status_light_rim {
  box-sizing: border-box;
  margin: 3px 5px;
  border-radius: 50%;
  border: 1px solid white;
  border-bottom: none;
  padding-bottom: 1px;
  position: relative;
}
.stoplight-light {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: relative;
  margin: 0;
}
.stoplight-light img {
  width: 4px;
  height: 4px;
  background: url('{{ section.settings.stoplight_icon | image_url }}') repeat;
  background-size: 4px 4px;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.stoplight-overlay {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.by-appointment-banner {
  position: absolute;
  width: 140%;
  left: 50%;
  padding: 2px 0px !important;
  font-weight: bold;
  font-size: 20px !important;
  text-align: center;
  transform-origin: center;
  z-index: 10;
  pointer-events: none;
  user-select: none;
  top: 20px;
  transform: translateX(-50%) rotate(-45deg) translateY(50%);
  background: #80808094 !important;
  color: white !important;
  white-space: nowrap;
}
.online-button{
  padding-top:10px;
  padding-bottom:10px;
}
p.online-button-padding {
    font-size: 3.5px;
    line-height: 4.5px;
}

#product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ✅ Mobile: force 2 per row */
@media (max-width: 768px) {
  #product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Optional: single column on very small screens */
@media (max-width: 480px) {
  #product-grid {
    grid-template-columns: 1fr;
  }
}

div.filter-buttons > a {
    margin-bottom: 20px;
}

.by-appointment-banner {
    font-family: var(--font-heading-family);
}
.filter-buttons {
    text-align: center;
    margin-bottom: 20px;
  }
  .filter-buttons a {
    display: inline-block;
    border: 1px solid black;
    background: white;
    color: black;
    padding: 8px 15px;
    margin: 0 5px;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    user-select: none;
  }
  .filter-buttons a.selected {
    background: yellow;
    color: black;
  }
  /* Stoplight container */
  .stoplight-container {
    position: absolute;
    top: 5px;
    right: 5px;
    width: {{ section.settings.stoplight_width }}px;
    height: {{ section.settings.stoplight_height }}px;
    border-radius: {{ section.settings.stoplight_border_radius }}px;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: scale({{ section.settings.stoplight_scale | divided_by: 100.0 }});
    z-index: 15;
  }
  .stock_status_light_rim {
    box-sizing: border-box;
    margin: 3px 5px;
    border-radius: 50%;
    border: 1px solid white;
    border-bottom: none;
    padding-bottom: 1px;
    position: relative;
  }
  .stoplight-light {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: relative;
    margin: 0;
  }
  .stoplight-light img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    position: relative;
    margin: 1px;
    z-index: 1;
  }
  .stoplight-overlay {
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  }

  /* By Appointment diagonal banner - UPDATED */
.by-appointment-banner {
    position: absolute;
    width: 139%;
    left: 46%;
    padding: 5px 0;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    transform-origin: center;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    top: 162px;
    transform: translateX(-50%) rotate(-45deg) translateY(20px);
    background: grey;
    color: black;
    white-space: nowrap;
}
  /* ORIGINAL: 
  .by-appointment-banner {
    position: absolute;
    width: 140%; 
    max-width: 280px; 
    left: 50%;
    padding: 5px 0;
    font-weight: bold;
    font-size: {{ section.settings.by_appointment_font_size }}px;
    text-align: center;
    transform-origin: center;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    top: {{ section.settings.by_appointment_vertical_position }}%;
    transform: translateX(-50%) rotate(-45deg) translateY({{ section.settings.by_appointment_vertical_adjust }}px);
    background: {{ section.settings.by_appointment_bg_color }};
    color: {{ section.settings.by_appointment_font_color }};
    white-space: nowrap;
  }
  */
.history-story {
  max-width: 960px;
  margin: 0 auto;
  padding: 2em 1em;
}
.history-story .section {
  margin-bottom: 4em;
}
.history-story .title-row {
  padding: 0 1em 1em;
}
.history-story .title-row h2 {
  font-size: 1.8em;
  margin: 0;
  color: #111;
}
.history-story .main-content {
  display: grid;
  grid-template-columns: var(--main-image-width, 50%) 1fr;
  width: 100%;
}
.history-story .image-area {
  padding: 1em;
}
.history-story .image-area img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.history-story .text-area {
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.history-story .subtitle h3 {
  font-size: 1.2em;
  margin: 0;
  color: #555;
}
.history-story .body p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
.history-story .thumbs {
  padding-top: var(--thumbs-padding, 2em);
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: space-between;
}
.history-story .thumbs img {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .history-story .main-content {
    grid-template-columns: 1fr;
  }
  .history-story .thumbs {
    flex-wrap: wrap;
  }
}