:root {
    --brand-purple: #6200ea;
    --brand-purple-dark: #4a00b0;
    --brand-yellow: #ffc107;
    --brand-yellow-hover: #ffca2c;
    --text-dark: #1A1A2E;
    --text-light: #64748B;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --gradient-primary: linear-gradient(135deg, var(--brand-purple) 0%, #3730a3 100%);
    --shadow-lg: 0 20px 40px rgba(30, 27, 75, 0.15);
}
        /* --- თქვენი ახალი სტილები იწყება --- */
        /* --- IMPORT --- */
        @font-face {
          font-family: 'avia';
          src: url('/fonts/bpg-arial-caps-webfont.woff2') format('woff2'),
               url('/fonts/bpg-arial-caps-webfont.woff') format('woff');
          font-display: swap;
        }

        @font-face {
          font-family: 'glaho';
          src: url('/fonts/bpg_arial_2009.woff2') format('woff2'),
               url('/fonts/bpg_arial_2009.woff') format('woff');
          font-display: swap;
        }
/* --- უნივერსალური სტილები --- */
        body { 
            font-family: avia, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
            line-height: 1.6; 
            margin: 0;
            padding: 0;
            background-color: #f4f4f7; 
        }
        /* === LISTS === */
ul, ol {
    padding-left: 1.25em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.4em;
}

        /* === HEADINGS === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin-top: 0;
}

h1 {
    font-size: 2.25rem; /* 36px */
    margin-bottom: 0.6em;
}

h2 {
    font-size: 1.875rem; /* 30px */
    margin-bottom: 0.6em;
}

h3 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1.25rem; /* 20px */
}

h5 {
    font-size: 1.125rem; /* 18px */
}

h6 {
    font-size: 1rem; /* 16px */
}

button {
    font-family: 'avia';
}

h1, h2, h3, h4 {
    font-family: 'avia'
}
span {
    font-family: 'glaho'
}
/* ზოგადი ლინკები მხოლოდ კონტენტის არეალში */
/* .post-content კლასი გამოიყენება შენს სტატიებსა და გვერდებზე */
.post-content a {
    color: #6200ea; 
    text-decoration: none; 
    transition: all 0.3s ease-in-out; 
}

.post-content a:visited {
    color: #5100b3; 
}

.post-content a:hover, 
.post-content a:focus {
    color: #4a00b0; 
    text-decoration: underline; 
    text-decoration-color: #face36; 
    text-decoration-thickness: 2px; 
    text-underline-offset: 4px; 
}

/* ლინკის შიგნით არსებულმა მუქმა ტექსტმა მიიღოს ლინკის ფერი */
.post-content a strong, 
.post-content a b {
    color: inherit; 
    transition: all 0.3s ease-in-out;
}

/* "ბილეთის შეძენა" ღილაკი */
.btn-buy-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #face36; 
    color: #2d3436 !important; 
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-buy-ticket:visited {
    color: #2d3436 !important; 
}

.btn-buy-ticket:hover {
    background-color: #6200ea; 
    color: #ffffff !important; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(98, 0, 234, 0.2); 
}

.btn-buy-ticket strong,
.btn-buy-ticket b {
    color: inherit !important; 
}
        p {
            font-family: glaho,  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
    /* --- ძირითადი ანიმაციები --- */
    @keyframes pulse {
        0% { transform: scale(1) rotate(-2deg); }
        50% { transform: scale(1.05) rotate(-2deg); }
        100% { transform: scale(1) rotate(-2deg); }
    }

    /* --- Overlay --- */
    .popup-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        display: none; justify-content: center; align-items: center;
        opacity: 0; visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(3px);
    }
    .popup-overlay.active { opacity: 1; visibility: visible; }

    /* --- Container (Dark Theme) --- */
    .popup-container {
        background: linear-gradient(135deg, #6200ea 0%, #4500b5 100%);
        width: 800px; max-width: 90%;
        border-radius: 20px;
        position: relative;
        box-shadow: 0 20px 50px rgba(98, 0, 234, 0.4);
        padding: 50px 40px 40px 40px;
        color: #fff;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        display: flex;
        overflow: visible;
    }

    /* Close Button */
    .popup-close {
        position: absolute;
        top: 15px; left: 20px;
        background: none; border: none;
        color: rgba(255,255,255,0.6);
        font-size: 30px; cursor: pointer; z-index: 10;
    }
 /* დესკტოპზე ეს ახალი ტექსტი დავმალოთ */
.mobile-only-text {
    display: none;
}
    /* Content Layout */
    .popup-content {
        display: flex; width: 100%; gap: 30px;
        align-items: flex-end;
        z-index: 2;
    }

    /* Image (Right Side) */
    .popup-image-wrapper {
        position: absolute; top: -90px; right: -30px;
        width: 220px; z-index: 3; pointer-events: none;
    }
    .mascot-img {
        width: 100%;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
        transform: scaleX(1);
    }

    /* Text Side */
    .popup-text { flex: 1.2; padding-right: 20px; }
    .popup-title { font-size: 24px; margin: 0 0 20px 0; line-height: 1.3; color: #fff}
    .popup-benefits { list-style: none; padding: 0; margin-bottom: 25px; }
    .popup-benefits li { margin-bottom: 10px; font-size: 16px; }

    /* Bonus Box */
    .popup-bonus {
        background: rgba(255,255,255,0.1); padding: 15px;
        border-radius: 10px; border: 1px dashed #ff9800; font-size: 14px;
    }
    .bonus-badge { color: #ff9800; font-weight: bold; text-transform: uppercase; font-size: 12px; display: block; margin-bottom: 5px; }

    /* Form Side */
    .popup-form-wrapper {
        flex: 1; background: rgba(255,255,255,0.1);
        padding: 25px; border-radius: 15px; text-align: left;
    }
    .popup-form-wrapper input {
        width: 100%; padding: 15px;
        border: none; border-radius: 8px; margin-bottom: 15px;
        box-sizing: border-box; font-size: 16px;
    }
    .submit-btn {
        width: 100%; padding: 15px;
        background-color: #ff9800; color: #fff;
        border: none; border-radius: 8px; font-size: 18px; font-weight: bold;
        cursor: pointer; transition: transform 0.2s, background 0.2s;
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    }
    .submit-btn:hover { background-color: #f57c00; transform: translateY(-2px); }

    /* 59 GEL Effect */
    .price-highlight {
        display: inline-block; background-color: #ffeb3b; color: #d50000;
        font-size: 22px; font-weight: 900; padding: 3px 12px; border-radius: 50px;
        transform: rotate(-2deg); box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        margin-top: 5px; border: 2px dashed #d50000; animation: pulse 2s infinite;
    }

    /* --- MOBILE FIXES (მთავარი ცვლილებები) --- */
    @media (max-width: 768px) {
        .popup-overlay {
            align-items: flex-end; /* ქვემოდან ამოსვლა */
        }
        .popup-container {
            width: 100%;
            border-radius: 20px 20px 0 0;
            padding: 20px 20px 30px 20px; /* პედინგები შევამცირეთ */
            flex-direction: column;
            
            /* სიმაღლის შეზღუდვა რომ X გამოჩნდეს */
            max-height: 85vh; 
            overflow-y: auto; /* სქროლი თუ ვერ დაეტია */
            
            /* Slide Up Animation */
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .popup-overlay.active .popup-container {
            transform: translateY(0);
        }

        /* სურათს ვმალავთ! */
        .popup-image-wrapper { display: none !important; }

        /* X ღილაკი ფიქსირებულად მარჯვნივ */
        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            left: auto;
            color: #fff;
            background: rgba(0,0,0,0.2); /* პატარა ფონი რომ კარგად გამოჩნდეს */
            border-radius: 50%;
            width: 30px; height: 30px;
            font-size: 20px;
            display: flex; justify-content: center; align-items: center;
        }

        .popup-content { 
            gap: 15px; 
            flex-direction: column; 
            align-items: center; 
        }/* სიას ვმალავთ (ეს უკვე გქონდა) */
    .popup-benefits { display: none; } 
    
    /* ახალ ტექსტს ვაჩენთ */
    .mobile-only-text {
        display: block;
        font-size: 14px;
        color: #e1bee7; /* ღია იასამნისფერი ან თეთრი */
        font-weight: bold;
        margin-bottom: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
        width: 100%;
        
    }

        /* ტექსტების დაპატარავება */
        .popup-title { 
            font-size: 18px; 
            margin-bottom: 10px; 
            text-align: center;
            padding-right: 20px; /* ადგილი X ღილაკისთვის */
        }
        
        .popup-benefits { display: none; } /* სიას ვმალავთ */
        
        .popup-bonus {
            padding: 10px;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }
        
        .price-highlight { font-size: 18px; } /* 59 ლარი ოდნავ პატარა */

        .popup-form-wrapper { 
            width: 100%; 
            padding: 15px; 
            box-sizing: border-box;
        }
        
        .submit-btn { padding: 12px; font-size: 16px; }
		#tpwl-tickets {padding: 0px 15px;}
    }

        /* --- საძიებო ფორმის კონტეინერი (Glassmorphism Effect) --- */
        .tp_wrapper {
            min-height: 390px;
            max-width: 1100px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
            transition: min-height 0.3s ease-in-out;
        }

        /* --- მობილურის აპლიკაციის ღილაკი --- */
        .app-button-wrapper {
            display: none; 
            margin-top: 30px;
        }

        .glass-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            color: white;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: background 0.3s ease;
        }

        .glass-button:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .glass-button svg {
            width: 20px;
            height: 20px;
        }

/* --- დამხმარე კლასები (თქვენი შესწორებით) --- */
.hide-on-desktop {
    display: none; 
    justify-content: center;
}

@media (max-width: 767px) {
    .hide-on-desktop {
        display: flex; 
    }
    .hide-on-mobile {
        display: none;
    }
}

        /* --- რესპონსიული დიზაინი --- */
        @media (min-width: 768px) {
            .tp_wrapper {
                min-height: 270px;
            }
        }

        @media (min-width: 992px) {
            .tp_wrapper {
                min-height: 210px;
            }
        }

        @media (max-width: 767px) {


            .page-header__titles {
                margin-bottom: 20px;
            }

            .header__title {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .header__title-form {
                font-size: 0.9rem;
                padding: 0 10px;
            }

            .tp_wrapper {
                padding: 9px;
            }
        }
        
        /* --- აქედან იწყება Skeleton Loader-ის სტილები --- */
        
        .tp_wrapper [id^="tp-cascoon-component"] {
            margin-bottom: 0 !important;
        }

        #search-form-container {
            position: relative;
            width: 100%;
            
            
            min-height: 365px;
            border-radius: 12px;
        }

        @media (min-width: 768px) {
            #search-form-container {
                min-height: 180px;
            }
        }

        #form-loader, #form-embed-target {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }

        #form-loader {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 24px;
            z-index: 10;
            transition: opacity 0.3s ease-in-out;
        }

        #form-embed-target {
            z-index: 5;
        }

        #form-loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .skeleton-wrapper {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .skeleton-item {
            height: 50px;
            background-color: #e0e0e0;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .sk-input-full, .sk-button-full {
            width: 100%;
        }

        .sk-input-half {
            width: calc(50% - 8px);
        }

        .sk-button-full {
            background-color: #d0d0d0;
        }

        @media (min-width: 768px) {
            .sk-input-full:nth-child(1), .sk-input-full:nth-child(2) {
                width: calc(50% - 8px);
            }

            .sk-input-half, .sk-input-full:nth-child(5), .sk-button-full {
                width: calc(25% - 12px);
            }
        }

        .skeleton-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 1.5s infinite linear;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* --- დამატებითი სტილები ქვედა სექციებისთვის --- */
        .content-section {
             margin-bottom: 25px; 
             padding: 20px; 
             background: #ffffff; 
             border-radius: 12px;
             box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .content-section:last-child {
            margin-bottom: 0; 
        }
        
        @media (max-width: 1046px) {
            .content-section {
                margin: 20px 15px; 
            }
        }

/* === Sidebar და Content სვეტები === */

.main-content-area-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr; 
    gap: 30px; 
    max-width: 1046px; 
    margin: 30px auto; 
}

/* --- სვეტი 1: Sidebar --- */
.sidebar-nav {
    position: sticky; 
    top: 100px; 
    align-self: flex-start; 
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar-nav h3 {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #333;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #555;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.sidebar-nav a:hover {
    background-color: #f4f4f7;
    color: #000;
}


/* --- მობილურის ადაპტაცია --- */
@media (max-width: 992px) {
    .main-content-area-wrapper {
        display: block; 
        max-width: 100%; 
        margin: 20px 15px; 
    }

    .sidebar-nav {
        position: static; 
        margin-bottom: 25px; 
        top: auto;
    }
}/* === Breadcrumbs === */
.breadcrumbs-wrapper {
    background-color: #f4f4f7; 
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    width: 100%; 
}

.breadcrumbs-container {
    max-width: 1046px; 
    margin: 0 auto;
    padding: 0 15px; 
    font-size: 0.9rem;
    color: #555;
}

.breadcrumbs-container a {
    color: #3a3a3a;
    text-decoration: none;
}

.breadcrumbs-container a:hover {
    text-decoration: underline;
}

.breadcrumbs-container span {
    margin: 0 5px;
    color: #777;
}

.breadcrumbs-container span:last-child {
    color: #111;
    font-weight: 600;
}
/* === FOOTER === */
    
    .footer-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* --- ძირითადი სტილები --- */
    .site-footer {
        background-color: #f9f9f9;
        padding: 60px 0 20px;
        font-family: 'BPG Arial', sans-serif;
        color: #333;
        border-top: 1px solid #e0e0e0;
    }

    
    .social-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: transform 0.3s ease, opacity 0.3s;
    }

    .social-btn img {
        width: 20px;
        height: auto;
        object-fit: contain;
    }

    .social-btn.wa {
        background-color: #25D366;
    }

    .social-btn.fb {
        background-color: #1877F2;
    }

    .social-btn.vb {
        background-color: #7360f2;
    }

    .social-btn:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    
    .footer-top {
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-logo {
        flex-shrink: 0;
    }

    .footer-desc {
        margin: 0;
        color: #666;
        font-size: 0.95rem;
        max-width: 600px;
        line-height: 1.4;
    }

    .footer-socials.desktop-only {
        display: flex;
        gap: 15px;
        flex-shrink: 0;
    }

    /* --- გრიდი დესკტოპისთვის --- */
    .footer-widgets {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .footer-title {
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 20px;
        color: #6200ea;
        position: relative;
    }

    .toggle-icon {
        display: none;
    }

    
    .footer-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-content ul li {
        margin-bottom: 12px;
    }

    .footer-content ul li a {
        color: #555;
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: avia;
    }

    .footer-content ul li a:hover {
        color: #6200ea;
        padding-left: 5px;
    }

    .contact-info img {
        width: 18px;
        height: auto;
        opacity: 0.7;
    }

    /* --- ქვედა ნაწილი --- */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-apps {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .footer-apps span {
        font-weight: bold;
        font-size: 0.9rem;
    }

    .app-links img {
        height: 40px;
        width: auto;
        transition: 0.3s;
    }

    .app-links img:hover {
        transform: translateY(-3px);
    }

    .footer-payments {
        display: flex;
        gap: 15px;
    }

    .footer-payments img {
        height: 25px;
        width: auto;
        opacity: 0.8;
    }

    .footer-socials {
        display: flex;
        gap: 15px;
    }

    .footer-socials img {
        height: 30px;
        width: auto;
        transition: 0.3s;
    }

    .mobile-only {
        display: none;
    }

    .copyright {
        text-align: center;
        font-size: 0.85rem;
        color: #999;
        margin-top: 20px;
    }

    /* --- 📱 მობილური ვერსია (ACCORDION) --- */
    @media (max-width: 768px) {
        .footer-brand {
            flex-direction: column;
            text-align: center;
            justify-content: center;
        }

        .footer-desc {
            max-width: 100%;
            margin-bottom: 15px;
        }

        .footer-socials.desktop-only {
            display: none;
        }

        .site-footer {
            padding: 40px 0 20px;
        }

        .footer-widgets {
            display: block;
        }

        .footer-col {
            border-bottom: 1px solid #eee;
        }

        
        .footer-title {
            cursor: pointer;
            margin: 0;
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
        }

        
        .toggle-icon {
            display: block;
            font-size: 1.5rem;
            font-weight: normal;
            transition: transform 0.3s ease;
        }

        
        .footer-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .footer-content ul {
            padding-bottom: 20px;
        }

        
        .footer-col.active .toggle-icon {
            transform: rotate(45deg);
            color: #ffc107;
        }

        .footer-col.active .footer-content {
            max-height: 500px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-apps {
            flex-direction: column;
        }

        .mobile-only {
            display: flex;
            margin-top: 15px;
        }
    }

/* === Direct Flights List === */
.airline-list-wrapper {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 15px;
    margin-top: 20px;
}

.airline-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: box-shadow 0.2s ease;
}

.airline-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.airline-logo {
    width: 120px;       
    height: 40px;      
    object-fit: contain;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}
.airline-details {
    display: flex;
    flex-direction: column;
    gap: 2px; 
}


.airline-name {
    font-size: 1rem; 
    color: #333;
    font-weight: 600;
}

.airline-price {
    font-size: 1.1rem; 
    color: #111;
    font-weight: 700; 
}

.airline-info { 
    font-size: 0.85rem;
    color: #666;
}

@media (min-width: 768px) {
    .airline-list-wrapper {
        grid-template-columns: 1fr 1fr; 
    }
}

/* === ფრენების ბლოკის ლინკები === */
a.airline-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.airline-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative; 
}

.airline-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-color: #ddd;
}

.airline-logo {
    width: 120px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

.airline-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.airline-name {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.airline-price {
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
}

.airline-info {
    font-size: 0.85rem;
    color: #666;
}


.airline-buy-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #c4c4c4;
    transition: color 0.2s ease;
}

a.airline-item-link:hover .airline-buy-button {
    color: #333;
}
/* === ფრენების ბლოკის ლინკები === */
a.airline-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.airline-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative; 
}

.airline-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-color: #ddd;
}

.airline-logo {
    width: 120px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

.airline-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.airline-name {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.airline-price {
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
}

.airline-info {
    font-size: 0.85rem;
    color: #666;
}


.airline-buy-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #c4c4c4;
    transition: color 0.2s ease;
}

a.airline-item-link:hover .airline-buy-button {
    color: #333;
}

/* === ზოგადი ინფორმაციის ბლოკის სტილები === */
#general-info ul li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

#general-info ul li strong {
    font-weight: 700;
}


#general-info ul a {
    text-decoration: none;
    color: #0056b3; 
    font-weight: 700;
}
#general-info ul a:hover {
    text-decoration: underline;
}


#general-info .airline-info {
    font-size: 0.9rem;
    color: #666;
    margin-left: 5px;
}

/* === General Info Grid === */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
    margin-top: 25px;
}

.info-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}


a.info-item.link {
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
a.info-item.link:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-color: #ddd;
}

.info-icon {
    width: 24px;
    height: 24px;
    stroke: #3426a9; 
    margin-bottom: 15px;
}

.info-value {
    font-size: 1.5rem; 
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.info-label {
    font-size: 0.9rem; 
    color: #555;
    margin-top: 5px;
    font-family: glaho,  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


.info-item.placeholder {
    opacity: 0.5;
    background: #fefefe;
}

/* === ადაპტაცია პლანშეტზე === */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* === ადაპტაცია მობილურზე === */
@media (max-width: 544px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .info-item {
        padding: 15px;
    }
    .info-value {
        font-size: 1.25rem; 
    }
    .info-icon {
        margin-bottom: 10px;
    }
}

/* === განრიგის ვიჯეტის კონტეინერი === */
.schedule-widget-wrapper {
    min-height: 340px; 
    margin-top: 25px;
    background: #f9f9f9; 
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden; 
    position: relative; 
    max-width: 775px;
}


.schedule-widget-wrapper iframe {
    background: none !important;
    max-width: 100% !important; 
    width: 100% !important; 
    box-sizing: border-box; 
}

/* === ფასების ცხრილი (Screenshot 19) === */
.monthly-prices-table-wrapper {
    width: 100%;
    overflow-x: auto; 
    margin-top: 20px;
}
.monthly-prices-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.monthly-prices-table th, 
.monthly-prices-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.monthly-prices-table th {
    background-color: #5e36bf; 
    color: white;
    font-weight: 600;
}
.monthly-prices-table th:first-child {
    border-top-left-radius: 8px;
}
.monthly-prices-table th:last-child {
    border-top-right-radius: 8px;
}
.monthly-prices-table tr:last-child td {
    border-bottom: none;
}
.monthly-prices-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}
.monthly-prices-table td strong {
    color: #111;
    font-weight: 700;
}
.monthly-prices-table a {
    text-decoration: none;
    color: #0056b3;
    font-weight: 600;
    white-space: nowrap; 
}
.monthly-prices-table a:hover {
    text-decoration: underline;
}
.price-check {
    color: #777;
    font-style: italic;
}
.table-footnote {
    font-size: 0.8rem;
    color: #777;
    margin-top: 15px;
}
/* === ფასების 하이라이ტები (Cheapest/Fastest) === */
#flight-highlights {
    background-color: #fdfdfd; 
    border: 1px solid #eee;
}
.flight-highlight-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin: 15px 0;
}
.flight-highlight-text:first-child {
    margin-top: 0;
}
.flight-highlight-text:last-child {
    margin-bottom: 0;
}
.flight-highlight-text strong {
    color: #111;
    font-weight: 700;
}
.flight-highlight-text a {
    text-decoration: none;
    color: #0056b3;
    font-weight: 700;
}
.flight-highlight-text a:hover {
    text-decoration: underline;
}
/* === აეროპორტების სია === */
.airport-list-columns {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 25px;
    margin-top: 20px;
}


@media (min-width: 768px) {
    .airport-list-columns {
        grid-template-columns: 1fr 1fr;
    }
}

.airport-column h4 {
    font-size: 0.9rem;
    color: #111;
    margin-top: 0;
    margin-bottom: 15px;
}

.airport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.airport-list li {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #eee;
    font-size: 0.95rem;
    color: #333;
}/* === პოპულარული მიმართულებების TAB-ები (2-ტაბიანი) === */
.popular-routes-tabs {
    display: grid; 
    grid-template-columns: 1fr 1fr;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.tab-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    background: none;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    text-align: center; 
}


@media (max-width: 544px) {
    .popular-routes-tabs {
        grid-template-columns: 1fr; 
    }
    .tab-link {
        text-align: left;
    }
}

.tab-link:hover {
    color: #111;
}

.tab-link.active {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel .popular-route-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 768px) {
    .tab-panel .popular-route-list {
        grid-template-columns: 1fr 1fr;
    }
}

.popular-route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.popular-route-list li:last-child {
    border-bottom: none;
}

.popular-route-item a.popular-route-name {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
}
.popular-route-item a.popular-route-name:hover {
    text-decoration: underline;
    color: #000;
}
.popular-route-item a.popular-price {
    text-decoration: none;
    font-weight: 700;
    color: #0056b3;
    white-space: nowrap;
    margin-left: 15px;
    font-size: 0.95rem;
}
.popular-route-item a.popular-price:hover {
    text-decoration: underline;
}

.no-data-info {
    color: #777;
    font-style: italic;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
}
/* === FAQ სექცია === */
.faq-container {
    margin-top: 20px;
}
.faq-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    padding: 15px 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; 
}
.faq-item summary::-webkit-details-marker {
    display: none; 
}
.faq-item summary::after {
    content: '+'; 
    font-size: 1.5rem;
    font-weight: 300;
    color: #0056b3;
    transition: transform 0.2s ease;
}
.faq-item[open] summary {
    border-bottom: 1px solid #eee;
    background-color: #fcfcfc;
}
.faq-item[open] summary::after {
    content: '−'; 
    transform: translateY(-2px);
}
.faq-answer {
    padding: 20px;
    line-height: 1.7;
    color: #333;
}
.faq-answer p {
    margin: 0;
}
.faq-answer strong {
    color: #000;
}
/* === (Deals) === */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.deal-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.deal-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.deal-card-header {
    padding: 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.deal-airline {
    display: flex;
    align-items: center;
    gap: 10px;
}
.deal-airline img {
    height: 25px;
    width: auto;
    border-radius: 4px;
}
.deal-airline span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.deal-card-body {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-destination {
    display: flex;
    flex-direction: column;
}
.deal-destination span {
    font-size: 0.9rem;
    color: #666;
}
.deal-destination strong {
    font-size: 1.2rem;
    color: #111;
    font-weight: 700;
}

.deal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF0000; 
    white-space: nowrap;
    margin-left: 10px;
}

.deal-card-footer {
    background: #f9f9f9;
    padding: 10px 15px;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    border-top: 1px solid #eee;
}

/* === brand intro text === */
.brand-intro-wrapper {
    
    background-color: #ffffff;
    padding-top: 25px;
    padding-bottom: 5px; 
    border-bottom: 1px solid #eee;
}

#brand-intro {
    
    max-width: 1046px;
    margin: 0 auto 20px auto;
    padding: 20px;
    background: #f9f9f9; 
    border: 1px solid #eee;
}

#brand-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

#brand-intro p:last-child {
    margin-top: 15px;
}

#brand-intro a {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
}
#brand-intro a:hover {
    text-decoration: underline;
}


@media (max-width: 1046px) {
    .brand-intro-wrapper {
        
        padding-left: 15px;
        padding-right: 15px;
    }
    #brand-intro {
         margin-left: 0;
         margin-right: 0;
    }
}
/* === CALENDAR  სექცია (სრული სიგანის დიზაინი) === */
.calendar-full-width-wrapper {
    background-color: #f9f9f9;
    padding: 30px 15px;
    border-top: 1px solid #eee;
}

.calendar-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 600px;
}

.calendar-section-inner h3 {
    font-size: 1.5rem;
    color: #111;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

.calendar-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* === FAQ სექცია (სრული სიგანის დიზაინი) === */
.faq-full-width-wrapper {
    background-color: #f9f9f9;
    padding: 30px 15px;
    border-top: 1px solid #eee;
}

.faq-section-inner {
    max-width: 1046px;
    margin: 0 auto;
}

.faq-section-inner h3 {
    font-size: 1.5rem;
    color: #111;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    padding: 15px 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #0056b3;
    transition: transform 0.2s ease;
}
.faq-item[open] summary {
    border-bottom: 1px solid #eee;
    background-color: #fcfcfc;
}
.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-2px);
}
.faq-answer {
    padding: 20px;
    line-height: 1.7;
    color: #333;
}
.faq-answer p {
    margin: 0;
}
.faq-answer strong {
    color: #000;
}

/* === მთავარი ნავიგაცია (Header) - შესწორებული v2 === */
.main-header {
    background-color: var(--header-bg);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 800;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: var(--menu-font);
}

.main-header-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 100%;
    margin: 0 auto;
    
    /* === შესწორება #1: max-width-ის მაგივრად ვიყენებთ 100% სიგანეს და padding-ს === */
    max-width: 100%;
    padding-left: 35px;
    padding-right: 35px;
    box-sizing: border-box; 
}


.header-logo {
    flex-shrink: 0;
}
.header-logo img {
    height: 41px;
    width: auto;
    vertical-align: middle;
}


.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: right;
    height: 100%;
}
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu li {
    position: relative;
}
.main-menu > li > a {
    font-family: avia, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center; 
    padding: 0 16px;
    height: 78px;
    
    /* === შესწორება #4: ვაშორებთ line-height-ს, რადგან align-items გვაქვს === */
     
    
    transition: background-color 0.2s ease;
    white-space: nowrap; 
}
.main-menu > li > a:hover {
    background-color: #ffbb00; 
    color: #000;
}
.menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 8px;
    opacity: 0.5;
}


.header-call-button {
    flex-shrink: 0;
    margin-left: 20px;
}
.call-button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgb(255 255 255);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.2s ease;
}
.call-button-link:hover {
    background: rgba(0,0,0,0.1);
}

/* === Sub-Menu-ს სტილები === */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    
    /* === შესწორება #3: ვაშორებთ ბრაუზერის დეფოლტ marker-ს და padding-ს === */
    list-style: none;
    padding-left: 0;
    margin: 0;

    
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-left-width: 2px;
    border-color: #feba02;
    border-style: solid;
    border-radius: 5px;
}
.main-menu li:hover > .sub-menu {
    display: block;
}
.sub-menu a {
    display: block;
    padding: 12px 20px;
    height: auto;
    line-height: 1.5; 
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eaeaea; 
    transition: background-color 0.2s ease;
}
.sub-menu li:last-child > a {
    border-bottom: none;
}
.sub-menu a:hover {
    background-color: #f9f9f9;
}
@media (max-width: 544px) {
    .header-call-button {
        display: none; 
    }
    .main-header-container {
        justify-content: center; 
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* === დესკტოპზე (დამალვა) === */

.main-menu > li.mobile-only {
    display: none;
}

/* === მობილურზე (გამოჩენა) === */
@media (max-width: 992px) {
    .main-menu > li.mobile-only {
        display: flex; 
        width: 100%;
        margin-top: 10px;
    }
    .header-actions {
    display: block!important;
}
}
:root {
    --header-bg: #face36;
    --header-height: 80px;
    --text-color: #333333;
    --hover-bg: #fff;
    --accent-color: #000;
    --menu-font: 'FiraGO', 'BPG Banner', sans-serif; 
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}
/* === 3. Call Button === */
.call-button-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.header-actions {
    display: none;
}
/* --- ძირითადი სტილები (General) --- */
.main-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

/* --- Mobile Toggle (Hamburger) --- */
.mobile-toggle {
    display: none; 
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* --- Mobile Overlay (გამუქებული ფონი) --- */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px); 
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Navigation & Mobile Menu Logic --- */
.main-navigation {
    
}


@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }
    
    .hide-on-mobile {
        display: none !important;
    }

    /* --- მთავარი მენიუს კონტეინერი (მარჯვნიდან გამოსვლა) --- */
    .main-navigation {
        display: block !important; 
        position: fixed;
        top: 0;
        right: 0; 
        left: auto; 
        height: 100vh;
        width: 85%; 
        max-width: 320px;
        background: #fff;
        z-index: 9999; 
        
        
        transform: translateX(100%); 
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 15px rgba(0,0,0,0.1); 
        overflow-y: auto;
    }

    
    .main-navigation.active {
        transform: translateX(0);
    }

    
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #f8f9fa;
        border-bottom: 1px solid #eee;
    }

    /* --- სიის გასწორება (ვერტიკალურად) --- */
    .main-menu {
        display: flex !important;
        flex-direction: column !important; 
        list-style: none;
        padding: 0;
        margin: 0;
        height: auto !important; 
    }

    .main-menu > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        display: block !important; 
    }

    .main-menu > li > a {
        display: flex !important;
        align-items: center;
        justify-content: flex-start; 
        padding: 15px 20px !important; 
        height: auto !important; 
        line-height: 1.5 !important;
        text-decoration: none;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        white-space: normal !important; 
    }

    .main-menu > li > a:hover {
        background-color: #f9f9f9;
        color: #007bff;
    }

    
    .menu-item-has-children > a::after {
        content: '+'; 
        margin-left: auto; 
        font-weight: bold;
        font-size: 18px;
        transition: transform 0.3s;
    }
    
    .menu-item-has-children.open > a::after {
        transform: rotate(45deg);
    }

    .sub-menu {
        display: none; 
        position: static !important; 
        width: 100%;
        box-shadow: none !important;
        border: none !important;
        background-color: #fafafa;
        padding: 0;
    }

    .sub-menu li a {
        padding: 12px 20px 12px 40px !important; 
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .mobile-only {
        display: block !important;
    }
    
    
    .header-actions {
        display: block !important;
    }
}


@media (min-width: 992px) {
    .mobile-nav-header, .mobile-only {
        display: none;
    }
    .main-menu {
        display: flex;
        gap: 20px;
        list-style: none;
    }
    .sub-menu {
        position: absolute;
        background: #fff;
        display: none;
        
    }
    .menu-item-has-children:hover .sub-menu {
        display: block;
    }
}



    /* --- ზოგადი სტილები Footer-ისთვის --- */
           .Footer {
                   background-color: #f8f9fa;
                   
                   color: #212529;
                   
                    padding: 35px 0 0px 0;
                   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                   border-top: 1px solid #dee2e6;
                   
           }
           /* --- კონტეინერის სტილი (ცენტრში მოსათავსებლად) --- */
           .Footer .container {
                   max-width: 1320px;
                   margin: 0 auto;
                   padding: 0 15px;
                   box-sizing: border-box;
           }
           /* --- Grid სისტემის ჩანაცვლება Flexbox-ით --- */
           .Footer .row {
                   display: flex;
                   flex-wrap: wrap;
                   margin-left: -15px;
                   margin-right: -15px;
           }
           
           .Footer .col-sm-3, .Footer .col-sm-4 {
                   padding-left: 15px;
                   padding-right: 15px;
                   box-sizing: border-box;
                   width: 100%;
                   
           }
           /* --- სექციების სტილები --- */
           
           .Footer .FootInfo {
                   display: flex;
                   
                   align-items: center;
                   
                   margin-bottom: 30px;
           }
           .Footer .FootInfo .Image img {
                   max-width: 180px;
                   margin-right: 20px;
                   
           }
           .Footer .FootInfo .Text {
                   color: #6c757d;
                   
                   font-size: 14px;
                   line-height: 1.6;
           }
           
           .Footer .MenuDiv {
                   margin-bottom: 30px;
           }
           .Footer .MenuDiv .Title {
                   font-size: 18px;
                   font-weight: bold;
                   margin-bottom: 20px;
                   color: #212529;
                   
           }
           .Footer .MenuDiv ul, .Footer .Address li {
                   list-style: none;
                   padding: 0;
                   margin: 0;
           }
           .Footer .MenuDiv ul li, .Footer .Address li {
                   margin-bottom: 7px;
           }
           .Footer .MenuDiv a {
                   color: #6c757d;
                   
                   text-decoration: none;
                   font-size: 15px;
                   transition: color 0.3s ease;
           }
           .Footer .MenuDiv a:hover {
                   color: #d8a100;
                   
           }
           
           .Footer .Address a {
                   display: flex;
                   align-items: center;
           }
           .Footer .Address img {
                   width: 16px;
                   margin-right: 10px;
           }
           /* --- Footer-ის ქვედა ნაწილი --- */
           .Footer .FootBottom {
                   border-top: 1px solid #dee2e6;
                   
                   padding-top: 30px;
                   margin-top: 20px;
           }
           .Footer .FootSocial, .Footer .AppIcons, .Footer .Subscribe {
                   margin-bottom: 30px;
           }
           
           .Footer .AppIcons a {
                   display: inline-block;
                   margin-right: 10px;
           }
           .Footer .FootSocial .Icons, .Footer .PayMents {
                   flex-wrap: wrap;
                   gap: 15px;
           }
           .Footer .PayMents .Icon img {
                   height: 25px;
           }
           /* --- ადაპტაცია (Responsive) დიდი ეკრანებისთვის --- */
           @media (min-width: 768px) {
                   .Footer .col-sm-3 {
                       width: 25%;
               }
               .Footer .col-sm-4 {
                       width: 33.3333%;
               }
       }
           #newsletter-form-container {
                   min-height: 140px;
                   display: block;
           }
           .Footer .FootInfo .Image {
               margin-right: 20px;
       }
       .Footer .FootInfo .Text {
               font-family: 'glaho', sans-serif;
               font-style: normal;
               font-weight: normal;
               font-size: 14px;
               line-height: 20px;
               color: rgba(45, 45, 45, 0.8);
       }
       .Footer .MenuDiv {
               padding-right: 30px;
       }
       .Footer .MenuDiv dl, .Footer .MenuDiv ol, .Footer .MenuDiv ul {
               padding-left: 0;
               margin: 0;
       }
       .Footer .MenuDiv .Title {
               font-style: normal;
               font-weight: normal;
               font-size: 16px;
               line-height: 24px;
               color: #2D2D2D;
               font-family: 'avia', sans-serif!important;
               margin-bottom: 25px;
               font-weight: bold;
       }
       .Footer .MenuDiv li {
               list-style: none;
               margin-bottom: 15px;
       }
       .Footer .MenuDiv li a {
               font-style: normal;
               font-weight: normal;
               font-size: 14px;
               line-height: 18px;
               color: rgba(45, 45, 45, 0.8);
               font-family: 'glaho', sans-serif;
               list-style: none;
               text-decoration: none;
       }
       .Footer .MenuDiv.Address {

       }
       .Footer .MenuDiv.Address li {
               margin-bottom: 25px;
       }
       .FootBottom .Title {
               font-style: normal;
               font-weight: normal;
               font-size: 14px;
               line-height: 24px;
               color: #2D2D2D;
               font-family: 'avia', sans-serif!important;
               margin-bottom: 20px;
               font-weight: bold;
               margin-top: 9px;
       }
       .FootSocial .Icons {
               height: 40px;
               line-height: 40px;
               display: inline-flex;
       }
       .FootSocial .Icons a {
               margin-bottom: 30px;
               width: 40px;
               height: 40px;
               border-radius: 100%;
               display: inline-flex;
               align-items: center;
               text-align: center;
               margin: 0 auto;
               margin-bottom: 30px;
               margin-right: 10px;
       }
       .FootSocial .Icons .WhatsApp {
               background: #23B33A;
       }
       .FootSocial .Icons .Facebook {
               background: #1877F2;
       }
       .FootSocial .Icons .Viber {
               background: #7360F2;
       }
       .FootSocial .Icons a img {
               margin: 0 auto;
               height: 20px;
       }
       .FootSocial .Icons .IMessage img {
               height: 40px;
       }
       .Subscribe {
               position: relative;
               left: -15px;
       }
       .PayMents {

       }
       .PayMents .Icon {
               width: 55px;
               height: 40px;
               line-height: 40px;
               background: #FFFFFF;
               border-radius: 4px;
               display: inline-block;
               text-align: center;
               margin-right: 6px;
       }
       .PayMents .Icon img {
          max-width: 80%;
          margin: 0 auto;
          vertical-align: middle;
        }
       .sp-form .sp-field label {
               width: 300px !important;
               font-size: 15px !important;
       }
       .sp-form span {
               font-size: 14px;
       }

       /*---mobile-footer---*/
            .mobile {
                width: 100%;
                height: 410px;
                color: #000;
                background-color: #f9c922;
                background-image: url(/storage/uploads/mobile_new.png);
                background-repeat: no-repeat;
                background-position: right 30px;
                background-size: 53%;
                display: flex;
                align-items: center;
                margin-bottom: 0
            }

            @media(-webkit-min-device-pixel-ratio: 2), (min-resolution:192dpi) {
                .mobile {
                    background-image: url(https://www.aviabiletebi.org/wp-content/uploads/build/images/mobile_new@2x.png)
                }
            }

            @media screen and (min-width: 320px) and (max-width:767px) {
                .mobile {
                    height: auto;
                    width: 100%;
                    box-sizing: border-box;
                    padding: 34px 0 0;
                    text-align: center;
                    background-image: url(https://www.aviabiletebi.org/wp-content/uploads/build/images/mobile_big.png);
                    background-position: center 200px;
                    background-size: auto 66%
                }

                .mobile .content {
                    width: 100%
                }
            }

            @media screen and (min-width: 320px) and (max-width:767px) and (-webkit-min-device-pixel-ratio:2), screen and (min-width:320px) and (max-width:767px) and (min-resolution:192dpi) {
                .mobile {
                    background-image: url(https://www.aviabiletebi.org/wp-content/uploads/build/images/mobile_big@2x.png)
                }
            }

            .mobile .info {
                z-index: 1;
                top: 76px;
                left: 59px;
                width: 430px;
                text-align: center
            }

            .mobile .title {
                font-family: 'glaho', sans-serif;
                font-size: 36px;
                line-height: 46px;
                margin: 0;
            }

            @media screen and (min-width: 320px) and (max-width:767px) {
                .mobile .info {
                    width: 100%;
                    left: 0;
                    top: 0
                }

                .mobile .title {
                    font-size: 29px;
                    line-height: 34px;
                    margin-bottom: 15px
                }
            }

            .mobile .text {
                font-family: 'glaho', sans-serif;
                font-size: 16px;
                line-height: 22px;
                opacity: .8;
                margin: 0
            }

            @media screen and (min-width: 320px) and (max-width:767px) {
                .mobile .text {
                    padding: 0 20px;
                    font-size: 17px;
                    line-height: 24px;
                    opacity: 1
                }

                .mobile .download {
                    display: none
                }
            }

            .mobile .download {
                font-size: 16px;
                line-height: 22px;
                margin: 30px 0px 0px;
            }

            a.mobile-href {
                display: inline-block;
                color: #fff
            }

            .mobile-buttons {
                margin-top: 11px;
                margin: 0rem;
            }

            @media screen and (min-width: 320px) and (max-width:767px) {
                a.mobile-href {
                    width: 50%;
                    height: 50px;
                    background-color: #181818
                }

                a.mobile-href:first-child {
                    width: calc(50% - 10px);
                    border-right: 1px solid #505153
                }

                .mobile-buttons {
                    width: 100%;
                    margin-top: 330px;
                    margin-bottom: 0;
                    margin-left: 0;
                    margin-right: 0;
                    padding-left: 0;
                }
            }

            .apple-icon, .googleplay-icon {
                display: inline-block;
                width: 25px;
                height: 30px;
                margin-right: 9px;
                background-image: url(https://www.aviabiletebi.org/wp-content/uploads/build/images/mobile-badges.png);
                background-repeat: no-repeat;
                background-position: 0 -36px;
                background-size: 59px 66px
            }

            .googleplay-icon {
                background-position: -34px -37px
            }

            .mobile-button {
                font-size: 16px;
                line-height: 20px;
                display: inline-block;
                padding: 4px 20px;
                vertical-align: middle;
                color: #fff;
                border-radius: 3px;
                background-color: #181818;
                transition: background-color .2s ease
            }

            .mobile-button:hover {
                background-color: #000
            }

            .mobile-button .info-text {
                display: inline-block;
                text-align: left
            }

            .mobile-button .text-sup {
                font-size: 10px;
                opacity: .65;
                margin: 0
            }

            @media screen and (min-width: 320px) and (max-width:767px) {
                .apple-icon, .googleplay-icon {
                    margin-right: 10px
                }

                .mobile-button {
                    width: 100%;
                    height: 100%;
                    border-radius: 0;
                    box-sizing: border-box;
                    padding: 8px 0 0
                }

                .mobile-button:hover {
                    background-color: #181818
                }

                .mobile-button .text-sup {
                    font-size: 10px;
                    line-height: 12px;
                    opacity: .74
                }
            }

            .mobile-button .name {
                font-size: 18px;
                line-height: 22px;
                top: -4px;
                margin: 0px;
            }

            .mobile-button.apple {
                margin-right: 10px
            }

            .mobile-button.android:hover .googleplay-icon {
                background-position: -34px -2px
            }

            @media screen and (min-width: 320px) and (max-width:767px) {
                .mobile-button .name {
                    font-size: 16px;
                    line-height: 22px;
                    top: -2px
                }

                .mobile-button.apple {
                    margin: 0
                }

                .mobile-button.android:hover .googleplay-icon {
                    background-position: -34px -37px
                }
            }

            .mobile-button.apple:hover .apple-icon {
                background-position: 0 -1px
            }

            @media screen and (min-width: 320px) and (max-width:767px) {
                .mobile-button.apple:hover .apple-icon {
                    background-position: 0 -36px
                }
            }
.content {
                width: 1180px;
                margin: 0 auto;
            }
            /*---mobile-footer-end--*/
.above-header-toolbar {
  background-image: linear-gradient(135deg, rgb(22, 151, 225) 0%, rgb(152, 77, 222) 100%);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  box-sizing: border-box;
}

.toolbar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.social-icons a:hover svg {
  opacity: 0.7;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 10px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 5px 12px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: rgba(255,255,255,0.3);
}

.whatsapp-btn svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.social-icons {
  display: flex;
  align-items: center;
}
.social-icons a {
    display: flex;
    text-decoration: none !important;
    line-height: 1;
    color: var(--ast-global-color-2);
    background: transparent;
    vertical-align: middle;
    transition: all 0.01s;
    margin-left: 6px;
    margin-right: 6px;
    justify-content: center;
    align-items: center;
}

/* --- ამინდის ვიჯეტის სტილები --- */

.info-item.weather-item {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; 
}
/* --- ამინდის ვიჯეტის სტილები (საბოლოო ვერსია) --- */

.info-item.weather-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    position: relative; /* <--- !!! ეს არის მთავარი შესწორება !!! */
}

.weather-item .weather-title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    position: absolute; 
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

.weather-item .weather-icon {
    width: 60px;
    height: 60px;
    margin-top: 15px;     
    margin-bottom: -5px;
}

.info-item.weather-item .info-value {
    margin-top: 0;
    font-size: 20px;
}

.info-item.weather-item .info-label {
    text-transform: capitalize;
    font-size: 13px;
    margin-top: 2px;
}
/* --- /ამინდის ვიჯეტი --- */

/* --- 5-დღიანი პროგნოზის სტილები --- */
#weather-forecast {
    padding-top: 20px;
}

#weather-forecast h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

#weather-forecast p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.forecast-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto; 
    padding-bottom: 15px; 
    gap: 15px; 
}

.forecast-item {
    flex: 0 0 auto; 
    min-width: 100px; 
    padding: 15px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fdfdfd;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.forecast-day {
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

.forecast-icon {
    width: 60px;
    height: 60px;
    margin: -5px 0; 
}

.forecast-temp {
    font-size: 16px;
}

.forecast-temp .temp-max {
    font-weight: 700;
    color: #222;
}

.forecast-temp .temp-min {
    font-weight: 400;
    color: #777;
    margin-left: 5px;
}
/* --- /5-დღიანი პროგნოზი --- */
/* === Tiqets ვიჯეტის კონტეინერი === */
.tiqets-widget-wrapper {
    margin-top: 25px;
    
    min-height: 450px; 
}
.gyg-widget-wrapper{
    min-height: 500px;
}


/* --- Mobile WhatsApp Floating Button --- */
.mobile-whatsapp-float {
    position: fixed;
    left: 10px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    z-index: 99999;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}


.mobile-whatsapp-float img {
    width: 22px;
    height: 22px;
}


@media (hover:hover) {
    .mobile-whatsapp-float:hover {
        background: #1ebe5b;
    }
}


@media (min-width: 769px) {
    .mobile-whatsapp-float {
        display: none;
    }
}

.h1-seo-title {
    font-family: inherit !important; 
    font-size: 28px !important;     
    color: #333 !important;         
    font-weight: bold !important;
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
}


.country-catalog-container {
    all: initial; 
    font-family: 'avia', "BPG Arial", sans-serif; 
    display: block;
    width: 100%;
}


.breadcrumbs-box {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    max-width: 1200px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-list li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-list .separator {
    color: #6c757d;
    font-size: 12px;
}

.breadcrumb-list li[aria-current="page"] {
    color: #6c757d;
    font-weight: 500;
}
/* --- HOW TO BUY STYLES --- */


.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-bottom: 30px;
}


.step-card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.step-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #007bff;
}


.step-icon-circle {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: #007bff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto; 
}


.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* --- CTA (დახმარების ყუთი) --- */
.help-cta-box {
    background: #e3f2fd; 
    border: 1px solid #90caf9;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-icon {
    font-size: 32px;
}

.help-text {
    margin: 0;
    font-size: 15px;
    color: #0d47a1;
    line-height: 1.4;
}


.contact-btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap; 
    transition: background 0.2s;
}

.contact-btn:hover {
    background: #0056b3;
    color: white;
    box-shadow: 0 4px 10px rgba(0,123,255,0.3);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr; 
    }

    .help-cta-box {
        flex-direction: column; 
        text-align: center;
        padding: 20px;
    }

    .help-content {
        flex-direction: column;
        gap: 10px;
    }

    .contact-btn {
        width: 100%; 
        display: block;
        text-align: center;
    }
}

    .newsletter-wrapper {
        background: linear-gradient(135deg, #ffffff 0%, #f3f0ff 100%); 
        padding: 50px 20px;
        border-radius: 20px;
        text-align: center;
        max-width: 850px;
        margin: 60px auto;
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(98, 0, 234, 0.1); 
        box-shadow: 0 10px 40px -10px rgba(98, 0, 234, 0.2); 
        font-family: 'FiraGO', sans-serif; 
    }

    
    .newsletter-wrapper::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 150px;
        height: 150px;
        background: #6200ea;
        opacity: 0.05;
        border-radius: 50%;
        z-index: 0;
    }

    
    .newsletter-title {
        font-size: 28px;
        font-weight: 800;
        color: #2d2d2d;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    
    .newsletter-desc {
        color: #555;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 35px;
        position: relative;
        z-index: 1;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    
    .highlight-text {
        color: #6200ea;
        font-weight: bold;
        background: rgba(98, 0, 234, 0.1);
        padding: 2px 8px;
        border-radius: 6px;
		white-space: nowrap;
    }

    
    .newsletter-form {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        flex-wrap: wrap; 
    }

    
    .newsletter-input {
        padding: 18px 25px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        width: 100%;
        max-width: 380px;
        font-size: 16px;
        outline: none;
        transition: all 0.3s ease;
        background: #fff;
        box-sizing: border-box;
    }

    .newsletter-input:focus {
        border-color: #6200ea;
        box-shadow: 0 0 0 4px rgba(98, 0, 234, 0.1);
    }

    
    .newsletter-btn {
        background-color: #6200ea; 
        color: white;
        border: none;
        padding: 18px 40px;
        border-radius: 12px;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3);
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }

    .newsletter-btn:hover {
        background-color: #5000c2; 
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(98, 0, 234, 0.4);
		color: #face36;
    }
    
    .newsletter-btn:active {
        transform: translateY(1px);
    }

    
    #homepage-msg {
        margin-top: 20px;
        font-size: 14px;
        font-weight: bold;
        min-height: 20px;
    }

    
    @media (max-width: 600px) {
        .newsletter-wrapper {
            padding: 30px 15px;
            margin: 30px 10px;
        }
        .newsletter-title {
            font-size: 22px;
        }
        
        .newsletter-desc {
            font-size: 15px;
        }
        .newsletter-form {
            flex-direction: column;
            width: 100%;
        }
        .newsletter-input, .newsletter-btn {
            width: 100%;
            max-width: 100%;
        }
    }
    /*
================================================================
 footer subscription widgets
================================================================
*/
.sub-widget-box {
    max-width: 330px;
    width: 100%;
    background-color: #ffffff; 
    padding: 20px;
    border-radius: 12px;
    
    border: 4px dashed #6200ea; 
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
}

.sub-widget-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 800;
    color: #6200ea; 
}

.sub-widget-desc {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #555; 
    line-height: 1.4;
    font-weight: 500;
}

.sub-widget-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-input-wrapper input {
    width: 100%;
    padding: 12px 15px;
    
    border: 2px solid #e1bee7; 
    border-radius: 8px;
    background: #fcfaff;
    color: #333;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.sub-input-wrapper input::placeholder { color: #999; }

.sub-input-wrapper input:focus {
    outline: none;
    border-color: #6200ea;
    background: #fff;
}

.sub-widget-box button {
    width: 100%;
    padding: 12px;
    background-color: #6200ea; 
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 0px #4a148c; 
}

.sub-widget-box button:hover {
    transform: translateY(2px); 
    box-shadow: 0 2px 0px #4a148c;
}

.sub-widget-msg {
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    min-height: 18px;
}
@media (max-width: 768px) {
  .sub-widget-box {
    max-width: 100%;
    width: 100%;
  }
}


.info-box-promo {
    max-width: 450px;
    background: rgba(250, 206, 54, 0.1); /* ყვითლის ნაზი გამჭვირვალე ფონი */
    border: 1px solid #face36; /* თქვენი ყვითელი ჩარჩო */
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px 0;
    backdrop-filter: blur(5px); /* მინის ეფექტი */
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.info-box-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.info-box-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.info-gift-icon {
    font-size: 24px;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(250, 206, 54, 0.5));
}

.info-text {
    color: #ffffff; /* თეთრი ტექსტი ლურჯ ფონზე კარგად იკითხება */
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
}

.info-text b {
    color: #face36; /* აქცენტი ყვითელზე */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-link-btn {
    background-color: #face36;
    color: #1e1b4b !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    margin-left: 15px;
    transition: all 0.2s ease;
}

.info-link-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px #face36;
}

/* მობილური ვერსია */
@media (max-width: 480px) {
    .info-box-content {
        flex-direction: column;
        text-align: center;
    }
    .info-gift-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .info-link-btn {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
    }
}
.info-box-promo {
    max-width: 500px; /* შეგიძლიათ შეცვალოთ ზომა სურვილისამებრ */
    
    /* ცენტრირებისთვის */
    margin-left: auto;
    margin-right: auto;
    display: flex; /* შიგთავსის გასასწორებლად */
    
    background: rgba(250, 206, 54, 0.1); 
    border: 1px solid #face36;
    border-radius: 12px;
    padding: 15px 20px;
    backdrop-filter: blur(5px);
    align-items: center;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* რომ padding-მა ზომა არ გაზარდოს */
}

/* თუ გინდათ, რომ მშობელ კონტეინერში ვერტიკალურადაც ცენტრში იყოს, 
მშობელ ელემენტს (მაგ. სექციას) უნდა ჰქონდეს: */
.parent-container {
    display: flex;
    justify-content: center; /* ჰორიზონტალური ცენტრირება */
    align-items: center;     /* ვერტიკალური ცენტრირება */
    min-height: 200px;       /* მაგალითისთვის */
}


/*--- FROM HERE I STARTED TESTING *---/



/* =========================================
   ახალი Hero, Marquee და გათამაშების ღილაკი
   ========================================= */
.toolbar-win-btn { display: inline-flex; align-items: center; background-color: #face36; color: #1e1b4b !important; padding: 6px 16px; border-radius: 50px; font-family: sans-serif; font-size: 0.85rem; font-weight: bold; text-decoration: none !important; position: relative; transition: all 0.3s ease; border: 1px solid #1e1b4b20; margin-left: 10px; font-family: 'avia';}
.toolbar-win-btn .gift-icon { margin-right: 6px; font-size: 15px; }
.pulse-ring { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50px; border: 2px solid #face36; animation: toolbar-pulse 2s infinite; pointer-events: none; }
@keyframes toolbar-pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.15, 1.4); opacity: 0; } }
.toolbar-win-btn:hover { background-color: #1e1b4b; color: #face36 !important; transform: translateY(-1px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
@media (max-width: 480px) { .toolbar-win-btn .btn-text { display: inline-box; } .toolbar-win-btn { padding: 4px 8px; } }

/* გარე ჰერო ბლოკი */
.header-search-hero { background: linear-gradient(135deg, rgb(52 38 169) 0%, rgb(152 77 222) 100%); width: 100%; min-height: 199px; padding: 20px 16px; box-sizing: border-box; }
.header-search-hero__inner { width: 100%; max-width: 1200px; margin: 0 auto; display: block; }
#search-form-container { width: 100%; height: 100%; display: block; }

@media (max-width: 1000px) { .header-search-hero { min-height: 385px; } }
@media (max-width: 600px) { .header-search-hero { min-height: 430px; padding: 24px 12px; } }

/* მოძრავი ტექსტი (Marquee) */
.promo-marquee-container { width: 100%; background-color: #face36; color: #1e1b4b; overflow: hidden; white-space: nowrap; padding: 10px 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 14px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: relative; z-index: 999; }
.promo-marquee-content { display: inline-block; padding-left: 100%; animation: marquee 35s linear infinite; }
.promo-marquee-content:hover { animation-play-state: paused; }
.promo-btn { color: #1e1b4b; text-decoration: underline; font-weight: bold; margin-left: 10px; }
@keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
@media (max-width: 768px) { .promo-marquee-container { font-size: 12px; padding: 8px 0; } }

/* მთლიანი თოლიბარის გასწორება */
.above-header-toolbar {
    display: flex !important;
    justify-content: space-between !important; /* ეს გაწევს ბლოკებს კიდეებში */
    align-items: center !important;
    margin: 0 auto !important;
    padding: 5px 15px !important;
}

            .tb-final-badge {
                display: inline-flex !important;
                align-items: center !important;
                /* ვერტიკალური ცენტრირება */
                justify-content: space-between !important;
                /* ფიქსირებული ზომები */
                height: 34px !important;
                border-radius: 50px !important;
                /* დიზაინი */
                background: rgba(0, 0, 0, 0.25) !important;
                border: 1px solid rgba(255,255,255,0.15) !important;
                padding: 2px 2px 2px 12px !important;
                /* მარცხნივ ტექსტისთვის ადგილი, მარჯვნივ ღილაკია */
                box-sizing: border-box !important;
                vertical-align: middle !important;
            }

            /* ტექსტი (საათები) */
            .tb-final-text {
                color: #ffffff !important;
                font-size: 11px !important;
                font-family: sans-serif !important;
                font-weight: 500 !important;
                margin: 0 10px 0 0 !important;
                /* დაშორება ტექსტსა და ღილაკს შორის */
                padding: 0 !important;
                line-height: 1 !important;
                /* რომ არ გაიწელოს */
                border: none !important;
                white-space: nowrap !important;
            }

            /* ტელეფონის ღილაკი */
            a.tb-final-btn {
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                /* ფიქსირებული სიმაღლე (კონტეინერზე ოდნავ პატარა) */
                height: 28px !important;
                /* დიზაინი */
                background: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%) !important;
                color: #ffffff !important;
                text-decoration: none !important;
                padding: 0 12px !important;
                border-radius: 50px !important;
                font-size: 12px !important;
                font-weight: 700 !important;
                line-height: 0.3 !important;
                /* მკაცრი ხაზი */
                margin: 0 !important;
                border: none !important;
                box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
            }

            a.tb-final-btn:hover {
                opacity: 0.9 !important;
            }
/* --- Above Header Toolbar - მობილურის ოპტიმიზაცია --- */
@media (max-width: 768px) {
    /* 1. ვმალავთ მხოლოდ საათების ტექსტს */
    .above-header-toolbar .tb-final-text {
        display: none !important;
    }

    /* 2. ბეიჯს ვუხსნით ზედმეტ პედინგს და ფონს, რომ მხოლოდ ღილაკი გამოჩნდეს სუფთად */
    .above-header-toolbar .tb-final-badge {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
    }

    /* 3. კონტეინერებს ვშლით ბოლოებამდე */
    .above-header-toolbar {
        justify-content: space-between !important;
        padding: 5px 10px !important;
    }

    .toolbar-inner {
        gap: 10px !important;
    }

    /* 4. სოციალური იკონკების ფილტრი (ვტოვებთ მხოლოდ აუცილებელს, რომ ადგილი დარჩეს) */
    .social-icons a:not([aria-label="Facebook"]):not([aria-label="Instagram"]) {
        display: none !important;
    }
}
#mainNav .main-menu li {
    margin-bottom: 0 !important;
}
/* პაგინაციის მთავარი კონტეინერი */
.pagination-wrapper nav {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

/* ვმალავთ Tailwind-ის ზედმეტ ტექსტებს (Showing 1 to 20...) */
.pagination-wrapper nav div:first-child, 
.pagination-wrapper p {
    display: none !important;
}

/* პაგინაციის სია */
.pagination-wrapper ul, 
.pagination-wrapper nav div:last-child {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px;
    align-items: center;
}

/* ღილაკების სტილი (ლინკები და სპანები) */
.pagination-wrapper a, 
.pagination-wrapper span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #1e1b4b; /* შენი ბრენდის მუქი ლურჯი */
    background: #fff;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s ease;
}

/* ჰოვერი (მაუსის მიტანა) */
.pagination-wrapper a:hover {
    background-color: #face36; /* შენი ყვითელი */
    border-color: #face36;
    color: #1e1b4b;
}

/* აქტიური გვერდი */
.pagination-wrapper .active span, 
.pagination-wrapper [aria-current="page"] span,
.pagination-wrapper [aria-current="page"] {
    background-color: #6200ea !important; /* შენი იასამნისფერი */
    color: #fff !important;
    border-color: #6200ea !important;
}

/* გათიშული ღილაკები (მაგ: წინა/შემდეგი როცა არ არსებობს) */
.pagination-wrapper .disabled span,
.pagination-wrapper [aria-disabled="true"] span {
    color: #ccc;
    background: #f9f9f9;
    border-color: #eee;
    cursor: not-allowed;
}

/* მობილურისთვის ზომები */
@media (max-width: 600px) {
    .pagination-wrapper a, .pagination-wrapper span {
        min-width: 35px;
        height: 35px;
        font-size: 12px;
    }
}