/* Thumbnail wrap */
.supplier-thumb-wrap {
    position: relative;
    display: block;
}

/* Play button */
.supplier-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin-left: 8px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    top: -2px;
}

.supplier-play-btn svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: opacity 0.2s;
}

.supplier-play-btn:hover svg {
    opacity: 0.7;
}

/* Modal backdrop */
.supplier-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal inner */
.supplier-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.supplier-modal-inner video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
}

/* Close button */
.supplier-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.supplier-modal-close:hover {
    color: #ddd;
}