/** Shopify CDN: Minification failed

Line 207:0 Unexpected "<"

**/
body .drawer {
    z-index : 1000000;
}

.byob-wrapper {
    display: block !important;
}

.byob-modal-wrapper .byob-quickview-container {
    width: 95%;
}

.byob-quickview-quantity {
    max-width: 300px;
}

.byob-modal-wrapper .byob-quickview-close {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url(/cdn/shop/files/close-x-svgrepo-com.svg?v=1775642058) !important;
}

@media (max-width: 768px) {
    .byob-quickview-desc iframe {
        aspect-ratio: 16 / 9;
        width: 100% !important;
    }
    
    .byob-product-option-wrapper .byob-product-option{
      display: block;
    }

    .byob-product-option select{
      height: 45px;
      width: 100%;
    }

    .bundle-trigger-btn {
      display: flex !important;
    }

}

.bundle-dropdown {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bundle-dropdown-tab {
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, box-shadow 0.2s;
}

.bundle-dropdown-tab:hover {
  background-color: #f0f0f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bundle-dropdown-tab .chevron {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 14px;
}

.bundle-dropdown-content {
  padding: 16px 20px;
  background-color: #fafafa;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid #ddd;
}

.bundle-dropdown-content ul {
  padding-left: 20px;
  margin: 0;
}

.bundle-dropdown-content li {
  margin-bottom: 6px;
}

/* .bundle-trigger-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  border: none;
  padding: 5px 20px;
  cursor: pointer;

} */

button.byob-accordion {
  font-size: 17px;
}
.bundle-trigger-btn {
  position: absolute;   /* 👈 makes it sticky */
  top: 30px;          /* 👈 stick 20px from top */
  left: 20px;
  z-index: 10;

  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #000000;

  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  transition: all 0.4s ease;
}

/* Inner ring */
.bundle-trigger-btn::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 2px solid white;
  transition: all 0.4s ease;
}

/* Arrow */
.bundle-trigger-btn .arrow {
  position: relative;
  width: 40px;
  height: 40px;
  transition: transform 0.4s ease;
  animation: arrowSlide 1.5s ease-in-out infinite;
}

.bundle-trigger-btn .arrow::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 4px;
  background: white;
  top: 15px;
  left: 10px;
}

.bundle-trigger-btn .arrow::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: 4px solid white;
  border-left: 4px solid white;
  transform: rotate(-45deg);
  top: 10px;
  left: 10px;
}

/* Label */
.bundle-trigger-btn .label {
  position: absolute;
  bottom: -35px;
  font-size: 16px;
  color: #2f3b52;
}

/* Hover */
.bundle-trigger-btn:hover {
  transform: scale(1.1);
}

.bundle-trigger-btn:hover::before {
  transform: scale(1.2);
  opacity: 0.3;
}

.bundle-trigger-btn:hover .arrow {
  transform: translateX(-8px);
}

@keyframes arrowSlide {
  0%   { transform: translateX(-6px); }
  50%  { transform: translateX(6px); }
  100% { transform: translateX(-6px); }
}
</style>