/** Shopify CDN: Minification failed

Line 240:6 Expected ":"

**/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-color: #faf9f6;
  display: flex;
  flex-direction: column;
  padding-top: 100px; /* sits body underneath header */
}

* {
  box-sizing: border-box;
}

.title {
  text-decoration: none;
}

.hidden {
  display: none;
}

.content-wrapper {
  display: flex; /* side-by-side layout */
  justify-content: space-between;
}

.empty-padder {
  flex: 0 0 auto;
  position: relative;
  top: 10px;
  right: 0;
  width: 10vw;
  max-width: 200px;
  margin-right: 10px
  padding: 10px;
}

.main-sidebar {
  flex: 0 0 auto;
  position: sticky;
  top: 10px;
  left: 0;
  width: 10vw;
  max-width: 200px;
  height: 70vh;
  margin-left: 10px;
  padding: 10px;
  border: 1px;
  border-style: solid;
  border-color: #ddd;
  border-radius: 0 0 4px 4px;
  background-color: #f9f9f9;
  z-index: 999;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 10px;
}

.main-text {
  font-family: Arial;
  font-weight: bold;
  color: #005a0a;
  cursor: pointer;
}

.subtext {
  font-family: Arial;
  font-weight: bold;
  display: none;
  color: #005a0a;
  margin-left: 15px;
}

.subtext a {
  display: block;
  padding-left: 15px;
  color: #005a0a;
  text-decoration: none;
}

.adbar {
  flex: 0 0 auto;
  position: sticky;
  top: 10px;
  right: 0;
  width: 10vw;
  max-width: 200px;
  height: 70vh;
  margin-right: 10px;
  padding: 10px;
  border: 1px;
  border-style: solid;
  border-color: #ddd;
  border-radius: 0 0 4px 4px;
  background-color: #f9f9f9;
  z-index: 999;
}

/* Product Grid */
.product-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
  gap: 16px; /* Spacing between columns/rows */
  max-width: 1200px; /* Limit width so it doesn't stretch too wide */
  width: 70%%; /* Fill available width up to max-width */
  padding: 20px; /* Optional padding inside the grid */
  box-sizing: border-box; /* Ensure padding and borders count in total width */
}

.product-box {
  background-color: #f6f6f6;
  position: relative; /* Enables positioning for content */
  border: 1px solid;
  border-radius: 4px;
  transition: transform 0.05s ease;
  overflow: hidden;
  display: flex;
  aspect-ratio: 1;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.product-box::after {
  content: "";
  display: block;
  position: absolute;
  background: #f6f6f6;
  border-radius: 4px;
}

.product-box:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.product-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  z-index: 1;
}

.product-grid > div:nth-child(2) {
  position: relative;
}

.product-image {
  padding-top: 20px;
  padding: 10px;
  
}

.frontpage-product-image {
    text-decoration: none;
}

.frontpage-product-title,
.frontpage-product-price {
   font-family: helvetica;
  color: #005a0a;
}

.frontpage-product-price {
  color: red;
}

.tape {
  position: absolute;
  width: 20px;
  height: 141%;
  z-index: 10;
  border: 2px black solid;
  top: 50%;
  left: 50%;
}

.tape-1 {
  transform: translate(-50%, -50%) rotate(45deg);
  background: repeating-linear-gradient(
    -45deg,
    #000000,
    #000000 10px,
    yellow 10px,
    yellow 20px
  );
}

.tape-2 {
  transform: translate(-50%, -50%) rotate(-45deg);
  background: repeating-linear-gradient(
    45deg,
    #000000,
    #000000 10px,
    yellow 10px,
    yellow 20px
  );
}

.product-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  gap: 40px;
  font-family: Helvetica, monospace;
  border: 10px solid red;
}

/* Product Images (Scrolling Section) */
.product-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-images img {
  flex 0 0 auto;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Product Details (Sticky Section) */
.product-details {
  flex: 1;
  max-width: 400px;
}

/* Make product details sticky */
.sticky-container {
  position: sticky;
  top: 100px; /* Adjust for header if needed */
  justify-content: center;
  align-items: center;
}

/* General Styles */
.product-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

select {
  padding: 10px;
  font-size: 16px;
}

button {
  background: black;
  color: white;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* Accordions */
.accordion-item {
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

.accordion-title {
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding: 10px 0;
}

.accordion-content {
  display: none;
  font-size: 14px;
  padding: 5px 0;
}

.call-to-action-buttons {
  display: flex;
  flex-direction: row;
  width: auto;
}

#add-to-cart-button,
#buy-now-button {
  padding: 10px;
  border-radius: 4px;
  height: 50px;
}

#add-to-cart-button {
  flex: 1;
  background: #005a0a;
}

#buy-now-button {
  flex: 0.5;
}

#add-to-cart-button:hover,
#buy-now-button:hover {
  background: grey;
}

footer {
  width: 100%;
  position: relative;
  font-family: "Helvetica";
  overflow-x: hidden;
}

@keyframes nudge-carousel {
  0% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  50% { transform: translateX(0); }
}

.product-images.nudge {
  animation: nudge-carousel 1s ease-in-out;
}

@media (max-width: 768px) {
  .main-sidebar, 
  .empty-padder {
    display: none;
  }

  .product-grid {
    display: flex;
    flex-direction: column;
  }
  /* Stack sections vertically */
  .product-container {
    flex-direction: column;
    gap: 20px;
  }

  /* Horizontal carousel for images */
  .product-images {
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }

  .product-images img {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    object-fit: cover;
  }

  /* Remove sticky behavior on mobile */
  .sticky-container {
    position: static;
    top: auto;
  }

  .product-details {
    max-width: 100%;
  }
}
