.shadow {
  box-shadow: 0px 1px 7px -1px rgba(132, 128, 128, 0.72);
}
.fast {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
form.cart .new-variant-swatchs,
#purchase-options .new-variant-swatchs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
form.cart .new-variant-swatchs li,
#purchase-options .new-variant-swatchs li {
  font-size: 18px;
  margin: 0 10px 10px 0;
  color: #fff;
  padding: 6px 10px;
  text-align: center;
  width: auto;
  background-color: #98b4bf;
  cursor: pointer;
}
form.cart .new-variant-swatchs li:first-child,
#purchase-options .new-variant-swatchs li:first-child,
form.cart .new-variant-swatchs li:nth-child(5),
#purchase-options .new-variant-swatchs li:nth-child(5) {
  margin-left: 0;
}
form.cart .new-variant-swatchs li:last-child,
#purchase-options .new-variant-swatchs li:last-child {
  margin-right: 0;
}
form.cart .new-variant-swatchs li.is-active,
#purchase-options .new-variant-swatchs li.is-active {
  background-color: #172c52;
  font-weight: bold;
}
form.cart .new-variant-swatchs li:before,
#purchase-options .new-variant-swatchs li:before {
  display: none;
}
body:has(.ordering-grid) header.site-header {
  position: absolute;
}
body:has(.ordering-grid) #page {
  overflow: visible;
}
.ordering-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 20px;
}
.ordering-grid #ordering-form {
  position: sticky;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ordering-grid #ordering-form h3 {
  margin: 0;
}
.ordering-grid .promo p {
  margin: 0;
}
.ordering-grid #sidebar-selected-products {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  max-height: 300px;
}
.ordering-grid #sidebar-selected-products li {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  gap: 8px;
  align-items: center;
}
.ordering-grid #sidebar-selected-products li span.plus {
  display: inline-block;
  padding: 15px;
  border: 2px dashed #eee;
}
.ordering-grid #sidebar-selected-products li .remove-me {
  font-weight: bold;
  margin-left: auto;
  cursor: pointer;
}
@media (max-width: 1099px) {
  .ordering-grid {
    display: flex;
    flex-direction: column;
  }
}
.purchase-type-container .swatches-wrap {
  display: flex;
  gap: 10px;
}
.purchase-type-container .swatch-item {
  position: relative;
}
.purchase-type-container .swatch-item input[type="radio"].purchase-type-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.purchase-type-container .swatch-item input[type="radio"].purchase-type-radio:checked + .swatch-visual {
  border-color: #0073aa;
  background-color: #f0f8ff;
  color: #0073aa;
  font-weight: bold;
  box-shadow: 0 0 0 1px #0073aa;
}
.purchase-type-container .swatch-item .swatch-visual {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  background: #ffffff;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  user-select: none;
}
.purchase-type-container .swatch-item .swatch-visual:hover {
  border-color: #a7aaad;
}
.product-variation-list {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 32% 32% 32%;
  row-gap: 20px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.product-variation-list li {
  padding: 20px;
  background-color: #fff;
  display: flex;
  gap: 10px;
  flex-direction: column;
  border: 1px solid #ddd;
  text-align: center;
}
.product-variation-list li .price {
  margin: 8px 0 0;
  line-height: 1;
}
.product-variation-list li img {
  width: 100%;
  object-fit: contain;
  max-height: 250px;
}
@media (max-width: 759px) {
  .product-variation-list {
    grid-template-columns: 48% 48%;
  }
}
.ordering-grid {
  /* Reset native styling */
  /* Wrapper to hold custom arrow and base styles */
  /* Custom dropdown arrow */
}
.ordering-grid .select-wrapper {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  display: inline-block;
}
.ordering-grid .select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.8em;
  color: #666;
}
@media (max-width: 770px) {
  .ordering-grid .select-wrapper::after {
    right: 8px;
  }
}
/* Fullscreen Processing Overlay */
#builder-processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.88);
  z-index: 999999;
  /* Sit on top of everything including sticky headers */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  /* Smooth modern glass effect */
  transition: opacity 0.3s ease;
}
/* Spinner Graphic */
.builder-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #11a05b;
  /* Match your brand accent color */
  border-radius: 50%;
  animation: spin-overlay 0.9s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin-overlay {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Loading Text Styling */
.builder-processing-title {
  font-size: 1.15em;
  font-weight: 600;
  color: #222222;
  margin-bottom: 4px;
}
.builder-processing-subtext {
  font-size: 0.85em;
  color: #666666;
}
