/**
 * UBazo.net Studio - Category Professional System
 * Author: WolfDev | Gevork Bazoiani
 * Last Updated: 07.08.2025
 * Functionality: Swiper categories, navigation, animations
 * CDN version
 *
 * UBazo.net Studio - კატეგორიების პროფესიონალური სისტემა
 * ავტორი: WolfDev | Gevork Bazoiani
 * განახლების თარიღი: 07.08.2025
 * ფუნქციონალი: Swiper კატეგორიები, ნავიგაცია, ანიმაციები
 * CDN ვერსია
 */

/* ===== CSS ცვლადები - თემატური კონფიგურაცია ===== */
:root {
    /* კატეგორიების ზომები */
    --category-size: 150px;
    --category-border-width: 2px;
    --category-padding: 10px;
    --category-margin: 2px;
    
    /* ანიმაციების პარამეტრები */
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --hover-scale: 1.05;
    --hover-lift: -3px;
    
    /* ნავიგაციის ღილაკები */
    --nav-button-size-mobile: 40px;
    --nav-button-size-desktop: 50px;
    --nav-button-opacity: 0.9;
    --nav-button-hover-scale: 1.15;
    
    /* სექციების დაშორება */
    --section-spacing: 15px;
    --section-padding: 10px;
    
    /* z-index იერარქია */
    --z-section: 1;
    --z-navigation: 10;
    --z-category-hover: 20;
    
    /* ფერების პალიტრა - მოცემული ფერები */
    --color-blue-light: #e3f2fd;
    --color-blue-medium: #bbdefb;
    --color-blue-border: #90caf9;
    --color-blue-hover: #64b5f6;
    
    --color-green-light: #f1f8e9;
    --color-green-medium: #dcedc8;
    --color-green-border: #c5e1a5;
    --color-green-hover: #aed581;
    
    --color-purple-light: #f3e5f5;
    --color-purple-medium: #e1bee7;
    --color-purple-border: #ce93d8;
    --color-purple-hover: #ba68c8;
    
    --color-orange-light: #fff3e0;
    --color-orange-medium: #ffe0b2;
    --color-orange-border: #ffcc80;
    --color-orange-hover: #ffb74d;
    
    --color-red-light: #ffebee;
    --color-red-medium: #ffcdd2;
    --color-red-border: #ef9a9a;
    --color-red-hover: #e57373;
    
    --color-teal-light: #e0f2f1;
    --color-teal-medium: #b2dfdb;
    --color-teal-border: #80cbc4;
    --color-teal-hover: #4db6ac;
    
    /* ნავიგაციის ღილაკების ფერები */
    --nav-next-bg: rgba(29, 54, 93, 0.95);
    --nav-next-hover: #162a4a;
    --nav-prev-bg: rgba(181, 25, 79, 0.95);
    --nav-prev-hover: #a01545;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===== სექციების სტილები ===== */
.ubazo-category-section-5 {
    /* განლაგება */
    margin-bottom: var(--section-spacing);
    padding: var(--section-padding) 0;
    width: 100%;
    
    /* ბოქსი */
    height: auto;
    min-height: fit-content;
    box-sizing: border-box;
    
    /* ფლექსი */
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* პოზიციონირება */
    position: relative;
    overflow: hidden;
    
    /* z-index მართვა */
    z-index: var(--z-section);
    isolation: isolate;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: auto;
    min-height: fit-content;
    padding: 15px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force 12px spacing between slides */
.swiper-slide:not(:last-child) {
    margin-right: 2px !important;
}

.swiper-slide {
    margin-right: 2px !important;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: fit-content;
    justify-content: flex-start;
    flex-wrap: nowrap;
    transition: transform 0.4s ease-in-out;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: auto !important;
    flex-shrink: 0;
    height: auto;
    min-height: fit-content;
    margin-right: 12px !important;
    min-width: 150px;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

/* ===== კატეგორიის ელემენტები ===== */
.category-item {
    /* ძირითადი ფორმა */
    width: var(--category-size);
    height: var(--category-size);
    min-width: var(--category-size);
    min-height: var(--category-size);
    max-width: var(--category-size);
    max-height: var(--category-size);
    
    /* წრეული ფორმა */
    border-radius: 50% !important;
    aspect-ratio: 1;
    
    /* ბოქსი */
    box-sizing: border-box !important;
    overflow: hidden;
    
    /* ფლექსი */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* ვიზუალი */
    background: #f8f9fa;
    border: var(--category-border-width) solid #e9ecef;
    
    /* ინტერაქცია */
    cursor: pointer;
    text-decoration: none;
    
    /* ანიმაცია */
    transition: all var(--transition-speed) var(--transition-easing);
    
    /* პოზიციონირება */
    position: relative;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.category-name {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #34495e;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-item:hover .category-name {
    opacity: 1;
    bottom: -45px;
}

/* ===== ჰოვერ ეფექტები ===== */
.category-item:hover {
    transform: scale(var(--hover-scale)) translateY(var(--hover-lift));
    z-index: var(--z-category-hover);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-item:active {
    transform: scale(0.98) translateY(-1px);
    transition-duration: 0.1s;
}

.category-item:focus {
    outline: 3px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* ===== ფერების ვარიაციები - CSS ცვლადებით ===== */
.category-color1 {
    background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue-medium) 100%) !important;
    border-color: var(--color-blue-border) !important;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2) !important;
}

.category-color1:hover {
    background: linear-gradient(135deg, var(--color-blue-medium) 0%, var(--color-blue-border) 100%) !important;
    border-color: var(--color-blue-hover) !important;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3) !important;
}

.category-color2 {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%) !important;
    border: 2px solid #c5e1a5 !important;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.2) !important;
}

.category-color2:hover {
    background: linear-gradient(135deg, #dcedc8 0%, #c5e1a5 100%) !important;
    border-color: #aed581 !important;
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.3) !important;
}

.category-color3 {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%) !important;
    border: 2px solid #ce93d8 !important;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.2) !important;
}

.category-color3:hover {
    background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%) !important;
    border-color: #ba68c8 !important;
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.3) !important;
}

.category-color4 {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%) !important;
    border: 2px solid #ffcc80 !important;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2) !important;
}

.category-color4:hover {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%) !important;
    border-color: #ffb74d !important;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3) !important;
}

.category-color5 {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%) !important;
    border: 2px solid #ef9a9a !important;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.2) !important;
}

.category-color5:hover {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%) !important;
    border-color: #e57373 !important;
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.3) !important;
}

.category-color6 {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%) !important;
    border: 2px solid #80cbc4 !important;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.2) !important;
}

.category-color6:hover {
    background: linear-gradient(135deg, #b2dfdb 0%, #80cbc4 100%) !important;
    border-color: #4db6ac !important;
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.3) !important;
}

/* Swiper Navigation - პროფესიონალური დიზაინი - ახლა section-ში განთავსებული */
.ubazo-category-section-5 .swiper-button-next,
.ubazo-category-section-5 .swiper-button-prev {
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: var(--z-navigation) !important;
    position: absolute !important;
    top: calc(50% + 50px) !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    opacity: 0.95 !important;
    backdrop-filter: blur(3px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

/* მარცხენა ისარი - წითელი ფერი */
.ubazo-category-section-5 .swiper-button-prev {
    background: #b5194f !important;
    box-shadow: 0 8px 25px rgba(181, 25, 79, 0.3) !important;
    left: 10px !important;
}

.ubazo-category-section-5 .swiper-button-prev:hover {
    background: #a01545 !important;
    color: white !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 12px 35px rgba(181, 25, 79, 0.4) !important;
    opacity: 1 !important;
}

/* მარჯვენა ისარი - ლურჯი ფერი */
.ubazo-category-section-5 .swiper-button-next {
    background: #1d365d !important;
    box-shadow: 0 8px 25px rgba(29, 54, 93, 0.3) !important;
    right: 15px !important;
}

.ubazo-category-section-5 .swiper-button-next:hover {
    background: #162a4a !important;
    color: white !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 12px 35px rgba(29, 54, 93, 0.4) !important;
    opacity: 1 !important;
}

.ubazo-category-section-5 .swiper-button-next:active,
.ubazo-category-section-5 .swiper-button-prev:active {
    transform: translateY(-50%) scale(0.95) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.ubazo-category-section-5 .swiper-button-next::after,
.ubazo-category-section-5 .swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
    color: inherit !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* მობილური ვერსიისთვის ისრების გაუმჯობესებული სტილები */
/* მობილური ვერსიისთვის ისრების სპეციალური სტილები - უმაღლესი priority */
@media (max-width: 767px) {
    /* ძალიან მაღალი priority - ყველა selector */
    .ubazo-category-section-5 .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
        opacity: 0.9 !important;
        display: flex !important;
        pointer-events: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
        visibility: visible !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(29, 54, 93, 0.95) !important;
        right: 8px !important;
        left: auto !important;
    }
    
    .ubazo-category-section-5 .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        opacity: 0.9 !important;
        display: flex !important;
        pointer-events: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
        visibility: visible !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(181, 25, 79, 0.95) !important;
        left: 8px !important;
        right: auto !important;
    }
    
    .ubazo-category-section-5 .swiper-button-next::after,
    .ubazo-category-section-5 .swiper-button-prev::after {
        font-size: 16px !important;
        font-weight: bold !important;
        color: white !important;
        font-family: swiper-icons !important;
    }
    
    .ubazo-category-section-5 .swiper-button-next:hover,
    .ubazo-category-section-5 .swiper-button-prev:hover {
        opacity: 1 !important;
        transform: translateY(-50%) scale(1.05) !important;
    }
    
    /* disabled მდგომარეობაშიც ჩანდეს მობილურზე */
    .ubazo-category-section-5 .swiper-button-next.swiper-button-disabled,
    .ubazo-category-section-5 .swiper-button-prev.swiper-button-disabled {
        display: flex !important;
        opacity: 0.7 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
}
    
    /* ძალიან პატარა ეკრანებისთვის */
    @media (max-width: 374px) {
        .category-item {
            width: 120px !important;
            height: 120px !important;
            min-width: 120px !important;
            min-height: 120px !important;
            max-width: 120px !important;
            max-height: 120px !important;
        }
        
        .category-item img {
            width: 70% !important;
            height: 70% !important;
        }
        
        .ubazo-category-section-5 .swiper-button-next,
        .ubazo-category-section-5 .swiper-button-prev {
            width: 35px !important;
            height: 35px !important;
        }
        
        .ubazo-category-section-5 .swiper-button-next {
            right: 1px !important;
            left: auto !important;
        }
        
        .ubazo-category-section-5 .swiper-button-prev {
            left: 3px !important;
            right: auto !important;
        }
        
        .ubazo-category-section-5 .swiper-button-next::after,
        .ubazo-category-section-5 .swiper-button-prev::after {
            font-size: 14px !important;
        }
    }
    
    /* პატარა მობილურისთვის */
    @media (min-width: 375px) and (max-width: 479px) {
        .category-item {
            width: 130px !important;
            height: 130px !important;
            min-width: 130px !important;
            min-height: 130px !important;
            max-width: 130px !important;
            max-height: 130px !important;
        }
        
        .category-item img {
            width: 70% !important;
            height: 70% !important;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            width: 38px !important;
            height: 38px !important;
        }
        
        .swiper-button-next {
            right: 8px !important;
            left: auto !important;
        }
        
        .swiper-button-prev {
            left: 4px !important;
            right: auto !important;
        }
        
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 15px !important;
        }
    }
    
    /* საშუალო მობილურისთვის */
    @media (min-width: 480px) and (max-width: 639px) {
        .category-item {
            width: 135px !important;
            height: 135px !important;
            min-width: 135px !important;
            min-height: 135px !important;
            max-width: 135px !important;
            max-height: 135px !important;
        }
        
        .category-item img {
            padding: 10px !important;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            width: 40px !important;
            height: 40px !important;
        }
        
        .swiper-button-next {
            right: 8px !important;
            left: auto !important;
        }
        
        .swiper-button-prev {
            left: 8px !important;
            right: auto !important;
        }
        
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 16px !important;
        }
    }
    
    /* დიდი მობილურისთვის */
    @media (min-width: 640px) and (max-width: 767px) {
        .category-item {
            width: 140px !important;
            height: 140px !important;
            min-width: 140px !important;
            min-height: 140px !important;
            max-width: 140px !important;
            max-height: 140px !important;
        }
        
        .category-item img {
            width: 70% !important;
            height: 70% !important;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            width: 42px !important;
            height: 42px !important;
        }
        
        .swiper-button-next {
            right: 1px !important;
            left: auto !important;
        }
        
        .swiper-button-prev {
            left: 6px !important;
            right: auto !important;
        }
        
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 17px !important;
        }
    }
    
    /* ყველა swiper-ისთვის ისრების ძალდატანება მობილურზე */
    .swiper .swiper-button-next,
    .swiper .swiper-button-prev,
    .swiper[data-loop="true"] .swiper-button-next,
    .swiper[data-loop="true"] .swiper-button-prev,
    .swiper[data-category] .swiper-button-next,
    .swiper[data-category] .swiper-button-prev {
        display: flex !important;
        opacity: 0.9 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* disabled მდგომარეობაშიც ჩანდეს */
    .swiper .swiper-button-next.swiper-button-disabled,
    .swiper .swiper-button-prev.swiper-button-disabled,
    .swiper[data-loop="true"] .swiper-button-next.swiper-button-disabled,
    .swiper[data-loop="true"] .swiper-button-prev.swiper-button-disabled {
        display: flex !important;
        opacity: 0.7 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
    }

/* Hide navigation when not needed - but not in loop mode */
.swiper:not([data-loop="true"]) .swiper-button-next.swiper-button-disabled,
.swiper:not([data-loop="true"]) .swiper-button-prev.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none !important;
}



/* ყველაზე მაღალი priority - ისრები ყოველთვის ჩანს */
.swiper-button-next,
.swiper-button-prev {
    display: flex !important;
    opacity: 0.8 !important;
    pointer-events: auto !important;
    z-index: var(--z-navigation) !important;
    position: absolute !important;
    top: calc(50% + 50px) !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    width: 40px !important;
    height: 40px !important;
}

.swiper-button-next {
    background: rgba(29, 54, 93, 0.9) !important;
    right: 15px !important;
    left: auto !important;
}

.swiper-button-prev {
    background: rgba(181, 25, 79, 0.9) !important;
    left: 10px !important;
    right: auto !important;
}

/* Loop mode navigation - always visible */
.swiper[data-loop="true"] .swiper-button-next,
.swiper[data-loop="true"] .swiper-button-prev {
    opacity: 0.8 !important;
    pointer-events: auto !important;
    z-index: var(--z-navigation) !important;
    display: flex !important;
}

/* მობილური ვერსიისთვის loop mode-ში ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    .swiper[data-loop="true"] .swiper-button-next,
    .swiper[data-loop="true"] .swiper-button-prev {
        display: flex !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
}

/* Ensure navigation works for all swipers */
.swiper[data-category="kitchen-appliances"] .swiper-button-next,
.swiper[data-category="kitchen-appliances"] .swiper-button-prev,
.swiper[data-category="personal-care"] .swiper-button-next,
.swiper[data-category="personal-care"] .swiper-button-prev {
    opacity: 0.7 !important;
    pointer-events: auto !important;
    z-index: var(--z-navigation) !important;
    position: absolute !important;
    display: flex !important;
}

/* მობილური ვერსიისთვის ყველა კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    .swiper[data-category="kitchen-appliances"] .swiper-button-next,
    .swiper[data-category="kitchen-appliances"] .swiper-button-prev,
    .swiper[data-category="personal-care"] .swiper-button-next,
    .swiper[data-category="personal-care"] .swiper-button-prev {
        display: flex !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
}

/* Force navigation visibility for kitchen-appliances (5th category) */
.swiper[data-category="kitchen-appliances"] .swiper-button-next {
    right: 15px !important;
    background: #1d365d !important;
    box-shadow: 0 8px 25px rgba(29, 54, 93, 0.3) !important;
    opacity: 0.7 !important;
    pointer-events: auto !important;
    display: flex !important;
}

.swiper[data-category="kitchen-appliances"] .swiper-button-prev {
    left: 10px !important;
    background: #b5194f !important;
    box-shadow: 0 8px 25px rgba(181, 25, 79, 0.3) !important;
    opacity: 0.7 !important;
    pointer-events: auto !important;
    display: flex !important;
}

/* მობილური ვერსიისთვის kitchen-appliances კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    .swiper[data-category="kitchen-appliances"] .swiper-button-next {
        right: 8px !important;
        background: rgba(29, 54, 93, 0.9) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper[data-category="kitchen-appliances"] .swiper-button-prev {
        left: 8px !important;
        background: rgba(181, 25, 79, 0.9) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
    }
}

/* Force navigation visibility for personal-care (6th category) */
.swiper[data-category="personal-care"] .swiper-button-next {
    right: 15px !important;
    background: #1d365d !important;
    box-shadow: 0 8px 25px rgba(29, 54, 93, 0.3) !important;
    opacity: 0.7 !important;
    pointer-events: auto !important;
    display: flex !important;
}

.swiper[data-category="personal-care"] .swiper-button-prev {
    left: 10px !important;
    background: #b5194f !important;
    box-shadow: 0 8px 25px rgba(181, 25, 79, 0.3) !important;
    opacity: 0.7 !important;
    pointer-events: auto !important;
    display: flex !important;
}

/* მობილური ვერსიისთვის personal-care კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    .swiper[data-category="personal-care"] .swiper-button-next {
        right: 8px !important;
        background: rgba(29, 54, 93, 0.9) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper[data-category="personal-care"] .swiper-button-prev {
        left: 8px !important;
        background: rgba(181, 25, 79, 0.9) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
    }
}

/* Ensure kitchen-appliances swiper works for 5th category */
/* მოვაშორებთ ამ ზედმეტ რულებს - Swiper თვითონ მართავს overflow-ს */

/* მობილური ვერსიისთვის kitchen-appliances კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    /* მოვაშორებთ overflow რულს - Swiper თვითონ მართავს */
    
    .swiper[data-category="kitchen-appliances"] .swiper-wrapper {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }
    
    .swiper[data-category="kitchen-appliances"] .swiper-button-next,
    .swiper[data-category="kitchen-appliances"] .swiper-button-prev {
        display: flex !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
}

/* Ensure personal-care swiper works for 6th category */
/* მოვაშორებთ ამ ზედმეტ რულებს - Swiper თვითონ მართავს overflow-ს */

/* მობილური ვერსიისთვის personal-care კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    /* მოვაშორებთ ზედმეტ wrapper რულებს personal-care-სთვის */
    
    .swiper[data-category="personal-care"] .swiper-button-next,
    .swiper[data-category="personal-care"] .swiper-button-prev {
        display: flex !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
}

/* Desktop-specific fixes for kitchen-appliances */
@media (min-width: 1024px) {
    /* მოვაშორებთ overflow რულს დესკტოპისთვისაც - Swiper თვითონ მართავს */
    
    .swiper[data-category="kitchen-appliances"] .swiper-wrapper {
        display: flex !important;
        align-items: center !important;
        width: auto !important; /* auto უნდა იყოს 100%-ის ნაცვლად */
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        transition-timing-function: ease-out !important; /* smooth transition */
    }
    
    .swiper[data-category="kitchen-appliances"] .swiper-slide {
        width: auto !important;
        flex-shrink: 0 !important;
        height: auto !important;
        position: relative !important;
        transition-property: transform !important;
    }
    
    .swiper[data-category="kitchen-appliances"] .swiper-button-next,
    .swiper[data-category="kitchen-appliances"] .swiper-button-prev {
        opacity: 0.7 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        display: flex !important;
        cursor: pointer !important;
    }
}

/* მობილური ვერსიისთვის kitchen-appliances კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    /* მოვაშორებთ ზედმეტ CSS რულებს */
    
    .swiper[data-category="kitchen-appliances"] .swiper-wrapper {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }
    
    .swiper[data-category="kitchen-appliances"] .swiper-slide {
        width: auto !important;
        flex-shrink: 0 !important;
        height: auto !important;
        position: relative !important;
        transition-property: transform !important;
    }
    
    .swiper[data-category="kitchen-appliances"] .swiper-button-next,
    .swiper[data-category="kitchen-appliances"] .swiper-button-prev {
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        display: flex !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
}

/* Desktop-specific fixes for personal-care */
@media (min-width: 1024px) {
    /* მოვაშორებთ ზედმეტ wrapper რულებს personal-care-სთვის დესკტოპზეც */
    
    .swiper[data-category="personal-care"] .swiper-slide {
        width: auto !important;
        flex-shrink: 0 !important;
        height: auto !important;
        position: relative !important;
        transition-property: transform !important;
    }
    
    .swiper[data-category="personal-care"] .swiper-button-next,
    .swiper[data-category="personal-care"] .swiper-button-prev {
        opacity: 0.7 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        display: flex !important;
        cursor: pointer !important;
    }
}

/* მობილური ვერსიისთვის personal-care კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (max-width: 767px) {
    /* მოვაშორებთ ზედმეტ CSS რულებს */
    
    .swiper[data-category="personal-care"] .swiper-slide {
        width: auto !important;
        flex-shrink: 0 !important;
        height: auto !important;
        position: relative !important;
        transition-property: transform !important;
    }
    
    .swiper[data-category="personal-care"] .swiper-button-next,
    .swiper[data-category="personal-care"] .swiper-button-prev {
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        display: flex !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
}



/* Responsive Design - დეტალური breakpoints ლოგიკა */

/* ძალიან პატარა მობილური - 2 კატეგორია */
@media (max-width: 374px) {
    .container {
        padding: 0 10px;
    }
    
    .ubazo-category-section-5 {
        padding: 5px 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .category-item {
        width: 110px;
        height: 110px;
        min-width: 110px;
        min-height: 110px;
        max-width: 110px;
        max-height: 110px;
        --category-size: 110px;
    }
    
    .category-item img {
        width: 65px;
        height: 65px;

    }
    
    .category-name {
        font-size: 0.7rem;
        padding: 8px 12px;
        bottom: -40px;
    }
    
    .category-item:hover .category-name {
        bottom: -50px;
    }
    
    /* Swiper Navigation - ძალიან პატარა ეკრანებისთვის */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
        right: 3px !important;
        left: 3px !important;
        display: flex !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

/* პატარა მობილური - 2 კატეგორია */
@media (min-width: 375px) and (max-width: 479px) {
    .container {
        padding: 0 15px;
    }
    
    .ubazo-category-section-5 {
        padding: 8px 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .category-item {
        width: 130px;
        height: 130px;
        min-width: 130px;
        min-height: 130px;
        max-width: 130px;
        max-height: 130px;
        --category-size: 130px;
    }
    
    .category-item img {
        width: 75px;
        height: 75px;

    }
    
    .category-name {
        font-size: 0.7rem;
        padding: 6px 10px;
        bottom: -35px;
    }
    
    .category-item:hover .category-name {
        bottom: -45px;
    }
    
    /* Swiper Navigation - პატარა მობილურისთვის */
    .swiper-button-next,
    .swiper-button-prev {
        width: 38px !important;
        height: 38px !important;
        right: 4px !important;
        left: 4px !important;
        display: flex !important;
        opacity: 0.8 !important;
        pointer-events: auto !important;
        z-index: var(--z-navigation) !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        visibility: visible !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 15px !important;
    }
}

/* საშუალო მობილური - 2 კატეგორია */
@media (min-width: 480px) and (max-width: 639px) {
    .container {
        padding: 0 15px;
    }
    
    .ubazo-category-section-5 {
        padding: 10px 0;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .category-item {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        max-width: 120px;
        max-height: 120px;
        --category-size: 120px;
    }
    
    .category-item img {
        width: 70px;
        height: 70px;

    }
    
    .category-name {
        font-size: 0.7rem;
        padding: 6px 10px;
        bottom: -35px;
    }
    
    .category-item:hover .category-name {
        bottom: -45px;
    }
    
    /* Swiper Navigation - საშუალო მობილურისთვის */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .swiper-button-next {
        right: 5px !important;
        left: auto !important;
    }
    
    .swiper-button-prev {
        left: 8px !important;
        right: auto !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

/* დიდი მობილური - 3 კატეგორია */
@media (min-width: 640px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .ubazo-category-section-5 {
        padding: 15px 0;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .category-item {
        width: 110px;
        height: 110px;
        min-width: 110px;
        min-height: 110px;
        max-width: 110px;
        max-height: 110px;
        --category-size: 110px;
    }
    
    .category-item img {
        width: 65px;
        height: 65px;

    }
    
    .category-name {
        font-size: 0.65rem;
        padding: 5px 8px;
        bottom: -30px;
    }
    
    .category-item:hover .category-name {
        bottom: -40px;
    }
    
    /* Swiper Navigation - დიდი მობილურისთვის */
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .swiper-button-next {
        right: 5px !important;
        left: auto !important;
    }
    
    .swiper-button-prev {
        left: 8px !important;
        right: auto !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 12px !important;
    }
}

/* ტაბლეტი - 4 კატეგორია */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 900px;
    }
    
    .ubazo-category-section-5 {
        width: 100%;
    }
    
    .category-item {
        width: 150px;
        height: 150px;
        min-width: 150px;
        min-height: 150px;
        max-width: 150px;
        max-height: 150px;
        --category-size: 150px;
    }
    
    .category-item img {
        width: 90px;
        height: 90px;

    }
    
    .swiper {
        width: 100%;
    }
    
    .swiper-wrapper {
        width: 100%;
    }
}

/* Desktop - 6 კატეგორია */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
    
    .ubazo-category-section-5 {
        width: 100%;
    }
    
    .category-item {
        width: 160px;
        height: 160px;
        min-width: 160px;
        min-height: 160px;
        max-width: 160px;
        max-height: 160px;
        --category-size: 160px;
    }
    
    .category-item img {
        width: 100px;
        height: 100px;

    }
    
    /* Desktop swiper styles */
    .swiper {
        padding: 20px 0;
        width: 100%;
    }
    

    
    .swiper-wrapper {
        width: 100%;
    }
}

/* ძალიან დიდი ეკრანები - 8 კატეგორია */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .ubazo-category-section-5 {
        width: 100%;
    }
    
    .category-item {
        width: 160px;
        height: 160px;
        min-width: 160px;
        min-height: 160px;
        max-width: 160px;
        max-height: 160px;
        --category-size: 160px;
    }
    
    .category-item img {
        width: 100px;
        height: 100px;

    }
    
    /* Force exactly 6 categories to show */
    .swiper {
        padding: 15px 0;
        width: 100%;
        height: auto !important;
    }
    
    .swiper-slide {

        width: calc(100% / 6) !important;
        flex-shrink: 0 !important;
        height: auto !important;
        min-height: 250px !important;
    }
    
    .swiper-wrapper {
        width: 100%;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        height: auto !important;
        min-height: 250px !important;
    }
    
    .ubazo-category-section-5 {
        width: 100%;
    }

}   

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .category-item,
    .category-item img,
    .category-name,
    .swiper-button-next,
    .swiper-button-prev {
        transition: none;
    }
}

/* Focus styles for keyboard navigation */
.category-item:focus {
    outline: 3px solid #6c757d;
    outline-offset: 3px;
}

/* Force circular shape */
.category-item {
    border-radius: 50% !important;
    aspect-ratio: 1 !important;
    /* Prevent JavaScript from changing sizes */
    width: var(--category-size, 140px) !important;
    height: var(--category-size, 140px) !important;
    min-width: var(--category-size, 140px) !important;
    min-height: var(--category-size, 140px) !important;
    max-width: var(--category-size, 140px) !important;
    max-height: var(--category-size, 140px) !important;
    /* Ensure proper display */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Container responsive styles */

/* Ensure all containers work with container */
.ubazo-category-section-5,
.swiper,
.swiper-wrapper {
    width: 100% !important;
    box-sizing: border-box !important;
}

.category-item img {
    object-fit: contain;
}

/* Override any conflicting styles - responsive */
.swiper-slide .category-item {
    border-radius: 50% !important;
    aspect-ratio: 1 !important;
}

/* დეტალური responsive ზომები */

/* ძალიან პატარა მობილური - 2 კატეგორია */
@media (max-width: 374px) {
    .swiper-slide .category-item {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        min-height: 110px !important;
        max-width: 110px !important;
        max-height: 110px !important;
    }
    
    .category-item {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        min-height: 110px !important;
        max-width: 110px !important;
        max-height: 110px !important;
    }
    
    /* Swiper container optimization */
    .swiper {
        padding: 15px 0;
        width: 100%;
    }
    

    
    .swiper-wrapper {
        width: 100%;
    }
    
    .ubazo-category-section-5 {
        width: 100%;
    }
    

}

/* პატარა მობილური - 2 კატეგორია */
@media (min-width: 375px) and (max-width: 479px) {
    .swiper-slide .category-item {
        width: 130px !important;
        height: 130px !important;
        min-width: 130px !important;
        min-height: 130px !important;
        max-width: 130px !important;
        max-height: 130px !important;
    }
    
    .category-item {
        width: 130px !important;
        height: 130px !important;
        min-width: 130px !important;
        min-height: 130px !important;
        max-width: 130px !important;
        max-height: 130px !important;
    }
}

/* საშუალო მობილური - 2 კატეგორია */
@media (min-width: 480px) and (max-width: 639px) {
    .swiper-slide .category-item {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
    }
    
    .category-item {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
    }
}

/* დიდი მობილური - 3 კატეგორია */
@media (min-width: 640px) and (max-width: 767px) {
    .swiper-slide .category-item {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        min-height: 110px !important;
        max-width: 110px !important;
        max-height: 110px !important;
    }
    
    .category-item {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        min-height: 110px !important;
        max-width: 110px !important;
        max-height: 110px !important;
    }
}

/* ტაბლეტი - 4 კატეგორია */
@media (min-width: 768px) and (max-width: 1023px) {
    .category-item,
    .swiper-slide .category-item {
        width: 150px !important;
        height: 150px !important;
        min-width: 150px !important;
        min-height: 150px !important;
        max-width: 150px !important;
        max-height: 150px !important;
    }
    
            .category-item img {
            width: 70% !important;
            height: 70% !important;
        }
}

/* დესკტოპი - 8 კატეგორია */
@media (min-width: 1024px) {
    .swiper-slide .category-item {
        width: 160px !important;
        height: 160px !important;
        min-width: 160px !important;
        min-height: 160px !important;
        max-width: 160px !important;
        max-height: 160px !important;
    }
    
    /* Swiper container optimization for desktop */
    .swiper {
        padding: 15px 0;
        width: 100%;
        height: auto !important;
    }
    
    .swiper-slide {

        width: calc(100% / 6) !important;
        flex-shrink: 0 !important;
        height: auto !important;
        min-height: 200px !important;
    }
    
    /* Force exactly 6 categories to show with better spacing */
    .swiper-wrapper {
        justify-content: flex-start;
        width: 100%;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        height: auto !important;
        min-height: 200px !important;
    }
    
    .ubazo-category-section-5 {
        width: 100%;
    }
    

}

/* დიდი დესკტოპი - 8 კატეგორია */
@media (min-width: 1440px) {
    .swiper-slide .category-item {
        width: 160px !important;
        height: 160px !important;
        min-width: 160px !important;
        min-height: 160px !important;
        max-width: 160px !important;
        max-height: 160px !important;
    }
    
    /* Swiper container optimization for large desktop */
    .swiper {
        padding: 15px 0;
        width: 100%;
        height: auto !important;
        min-height: 240px !important;
    }
    
    .swiper-slide {

        width: calc(100% / 6) !important;
        flex-shrink: 0 !important;
        height: auto !important;
        min-height: 220px !important;
    }
    
    /* Force exactly 6 categories to show with better spacing */
    .swiper-wrapper {
        justify-content: flex-start;
        width: 100%;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        height: auto !important;
        min-height: 220px !important;
    }
    
    .ubazo-category-section-5 {
        width: 100%;
    }
    
    /* Ensure full width for all elements */
    .swiper,
    .swiper-wrapper,
    .ubazo-category-section-5 {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ყველაზე მაღალი priority მობილური ისრებისთვის - ფაილის ბოლოში */
@media (max-width: 767px) {
    /* მარჯვენა ისარი - ყველაზე ძლიერი selector */
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-next,
    .swiper .swiper-button-next,
    .mySwiper .swiper-button-next,
    .swiper-button-next {
        position: absolute !important;
        right: 8px !important;
        left: auto !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        opacity: 0.9 !important;
        z-index: 10 !important;
        background: rgba(29, 54, 93, 0.95) !important;
        border-radius: 50% !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    }
    
    /* მარცხენა ისარი - ყველაზე ძლიერი selector */
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-prev,
    .swiper .swiper-button-prev,
    .mySwiper .swiper-button-prev,
    .swiper-button-prev {
        position: absolute !important;
        left: 8px !important;
        right: auto !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        opacity: 0.9 !important;
        z-index: 10 !important;
        background: rgba(181, 25, 79, 0.95) !important;
        border-radius: 50% !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    }
}

/* ყველაზე მაღალი priority დესკტოპისთვის - 6 კატეგორია */
@media (min-width: 1024px) {
    .ubazo-category-section-5 .swiper.mySwiper .swiper-slide,
    .swiper .swiper-slide,
    .mySwiper .swiper-slide,
    .swiper-slide {
        width: calc(100% / 6) !important;
        flex-shrink: 0 !important;
        max-width: calc(100% / 6) !important;
        min-width: calc(100% / 6) !important;
        padding: 8px !important;
        height: auto !important;
        min-height: 200px !important;
    }
    
    .ubazo-category-section-5 .swiper.mySwiper .swiper-wrapper,
    .swiper .swiper-wrapper,
    .mySwiper .swiper-wrapper,
    .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
    }
}

/* Desktop-specific fixes for navigation and spacing */
@media (min-width: 1024px) {
    /* მარჯვენა ისარი დესკტოპზე ყოველთვის ჩანდეს */
    .swiper-button-next {
        display: flex !important;
        opacity: 0.9 !important;
        pointer-events: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: rgba(29, 54, 93, 0.95) !important;
        right: 15px !important;
        left: auto !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* მარცხენა ისარი დესკტოპზე */
    .swiper-button-prev {
        display: flex !important;
        opacity: 0.9 !important;
        pointer-events: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: rgba(181, 25, 79, 0.95) !important;
        left: 10px !important;
        right: auto !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* კატეგორიებს შორის სივრცის შემცირება დესკტოპზე */
    .swiper-slide {
        padding: 2px !important;
        margin-right: 5px !important;
    }
    
    /* Swiper container optimization დესკტოპზე */
    .swiper {
        padding: 15px 0 !important;
        width: 100% !important;
    }
    
    .swiper-wrapper {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 5px !important;
    }
    
    /* კატეგორიების ზომა დესკტოპზე */
    .category-item {
        width: 160px !important;
        height: 160px !important;
        min-width: 160px !important;
        min-height: 160px !important;
        max-width: 160px !important;
        max-height: 160px !important;
    }
    
    .category-item img {
        width: 100px !important;
        height: 100px !important;
        padding: 15px !important;
    }
}

/* ყველაზე მაღალი priority დესკტოპისთვის - მარჯვენა ისარი */
@media (min-width: 1024px) {
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-next,
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-prev,
    .ubazo-category-section-5 .swiper .swiper-button-next,
    .ubazo-category-section-5 .swiper .swiper-button-prev {
        display: flex !important;
        opacity: 0.9 !important;
        pointer-events: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        visibility: visible !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-next,
    .ubazo-category-section-5 .swiper .swiper-button-next {
        background: rgba(29, 54, 93, 0.95) !important;
        right: 15px !important;
        left: auto !important;
    }
    
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-prev,
    .ubazo-category-section-5 .swiper .swiper-button-prev {
        background: rgba(181, 25, 79, 0.95) !important;
        left: 10px !important;
        right: auto !important;
    }
    
    /* კატეგორიებს შორის სივრცის კიდევ უფრო შემცირება დესკტოპზე */
    .ubazo-category-section-5 .swiper.mySwiper .swiper-slide,
    .ubazo-category-section-5 .swiper .swiper-slide {
        padding: 1px !important;
        margin-right: 3px !important;
    }
    
    .ubazo-category-section-5 .swiper.mySwiper .swiper-wrapper,
    .ubazo-category-section-5 .swiper .swiper-wrapper {
        gap: 3px !important;
    }
    
    /* Swiper container optimization დესკტოპზე */
    .ubazo-category-section-5 .swiper.mySwiper,
    .ubazo-category-section-5 .swiper {
        padding: 10px 0 !important;
    }
}

/* ყველაზე მაღალი priority - დესკტოპისთვის ყველა კატეგორიის ისრების ყოველთვის ხილვადობა */
@media (min-width: 1024px) {
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-next,
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-prev,
    .ubazo-category-section-5 .swiper .swiper-button-next,
    .ubazo-category-section-5 .swiper .swiper-button-prev {
        display: flex !important;
        opacity: 0.9 !important;
        pointer-events: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        visibility: visible !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-next,
    .ubazo-category-section-5 .swiper .swiper-button-next {
        background: rgba(29, 54, 93, 0.95) !important;
        right: 15px !important;
        left: auto !important;
    }
    
    .ubazo-category-section-5 .swiper.mySwiper .swiper-button-prev,
    .ubazo-category-section-5 .swiper .swiper-button-prev {
        background: rgba(181, 25, 79, 0.95) !important;
        left: 10px !important;
        right: auto !important;
    }
    
    /* კატეგორიებს შორის სივრცის კიდევ უფრო შემცირება დესკტოპზე */
    .ubazo-category-section-5 .swiper.mySwiper .swiper-slide,
    .ubazo-category-section-5 .swiper .swiper-slide {
        padding: 1px !important;
        margin-right: 3px !important;
    }
    
    .ubazo-category-section-5 .swiper.mySwiper .swiper-wrapper,
    .ubazo-category-section-5 .swiper .swiper-wrapper {
        gap: 3px !important;
    }
    
    /* Swiper container optimization დესკტოპზე */
    .ubazo-category-section-5 .swiper.mySwiper,
    .ubazo-category-section-5 .swiper {
        padding: 10px 0 !important;
    }
}

/* ყველაზე მაღალი priority - დესკტოპისთვის ყველა swiper-ის ისრების ყოველთვის ხილვადობა */
@media (min-width: 1024px) {
    .swiper .swiper-button-next,
    .swiper .swiper-button-prev,
    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        display: flex !important;
        opacity: 0.9 !important;
        pointer-events: auto !important;
        z-index: 10 !important;
        position: absolute !important;
        top: calc(50% + 50px) !important;
        transform: translateY(-50%) !important;
        visibility: visible !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .swiper .swiper-button-next,
    .mySwiper .swiper-button-next {
        background: rgba(29, 54, 93, 0.95) !important;
        right: 15px !important;
        left: auto !important;
    }
    
    .swiper .swiper-button-prev,
    .mySwiper .swiper-button-prev {
        background: rgba(181, 25, 79, 0.95) !important;
        left: 10px !important;
        right: auto !important;
    }
    
    /* კატეგორიებს შორის სივრცის კიდევ უფრო შემცირება დესკტოპზე */
    .swiper .swiper-slide,
    .mySwiper .swiper-slide {
        padding: 1px !important;
        margin-right: 3px !important;
    }
    
    .swiper .swiper-wrapper,
    .mySwiper .swiper-wrapper {
        gap: 3px !important;
    }
    
    /* Swiper container optimization დესკტოპზე */
    .swiper,
    .mySwiper {
        padding: 10px 0 !important;
    }
}

