/*recomended movies*/
/* მთავარი კონტეინერი */
.movs-custom-poster {
    position: relative;
    overflow: hidden;
}

/* პლეი ღილაკის გარშემო შავი მრგვალი ფონი */
.movs-custom-play {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 0, 0, 0.4) !important; /* შავი გამჭვირვალე ფონი მთლიან პოსტერზე ჰოვერის დროს */
    z-index: 5 !important;
}

/* თავად ლურჯი წრე თეთრი ჩარჩოთი (იგივე SVG) */
.movs-custom-play svg {
    width: 30px !important;
    height: 30px !important;
    background: rgba(0, 0, 0, 0.4) !important;           /* ლურჯი ფონი */
    border: 2px solid #ffffff !important;      /* 2px თეთრი ჩარჩო */
    border-radius: 50% !important;             /* სრულად მრგვალი */
    padding: 12px !important;                  /* ზომა რომ ჰქონდეს და შიგნით ისარი სწორად ჩაჯდეს */
    box-sizing: content-box !important;
    fill: #ffffff !important;                  /* თეთრი ისარი */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* მთავარი ფილტრის ფორმის სტილი */
#live-filter-form {
    background: #151821;
    padding: 14px 18px;
    margin-bottom: 25px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: stretch;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 50;
}

/* მობილური ღილაკი */
.mobile-filter-toggle-btn {
    display: none;
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 0 16px;
    border-radius: 2px;
    font-weight: bold;
    height: 42px;
    font-size: 14px;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

/* დროპდაუნების ძირითადი სტილები */
.filter-dropdown-toggle {
    background: #1f2330;
    color: #fff;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.filter-toggle-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow {
    font-size: 9px;
    color: #8c92a4;
    margin-left: 6px;
}

.filter-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #181b25;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 6px;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
    box-sizing: border-box;
}

.filter-dropdown-item {
    padding: 8px 10px;
    font-size: 12px;
    color: #d0d4dc;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.15s;
}

.filter-dropdown-item:hover {
    background: #242938;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    color: #d0d4dc;
    font-size: 12px;
    padding: 7px 8px;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.15s;
}

.filter-checkbox-label:hover {
    background: #242938;
}

.genre-checkbox {
    margin-right: 10px;
    accent-color: #3b82f6;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* წლების და აქტიური ელემენტების ფერები */
.year-label-from, .year-label-to {
    font-size: 12px;
    padding: 6px;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    background: #1f2330;
    color: #d0d4dc;
}

.active-year {
    background: #3b82f6 !important;
    color: #fff !important;
}

/* ძებნის (ლურჯი) და გასუფთავების ღილაკები */
.filter-submit-btn {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    border-radius: 2px;
    font-weight: bold;
    height: 40px;
    font-size: 13px;
    box-sizing: border-box;
    transition: opacity 0.2s;
}

.filter-submit-btn:hover {
    opacity: 0.9;
}

.filter-reset-btn {
    background: #1f2330;
    color: #8c92a4;
    text-decoration: none;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    font-size: 13px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: color 0.2s;
}

.filter-reset-btn:hover {
    color: #fff;
}

/* მობილური ადაპტაცია */
@media screen and (max-width: 768px) {
    .mobile-filter-toggle-btn {
        display: flex;
    }
    #live-filter-form {
        display: none !important;
    }
    #live-filter-form.mobile-open {
        display: flex !important;
    }
}
/* მსახიობების მსგავსი სქროლ-კონტეინერი ფილმებისთვის */
.movs-movies-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.movs-movies-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* თითოეული ფილმის ელემენტი (სიგანე მკაცრად 170px) */
.movs-movies-scroll-container .MovieItem {
    flex: 0 0 170px !important;
    width: 170px !important;
}

/* პოსტერის ზომა 170x200 */
.movs-movies-scroll-container .poster.movs-custom-poster {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #111 !important;
    width: 170px !important;
    height: 250px !important;
    display: block !important;
}

.movs-movies-scroll-container .poster.movs-custom-poster img {
    width: 170px !important;
    height: 250px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease;
}

/* ლურჯი პლეი ღილაკი ჰოვერზე */
.movs-movies-scroll-container .poster.movs-custom-poster .movs-custom-play {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 5 !important;
}

.movs-movies-scroll-container .poster.movs-custom-poster .movs-custom-play svg {
    width: 45px !important;
    height: 45px !important;
    background: #0073e6 !important;
    fill: #fff !important;
    padding: 10px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0, 115, 230, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.movs-movies-scroll-container .MovieItem:hover .poster.movs-custom-poster .movs-custom-play {
    opacity: 1 !important;
}

.movs-movies-scroll-container .MovieItem:hover .poster.movs-custom-poster .movs-custom-play svg {
    transform: scale(1) !important;
}

.movs-movies-scroll-container .MovieItem:hover .poster.movs-custom-poster img {
    transform: scale(1.05);
}

/* ტეგი "qualitymovs" ზედა მარჯვენა კუთხეში */
.movs-movies-scroll-container .poster.movs-custom-poster .tinfo {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
    background: rgba(0, 0, 0, 0.6) !important; /* შავი ნახევრად გამჭვირვალე ფონი */
    border: 1px solid #ffffff !important;      /* 1px თეთრი ჩარჩო */
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    z-index: 10 !important;
    text-transform: uppercase !important;
}

/* სათაური პოსტერის შიგნით, ბოლოში */
.movs-movies-scroll-container .poster.movs-custom-poster .movs-inside-title {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 25px 10px 10px 10px !important;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%) !important;
    z-index: 6 !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

.movs-movies-scroll-container .poster.movs-custom-poster .movs-inside-title h3 {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    color: #fff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-weight: 600 !important;
}

/* მთავარი მეტა ჰედერი - გასწორებულია ზედა მხარეს */
.movs-meta-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start !important;
    gap: 20px;
}

.movs-title-left-side {
    flex: 1;
    min-width: 0;
}

.movs-actions-right-side {
    flex-shrink: 0 !important; /* უზრუნველყოფს, რომ ლაიქები და რეპორტი მუდამ სტაბილურად იდგეს ერთ ადგილზე */
}
/*natura chaqroba*/
/* როცა სინემა რეჟიმია, მთლიანი გვერდის ფონი ხდება შავი */
body.movs-cinema-mode {
    background-color: #000 !important;
}

/* ვამუქებთ საიტის ყველა გარემოცვას (პოსტერი, მეტა მონაცემები, აღწერა, კომენტარები, ჰედერი, ფუტერი) */
body.movs-cinema-mode .movs-col-poster,
body.movs-cinema-mode .movs-meta-header-section,
body.movs-cinema-mode .movs-info-card,
body.movs-cinema-mode .movs-seasons-wrapper,
body.movs-cinema-mode header,
body.movs-cinema-mode footer,
body.movs-cinema-mode .site-header,
body.movs-cinema-mode .site-footer {
    filter: brightness(0.15);
    transition: filter 0.3s ease;
}

/* ფლეიერი რჩება ზუსტად თავის ადგილზე და სრულ სიცხადეში (ფილტრის გარეშე) */
body.movs-cinema-mode .movs-col-player {
    filter: none !important;
    position: relative !important;
    z-index: 100;
}

/* ჩაბნელების ღილაკის დიზაინი და პოზიცია */
.movs-custom-light-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.2s ease;
}

.movs-custom-light-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

body.movs-cinema-mode .movs-custom-light-btn {
    background: #116bd8;
    color: #000;
    border-color: #116bd8;
}
/* მობილურზე ღილაკის სრულიად დამალვა */
@media (max-width: 768px) {
    .movs-custom-light-btn {
        display: none !important;
    }
}
/* მობილურისთვის ეკრანის მორგება მცირე ეკრანებზე */
@media screen and (max-width: 768px) {
    .movs-main-wrapper {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    
    .optns-bx .bstd.Button {
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(5px);
        color: #fff !important;
        padding: 3px 8px !important;
        font-size: 10px !important;
        border-radius: 4px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
        height: 24px;
        box-sizing: border-box;
    }
    .optns-bx .bstd.Button span span {
        font-size: 9px;
        opacity: 0.7;
    }
    .optns-bx .bstd.Button i {
        font-size: 8px;
    }
    .optnslst.trsrcbx {
        background: #141414 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 6px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        overflow: hidden;
    }
    .optnslst.trsrcbx li button {
        padding: 5px 8px !important;
        font-size: 10px !important;
    }
}

/* ორიგინალური სახელის სტილი: დიდი, მუქი და მსხვილი ფონტით */
.movs-original-title {
    font-size: 18px;          /* ზომა გავზარდე */
    color: #dedede;          /* უფრო მკვეთრი და ღია ფერი */
    margin-top: 6px;
    margin-bottom: 14px;
    font-weight: 600;        /* უფრო მსხვილი (bold) */
    letter-spacing: 0.5px;   /* ოდნავ განტვირთული ასოები */
}


.VideoPlayer .BtnLight {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    z-index: 998 !important;
}
.movs-poster-img-wrap {
    position: relative !important;
    overflow: visible !important;
}
/**/
.movs-comments-section {
    margin-top: 5px;
    width: 100%;
}


/* ყველა ცვლილება (კონტენტის მიახლოება და მენიუს დაპატარავება) მოქმედებს მხოლოდ მობილურზე */
/* ყველა ცვლილება (კონტენტის მიახლოება და მენიუს დაპატარავება) მოქმედებს მხოლოდ მობილურზე */
@media screen and (max-width: 768px) {
    .movs-main-wrapper {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    .optns-bx .bstd.Button {
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(5px);
        color: #fff !important;
        padding: 3px 8px !important;
        font-size: 10px !important;
        border-radius: 4px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
        height: 24px;
        box-sizing: border-box;
    }
    .optns-bx .bstd.Button span span {
        font-size: 9px;
        opacity: 0.7;
    }
    .optns-bx .bstd.Button i {
        font-size: 8px;
    }
    .optnslst.trsrcbx {
        background: #141414 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 6px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        overflow: hidden;
    }
    .optnslst.trsrcbx li button {
        padding: 5px 8px !important;
        font-size: 10px !important;
    }
}
/**/
.movs-poster-quality-badge {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    background: rgba(0, 0, 0, 0.45) !important; /* ნახევრად გამჭვირვალე შავი ფონი */
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important; /* ზემოდან-ქვემოთ და გვერდებიდან ზომა */
    border-radius: 6px !important;
    text-transform: uppercase !important;
    z-index: 99999 !important;
    display: inline-block !important;
    border: 1px solid #ffffff !important; /* ზუსტად 1px თეთრი ჩარჩო */
    letter-spacing: 1px !important;
}
.movs-custom-report-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0056b3; /* შენი სასურველი ფერი */
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.movs-custom-report-btn:hover {
    background-color: #004085; /* ჰოვერის ფერი */
}
#tr-report, .movs-custom-report-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* ვაიძულებთ ღილაკს გამოჩნდეს */
.btn-report, #tr-report {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/*new single series*/
@media (max-width: 768px) {
    .movs-col-poster {
        display: none !important;
    }
}

body.single-series .TpRwCont, 
body.single-series main,
.movs-direct-body {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
    position: relative;
    z-index: 2;
}

.movs-main-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 35px 25px 30px 25px !important;
    margin-top: 50px !important;
}

.movs-hero-flex-box {
    position: relative !important;
    display: flex !important;
    gap: 25px !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    z-index: 2 !important;
}

.movs-col-poster {
    width: 260px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.movs-poster-img-wrap {
    flex-grow: 1 !important;
    display: flex !important;
}

.movs-poster-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    display: block !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.movs-red-trailer-btn {
    background: #116bd8 !important;
    color: #fff !important;
    text-align: center !important;
    padding: 12px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    display: block !important;
    flex-shrink: 0 !important;
}
.movs-red-trailer-btn:hover {
    background: #0d54ab !important;
}

.movs-col-player {
    flex-grow: 1 !important;
    background: #000 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 35px rgba(0,0,0,0.8) !important;
    display: flex !important;
    align-items: center !important;
}
.movs-col-player .VideoPlayer {
    width: 100% !important;
    height: 100% !important;
}
.movs-col-player iframe, 
.movs-col-player img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.movs-meta-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #141416;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #fff;
    flex-wrap: wrap;
    gap: 15px;
    position: relative !important;
    z-index: 3 !important;
}
.movs-title-left-side {
    flex-grow: 1;
}
.movs-title-left-side {
    flex-grow: 1;
}

.movs-main-title {
    font-size: 23px;
    font-weight: bold;
    color: #fff;
	position: relative !important;
    z-index: 3 !important;
    margin-bottom: 6px;
}
.movs-year-txt {
    color: #9ca3af;
	position: relative !important;
    z-index: 3 !important;
    font-weight: normal;
    margin-left: 5px;
}
.movs-sub-details {
    color: #9ca3af;
    font-size: 14px;
    position: relative !important;
    z-index: 3 !important;
    margin-bottom: 10px;
}
.movs-status-badge {
    background: #116bd8;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: bold;
	position: relative !important;
    z-index: 3 !important;
}

/* მეტა-მონაცემების სუფთა და თანაბარი სტილი */
/* მეტა-მონაცემები: ერთმანეთის ქვემოთ, მცირე დაშორებით */
.movs-inline-genres {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important; /* ხაზებს შორის დაშორება */
    margin-top: 10px !important;
	position: relative !important;
    z-index: 3 !important;
}

.movs-inline-genres p {
    margin: 0 !important; /* აუქმებს თემის default p-ს დიდ დაშორებებს */
    padding: 0 !important;
    line-height: 1.3 !important; /* ხაზის სიმაღლეს ამცირებს */
    font-size: 17px !important;
    color: #d1d5db !important;
	position: relative !important;
    z-index: 3 !important;
}

.movs-inline-genres p span {
    color: #9ca3af !important;
    font-weight: 400 !important;
    margin-right: 4px !important;
	position: relative !important;
    z-index: 3 !important;
}
.movs-meta-item {
    display: flex;
    align-items: baseline;
	position: relative !important;
    z-index: 3 !important;
    gap: 6px;
}
.movs-meta-item span {
    color: #9ca3af;
    font-weight: 500;
    min-width: 90px;
	position: relative !important;
    z-index: 3 !important;
    display: inline-block;
}

.movs-actions-right-side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-content {
    display: flex;
    gap: 8px;
}
.like-mov {
    background: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    transition: background 0.2s;
	position: relative !important;
    z-index: 3 !important;
}
.like-mov:hover {
    background: #333;
}

.movs-report-btn {
    background: #116bd8 !important;
    color: #fff !important;
    border: none !important;
    padding: 9px 14px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    transition: background 0.2s !important;
	position: relative !important;
    z-index: 3 !important;
}
.movs-report-btn:hover {
    background: #0d54ab !important;
}

.movs-info-card {
    background: #141416;
    padding: 25px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 25px;
}
.movs-imdb-badge {
    display: inline-flex;
    align-items: center;
    background: #222;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #333;
}
.imdb-text {
    background: #f5c518;
    color: #000;
    font-weight: bold;
    padding: 4px 10px;
    font-size: 15px;
}
.imdb-num {
    padding: 4px 12px;
    font-weight: bold;
    font-size: 15px;
}
.movs-unlimited-description {
    font-size: 18px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 15px;
}

.movs-cast-wrapper {
    margin-top: 25px;
    border-top: 1px solid #222;
    padding-top: 20px;
}
.movs-cast-wrapper h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .movs-hero-flex-box {
        flex-direction: column !important;
    }
    .movs-col-poster {
        width: 100% !important;
    }
    .movs-poster-img-wrap img {
        height: 400px !important;
    }
    .movs-meta-header-section {
        flex-direction: column;
    }
}}
/* მჭიდრო მეტა-მონაცემები ერთმანეთხVideoPlayer .BtnLight {
    position: absolute !important;
    right: 80px !important; /* აქ შეგიძლია რიცხვი შეცვალო: მეტი რიცხვი - უფრო მარცხნივ წამოვა */
    /*top: 12px !important;*
    z-index: 998 !important;
}ს ქვემოთ 
*/
.movs-inline-genres {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin-top: 10px !important;
	position: relative !important;
    z-index: 3 !important;
}
.movs-inline-genres p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    font-size: 17x !important;
    color: #d1d5db !important;
	position: relative !important;
    z-index: 3 !important;
}
.movs-inline-genres p span {
    color: #9ca3af !important;
    font-weight: 500 !important;
    margin-right: 4px !important;
	position: relative !important;
    z-index: 3 !important;
}

/* ნაგულისხმევად მობილურის ტრეილერის ღილაკი დამალულია კომპიუტერზე */
.mobile-trailer-btn {
    display: none !important;
}

@media (max-width: 768px) {
    /* მობილურზე პოსტერი იფარება და ტრეილერის ღილაკი იღებს სრულ სიგანეს */
    .movs-col-poster {
        display: none !important;
    }
    #watch-trailer {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
        margin-bottom: 5px !important;
    }
    .movs-actions-right-side {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    .movs-actions-right-side button, 
    .movs-actions-right-side a {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}
.movs-backdrop-bg:before {
  background: inherit;
}

.movs-backdrop-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.png) rgb(31 33 40 / 31%);
}
.movs-backdrop-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 480px; /* ზუსტად ეს ზღუდავს, რომ ფლეიერს არ გასცდეს ქვემოთ */
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    /* მასკი, რომელიც ბოლო ნაწილში რბილად აქრობს სურათს */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
.movs-backdrop-bg img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.08) !important;
    filter: blur(1px) brightness(.55) !important;
    /* რბილად ქრება ბოლოში, რომ საიტის ფონს შეერწყას */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%) !important;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%) !important;
}

.movs-backdrop-bg:after{
    display: none !important;
}
/*cast logo */
.actor-avatar {
    position: relative;
}

.actor-avatar > img:first-child {
    display: block;
}

.actor-custom-badge {
    position: absolute;
    bottom: 8px;   /* ქვემოდან დაშორება */
    right: 8px;    /* მარჯვენა მხარეს გადატანა */
    left: auto;    /* მარცხენა მხარის გაუქმება */
    width:70px !important; /* ზომა (შეგიძლიათ შეცვალოთ სურვილისამებრ, მაგ: 30px ან 35px) */
    height: auto !important;
    max-width: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    z-index: 10;
    pointer-events: none;
}
/*cast logo end*/
/*social list*/
.SocialList {
    display: flex;
    justify-content: center; /* ჰორიზონტალურად ცენტრში მოქცევა */
    align-items: center;    /* ვერტიკალურად ცენტრში (საჭიროებისამებრ) */
    list-style: none;       /* სირის წერტილების მოსაშორებლად, თუ ul-ია */
    padding: 0;
}
/*social end*/
/*comments 2.0*/
.CommentsList li.custom-comment-item{
    display: flex;
    gap: 20px;
    background: #262a30;
    padding: 20px;
    border-radius: 7px;
    margin-bottom: 12px;
    align-items: flex-start;
}

/* სურათი მარცხნივ */
.CommentsList .avatar{
    width: 70px !important;
    height: 70px !important;
    border-radius: 10%;
    border: 2px solid #4c5568;
    object-fit: cover;
    flex-shrink: 0;
}

/* მარჯვენა მთავარი ბლოკი */
.CommentsList .comment-right {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* სახელი (სურათის გასწვრივ) და ზოლი მის ქვემოთ */
.CommentsList .comment-author-name {
    padding-bottom: 5px;
    border-bottom: 1px solid #4c5568; /* ჰორიზონტალური ზოლი */
    margin-bottom: 5px;
}

.CommentsList .fn{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
}

/* თარიღი და ტექსტი ზოლის ქვემოთ */
.CommentsList .comment-meta-date {
    margin-bottom: 8px;
}

.CommentsList .comment-meta-date a{
    color: #9aa4b8;
    font-size: 12px;
}

.CommentsList .comment-text p{
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 5px 0 0 0;
    color: #fff;
}

/* Comment Form */
.comment-respond{
    background: #262a30;
    padding: 10px;
    border-radius: 7px;
}

.comment-respond textarea{
    background: #42434A;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.CommentsList{
    margin-top: 12px !important;
}
	
.comment-respond textarea{
    background: #42434A;
	border: 0.5px solid #4c5568 !important;
    color: #fff;
    border: none;
    border-radius: 5px;
}
#commentform p.comment-form-author input,
#commentform p.comment-form-email input,
#commentform p.comment-form-url input,
#commentform .comment-form-comment textarea,
#commentform input[type="text"],
#commentform textarea {
    background-color: #42434A !important;
    color: #fff !important;
    border: 1.5px solid #4c5568 !important;
    border-radius: 5px !important;
    padding: 10px !important;
}
/*comments end*/

/* actor page */

/* 1. კონტეინერი - ოდნავ დავაპატარავე ზედა და ქვედა პადინგი */
.actor-container-bg { 
    background-color: #262a30; 
    padding: 20px; 
    border-radius: 4px; 
    margin-bottom: 30px; 
}

/* 2. Wrapper - მარცხენა მხარეს გასწორება */
.actor-profile-wrapper { 
    display: flex; 
    align-items: flex-start; 
    gap: 25px; /* ინფორმაციასა და სურათს შორის დაშორება */
    width: 100%; 
    margin: 0; 
    padding: 0; 
    justify-content: flex-start; 
}

/* 3. ავატარი - უფრო მართკუთხა ფორმა */
.actor-avatar img { 
    width: 160px; 
    height: 210px; /* ფოტოს მსგავსად მართკუთხა ზომა */
    border-radius: 4px; 
    object-fit: cover; 
    border: 1px solid #3d3d3d; /* ჩარჩო უფრო თხელი და მუქი */
}

.actor-info {
    flex: 1;
    padding-top: 0; /* ზედა პადინგი მოვხსენით */
    margin-top: 0;  /* დარწმუნდი, რომ მარჯინი არ აქვს */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ტექსტი ზემოდან დაიწყება */
}
.actor-info {
    flex: 1;
    color: #CFCFCF;
	font-size: 15px;
    /* ეს ხაზი დაარეგულირებს მთელი ტექსტური ბლოკის დაწევას */
    padding-top: 10px; 
    display: flex;
    flex-direction: column;
}

.actor-info h1 {
    font-size: 25px;
    color: #fff;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #444;
    width: 100%;
}

.actor-info h1 {  
    margin: 0 0 10px 0;
    padding-bottom: 10px; /* ტექსტსა და ზოლს შორის სივრცე */
    border-bottom: 2px solid #444; /* ზოლის სისქე და ფერი (შეგიძლია შეცვალო) */
    display: inline-block; /* ზოლი რომ იყოს მხოლოდ ტექსტის სიგრძეზე */
    width: 100%; /* თუ გინდა რომ მთლიანი ბლოკის სიგანეზე გაიჭიმოს, მაშინ 100% დატოვე */
}
/*actor page end*/
/*18+ content*/
.Footer .Logo img {
    width: 170px;
    height: 40px;
    object-fit: contain; /* ეს დაგეხმარებათ, რომ ლოგო არ დაიჭიმოს/დამახინჯდეს */
}

/*18+ content end*/
/* 2026 04.07 movs.ge 1.0 */
 /* ფლეიერის გაშლა კიდეებამდე */
.full-wide-player {
    width: 100% !important;
    position: relative;
    padding-bottom: 42%; /* ეს არის wide-screen ფორმატი, როგორც სურათზეა */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    background: #000;
}

.full-wide-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}
/* 1. ბრაუზერს ვაცნობთ ატვირთულ ფონტს */
@font-face {
    font-family: 'CustomMovs'; /* აქ ჩაწერე რაც გინდა, რომ დაარქვა შენს ფონტს */
    src: url('/Movs.otf') format('woff2'),
         url('/Movs.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 2. ვავრცელებთ ფონტს აბსოლუტურად ყველა ტექსტზე */
html, body, p, a, h1, h2, h3, h4, h5, h6, span, div, li, input, textarea, button {
    font-family: 'CustomMovs', sans-serif !important;
}


/* რომ მობილურზეც არ გაჭედოს */
@media screen and (max-width: 768px) {
    .full-wide-player {
        padding-bottom: 56.25%; /* მობილურზე სტანდარტული ზომა */
	}}

/* --- მობილური და ტაბლეტი --- */

/* ტაბლეტი (3 ზოლი) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #trfilter { grid-template-columns: repeat(3, 1fr) !important; }
}

.searchandfilter {
    margin-bottom: 15px !important; /* 30 პიქსელიანი /* უჯრაში მაქსიმალურად გაიწელება */
    }
}
/* trsearch widget*/
.SearchMovies .Button{width:100%;margin-bottom:0}
.SearchMovies label:before{font-size:1.25rem;margin-right:.5rem}
.SearchMovies .sol-input-container input[type="text"]{padding-left:1rem;padding-right:3rem}
.SearchMovies .sol-inner-container{border:0;height:40px;border-radius:20px}
.SearchMovies .sol-selection{padding:.5rem 0;max-height:150px;overflow:auto}
.SearchMovies .sol-checkbox{position:absolute;opacity:0}
.SearchMovies .sol-label{padding:.5rem 1rem;cursor:pointer;position:relative}
.SearchMovies .sol-label:before{content:'';position:absolute;left:0;top:0;bottom:0;right:0;opacity:0;transition:.2s;margin-right:0}
.SearchMovies .sol-label:hover:before{opacity:.1}
.SearchMovies .sol-label-text{padding-left:0;position:relative;z-index:2}
.SearchMovies .sol-caret:before{content:'\e8b6';width:40px;height:40px;line-height:40px;position:absolute;right:0;top:0;text-align:center;font-size:1.25rem;opacity:.5;transition:.2s}
.SearchMovies .sol-active .sol-caret:before{opacity:1}
.SearchMovies .sol-selection-container,.trsrcbx{border-top:3px solid transparent;border-radius:10px!important;animation-name:zoomIn}
.SearchMovies .sol-selection-top .sol-selection-container{border-top:0;border-bottom:3px solid transparent}
.SearchMovies .sol-no-results{padding:.5rem}
.SearchMovies .sol-selection-container:before,.trsrcbx:before{content:'';width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid transparent;position:absolute;right:1rem;top:-8px}
.SearchMovies .sol-selection-top .sol-selection-container:before{border-bottom:0;border-top:5px solid transparent;top:auto;bottom:-8px}
.trsrclst{list-style-type:none;padding-left:0;margin-top:0;margin-left:0}
.SearchMovies .sol-current-selection,.trsrclst{margin-bottom:5px}
trselect {
    background: #262a30 !important;
    color: #fff !important;
}

/* 1. ზოგადი სტილი ჩამოსაშლელი სიებისთვის (გარდა წლებისა) */
.trsrcbx .trselect:not(.trselectyears) li {
    padding: 8px 15px !important;
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
    margin: 2px 5px !important;
    display: block !important;
}

/* 2. მაუსის მიტანის ეფექტი (Hover) - წითელი ფონი */
.trsrcbx .trselect:not(.trselectyears) li:hover {
    background-color: #116bd8 !important;
    color: #ffffff !important;
}

/* 3. შიდა ღილაკების გასწორება, რომ არ ჰქონდეს ცალკეული კონფლიქტური სტილები */
.trsrcbx .trselect:not(.trselectyears) li label button {
    background: transparent !important;
    border: none !important;
    color: inherit !important;
    width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
    font-size: 14px !important;
    cursor: pointer !important;
}
/* ღილაკის ფერი () */
.SearchMovies .Button {
    background: #116bd8 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    width: 100% !important;
    margin-top: 10px !important;
}

/* ფანჯრების (Select-ების) სტილი */
.SearchMovies .sol-inner-container, .trsrcbx {
    background: #262a30 !important;
    border: 1px solid #3c444d !important;
    color: #fff !important;
    !important;
	border-radius: 4px 
}

/* ჩამოსაშლელი სიები და მენიუები */
.trselect {
    background: #262a30 !important;
    color: #fff !important;
}

/* სიაში არსებული ელემენტები */
.trsrclst > li, .SearchMovies .sol-selected-display-item {
    background: #3c444d
			!important;
    color: #fff !important;
    border-radius: 4px !important;
}

/* წლების ღილაკები */
.trsrcbx .trselectyears label button {
    background: #262a30 !important;
    color: #bbb !important;
    border: 1px solid #3c444d !important;
    border-radius: 4px !important;
}
.trsrcbx .trselectyears label button:hover {
    background: #116bd8 !important;
    color: #fff !important;
    border-color: #116bd8 !important;
}




.SearchMovies .sol-selected-display-item,.trsrclst>li{cursor:pointer;border-radius:10px;line-height:20px;position:relative;padding:0 1.5rem 0 .7rem;font-size:.75rem;margin-right:5px;margin-bottom:5px;display:inline-block;vertical-align:top}
.SearchMovies span.sol-quick-delete,.trsrclst .tr-delete{position:absolute;top:0;right:0;text-align:right;padding-right:.5rem;left:0}
.tr-delete:before{content:'X'}
.trselect{margin: 0;list-style-type: none;max-height: 150px;overflow: auto;padding: 10px 0;}
.trselectyears{padding: 10px 5px 5px 10px;font-size: 0;}
.trselectyears li{display: inline-block;vertical-align: top;margin-right: 5px;margin-bottom: 5px;}
.trsrcbx .trselectyears label button{padding: .5rem 0;font-size: 14px;width: 3.4rem;text-align: center;}
.trsrcbx label{padding:0;position:relative}
.trsrcbx label button{background-color:transparent;color:currentColor;font-weight:300;box-shadow:none;width:100%;padding:.5rem 1rem;position:relative;z-index:2;text-align:left;text-transform:capitalize;line-height:normal}
.trsrcbx label:before{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;content:'';transition:.2s;opacity:0}
.trsrcbx label:hover:before{opacity:.1}
/*trsearch widget end*/
/* რომ მობილურზეც არ გაჭედოს */
@media screen and (max-width: 768px) {
    .full-wide-player {
        padding-bottom: 56.25%; /* მობილურზე სტანდარტული ზომა */
	}}

/* --- მობილური და ტაბლეტი --- */

/* ტაბლეტი (3 ზოლი) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #trfilter { grid-template-columns: repeat(3, 1fr) !important; }
}

/* მობილური (2 ზოლი) */
@media only screen and (max-width: 767px) {
    #trfilter { grid-template-columns: repeat(2, 1fr) !important; }
}

/* დამატებითი წესი ჩამოსაშლელი სიებისათვის */
.trsrcbx {
    position: absolute !important;
    z-index: 999 !important;
    background: #262a30 !important;
    border: 1px solid #444 !important;
    width: 100% !important;
    left: 0 !important;
    top: 100% !important;
}
/*search*/
/* --- ფილტრების ზოლის კონტეინერი --- */
.searchandfilter > ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* ეს უზრუნველყოფს, რომ არ გადავიდეს ქვემოთ */
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important; /* გაპი შევამცირე, რომ მეტი ადგილი იყოს */
    padding: 2px !important;
    border-radius: 8px !important;
    list-style: none !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
/* --- ღილაკების სტილი (იგივე სიმაღლე რაც დროპდაუნს) --- */
.searchandfilter input[type="submit"], 
.searchandfilter input[type="reset"] {
    background: #116bd8 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    height: 38px !important; /* ზუსტად იგივე სიმაღლე */
    padding: 0 15px !important;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}


.chosen-container .chosen-single {
    background: #262a30 !important;
    border: 1px solid #444 !important;
    border-radius: 4px !important;
    color: #fff !important;
    height: 38px !important; /* ფიქსირებული სიმაღლე */
    line-height: 38px !important; /* ტექსტი ცენტრში */
    padding: 0 10px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}


/* --- ჩამოსაშლელი სიის სტილი --- */
.chosen-container .chosen-drop {
    background: #262a30 !important;
    border: 1px solid #444 !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important; /* ჩრდილი სიღრმისთვის */
    margin-top: 1px !important;
    padding: 5px 0 !important;
}


/* ძიების ველი ჩამოსაშლელ სიაში */
.chosen-container .chosen-search input[type="text"] {
    background: #1a1a1a !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 5px !important;
}
/* სიის ელემენტები */
.chosen-results li {
    color: #ccc !important;
    padding: 8px 12px !important;
    transition: all 0.2s ease !important;
}


/* Hover ეფექტი (როცა მაუსს გადაატარებ) */
.chosen-results li.highlighted {
    background-color: #116bd8 !important; /* Netflix-ის წითელი */
    color: #fff !important;
    background-image: none !important;
}

/* უკვე არჩეული ელემენტი სიაში */
.chosen-results li.result-selected {
    background-color: #333 !important;
    color: #fff !important;
}


/* 1. ჩარჩოს ფიქსირებული სიგანე (არ გაიზრდება არჩევისას) */
.chosen-container {
    width: 120px !important; /* აქ შეგიძლია რიცხვი შეცვალო, რომ ყველას ერთი ზომა ჰქონდეს */
    min-width: 80px !important;
    max-width: 100px !important;
    flex: 0 0 auto !important;
}
/* 2. ჩამოსაშლელი მენიუს ზომა (ეს არ არის დამოკიდებული მთავარ ჩარჩოზე) */
.chosen-container .chosen-drop {
    width: 200px !important;
 /* მენიუს სიგანე, რომელიც გაიხსნება */
    left: 0 !important;      /* ასწორებს პოზიციას */
    background: #262a30 !important;
    border: 1px solid #444 !important;
}



@media (max-width: 768px) {
    .searchandfilter > ul {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* ზუსტად 3 სვეტი */
        gap: 5px !important;
        padding: 5px !important;
        width: 100% !important;
        flex-wrap: wrap !important; /* ეს აუცილებელია, რომ თუ მეტია, ქვემოთ ჩამოვიდეს */
    }


}
/* 4. თუ მაინც ჩანს თავიდან გაშლილი, ეს კოდი დაამატეთ: */
.searchandfilter {
    min-height: 40px !important;
}



/* შიდა სივრცის შემცირება, რომ "Movies" ტექსტი მოექცეს მჭიდროდ */
.chosen-container .chosen-single {
    padding-left: 10px !important;  /* მარცხენა მხარე */
    padding-right: 5px !important; /* მარჯვენა მხარე ისრისთვის */
    height: 38px !important;
    line-height: 38px !important;
}
/**/

/* ეს კოდი მხოლოდ კომპიუტერზე დამალავს ორიგინალს, ტელეფონზე კი დატოვებს */
@media (min-width: 769px) {
    .searchandfilter select {
        display: none !important;
    }
}

/* მობილურისთვის კი, რომ Chosen-იც და ორიგინალიც ერთნაირად გამოიყურებოდეს */
@media (max-width: 768px) {
    .searchandfilter select {
        display: block !important;
        background: #262a30 !important;
        color: #fff !important;
        border: 1px solid #444 !important;
        padding: 5px !important;
        width: 100% !important;
    }
}
@media (min-width: 769px) {
    /* 1. ორიგინალი select-ის დამალვა */
    .searchandfilter select {
        display: none !important;
    }

    /* 2. ღილაკების დაშორება ფილტრებისგან (მარცხნივ) */
    .searchandfilter input[type="submit"], 
    .searchandfilter input[type="reset"] {
        margin-left: 95px !important; /* ეს აშორებს ღილაკებს ფილტრებისგან */
    }

    /* 3. ღილაკებს შორის მანძილი (ერთმანეთს რომ მიუახლოვდნენ) */
    .searchandfilter input[type="submit"] {
        margin-right: -95px !important; /* ღილაკებს შორის მცირე დაშორება */
    }
	
}
/*search form*/
/* მთავარი საძიებო ყუთი */
div.my-custom-search-box {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    min-width: 380px !important;
    background: #111111 !important;
    border: 1px solid #222222 !important;
    border-radius: 3px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95) !important;
    z-index: 9999999 !important;
    padding: 6px 0 !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    display: block !important;
}

/* თითოეული ფილმის/სერიალის რიგი (გავხადეთ relative, რომ ბეჯი ზედა მარჯვენა კუთხეში ჩავჯდეს) */
a.my-search-row {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    padding: 10px 14px !important;
    text-decoration: none !important;
    border-bottom: 1px solid #1a1a1a !important;
    background: transparent !important;
    transition: background 0.15s ease !important;
}

a.my-search-row:last-child {
    border-bottom: none !important;
}

a.my-search-row:hover {
    background: #1d1d1d !important;
}

/* პოსტერი */
.my-row-img {
    width: 36px !important;
    height: 50px !important;
    flex-shrink: 0 !important;
    margin-right: 12px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background: #000 !important;
}

.my-row-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* კონტეინერი სათაურისა და წლებისთვის */
.my-row-content {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    margin-right: 70px !important; /* რომ სათაური ბეჯს არ შეეჯახოს */
    overflow: hidden !important;
}

/* სათაური */
.my-row-title {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-family: inherit !important;
    line-height: 1.3 !important;
}

/* ნაცრისფერი კალენდრის აიქონი და წელი */
.my-row-meta {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    color: #888888 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    margin-top: 4px !important;
}

.my-row-meta i {
    font-size: 11px !important;
    color: #888888 !important;
}

/* ბეჯი გადატანილია მარჯვენა ზედა კუთხეში */
.my-row-badge-wrap {
    position: absolute !important;
    top: 10px !important;
    right: 14px !important;
}

/* ბეჯის დიზაინი (პატარა და კომპაქტური) */
.my-row-badge {
    display: inline-block !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    color: #ffffff !important;
}

.my-row-badge.m-type {
    background-color: #1557b0 !important;
}

/* ბეჯის დიზაინი (გადიდებული ვერსია) */
.my-row-badge {
    display: inline-block !important;
    font-size: 11px !important; /* გავზარდეთ შრიფტი */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 4px 8px !important; /* გავზარდეთ შიდა სივრცე (padding) */
    border-radius: 4px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.my-row-badge.s-type {
    background-color: #1557b0 !important;
}

/* ძველი ტოროფლიქსის საძიებო კონტეინერის განულება */
div#tr_live_search_content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 8px !important;
    width: 100% !important;
}

div#tr_live_search_content p,
div#tr_live_search_content .trloading {
    display: none !important;
}

/* სტანდარტული განლაგება მობილურისა და პლანშეტისთვის */
div#tr_live_search_content {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 3px !important;
    z-index: 9999999 !important;
}

/* მხოლოდამხოლოდ კომპიუტერებისთვის (როცა ეკრანი 1024 პიქსელზე ფართოა) */
@media (min-width: 1024px) {
    div#tr_live_search_content {
        margin-top: 70px !important;
    }
}

/* მთავარი საძიებო ყუთი */
div.my-custom-search-box {
    position: relative !important;
    width: 100% !important;
    background: #111111 !important;
    border: 1px solid #222222 !important;
    border-radius: 3px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95) !important;
    padding: 6px 0 !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    display: block !important;
}

/* ძველი ლოუდერების დამალვა */
div#tr_live_search_content p,
div#tr_live_search_content .trloading {
    display: none !important;
}
/* „კიდევ მაჩვენე“ ლინკის დიზაინი და ცენტრში გასწორება */
#my-load-more-search {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: calc(100% - 24px) !important;
    margin: 10px auto !important;
    padding: 10px 14px !important;
    background: #1a73e8 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    box-sizing: border-box !important;
}

#my-load-more-search:hover {
    background: #1557b0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
/*search formend*/
/* --- მსახიობების სქროლი/სლაიდერი (მუშაობს ჩატვირთვისთანავე) --- */
.cast-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 5px;
}
.cast-scroll-container::-webkit-scrollbar {
    display: none;
}

/* რომ თავიდანვე ჰორიზონტალურად იყოს და არ ჩამოიყაროს სვეტად */
.cast-scroll-container .cast-wrapper-inner {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
}

.cast-scroll-container .ActorItem {
    flex: 0 0 130px;
    width: 130px;
}

/* კომპიუტერზე როცა Swiper ჩაირთვება */
.cast-scroll-container.swiper-container .swiper-wrapper {
    display: flex;
    gap: 5px;
}
.cast-scroll-container.swiper-container .swiper-slide {
    width: 130px !important;
    flex-shrink: 0;
}

/* სამართავი ღილაკების დიზაინი */
.cast-nav-buttons button {
    background: transparent; 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.2); 
    width: 28px; 
    height: 28px; 
    border-radius: 4px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.3s ease;
}
.cast-nav-buttons button.disabled {
    opacity: 0.3;
    border-color: rgba(255,255,255,0.05);
    cursor: default;
    pointer-events: none;
}
.cast-slider-section {
    margin-top: 30px;
    background-color: #303133; 
    border-radius: 20px;        
    padding: 20px;               
}
.cast-slider-section .Title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;                 
}
/* თითოეული მსახიობის ბარათი */
.ActorItem {
    transition: transform 0.3s ease;
}

.ActorItem:hover {
    transform: translateY(-5px);
}

/* სურათის სტილი */
.ActorItem img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: #444; 
}

/* სახელის სტილი */
.ActorItem p {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*ძებნის გალააზება
 * */
/*search form
/* ძიების შედეგების ჩამონათვალის სტრუქტურა */
#tr_live_search_content .ResultList {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

/* თითოეული შედეგი */
#tr_live_search_content .ResultList li {
    list-style: none !important;
    padding: 5px 10px !important;
    border-bottom: 1px solid #222 !important;
}

/* ლინკი (სურათი + ტექსტი) */
#tr_live_search_content .ResultList li a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #fff !important;
}

/* სურათის ზომა - დავაფიქსირე უფრო პროპორციული ზომა */
#tr_live_search_content .ResultList li img {
    width: 40px !important;    
    height: 30px !important;   
    object-fit: cover !important;
    object-position: top !important; /* ეს აჩვენებს სურათის ზედა ნაწილს */
    margin-right: 15px !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important; 
    display: block !important;
}

/* სათაური */
#tr_live_search_content .ResultList li .Title {
    font-size: 14px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}