/* متغیرهای CSS برای تم روشن - نسخه مدرن */
:root {
    --primary-color: #4361ee;
    --primary-light: #4895ef;
    --primary-dark: #3a56d4;
    --secondary-color: #7209b7;
    --secondary-light: #9d4edd;
    --accent-color: #f72585;
    --accent-light: #ff4da6;
    --success-color: #4cc9f0;
    --warning-color: #f8961e;
    --error-color: #f94144;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    --gradient-surface: linear-gradient(135deg, #ffffff, #f8f9fa);
    
    --background-color: #ffffff;
    --surface-color: #f8f9fa;
    --card-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #8d8d8d;
    --border-color: #e0e0e0;
    --divider-color: #f0f0f0;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    --header-height: 70px;
    --nav-height: 80px;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* متغیرهای CSS برای تم تاریک - نسخه مدرن */
[data-theme="dark"] {
    --gradient-surface: linear-gradient(135deg, #1e1e1e, #252525);
    
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --card-color: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6d6d6d;
    --border-color: #333333;
    --divider-color: #2a2a2a;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.6);
    
    --glass-bg: rgba(30, 30, 30, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ریست استایل ها و فونت */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gradient-surface);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition);
    padding-bottom: var(--nav-height);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* هدر اصلی - نسخه مدرن */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-right {
    text-align: right;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.site-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* دکمه جستجو */
.search-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-toggle:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* دکمه تغییر تم */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 14px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 3px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.theme-slider {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    position: absolute;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.theme-slider::before {
    content: '☀️';
}

[data-theme="dark"] .theme-slider::before {
    content: '🌙';
}

[data-theme="dark"] .theme-slider {
    transform: translateX(24px);
}

/* نوار جستجو */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
}

.search-container {
    background: var(--card-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: scaleIn 0.3s ease;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

#searchInput {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--surface-color);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

#searchInput:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.search-clear {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: var(--transition);
}

.search-clear:hover {
    background: var(--surface-color);
    color: var(--error-color);
}

.search-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.search-close:hover {
    background: var(--surface-color);
    color: var(--error-color);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius-sm);
}

.search-result-item:hover {
    background: var(--surface-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

/* محتوای اصلی */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}









/* بخش دسته‌بندی‌ها */
.categories-section {
    margin-bottom: 2rem;
}

.categories-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.categories-label {
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

.categories-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: var(--card-color);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition);
    min-width: 150px;
    justify-content: space-between;
}

.dropdown-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    margin-top: 0.5rem;
    overflow: hidden;
}

.dropdown-menu.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-item {
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--surface-color);
}

.dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

.dropdown-item:last-child {
    border-bottom: none;
}









/* بخش خدمات */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-category {
    background: var(--card-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--divider-color);
}

.category-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-right: 0.75rem;
}

.category-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-sm);
    background: var(--surface-color);
}

.view-all:hover {
    color: var(--primary-dark);
    background: var(--card-color);
    transform: translateX(-2px);
}





.services-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
    scrollbar-width: none; /* برای فایرفاکس */
    -ms-overflow-style: none; /* برای اینترنت اکسپلورر و اج */
}

.services-scroll::-webkit-scrollbar {
    display: none; /* برای کروم، سافاری و اج */
}










/* مودال جستجو */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.search-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: var(--background-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.search-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-close:hover {
    background: var(--surface-color);
    color: var(--text-primary);
}

.search-input-container {
    position: relative;
    padding: 1.5rem 2rem;
}

.search-icon {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

#searchInput {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--surface-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

#searchInput:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.search-clear {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.search-clear.active {
    opacity: 1;
    visibility: visible;
}

.search-clear:hover {
    background: var(--surface-color);
    color: var(--text-primary);
}

.search-results {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
    padding: 0 2rem 1.5rem;
}

.search-result-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.search-result-item:hover {
    background: var(--surface-color);
    border-color: var(--border-color);
}

.search-result-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.search-result-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}
















.services-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.services-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.service-item {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    min-width: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.service-item:hover .service-item-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
}

/* منوی ناوبری پایین */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: var(--nav-height);
    z-index: 1000;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-secondary);
    padding: 0.75rem 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    flex: 1;
    max-width: 70px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: -8px;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
    opacity: 0;
}

.nav-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item:hover::before {
    width: 24px;
    opacity: 1;
}

.nav-item.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item.active::before {
    width: 24px;
    opacity: 1;
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-icon {
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

/* دکمه چت بات ویژه */
.nav-item.chat-button {
    position: relative;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin-top: -25px;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: var(--transition);
    border: 3px solid var(--background-color);
    z-index: 10;
}

.nav-item.chat-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.nav-item.chat-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(67, 97, 238, 0.6);
}

.nav-item.chat-button.active {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(67, 97, 238, 0.6);
}

.nav-item.chat-button .nav-icon {
    font-size: 1.6rem;
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
}

.nav-item.chat-button span {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.9;
    color: white !important;
    position: absolute;
    bottom: -20px;
    background: var(--primary-color);
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* اعلان توسعه */
.development-notification {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--warning-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}

.development-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* انیمیشن ها */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* استایل های خطا و وضعیت‌های مختلف */
.no-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    color: var(--text-secondary);
    text-align: center;
    width: 100%;
}

.no-services i {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .main-header {
        height: 65px;
        padding: 0 1rem;
    }
    
    .site-title {
        font-size: 1.3rem;
    }
    
    .site-subtitle {
        font-size: 0.75rem;
    }
    
    .main-content {
        padding: 1rem 0.75rem;
    }
    
    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .service-item {
        min-width: 120px;
        padding: 1.25rem 0.75rem;
    }
    
    .service-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .service-item-name {
        font-size: 0.8rem;
    }
    
    .search-container {
        padding: 1.5rem;
        width: 95%;
    }
    
    .bottom-nav {
        padding: 0 0.5rem;
        height: 75px;
    }
    
    .nav-item {
        padding: 0.6rem 0.3rem;
        max-width: 60px;
        gap: 0.3rem;
    }
    
    .nav-icon {
        font-size: 1.3rem;
    }
    
    .nav-item span {
        font-size: 0.7rem;
    }
    
    .nav-item.chat-button {
        width: 65px;
        height: 65px;
        margin-top: -22px;
    }
    
    .nav-item.chat-button .nav-icon {
        font-size: 1.5rem;
    }
    
    .nav-item.chat-button span {
        font-size: 0.65rem;
        bottom: -18px;
    }
}

@media (max-width: 480px) {
    .service-category {
        padding: 1rem;
    }
    
    .service-item {
        min-width: 110px;
        padding: 1rem 0.5rem;
    }
    
    .service-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-item-name {
        font-size: 0.75rem;
    }
    
    .nav-item {
        max-width: 55px;
        padding: 0.5rem 0.2rem;
    }
    
    .nav-icon {
        font-size: 1.2rem;
    }
    
    .nav-item span {
        font-size: 0.65rem;
    }
    
    .nav-item.chat-button {
        width: 60px;
        height: 60px;
        margin-top: -20px;
    }
    
    .nav-item.chat-button .nav-icon {
        font-size: 1.4rem;
    }
}




/* رسپانسیو برای بخش دسته‌بندی‌ها */
@media (max-width: 768px) {
    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .categories-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .categories-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
    }
}

@media (max-width: 480px) {
    .categories-header {
        gap: 0.75rem;
    }
    
    .categories-label {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .dropdown-toggle {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}