/* Admin Meta Box Styling */
#wc_pyv_youtube_videos_wrapper .wc-pyv-video-field {
    display: flex; gap: 10px; margin-bottom: 8px; align-items: center;
}
#wc_pyv_youtube_videos_wrapper .wc-pyv-video-field input { flex-grow: 1; }

/* --- Main Shortcode Container --- */
.wc-pyv-shortcode-gallery {
    width: 100%;
    margin: 20px 0;
}

/* --- Gallery Grid --- */
.wc-pyv-gallery-grid {
    display: grid;
    gap: 20px;
}
.wc-pyv-columns-1 { grid-template-columns: 1fr; }
.wc-pyv-columns-2 { grid-template-columns: repeat(2, 1fr); }
.wc-pyv-columns-3 { grid-template-columns: repeat(3, 1fr); }
.wc-pyv-columns-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
    .wc-pyv-columns-3, .wc-pyv-columns-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .wc-pyv-gallery-grid { grid-template-columns: 1fr; }
}

/* --- Thumbnail Styling --- */
.wc-pyv-youtube-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 3px solid #F58220; /* Toytastic Orange Border */
    border-radius: 8px;
    line-height: 0; /* Prevents extra space */
}
.wc-pyv-youtube-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.wc-pyv-play-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 40px; background-color: rgba(255, 0, 0, 0.85); border-radius: 8px; display: flex; justify-content: center; align-items: center; z-index: 10;
}
.wc-pyv-play-button:before {
    content: ''; display: block; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 15px; border-color: transparent transparent transparent #fff; margin-left: 5px;
}

/* --- NEW: In-Place Video Player Styling --- */
.wc-pyv-video-player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    border: 3px solid #F58220; /* Matching Orange Border */
    border-radius: 8px;
}
.wc-pyv-video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}