/* Product Popup Specific Styles */
.product-popup-trigger {
    position: relative;
    cursor: pointer;
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-popup-trigger:hover .quick-view-btn {
    opacity: 1;
}

.popup-product-features {
    margin: 15px 0;
}

.popup-product-features ul {
    list-style: none;
    padding: 0;
}

.popup-product-features li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.popup-product-features li:before {
    content: "✓";
    color: #4CAF50;
    margin-right: 10px;
}

.popup-product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.view-product-btn {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    flex: 1;
}

.add-to-cart-popup {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    flex: 1;
}

.product-popup-loading {
    text-align: center;
    padding: 40px;
}

.product-popup-loading .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}