/* ── WooCommerce YouTube Галерея — стилі ──────────────────── */

/* Мініатюра відео */
.wcytg-thumb-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wcytg-thumb-wrap img.wp-post-image {
    width: 100%;
    height: auto;
    min-height: 120px;
    object-fit: cover;
    display: block;
}

/* Лого YouTube поверх мініатюри */
.wcytg-yt-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 42px;
    z-index: 2;
    opacity: .9;
    pointer-events: none;
}

/* Контейнер iframe — адаптивний 16:9 */
.wcytg-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
}

.wcytg-embed-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.wcytg-video-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Іконка відео в каталозі */
.wcytg-archive-icon {
    position: absolute;
    top: 45%;
    right: 3px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.wcytg-archive-btn {
    width: 55px;
    height: 55px;
    background-color: #caab82;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .9;
    transition: opacity .3s;
}

.wcytg-archive-btn:hover { opacity: 1; }
.wcytg-archive-btn svg   { width: 25px; height: 25px; }

/* Адаптив */
@media (max-width: 768px) {
    .wcytg-yt-logo         { width: 48px; height: 34px; }
    .wcytg-archive-btn     { width: 45px; height: 45px; }
    .wcytg-archive-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
    .wcytg-yt-logo         { width: 40px; height: 28px; }
    .wcytg-archive-btn     { width: 35px; height: 35px; }
    .wcytg-archive-btn svg { width: 18px; height: 18px; }
}