/* WholesaleX QuickShop - Frontend Styles */

/* Filters */
.wxqs-filters {
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.wxqs-filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.wxqs-filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wxqs-filter-group h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}

.wxqs-filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.wxqs-filter-option input {
    margin-right: 10px;
}

.wxqs-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wxqs-price-inputs input {
    width: 45%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wxqs-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.wxqs-filter-actions .button {
    flex: 1;
    text-align: center;
}

/* Quick View Button */
.wxqs-quickview-btn {
    display: block;
    margin-top: 10px;
    text-align: center;
    background: #333;
    color: #fff !important;
    border: none;
    padding: 8px 15px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wxqs-quickview-btn:hover {
    background: #000;
    color: #fff;
}

/* Modal */
.wxqs-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wxqs-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.wxqs-modal-content {
    position: relative;
    background: #fff;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wxqs-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    z-index: 10;
}

.wxqs-modal-close:hover {
    color: #333;
}

.wxqs-modal-body {
    padding: 30px;
}

.wxqs-loading {
    text-align: center;
    padding: 50px;
    color: #999;
}

/* Quick View Content */
.wxqs-quickview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .wxqs-quickview-grid {
        grid-template-columns: 1fr;
    }
}

.wxqs-quickview-image img {
    width: 100%;
    height: auto;
}

.wxqs-quickview-info h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.wxqs-quickview-info .wxqs-price {
    font-size: 20px;
    margin-bottom: 15px;
}

.wxqs-quickview-info .wxqs-description {
    margin-bottom: 20px;
    color: #666;
}

.wxqs-quickview-info .wxqs-actions {
    margin-top: 20px;
}

/* Shop Layout */
.wxqs-shop-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .wxqs-shop-wrapper {
        grid-template-columns: 1fr;
    }
    
    .wxqs-shop-sidebar {
        order: 2;
    }
}

/* Animations */
.wxqs-modal-show {
    animation: wxqs-fadein 0.3s ease;
}

@keyframes wxqs-fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Product loading state */
.wxqs-loading-products {
    opacity: 0.5;
    pointer-events: none;
}

/* Sale badge */
.wxqs-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

/* Wholesale price indicator */
.wxqs-wholesale-price {
    color: #27ae60;
    font-weight: bold;
}

.wxqs-savings-badge {
    background: #27ae60;
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 3px;
    margin-left: 10px;
}
