/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* --- ჩვენი ღილაკის სტილი --- */
.custom-video-button a {
    background: #fff !important;
    color: #e60000 !important;
    border: 2px solid #e60000 !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    transition: all .3s ease-in-out !important;
}

/* hover ეფექტი */
.custom-video-button a:hover {
    background: #e60000 !important;
    color: #fff !important;
    border-color: #e60000 !important;
}

/* --- Play აიკონი (SVG) --- */
.custom-video-button .play-icon {
    width: 94px !important;   /* შეცვალე 80px ან 100px თუ უფრო დიდი გინდა */
    height: 94px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.custom-video-button .play-icon svg {
    width: 100% !important;
    height: 100% !important;
}

.custom-video-button .play-icon circle {
    stroke: currentColor !important;
    stroke-width: 3 !important;
    fill: none !important;
}

.custom-video-button .play-icon polygon {
    fill: currentColor !important;
}

/* --- Lightbox ვიდეო ზომის გასწორება --- */
.mfp-content {
    max-width: 960px !important;   /* Desktop სიგანე */
    margin: 0 auto !important;
}
.mfp-content iframe {
    width: 100% !important;
    height: 540px !important;
}

@media (max-width: 767px) {
    .mfp-content {
        max-width: 100% !important;
    }
    .mfp-content iframe {
        height: 70vh !important;   /* პატარა ეკრანზე 70% ეკრანის სიმაღლე */
    }
}

