/**
 * Outdoor Quick View Modal Styles
 */

/* Overlay */
.outdoor-qv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    align-items: center;
    justify-content: center;
}

.outdoor-qv-overlay.outdoor-qv-open {
    display: flex;
}

/* Content container */
.outdoor-qv-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 750px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: outdoorQvFadeIn 0.2s ease;
}

@keyframes outdoorQvFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close button */
.outdoor-qv-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}

.outdoor-qv-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Product layout */
.outdoor-qv-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Image */
.outdoor-qv-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

/* Details */
.outdoor-qv-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
}

.outdoor-qv-price {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.outdoor-qv-price del {
    color: #999;
    font-weight: 400;
}

.outdoor-qv-price ins {
    text-decoration: none;
    color: #c0392b;
}

.outdoor-qv-description {
    font-size: 0.9em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.outdoor-qv-description p:last-child {
    margin-bottom: 0;
}

/* Stock */
.outdoor-qv-stock {
    margin-bottom: 20px;
    font-size: 0.85em;
}

.outdoor-qv-in-stock {
    color: #27ae60;
    font-weight: 600;
}

.outdoor-qv-out-of-stock {
    color: #c0392b;
    font-weight: 600;
}

/* Actions */
.outdoor-qv-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.outdoor-qv-actions .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border: none;
}

.outdoor-qv-add-to-cart {
    background: #333;
    color: #fff !important;
}

.outdoor-qv-add-to-cart:hover {
    background: #555;
}

.outdoor-qv-view-full {
    background: #f0f0f0;
    color: #333 !important;
}

.outdoor-qv-view-full:hover {
    background: #e0e0e0;
}

/* Loading spinner */
.outdoor-qv-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.outdoor-qv-loading span {
    width: 36px;
    height: 36px;
    border: 3px solid #eee;
    border-top-color: #333;
    border-radius: 50%;
    animation: outdoorQvSpin 0.6s linear infinite;
}

@keyframes outdoorQvSpin {
    to { transform: rotate(360deg); }
}

/* Error */
.outdoor-qv-error {
    text-align: center;
    color: #999;
    padding: 40px 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .outdoor-qv-content {
        width: 95%;
        padding: 24px;
        max-height: 90vh;
    }

    .outdoor-qv-product {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .outdoor-qv-title {
        font-size: 1.2em;
    }

    .outdoor-qv-actions {
        flex-direction: column;
    }

    .outdoor-qv-actions .button {
        text-align: center;
    }
}
