/* Parke Zemin Mockup Pro */
.pzm-wrapper {
    position: relative;
    width: 100%;
}

.pzm-empty {
    padding: 60px;
    text-align: center;
    background: #f5f5f5;
    color: #999;
}

.pzm-mockup {
    position: relative;
    line-height: 0;
}

.pzm-room {
    width: 100%;
    height: auto;
    display: block;
}

.pzm-floor {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.pzm-texture {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-repeat: repeat;
    background-position: center;
    transition: background-image 0.4s ease, filter 0.3s ease, opacity 0.3s ease;
}

/* Panel */
.pzm-panel {
    position: absolute;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    max-width: 300px;
    z-index: 10;
}

.pzm-panel-bottom-right { bottom: 20px; right: 20px; }
.pzm-panel-bottom-left { bottom: 20px; left: 20px; }
.pzm-panel-top-right { top: 20px; right: 20px; }

.pzm-panel-outside .pzm-panel {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 15px;
    border-radius: 0;
    box-shadow: none;
}

.pzm-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 12px;
}

.pzm-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.pzm-swatch {
    border-radius: 50%;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.pzm-swatch:hover {
    transform: scale(1.1);
}

.pzm-swatch.active {
    border-color: #333;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}

.pzm-preview {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    margin-bottom: 10px;
    transition: background-image 0.3s;
}

.pzm-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .pzm-panel {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        max-width: 100%;
        margin-top: 10px;
    }
}
