﻿   
        /* Reset and base styles for slider container only */
        .gisheh-slider-container {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .gisheh-slider-container *,
        .gisheh-slider-container *::before,
        .gisheh-slider-container *::after {
            box-sizing: inherit;
        }

        /* Main slider wrapper */
        .gisheh-image-slider-wrapper {
            width: 100%;
            max-width: 100vw;
            margin: 0 auto;
            position: relative;
            background: #000;
            overflow: hidden;
        }

        /* Swiper container */
.gisheh-swiper-main {
    width: 100%;
    height: auto !important;
    min-height: 300px;
    position: relative;
}


        /* Swiper slides */
    .gisheh-swiper-main .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #000;
        overflow: hidden;
        height: auto !important;
    

        }

        /* Image link wrapper */
        .gisheh-image-link {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
            text-decoration: none;
            outline: none;
        }

        .gisheh-image-link:focus {
            outline: 3px solid rgba(255, 255, 255, 0.8);
            outline-offset: -3px;
        }

        /* Images styling */
.gisheh-slide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
    cursor: pointer;
}

        .gisheh-image-link:hover .gisheh-slide-image {
            transform: scale(1.02);
        }

        /* Link overlay for better UX */
        .gisheh-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
        }

        .gisheh-image-link:hover .gisheh-image-overlay {
            background: rgba(0, 0, 0, 0.1);
            opacity: 1;
        }

        /* Optional: Link indicator icon */
        .gisheh-link-indicator {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0);
            transition: transform 0.3s ease;
            color: #333;
            font-size: 18px;
        }

        .gisheh-image-link:hover .gisheh-link-indicator {
            transform: scale(1);
        }

        .gisheh-link-indicator::before {
            content: '↗';
            font-weight: bold;
        }

        /* Custom navigation arrows */
        .gisheh-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            color: white;
            font-size: 18px;
            user-select: none;
        }

        .gisheh-nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .gisheh-nav-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .gisheh-nav-prev {
            left: 20px;
        }

        .gisheh-nav-next {
            right: 20px;
        }

        /* Arrow icons */
        .gisheh-nav-btn::before {
            content: '';
            width: 12px;
            height: 12px;
            border-top: 2px solid currentColor;
            border-right: 2px solid currentColor;
            display: block;
        }

        .gisheh-nav-prev::before {
            transform: rotate(-135deg);
            margin-left: 3px;
        }

        .gisheh-nav-next::before {
            transform: rotate(45deg);
            margin-right: 3px;
        }

        /* Custom pagination */
        .gisheh-pagination {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .gisheh-pagination-bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .gisheh-pagination-bullet:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        .gisheh-pagination-bullet.gisheh-bullet-active {
            background: white;
            transform: scale(1.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Loading state */
        .gisheh-slider-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 16px;
            z-index: 5;
        }

        .gisheh-loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: gisheh-spin 1s linear infinite;
            margin: 0 auto 10px;
        }

        @keyframes gisheh-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .gisheh-swiper-main {
                /*height: 50vh;*/
                min-height: auto;
            }

            .gisheh-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .gisheh-nav-prev {
                left: 10px;
            }

            .gisheh-nav-next {
                right: 10px;
            }

            .gisheh-pagination {
                bottom: 15px;
                gap: 6px;
            }

            .gisheh-pagination-bullet {
                width: 10px;
                height: 10px;
            }

            .gisheh-link-indicator {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .gisheh-swiper-main {
                height: 40vh;
                min-height: 250px;
            }

            .gisheh-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .gisheh-pagination-bullet {
                width: 8px;
                height: 8px;
            }

            .gisheh-link-indicator {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
        }

        /* Smooth fade effect */
        .gisheh-swiper-main.swiper-fade .swiper-slide {
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .gisheh-swiper-main.swiper-fade .swiper-slide-active {
            opacity: 1;
        }

        /* Accessibility improvements */
        .gisheh-nav-btn:focus {
            outline: 2px solid rgba(255, 255, 255, 0.8);
            outline-offset: 2px;
        }

        .gisheh-pagination-bullet:focus {
            outline: 2px solid rgba(255, 255, 255, 0.8);
            outline-offset: 2px;
        }

        /* Prevent text selection */
        .gisheh-slider-container {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Allow text selection for links */
        .gisheh-image-link {
            -webkit-user-select: auto;
            -moz-user-select: auto;
            -ms-user-select: auto;
            user-select: auto;
        }
    