

#bwd-quick-view-modal {
    position: fixed;
    top: 0; left: 0; right:0; bottom:0;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 9999;
}
.bwd-quick-view-content {
    background: #fff;
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ewaf-quick-view-button {
  background-color: #ffffffe6!important;
  box-shadow: 0 10px 15px -3px rgb(0 0 0/0.1),0 4px 6px -4px rgb(0 0 0/0.1);
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.ewaf-product-actions {
  position: absolute;
  top: 10px;
  right: 15px;
}
.ewaf-product-card:hover .ewaf-quick-view-button {
    opacity: 1;
    visibility: visible;
}
.bwd-qv-close {
    position: absolute;
    top: 10px; right: 15px;
    cursor: pointer;
    font-size: 24px;
}
.bwd-qv-product {
    text-align: center;
  }
  
  .bwd-qv-price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .bwd-qv-meta {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
  }
  .bwd-qv-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .bwd-qv-left {
    flex: 1;
    max-width: 45%;
  }
  
  .bwd-qv-right {
    flex: 1;
    max-width: 55%;
    text-align: left;
  }
  
  .bwd-qv-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .bwd-qv-price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .bwd-qv-desc {
    margin: 15px 0;
    color: #444;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
  }
  
  .bwd-qv-meta {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
  }
  
  .bwd-qv-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }
  /* Loader overlay */
.bwd-qv-loader {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.6);
  display: flex;
  
  justify-content: center;
  align-items: center;
  display: none;
  border-radius: 8px;
  z-index: 1000;
}

.bwd-qv-loader:after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #0073aa; /* WooCommerce blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

  .bwd-qv-success {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #46b450;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
  }
  
  .bwd-qv-price ins {
    text-decoration: none;
}
.bwd-quantity-cart-button-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bwd-quantity-cart-button-wrap .quantity {
  width: 26%;
}
.bwd-quantity-cart-button-wrap .quantity .qty{
  border: 1px solid #dbdbdb!important;
  border-radius: 5px!important;
  padding: 6px 10px!important;
}
.bwd-quantity-cart-button-wrap .single_add_to_cart_button {
  background: #338ae7!important;
  color: #fff!important;
  border: none!important;
  border-radius: 5px!important;
  font-weight: 600!important;
}
.bwd-qv-product .bwd-qv-meta a {
  color: #338ae7!important;
}