/* Popup container styles */
.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.95);
}

.fancybox__content {
    padding: 2rem;
    max-width: 600px;
    max-height: 90vh;
    background: #fff;
    border-radius: 8px;
    overflow: auto;
    align-items: center;
}

/* Custom product popup styles */
.custom-product-popup {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.custom-product-popup .loading {
    text-align: center;
    padding: 2em;
} 

.popup-product-header {
    text-align: center;
}

.popup-product-header .product_title {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
}

.popup-product-image {
    text-align: center;
}

.popup-product-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.popup-product-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Ensure only one price shows */
.popup-product-details .price {
    font-size: 1.4rem;
    color: #333;
    font-weight: bold;
    margin: 1rem 0;
}

/* Hide any duplicate prices */
.popup-product-details .price .price {
    display: none;
}

.popup-product-details .woocommerce-product-details__short-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Remove any cart related elements */
.custom-product-popup .single_add_to_cart_button,
.custom-product-popup .cart,
.custom-product-popup form.cart,
.custom-product-popup .add_to_cart_button,
.custom-product-popup .quantity,
.custom-product-popup .variations,
.custom-product-popup .woocommerce-variation-price {
    display: none !important;
}

/* Close button styles */
.fancybox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.fancybox__close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive styles */
@media (max-width: 768px) {
    .fancybox__content {
        padding: 1rem;
    }
    
    .popup-product-header .product_title {
        font-size: 1.4rem;
    }
    
    .popup-product-details .price {
        font-size: 1.2rem;
    }
}
.product-description {
    width: 300px;
}
.product-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  
  .product-popup-link {
    display: block;
    position: relative;
    cursor: pointer;
  }
  
  .details-overlay {
    position: absolute;
    top: 50%;
    left: 35%;
    width: 100px;
    height: 30px;
    background: rgba(0, 0, 0, 0.197);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2em;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }
  
  .product-container:hover .details-overlay {
    opacity: 1;
    transform: translateY(0);
  }