.video-lightbox {position: fixed;inset: 0;background: rgba(0,0,0,.85);display: none;align-items: center;justify-content: center;z-index: 9999;isolation: isolate;}
.video-lightbox.active {display: flex;}
.video-lightbox-inner {position: relative;width: 90%;max-width: calc(90vh * 9 / 16);}
.video-lightbox-inner.landscape {max-width: min(90vw, calc(90vh * 16 / 9));}
.video-lightbox video {width: 100%;height: auto;max-height: 90vh;border-radius: 14px;background: #000;display: block;object-fit: contain;}
.video-lightbox .close {position: absolute;top: -40px;right: 0;background: rgba(0,0,0,.5);border: none;color: #fff;font-size: 28px;line-height: 1;width: 36px;height: 36px;border-radius: 50%;cursor: pointer;display: grid;place-items: center;}
@media (max-width: 767px) {.video-lightbox {padding-bottom: 20px;}.video-lightbox video {max-height: calc(100vh - 60px - 44px - 20px);}.product-details .section-title.video-strip-title {padding-top:0px;}}

.products-panel {background: #fff;border-radius: 14px;width: 280px;flex-shrink: 0;overflow: hidden;align-self: center;max-height: 80vh;overflow-y: auto;}
.products-panel-header {display: flex;align-items: center;justify-content: space-between;padding: 14px 16px 10px;border-bottom: 1px solid #eee;}
.products-panel-header-left {display: flex;align-items: center;gap: 8px;font-size: 14px;font-weight: 500;}
.products-panel .product-item {display: flex;align-items: center;gap: 12px;padding: 12px 16px;cursor: pointer;text-decoration: none;color: inherit;border-bottom: 1px solid #f0f0f0;transition: background .15s;}
.products-panel .product-item:last-child { border-bottom: none; }
.products-panel .product-item:hover { background: #fafafa; }
.products-panel .product-thumb {width: 52px;height: 52px;border-radius: 8px;background: #f3f3f3;border: 1px solid #eee;flex-shrink: 0;overflow: hidden;}
.products-panel .product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.products-panel .product-name { font-size: 13px; line-height: 1.35; flex: 1; }
.products-panel .product-arrow { color: #bbb; font-size: 18px; flex-shrink: 0; }
.products-panel-close {background: none;border: none;font-size: 32px;line-height: 1;color: #111;cursor: pointer;padding: 0;display: none;font-weight:bold;margin-top:-25px;}
.products-panel .product-now {font-size: 11px;color: #fff;background: #111;border-radius: 99px;padding: 2px 8px;white-space: nowrap;flex-shrink: 0;width:100px;text-align:center;}
.products-panel .product-info {display: flex;flex-direction: column;gap: 2px;flex: 1;}
@media (min-width: 768px) {.video-lightbox.active {flex-direction: row;gap: 16px;}}
@media (max-width: 767px) {
    .video-lightbox.active {flex-direction: column;align-items: center;justify-content: center;padding-bottom: 0;}
    .video-lightbox.has-products {padding-bottom: 0;}
    .video-lightbox.has-products .video-lightbox-inner {margin-top: 0;}
    .products-panel {position: absolute;bottom: 0;left: 0;right: 0;width: 100%;border-radius: 14px 14px 0 0;max-height: 60vh;z-index: 2;transform: translateY(100%);transition: transform .3s ease;}
    .products-panel.sheet-open {transform: translateY(0);}
    .products-panel-handle {width: 36px;height: 4px;background: #ddd;border-radius: 2px;margin: 10px auto 6px;cursor: pointer;}
    .products-trigger {position: absolute;bottom: 20px;left: 50%;transform: translateX(-50%);background: #fff;border: none;border-radius: 99px;padding: 8px 16px;font-size: 14px;font-weight: 500;display: flex;align-items: center;gap: 8px;cursor: pointer;z-index: 3;box-shadow: 0 2px 8px rgba(0,0,0,.15);white-space: nowrap;}
    .products-trigger-count {background: #111;color: #fff;border-radius: 50%;width: 20px;height: 20px;font-size: 12px;display: grid;place-items: center;flex-shrink: 0;}
    .products-panel.sheet-open ~ .products-trigger,
    .products-trigger.hidden {display: none;}
    .products-panel-close { display: block; }
}
@media (min-width: 768px) {.products-trigger { display: none; }}