/* Quick View Modal Styles */
.wtp-qv-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wtp-qv-overlay.open {
    opacity: 1;
    visibility: visible;
}

.wtp-qv-modal {
    background: #fff;
    width: 900px;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.wtp-qv-overlay.open .wtp-qv-modal {
    transform: translateY(0);
}

.wtp-qv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    color: #333;
}

.wtp-qv-content {
    padding: 30px;
}

.wtp-qv-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.wtp-qv-image-col,
.wtp-qv-summary-col {
    padding: 0 15px;
    width: 50%;
    box-sizing: border-box;
}

.wtp-qv-main-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.wtp-qv-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.wtp-qv-price {
    font-size: 20px;
    font-weight: bold;
    color: #00a8cc;
    margin-bottom: 20px;
}

/* Loader */
.wtp-qv-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00a8cc;
    border-radius: 50%;
    animation: wtp-spin 1s linear infinite;
    display: none;
}

.wtp-qv-overlay.loading .wtp-qv-loader {
    display: block;
}

@media (max-width: 768px) {
    .wtp-qv-image-col,
    .wtp-qv-summary-col {
        width: 100%;
    }
    
    .wtp-qv-image-col {
        margin-bottom: 20px;
    }
}

/* SKU and More Details Styles */
.wtp-qv-sku {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.wtp-qv-sku strong {
    color: #333;
    font-weight: 700;
    margin-right: 5px;
}

.wtp-qv-more-details {
    margin-top: 15px;
}

.wtp-more-details-link {
    font-weight: 700;
    text-decoration: underline;
    color: #000;
    font-size: 14px;
}

.wtp-more-details-link:hover {
    color: #333;
    text-decoration: none;
}
