/* View Product Details Button */
.view-product-details {
    /* background: #fff; */
    /* border: 1px solid #e5e7eb; */
    /* border-radius: 8px; */
    /* padding: 8px 16px; */
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    /* color: #1f2937; */
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

/* .view-product-details:hover {
    background: #f9fafb;
    border-color: #3b82f6;
    color: #3b82f6;
} */

.view-product-details .icon {
    font-size: 16px;
}

/* Product Details Popup */
.product-popup {
    position: fixed;
    /* top: 0; */
    top: var(--header-height);
    left: 0;
    width: 100%;
    /* height: 100%; */
    height: calc(100% - var(--header-height));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.popup-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    height: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 1;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: #fff;
    color: #ef4444;
    /* transform: rotate(90deg); */
}

.popup-body {
    display: flex;
    gap: 30px;
    padding: 30px;
    overflow-y: auto;
    max-height: 100%;
}

.popup-image {
    flex-shrink: 0;
    width: 30%;
    max-height: 400px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-details {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    padding: 0 10px;
}

.popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0
}

.popup-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.popup-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.popup-description hr {
    margin: 15px auto;
}

.popup-description p {
    margin: 0 0 15px 0;
}

.popup-description ul,
.popup-description ol {
    margin: 0 0 15px 0;
    padding-right: 20px;
    list-style: revert;
}

.popup-description li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup-body {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .popup-image {
        width: 100%;
        height: 200px;
    }
    
    .popup-title {
        font-size: 22px;
    }
    
    .popup-description {
        font-size: 14px;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
        top: 10px;
        right: 10px;
    }
    
    .view-product-details {
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }
}
