/** Shopify CDN: Minification failed

Line 512:14 Expected "}" to go with "{"

**/
/* Product Title */
.product-title {
  font-weight: 400;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Price Wrapper */
.product-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
}

.product-price-wrapper .price__default {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-price-wrapper .price__current {
  font-weight: 600;
  color: #1A1A1E;
  font-size: 16px;
}

.product-price-wrapper .price__was {
  text-decoration: line-through;
  color: #999;
  font-size: 12px;
  font-weight: 500;
}

.product-price-wrapper .price__off {
  color: #FF3278;
  font-weight: 400;
  font-size: 14px;
  display: none;
}

/* Product Image & Checked Icon */
.at-modal-productItem-image {
  position: relative;
}
.at-modal-productItem-image .checked-icon {
  position: absolute;
  top: 1px;
  right: 1px;
}
.at-modal-productItem-image .checked-icon .svg {
  width: 24px;
  height: 24px;
}

/* Carousel Pills */
.carousel-pills {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  gap: 6px;
}
.carousel-pill {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}
.carousel-pill.active {
  background-color: #000;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow svg {
  width: 32px;
  height: 32px;
}
.carousel-arrow.left-arrow {
  left: 5px;
}
.carousel-arrow.right-arrow {
  right: 5px;
}

/* Module Group */
.at-module-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: scroll;
}

/* Modal Product Grid */
.modal-at-module-product-grid {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding: 16px 16px;
}
.modal-at-module-product-grid .carousel-wrapper:last-child {
  border-bottom: none;
}
.modal-at-module-product-grid .product-item {
  display: flex;
  box-sizing: border-box;
  text-align: center;
  border-radius: 8px;
  justify-content: flex-start;
  gap: 10px;
}
.modal-at-module-product-grid .product-item img {
  width: fit-content;
  height: auto;
  max-width: 110px;
  object-fit: contain;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
}
.modal-at-module-product-grid .price__current {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1E;
}
.modal-at-module-product-grid .price__off {
  display: none;
}
.modal-at-module-product-grid .price__was {
  color: #999;
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
}

/* Kit Footer */
.kit-footer {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: row;
  margin-top: 16px;
  justify-content: space-between;
}
.total-price {
  font-weight: bold;
  margin: 0;
}
.select-items-btn {
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  padding: 8px 16px;
  background-color: #1a1a1e;
  color: #ffffff;
  border: 1px solid #1A1A1E;
  cursor: pointer;
}
@media (min-width: 769px) {
  .select-items-btn {
    font-size: 16px;
  }
  #sticky-total-price {
    font-size: 16px;
  }
}
.skip-to-cart {
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  height: 34px;
  padding: 8px 16px;
  background-color: #1a1a1e;
  color: #ffffff;
  border: 1px solid #1A1A1E;
  cursor: pointer;
}

/* Responsive: Complete Your Kit */
@media (max-width: 768px) {
  .complete-your-kit {
    width: 100%;
  }
}

/* Modal Styles */
.at-modal-content-wrapper {
  height: 100%;
  overflow-y: scroll;
  background: #EEEEEE;
}
.modal-at-content-header-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
}
.at-modal-product-wrapper .product-item.at-modal-product-image {
  display: flex;
  width: fit-content;
  height: 100%;
  border-radius: 3px;
}
.close-btn {
  cursor: pointer;
}
.at-variant-selector {
  display: flex;
  overflow-x: auto;
  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.at-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-at-content-header {
  background: #EEEEEE;
  z-index: 10;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.at-modal-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Mobile: retain bottom slide-in modal */
@media (max-width: 768px) {
  .at-modal-content {
    bottom: 0;
    width: 100vw;
    height: 80vh;
    border-radius: 12px 12px 0 0;
    animation: slideUp 0.3s ease-out;
    max-width: 100vw;
    left: 0;
    transform: none;
  }
  .sticky-modal-header,
  .sticky-modal-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .at-modal-form-content {
    background-color: #fff;
  }
}

/* Desktop: center modal without animation */
@media (min-width: 769px) {
  .at-modal-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    width: 30%;
    min-width: 620px;
    height: auto;
    max-height: 90vh;
    animation: none;
  }
}

.at-modal-header-wrapper {
  padding: 16px 16px 0 16px;
}
.at-modal-header-content {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.sticky-modal-header {
  padding: 0 0 15px 0;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 20;
  display: flex;
  align-items: center;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #eeeeee;
}
.sticky-modal-header h5 {
  font-size: 16px;
  margin: 0;
}
.at-modal-form-content {
  background: #fff;
  flex: 1 1 auto;
  overflow-y: auto;
}
.at-modal-product-wrapper {
  display: flex;
  padding: 20px 0;
  gap: 10px;
}
.sticky-modal-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  padding: 16px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  z-index: 20;
  border-radius: 0 0 12px 12px;
}

/* Product Grid */
.at-module-product-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.product-item {
  text-align: center;
}
.product-item img {
  width: 62px;
  height: 83px;
  max-width: 110px;
  min-width: 60px;
  object-fit: fill;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
}

/* Carousel Wrapper & Track */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 12px;
  padding-bottom: 10px;
  min-height: 160px;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track > * {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

/* Product Details */
.product-details {
  text-align: left;
}
.at-modal-product-kit-wrapper {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.product-item .at-modal-product-image {
  position: relative;
  display: inline-block;
}

/* Custom Checkbox */
.custom-checkbox-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.custom-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-checkbox-box {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #1a1a1e;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.custom-checkbox:checked + .custom-checkbox-box {
  background-color: #1a1a1e;
  border-color: #1a1a1e;
}
.custom-checkbox-box .check-icon {
  display: none;
}
.custom-checkbox:checked + .custom-checkbox-box .check-icon {
  display: block;
}
.custom-checkbox-box svg {
  display: none;
}
/* SHOW the tick only when the checkbox is checked */
.custom-checkbox:checked + .custom-checkbox-box svg {
  display: block;
}
.image-corner-checkbox {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
}
.product-item img {
  border-radius: 4px;
  display: block;
  max-width: 100%;
}

/* Option Button & Label */
.opt-btn.visually-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.opt-label {
  padding: 8px 12px;
  border: 1px solid #ccc;
  margin-right: 6px;
  border-radius: 4px;
  cursor: pointer;
  min-width: 63px;
  text-align: center;
  background-color: white;
}
.opt-btn:checked + .opt-label {
  border-color: #000;
  font-weight: bold;
  box-shadow: none;
}

/* Variant Label & Size Guide */
.variant-label {
  font-size: 12px;
  font-weight: 600;
  padding-top: 10px;
}
.size-guide-link {
  font-size: 14px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Disabled Variant */
.disabled-variant {
  opacity: 0.5;
  pointer-events: none;
  background-color: #f5f5f5;
  border-color: #ccc;
  cursor: not-