.bundle-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 1em;
    list-style: none;
    padding: 0;
}
.bundle-products li {
    /* border: 5px solid #ccc; */
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-image-title-wrapper {
  border: 5px solid #009C4C;
  border-radius: 20px;
  padding: 12px;
  margin-bottom: 10px;
}


.bundle-products li:hover {
    xxxborder-color: #009C4C;
    xxxbackground: #f0f8ff;
    opacity: .8;
}
.bundle-products li.selected {
    xxxborder-color: #009C4C;
    xxxbackground: #e6ffe6;
}
.bundle-products img {
    max-width: 100%;
    height: auto;
    XXXmargin-bottom: 0.5em;
}
.bundle-products p {
    margin: 0;
    font-size: 0.9em;
    font-weight: bold;
}
.select-addon {
    margin-top: 0.5em;
    background: #009C4C;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
}
.select-addon:hover {
    xxxbackground: #E0EDD5;
}
.bundle-products li.selected .select-addon {
    background: #E0EDD5 !important;
    color: #111;
    border-color: #E0EDD5;
}
.bundle-products li.selected .product-image-title-wrapper {
    border-color: #E0EDD5;
}


.bundle-counter {
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 0.5em;
    color: #333;
}
.select-addon.disabled {
    background: #ccc !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Updates */

.select-addon:hover {
  xxxbackground: #005a8d;
}
.select-addon {
    width: 100%;
  padding: 20px 10px;
  border-radius: 20px;
}

.bde-button.panel-nav-button {
  margin-top: 50px;
}


.panel-button-wrapper .button-atom--primary {
  background-color: #5F5F5F !important;
}

.product-image-title-wrapper:hover {
  xxborder: 5px solid #E0EDD5;
}

.select-addon {
  min-width: 150px;
  transition: 250ms;
}
.select-addon:hover {
  opacity: .7;
  transform:scale(1.05);
}

.bundle-debug-header {
  padding: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 15px 15px 0 0;
  font-size: 22px;
  background-color: #DC2533;
}

.bundle-debug-content {
  padding: 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 15px 15px 0 0;
  font-size: 22px;
  background-color: #E0EDD5;
  border-radius: 0 0 15px 15px;
}



.panel-cart-child-attrs {
  font-size: 18px;
  font-weight: 700;
  padding-top: 15px;
}

.panel-cart-item span {
  margin-left: 5px;
}
.panel-cart-item {
  padding: 3px 0;
  font-size: 16px;
  font-weight: 500;
}


.babo-img-tooltip {
  position: relative;
  display: inline-block;
}

.babo-img-preview {
  display: none;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 1000;
  background: white;
  border: 1px solid #ccc;
  padding: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.babo-img-preview img {
  width: 120px;
  height: auto;
}

.babo-img-tooltip:hover .babo-img-preview {
  display: block;
}

.next-button.disabled {
    display:none !important;
}

@keyframes cartPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.cart-pulse {
  animation: cartPulse 0.4s ease;
}
