

        /* ========== نوار بالایی ========== */
        .hsp-top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 45px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(5px);
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 11px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hsp-top-bar-text {
            text-align: right;
            flex: 1;
            padding-right: 15px;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.5px;
        }
        


        /* فرم جستجو - حالت دسکتاپ */
.hsp-search-form {
	width: 260px;
	position: relative;
	margin-top: 20px;
		border-radius: 10px;

}

.hsp-search-form input[type='search'] {
	width: 100%;
	padding: 6px 12px 6px 36px; /* جا برای آیکون در سمت چپ */
	background: #002321;
	border: 2px solid rgba(0, 169, 158, 0.9);
	color: rgba(0, 169, 158, 0.3);
	outline: none;
	font-size: 14px;
	transition: all 0.3s ease; /* برای افکت نرم هاور */
	box-sizing: border-box;
	border-radius: 10px;
}

.hsp-search-form input[type='search']:focus {
	background: #003d39;
	border-color: #00a99e;
	outline: none;
	box-shadow: 0 0 8px rgba(0, 169, 158, 0.6);
}

.hsp-search-form input[type='search']::placeholder {
	color: rgba(0, 169, 158, 0.9);
	font-size: 13px;
	font-weight: 300;
}





/* آیکون جستجو در سمت چپ */
.hsp-search-form:before {
	content: '\f179';
	font-family: dashicons;
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0, 169, 158, 0.6);
	font-size: 22px;
	pointer-events: none;
}


/* دکمه جستجو برای موبایل */
.hsp-search-toggle {
	display: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	cursor: (--point), auto;
	color: white;
	font-size: 18px;
	margin-top: 5px;
	transition: all 0.3s;
}

.hsp-search-toggle:hover {
	background: rgba(0, 169, 158, 0.2);
	border-color: #00a99e;
}

.hsp-search-toggle .dashicons {
	width: 18px;
	height: 18px;
	font-size: 18px;
}

        
        
        
        
        
        
        /* ========== هدر اصلی ========== */
        .hsp-header {
            position: fixed;
            top: 45px;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 0 15px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            background: transparent;
        }
        
        .hsp-header.scrolled {
            padding: 15px 0 10px 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
        }
        
        .hsp-logo-container {
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hsp-logo {
            max-height: 90px;
            width: auto;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
        }
        
        .hsp-header.scrolled .hsp-logo-container {
            margin-bottom: 10px;
            transform: translateY(-8px);
        }
        
        .hsp-header.scrolled .hsp-logo {
            max-height: 60px;
        }
        
        /* ========== منوی باکس‌شده ========== */
        .hsp-menu-wrapper {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            border-radius: 50px;
            padding: 8px 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            display: inline-block;
        }
        
        .hsp-header.scrolled .hsp-menu-wrapper {
            background: rgba(0, 0, 0, 0.6);
            transform: translateY(-10px);
        }
        
        .hsp-menu {
            display: flex;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .hsp-menu li {
            margin: 0;
        }
        
        .hsp-menu a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            padding: 8px 18px;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.25s;
            border-radius: 30px;
            display: block;
            background: transparent;
            border: none;
        }
        
        .hsp-menu a:hover {
            background: rgba(0, 169, 158, 0.25);
            color: white;
            transform: translateY(-2px);
        }
        
        .hsp-menu li.current-menu-item a,
        .hsp-menu li.current_page_item a {
            background: rgba(0, 169, 158, 0.35);
            color: white;
            box-shadow: 0 2px 8px rgba(0, 169, 158, 0.2);
        }
        
        /* ========== همبرگر موبایل ========== */
        .hsp-mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            justify-content: center;
            align-items: center;
            cursor: (--point), auto;
            margin: 10px auto;
            backdrop-filter: blur(5px);
        }
        
        .hsp-mobile-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: white;
            margin: 4px auto;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        /* ========== اسلایدر ========== */
        .hsp-slider-container {
            width: 100%;
            height: 50vh;
            position: relative;
            margin-top: 0;
            overflow: hidden;
        }
        
        .hsp-slider-top-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 250px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
            z-index: 10;
        }
        
        .hsp-swiper {
            width: 100%;
            height: 100%;
        }
        
        .hsp-slide {
            position: relative;
            height: 100%;
        }
        
        .hsp-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            object-position: center;
            transition: transform 1.5s cubic-bezier(0.2, 0.9, 0.3, 1);
        }
        
        .swiper-slide-active .hsp-slide img {
            transform: scale(1.05);
        }
        
        .hsp-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
            pointer-events: none;
        }
        
        .hsp-button-next,
        .hsp-button-prev {
            color: white !important;
            transition: all 0.3s !important;
        }
        
        .hsp-button-next:hover,
        .hsp-button-prev:hover {
            transform: scale(1.1) !important;
        }
        
        .hsp-pagination .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.6);
            opacity: 0.6;
            transition: all 0.3s;
            border-radius: 10px;
        }
        
        .hsp-pagination .swiper-pagination-bullet-active {
            background: #00a99e;
            opacity: 1;
            width: 20px;
            box-shadow: 0 0 10px rgba(0, 169, 158, 0.6);
        }
        
        /* ========== ریسپانسیو ========== */
        @media (max-width: 992px) {
            .hsp-top-bar {
                height: auto;
                min-height: 45px;
                flex-wrap: wrap;
                padding: 5px 15px;
            }
            
            .hsp-top-bar-text {
                width: 100%;
                text-align: center;
                padding: 3px 0;
            }
            
            .hsp-search-form {
                width: 100%;
                margin-top: 5px;
            }
            
            .hsp-header {
                top: 85px;
            }
        }
        
        @media (max-width: 768px) {
            .hsp-header {
                padding: 15px 0 10px 0;
                top: 90px;
            }
            
            .hsp-logo {
                max-height: 70px;
            }
            
            .hsp-header.scrolled .hsp-logo {
                max-height: 50px;
            }
            
            .hsp-menu-wrapper {
                width: 90%;
                max-width: 300px;
                padding: 10px;
                border-radius: 20px;
                display: none;
                margin-top: 10px;
            }
            
            .hsp-menu-wrapper.active {
                display: inline-block;
            }
            
            .hsp-menu {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            
            .hsp-menu a {
                text-align: center;
                padding: 12px;
            }
            
            .hsp-mobile-toggle {
                display: flex;
            }
            
            .hsp-search-form {
                display: none;
            }
            
            .hsp-search-toggle {
                display: flex;
                margin-left: auto;
            }
            
            .hsp-search-form.mobile-active {
                display: block !important;
                position: absolute;
                top: 45px;
                left: 0;
                right: 0;
                width: 100%;
                padding: 10px 15px;
                background: rgba(0, 0, 0, 0.9);
                backdrop-filter: blur(5px);
                z-index: 1002;
                margin-top: 0;
            }
            
            .hsp-slider-container {
                height: 50vh;
            }
            
            .hsp-button-next,
            .hsp-button-prev {
                width: 40px !important;
                height: 40px !important;
            }
        }
        
        @media (max-width: 480px) {
            .hsp-header {
                top: 85px;
            }
            
            .hsp-logo {
                max-height: 60px;
            }
            
            .hsp-header.scrolled .hsp-logo {
                max-height: 45px;
            }
            
            .hsp-menu-wrapper {
                width: 95%;
            }
            
            .hsp-slider-container {
                height: 45vh;
            }
        }
        
/*# sourceURL=swiper-css-inline-css */

