.efbtw-product-bundle-wrapper {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.efbtw-product-bundle-wrapper .efbtw-product-bundle-container {
  margin-bottom: 20px;
}

.efbtw-product-bundle-wrapper .efbtw-product-bundle-container:last-child {
  margin-bottom: 0;
}

.efbtw-product-bundle-wrapper h1 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
}

.efbtw-product-image-summery {
  display: flex;
}

.efbtw-product-bundle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.efbtw-product-images {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 60%;
}

.efbtw-product-image {
  width: 100px;
  height: 100px;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.efbtw-product-image img {
  max-width: 100% !important;
  max-height: 100%;
  object-fit: cover;
  height: 100%;
}

.woofbt-plus {
  font-size: 24px;
  color: #999;
  margin: 0 5px;
}

.efbtw-price-summary {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 0 0 40%;
}

.efbtw-price-label {
  font-weight: 600;
}

.woofbt-original-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 700;
  font-size: 18px;
}

.woofbt-sale-price {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.efbtw-savings {
  display: block;
  color: #e74c3c;
  font-weight: 700;
  font-size: 18px;
}

.easyefbtw-add-to-cart-btn {
  background-color: #2a9d8f;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
  text-decoration: none !important;
}

.easyefbtw-add-to-cart-btn:hover {
  background-color: #238b7e;
}

.efbtw-product-item input[type="checkbox"]:focus {
  outline: none;
}

.efbtw-product-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.efbtw-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.efbtw-product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  cursor: pointer;
  align-items: center;
}

.wd-fbt-product-variation select {
  padding: 0 15px;
  max-width: 100%;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  color: inherit;
  vertical-align: middle;
  font-size: 14px;
  transition: border-color 0.5s ease;
}

.wd-fbt-product-variation select:focus {
  outline: none;
}

.product-label {
  font-weight: 600;
  margin-right: 5px;
}

.efbtw-product-name {
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin-bottom: 0;
  text-decoration: none;
}

.efbtw-product-name a {
  text-decoration: none;
}

.efbtw-product-price {
  font-weight: 600;
  margin-left: 5px;
  color: #222;
  font-size: 18px;
}

.efbtw-product-price del {
  color: #545454;
}

.efbtw-product-price ins {
  text-decoration: none;
}

.buttonwoofbt-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.buttonwoofbt-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.efbtw-product-list {
  position: relative;
}

.woofbt-loader-overlay:not(.woofbt-loading) {
  display: none;
}

.easyefbtw-add-to-cart-btn.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.easyefbtw-add-to-cart-btn.loading::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes woofbt-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes woofbt-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes woofbt-fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .efbtw-product-images {
    justify-content: center;
  }

  .efbtw-price-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .efbtw-savings {
    margin-left: 0;
  }
}
