
#product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 1200px;
    width: 75%;
    position: relative;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.close-popup {
    cursor: pointer;
    font-size: 24px;
}

.popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.popup-column {
    padding: 10px;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.info-column {
    max-height: 500px;
    overflow-y: auto;
}

.action-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#product-popup .product-image {
        width: 100%;
    }

#product-popup .shortdescription {
        display: block;
    }

@media (max-width: 768px) {
    .popup-body {
        grid-template-columns: 1fr;
    }
    
    .popup-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    #product-popup .product-image {
        width: 50%;
    }

    #product-popup .product-name {
        font-size: 18px;
        line-height: 24px;
    }

    #product-popup .shortdescription {
        display: none;
    }
}
