: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);
}
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    /* === HEADINGS === */
    h1 {
        @apply text-4xl font-bold mb-3; /* text-4xl ზუსტად 2.25rem (36px) არის */
    }

    h2 {
        @apply text-3xl font-bold mb-3; /* text-3xl არის 1.875rem (30px) */
    }

    h3 {
        @apply text-2xl font-bold mb-2; /* text-2xl არის 1.5rem (24px) */
    }

    h4 {
        @apply text-xl font-bold mb-2;  /* text-xl არის 1.25rem (20px) */
    }

    h5 {
        @apply text-lg font-bold mb-2;  /* text-lg არის 1.125rem (18px) */
    }

    h6 {
        @apply text-base font-bold mb-2; /* text-base არის 1rem (16px) */
    }
}
/* --- უნივერსალური სტილები --- */
        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;
}

/* ზოგადი ლინკები მხოლოდ კონტენტის არეალში */
/* .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; 
            }
        }


/*--- 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;
    }
}
/* მთავარი კონტეინერის განულება */
.wp-block-uagb-buttons {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
}

.uagb-buttons__wrap {
    display: inline-block;
}

/* უშუალოდ ღილაკის სტილი */
.uagb-button__wrapper a.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* დაშორება ტექსტსა და აიქონს შორის */
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #333; /* ტექსტის ფერი */
    background-color: transparent;
    border: 1px solid #333; /* ჩარჩო */
    border-radius: 6px; /* ოდნავ მომრგვალებული კუთხეები */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover ეფექტი (მაუსის მიტანისას) */
.uagb-button__wrapper a.wp-block-button__link:hover {
    background-color: #333;
    color: #ffffff;
    border-color: #333;
}

/* აიქონის გასწორება */
.uagb-button__icon {
    display: inline-flex;
    align-items: center;
}

/* SVG აიქონის ზომა და ფერი */
.uagb-button__icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor; /* ეს უზრუნველყოფს, რომ Hover-ზე აიქონის ფერიც შეიცვალოს ტექსტთან ერთად */
    transition: transform 0.3s ease;
}

/* მაუსის მიტანისას ისრის ოდნავ მარჯვნივ გაწევის ანიმაცია (სურვილისამებრ) */
.uagb-button__wrapper a.wp-block-button__link:hover .uagb-button__icon svg {
    transform: translateX(4px);
}