html.is-changing .swup-transition-container {
    transition: opacity 250ms, transform 250ms;
}

html.is-animating .swup-transition-container {
    opacity: 0;
    transform: translateY(20px);
}

.swup-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #6464ff, #a864ff);
    z-index: 999999;
}

.wsn-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.98);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wsn-modal.active {
    display: flex;
}

.wsn-modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.wsn-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(100, 100, 255, 0.2);
    border: 2px solid #6464ff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.wsn-modal-close:hover {
    background: #6464ff;
    transform: rotate(90deg);
}

.wsn-modal-close:before,
.wsn-modal-close:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.wsn-modal-close:before {
    transform: rotate(45deg);
}

.wsn-modal-close:after {
    transform: rotate(-45deg);
}

.wsn-modal-body {
    padding: 40px;
}

.wsn-quick-view {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(168, 100, 255, 0.1));
    border: 1px solid rgba(100, 100, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.wsn-quick-view:hover {
    background: linear-gradient(135deg, #6464ff, #a864ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(100, 100, 255, 0.3);
}

.wsn-product-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: white;
}

.wsn-gallery {
    position: relative;
}

.wsn-main-image img {
    width: 100%;
    border-radius: 10px;
}

.wsn-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.wsn-gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.wsn-gallery-thumb:hover {
    border-color: #6464ff;
    transform: scale(1.05);
}

.wsn-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wsn-product-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.wsn-price {
    font-size: 28px;
    color: #6464ff;
    margin-bottom: 20px;
    font-weight: 700;
}

.wsn-price del {
    color: #666;
    font-size: 20px;
    margin-right: 10px;
}

.wsn-add-to-cart {
    background: linear-gradient(135deg, #6464ff, #a864ff);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.wsn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(100, 100, 255, 0.4);
}

.wsn-add-to-cart.loading {
    background: #666;
    pointer-events: none;
}

.wsn-add-to-cart.added {
    background: #4caf50;
}

@media (max-width: 768px) {
    .wsn-product-quick {
        grid-template-columns: 1fr;
    }
    
    .wsn-modal-body {
        padding: 20px;
    }
}