.pmv-trigger-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pmv-trigger-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

#pmv-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

#pmv-lightbox.pmv-hidden {
    opacity: 0;
    pointer-events: none;
}

.pmv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pmv-content {
    position: relative;
    width: 92%;
    height: 92%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.6);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

#pmv-lightbox:not(.pmv-hidden) .pmv-content {
    transform: scale(1);
}

.pmv-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pmv-close:hover {
    background: #c9a227;
    transform: rotate(90deg) scale(1.1);
}

.pmv-viewer-wrap {
    flex: 1;
    position: relative;
    background: #f5f5f5;
}

#pmv-iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 2;
}

/* Loading Spinner */
.pmv-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: pmv-spin 1s linear infinite;
    z-index: 1;
}

@keyframes pmv-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .pmv-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .pmv-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: rgba(26, 26, 26, 0.8);
    }
}
