.three-header {
    height: 171px;
    width: 100%;
}

#mainHeader.fixed, .header-one-mobile.fixed {
    padding: 17px 0 10px 0;
}

#mainHeader.fixed .header-three-container, .header-one-mobile.fixed .mobile-top{
    display: none;
}

.header-one-mobile .show .menu-mobile {
    display: none;
}

.header-one-mobile.fixed {
    padding: 15px 0 8px 0;
}
.header-one-mobile.fixed .show .menu-mobile {
    display: block;
}

.header-one-mobile.fixed .show, .header-one-mobile .show{
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-banner img {
    width: 100%;
    height: 100%;

}

.banner-close {
    position: absolute;
    left: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.banner-close:hover {
    opacity: 1;
}

/* Main Header */
.header-three {
    background: white;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    transition: all 0.3s ease;
    direction: rtl;
}

#mainHeader {
    position: relative;
    background-color: #F2F3F6;
    transition: all 0.3s ease;
    backdrop-filter: blur(7.5px);
}

#mainHeader.fixed {
    position: fixed;
    background-color: rgba(248, 249, 251, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(7.5px);
    top: 0;
    width: 100%;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.15);*/
    z-index: 99999999;
}


.header-three.with-banner {
    top: 40px;
}

.header-three-container {
    max-width: 77%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap:23px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.logo-icon {
    /*width: 129px;*/
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Box with Dropdown */
.search-container {
    flex: 1;
    max-width: 37dvw;
    overflow: hidden;
}

.search-box {
    width: 95%;
    height: 6dvh;
    padding-right: 30px;
    /*border: 2px solid #e9ecef;*/
    /* border-radius: 10px; */
    font-size: 14px;
    /*transition: all 0.3s ease;*/
    background: #fff;
    border-radius: 50px;
    outline: unset;
}

.search-box:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-btn {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Search Dropdown Results */
.search-dropdown {
    position: absolute;
    top: 41%;
    left: 0;
    width: 40dvw;
    right: 0;
    margin: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: 446px;
    overflow: hidden;
    display: block !important;
}

.search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.search-query {
    font-size: 13px;
    color: #6c757d;
}

.search-query strong {
    color: #667eea;
    font-weight: 600;
}

.search-results-count {
    font-size: 12px;
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.search-results {
    max-height: 320px;
    overflow-y: auto;
    padding: 8px 0;
}

.search-category {
    margin-bottom: 4px;
}

.search-category-title {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    margin: 4px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background: #f8f9fa;
    border-left-color: #667eea;
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
}

.search-result-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
    line-height: 1.3;
}

.search-result-description {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 2px;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.search-result-price {
    color: #27ae60;
    font-weight: 600;
}

.search-result-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f39c12;
}

.search-result-category {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 1px 6px;
    border-radius: 8px;
    font-size: 10px;
}

.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.search-no-results-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.5;
}

.search-suggestions {
    border-top: 1px solid #e9ecef;
    padding: 12px 16px;
    background: #f8f9fa;
}

.search-suggestions-title {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.search-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.search-suggestion-tag {
    background: white;
    color: #6c757d;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-suggestion-tag:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Search Loading */
.search-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.search-loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Highlight search terms */
.highlight {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    font-weight: 600;
    padding: 0 2px;
    border-radius: 2px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 39px;
    flex-shrink: 0;
}

.nav-item {
    position: relative;
}

.nav-btn {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #6c757d;
}

.nav-btn i {
    font-size: 29px;
    color: #000;
}

/*.nav-btn:hover {*/
/*    background: #f8f9fa;*/
/*    color: #667eea;*/
/*    transform: scale(1.1);*/
/*}*/

/* Badge */
.badge {
    position: absolute;
    top: -2px;
    left: -2px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Login Button */
.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F2F3F6;
    color: #000;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.login-btn i {
    font-size: 24px;
}

.login-btn:hover {
    background: #F2F3F6;
    transform: translateY(-1px);
}

/* Profile Section */
.profile-dropdown {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    min-width: 143px;
}

.profile-btn:hover {
    background: #f8f9fa;
    color: #667eea;
    box-shadow: 0px 0px 0px;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 8px;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.profile-status {
    font-size: 11px;
    color: #f39c12;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.profile-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -88px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 278px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    text-align: right;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #667eea;
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 4px 0;
}

/* Enhanced Profile Menu */
.profile-menu {
    width: 320px;
    left: -40px;
    padding: 0;
}

.profile-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding:8px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
}

.profile-details {
    flex: 1;
}

.profile-name-large {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.profile-email {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.profile-badge {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.profile-stats {
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 13px;
    font-weight: 600;
    color: #27ae60;
}

.item-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.item-desc {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.3;
}

/* Enhanced Cart Dropdown */
.cart-menu {
    width: 335px;
    left: -151px;
    padding: 0;
    max-height: 500px;
    overflow-y: auto;
}

.cart-header {
    background: linear-gradient(135deg, #dbdde3, #e9e6ec);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.cart-items {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px 0;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: background 0.3s ease;
}

.cart-item p {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.cart-item:hover {
    background: #f8f9fa;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 2px;

}

.cart-item-meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 4px;
}

.cart-item-size,
.cart-item-quantity {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 600;
    color: #27ae60;
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-item:hover .cart-item-remove {
    opacity: 1;
}

.cart-item-remove:hover {
    background: #c82333;
    transform: scale(1.1);
}

.cart-summary {
    background: #f8f9fa;
    padding: 15px 20px;
}

.cart-total,
.cart-discount,
.cart-final-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-final-total {
    margin-bottom: 0;
    padding-top: 8px;
}

.total-label,
.discount-label,
.final-label {
    font-size: 13px;
    color: #6c757d;
}

.total-price,
.discount-price,
.final-price {
    font-size: 13px;
    font-weight: 600;
}

.total-price {
    color: #2c3e50;
}

.discount-price {
    color: #e74c3c;
}

.final-price {
    color: #27ae60;
    font-size: 14px;
}

.final-label {
    font-weight: 600;
    color: #2c3e50;
}

.cart-actions {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
}

.cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cart-btn.view-cart {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.cart-btn.view-cart:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
}

.cart-btn.checkout {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.cart-btn.checkout:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Responsive Cart */
@media (max-width: 768px) {
    .search-dropdown {
        top: 15%;
        width: 96dvw;
    }
    .cart-menu {
        width: 320px;
        left: -280px;
    }

    .cart-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .cart-item-image {
        width: 45px;
        height: 45px;
    }

    .cart-actions {
        flex-direction: column;
        padding: 12px 15px;
    }

    .cart-summary {
        padding: 12px 15px;
    }
}

/* اسکرول بار نازک و شفاف */
.cart-items::-webkit-scrollbar {
    width: 3px;
}

.cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
/* Navigation Bar */
.nav-bar {
    border-bottom: 0px solid #e9ecef;
}

.nav-bar.with-banner {
    top: 128px;
}

.nav-container {
    max-width:64dvw;
    margin: 7px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 20px;
    background: #fff;
    border-radius: 50px;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list-item {
    position: relative;
    margin-left: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 12px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.nav-link:hover {
    color: #667eea;
}

/*.nav-link.active {*/
/*    !*color: #fff;*!*/
/*    border-bottom-color: #667eea;*/
/*    background-color: #262262;*/

/*}*/

.nav-link.active span img {
    width: 33px;
    height: auto;
}

/* Submenu */
.submenu {
    width: 300px;
    position: absolute;
    top: 123%;
    right: -5px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 998;
    /*border-top: 3px solid #667eea;*/
}
.nav-list-item {
    position: relative;
}
.nav-list-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
    position: relative;
}

.submenu-item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.submenu-item:hover {
    background: #f8f9fa;
    color: #667eea;
    border-right-color: #667eea;
}

.submenu-item-tow {
    position: absolute;
    top:0px;
    right: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    /*border-top: 3px solid #667eea;*/
}
.submenu-item:hover .submenu-item-tow {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-icon {
    font-size: 16px;
    width: 40px;
    text-align: center;
}

.submenu-content {
    display: flex;
    flex-direction: column;
}

.submenu-title {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 2px;
}

.submenu-desc {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.3;
}


/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1002;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }

    .header-container {
        padding: 8px 15px;
        gap: 10px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .search-container {
        max-width: 98dvw;
        margin: auto;
        overflow: hidden;
        border-radius: 50px;
        display: flex;
        justify-content: center;
    }

    .nav-menu .nav-item:not(.profile-section) {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-bar {
        display: none;
    }

    .announcement-banner {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* Demo Content */
.demo-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.demo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.demo-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-4px);
}

.demo-buttons {
    text-align: center;
    margin: 30px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.demo-btn.secondary {
    background: #6c757d;
}

.search-results::-webkit-scrollbar {
    width: 5px;
}
.search-results::-webkit-scrollbar-thumb {
    background-color: #0a6aa1;
}

@media (max-width: 768px) and (max-width: 991px) {
    #mainHeader {
        display: none;
    }
}
