/* Videók modul - közös stílusok (nyirlub + olajmarket_new) */

.videos-page {
    padding: 30px 0 60px;
}

.video-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.video-list:after {
    content: "";
    display: block;
    clear: both;
}

.video-list-item {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .video-list-item { width: 50%; }
}

@media (min-width: 768px) {
    .video-list-item { width: 33.3333%; }
}

@media (min-width: 1200px) {
    .video-list-item { width: 25%; }
}

.video-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease, transform .2s ease;
}

.video-card:hover,
.video-card:focus {
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    transform: translateY(-2px);
}

.video-card-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #1b1b1b;
    overflow: hidden;
}

.video-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* borítókép nélküli videó: a no-product-pic helyettesítő kép,
   vágás helyett teljes egészében, világos háttéren */
.video-card-thumb.is-placeholder {
    background: #f5f5f5;
}

.video-card-thumb.is-placeholder img {
    object-fit: contain;
    padding: 10px;
}

.video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    margin: -31px 0 0 -31px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    border: 2px solid #fff;
    transition: background .2s ease;
}

.video-card:hover .video-card-play {
    background: rgba(0, 0, 0, .8);
}

/* play háromszög tiszta css-ből, nincs hozzá ikonfüggőség */
.video-card-play:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -11px 0 0 -6px;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
}

.video-card-body {
    padding: 14px 16px;
}

.video-card-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}

/* --- videó lejátszó (aloldal és termékoldal) --- */

/* az aloldalon ne feszüljön ki a teljes szélességre asztali nézetben */
.video-player-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.video-player iframe,
.video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-page-title {
    margin-bottom: 24px;
}

.video-back-link {
    display: inline-block;
    margin-top: 20px;
}

/* --- üres állapot --- */

.video-empty {
    max-width: 520px;
    margin: 0 auto;
    padding: 56px 20px 64px;
    text-align: center;
    color: #6b6b6b;
}

.video-empty-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    color: #c4c4c4;
}

.video-empty-title {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 600;
    color: #3a3a3a;
}

.video-empty-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* a videó aloldalon: nem lejátszható videó */
.video-empty-message {
    padding: 40px 0;
    text-align: center;
    color: #6b6b6b;
}

/* --- termékoldali videó szekció --- */

.product-video-section {
    margin: 40px auto;
    max-width: 900px;
    width: 100%;
}

.product-video-section .video-player {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}
