/* Blockchain.com Style Header CSS */

/* Top Header Bar */
.blockchain-top-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 20px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: #ffffff !important;
    box-sizing: border-box;
    overflow: visible;
}

.blockchain-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    height: 100%;
    max-height: 33px;
}

.blockchain-logo:hover {
    color: #007bff;
}

.blockchain-logo-icon {
    width: 24px;
    height: 24px;
    background-color: #000000;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
}

.blockchain-logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 2px;
}

/* Search Container */
.blockchain-search-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 800px;
    margin: 0 16px;
    justify-content: center;
    height: 100%;
    max-height: 35px;
    box-sizing: border-box;
    overflow: visible !important;
}

.blockchain-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 600px;
    height: 35px;
    overflow: visible !important;
    z-index: 10000;
}


.blockchain-search-wrapper form {
    height: 35px;
    display: flex;
    align-items: center;
}

.blockchain-search-bar {
    width: 100%;
    padding: 5px 12px 5px 36px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    background-color: #f5f5f5;
    transition: all 0.2s ease;
    color: #1a1a1a;
    height: 100%;
    box-sizing: border-box;
}

.blockchain-search-bar::placeholder {
    color: #999;
    font-size: 13px;
}

.blockchain-search-bar:hover {
    background-color: #e9ecef;
}

.blockchain-search-bar:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.08), 0 1px 3px rgba(0,0,0,0.1);
}

.blockchain-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: color 0.2s ease;
}

.blockchain-search-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.blockchain-search-loading {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    color: #6c757d;
}

.blockchain-search-loading svg {
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blockchain-search-container .search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 10001 !important;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.blockchain-search-container .search-category-header {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    margin: 0;
    gap: 10px;
    justify-content: center;
}

.blockchain-search-container .search-category-line {
    flex: 0 0 auto;
    height: 0.5px;
    background: #e5e7eb;
    border: none;
    width: 40px;
}

.blockchain-search-container .search-category-name {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    white-space: nowrap;
    flex-shrink: 0;
}

.blockchain-search-container .search-result-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: #6b7280;
    font-weight: 300;
}

.blockchain-search-container .search-category-separator {
    display: none;
}

.blockchain-search-container .search-category-separator-other {
    display: none;
}

.blockchain-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 10001 !important;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-top: 4px;
}

.blockchain-search-result {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.blockchain-search-result:hover {
    background-color: #f8f9fa;
}

.blockchain-search-result:last-child {
    border-bottom: none;
}

.blockchain-search-result-title {
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
    font-size: 14px;
}

.blockchain-search-result-meta {
    font-size: 12px;
    color: #6c757d;
}

.blockchain-search-highlight {
    background-color: #fff3cd;
    padding: 1px 2px;
    border-radius: 2px;
    font-weight: 600;
}

/* Header Actions */
.blockchain-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
}

/* Theme Toggle - Removed */
/* Sign In Button - Removed */

/* Sidebar */
.blockchain-sidebar {
    position: fixed;
    top: 51px;
    left: 0;
    width: auto;
    min-width: fit-content;
    max-width: 260px;
    height: calc(100vh - 51px);
    background-color: #ffffff;
    border-right: 1px solid #e5e5e5;
    z-index: 999;
    overflow-y: auto;
    padding: 15px 0;
}

.blockchain-sidebar-nav {
    padding: 0 15px;
}

.blockchain-nav-section {
    margin-bottom: 20px;
}

.blockchain-nav-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding: 0 15px;
}

.blockchain-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blockchain-nav-item {
    margin-bottom: 1px;
}

.blockchain-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0 20px 20px 0;
    margin-right: 15px;
}

.blockchain-nav-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
    text-decoration: none;
}

.blockchain-nav-link.active {
    background-color: #007bff;
    color: #ffffff;
}

.blockchain-nav-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Crypto Section */
.blockchain-crypto-section {
    padding: 12px 2px;
    background: #ffffff;
    margin: 15px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}

.blockchain-crypto-title {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.blockchain-crypto-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
}

/* Make plugin output scrollable without cramping */
.blockchain-crypto-section > *:not(.blockchain-crypto-title) {
    max-height: none;
    overflow: visible;
    border-radius: 8px;
}

/* Generic table cleanup inside shortcode */
.blockchain-crypto-section table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff;
    font-size: 12px;
}

.blockchain-crypto-section thead {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ffffff;
    box-shadow: 0 1px 0 #f1f5f9;
}

.blockchain-crypto-section th,
.blockchain-crypto-section td {
    padding: 8px 10px !important;
    white-space: nowrap;
}

.blockchain-crypto-section tbody tr {
    border-bottom: 1px solid #f1f5f9;
}

.blockchain-crypto-section tbody tr:hover {
    background: #f8fafc;
}

/* Trim less important columns on narrow sidebar (keep first 3) */
.blockchain-crypto-section table tr > *:nth-child(n+4) {
    display: none;
}

/* If the shortcode outputs lists, make them modern chips */
.blockchain-crypto-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.blockchain-crypto-section li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    transition: background .2s ease, transform .1s ease;
}

.blockchain-crypto-section li:hover {
    background: #f8fafc;
}

.blockchain-crypto-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s ease;
    border-radius: 4px;
    padding-left: 6px;
    padding-right: 6px;
}

.blockchain-crypto-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

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

.blockchain-crypto-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blockchain-crypto-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #17a2b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
}

.blockchain-crypto-name {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
}

.blockchain-crypto-price {
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
}

.blockchain-crypto-change {
    font-size: 10px;
    color: #6c757d;
    margin-left: 6px;
}

.blockchain-crypto-change.positive {
    color: #28a745;
}

.blockchain-crypto-change.negative {
    color: #dc3545;
}

/* Main Content */
.blockchain-main-content {
    margin-left: auto; /* JavaScript ile dinamik ayarlanacak */
    margin-top: 0;
    padding: 40px 20px;
    min-height: calc(100vh - 70px);
    background-color: #ffffff;
}

/* Mobile Bottom Navigation */
.blockchain-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.blockchain-mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.blockchain-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 0;
    flex: 1;
}

.blockchain-mobile-nav-item:hover,
.blockchain-mobile-nav-item.active {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    text-decoration: none;
}

.blockchain-mobile-nav-item:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.blockchain-mobile-nav-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.blockchain-mobile-nav-item:hover .blockchain-mobile-nav-icon {
    transform: scale(1.1);
}

.blockchain-mobile-nav-label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blockchain-search-container {
        max-width: 500px;
    }
    
    .blockchain-search-wrapper {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .blockchain-search-container {
        max-width: 400px;
    }
    
    .blockchain-search-wrapper {
        max-width: 300px;
    }
    
    .blockchain-sidebar {
        width: auto;
        min-width: fit-content;
        max-width: 200px;
    }
    
    .blockchain-main-content {
        margin-left: auto; /* JavaScript ile dinamik ayarlanacak */
    }
}

@media (max-width: 768px) {
    .blockchain-sidebar {
        display: none !important;
    }
    
    .blockchain-main-content {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 80px;
        padding: 20px;
    }
    
    .blockchain-search-container {
        display: none;
    }
    
    .blockchain-mobile-bottom-nav {
        display: block;
    }
    
    .blockchain-top-header {
        padding: 0 15px;
    }
    
    .blockchain-logo {
        font-size: 16px;
    }
    
    .blockchain-theme-toggle,
    .blockchain-signin-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .blockchain-top-header {
        padding: 0 10px;
    }
    
    .blockchain-logo {
        font-size: 14px;
    }
    
    .blockchain-logo-icon {
        width: 20px;
        height: 20px;
    }
    
    .blockchain-logo-icon::before {
        width: 10px;
        height: 10px;
    }
    
    .blockchain-main-content {
        margin-top: 0;
        padding: 15px;
    }
    
    .blockchain-mobile-nav-items {
        padding: 0 5px;
    }
    
    .blockchain-mobile-nav-item {
        padding: 3px 5px;
    }
    
    .blockchain-mobile-nav-icon {
        width: 18px;
        height: 18px;
    }
    
    .blockchain-mobile-nav-label {
        font-size: 9px;
    }
}

/* Mobile More Modal */
.blockchain-mobile-more-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blockchain-mobile-more-modal.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.blockchain-mobile-more-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.blockchain-mobile-more-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.blockchain-mobile-more-modal.active .blockchain-mobile-more-modal-content {
    transform: translateY(0);
}

.blockchain-mobile-more-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.blockchain-mobile-more-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.blockchain-mobile-more-modal-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.blockchain-mobile-more-modal-close:hover {
    background-color: #f8f9fa;
    color: #000000;
}

.blockchain-mobile-more-modal-close:active {
    transform: scale(0.95);
}

.blockchain-mobile-more-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blockchain-mobile-more-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    padding: 15px;
    background-color: #f8f9fa;
}

.blockchain-mobile-more-modal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background-color: #ffffff;
    text-decoration: none;
    color: #000000;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 100px;
    gap: 10px;
}

.blockchain-mobile-more-modal-item:hover,
.blockchain-mobile-more-modal-item:focus {
    background-color: #f8f9fa;
    color: #007bff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.blockchain-mobile-more-modal-item:active {
    transform: translateY(0);
}

.blockchain-mobile-more-modal-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.blockchain-mobile-more-modal-item:hover .blockchain-mobile-more-modal-icon,
.blockchain-mobile-more-modal-item:focus .blockchain-mobile-more-modal-icon {
    transform: scale(1.1);
}

.blockchain-mobile-more-modal-item svg {
    width: 32px;
    height: 32px;
}

.blockchain-mobile-more-modal-label {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Responsive adjustments for modal */
@media (max-width: 480px) {
    .blockchain-mobile-more-modal-content {
        max-height: 90vh;
    }
    
    .blockchain-mobile-more-modal-header {
        padding: 18px;
    }
    
    .blockchain-mobile-more-modal-header h3 {
        font-size: 16px;
    }
    
    .blockchain-mobile-more-modal-grid {
        padding: 12px;
        gap: 8px;
    }
    
    .blockchain-mobile-more-modal-item {
        padding: 18px 12px;
        min-height: 90px;
        gap: 8px;
    }
    
    .blockchain-mobile-more-modal-icon {
        width: 28px;
        height: 28px;
    }
    
    .blockchain-mobile-more-modal-item svg {
        width: 28px;
        height: 28px;
    }
    
    .blockchain-mobile-more-modal-label {
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    .blockchain-mobile-more-modal {
        display: none !important;
    }
}

/* Dark Mode Styles - Removed */

/* Content starts after dark mode removal




























/* Dark mode content styling */





































/* Footer Positioning Fix */
.site-footer {
    margin-left: auto !important; /* JavaScript ile dinamik ayarlanacak */
    clear: both;
}

@media (max-width: 1024px) {
    .site-footer {
        margin-left: auto !important; /* JavaScript ile dinamik ayarlanacak */
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .site-footer {
        margin-left: 0 !important;
    }
}

/* Mobile Search Button */
.mobile-search-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    transition: all 0.2s ease;
    margin-left: 12px;
}

.mobile-search-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-search-btn:hover {
    color: #007bff;
    transform: scale(1.1);
}

.mobile-search-btn:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .blockchain-search-container {
        display: none !important;
    }
    
    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile Search Modal */
.mobile-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-search-modal.active {
    display: block;
    opacity: 1;
}

.mobile-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-search-container {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    margin: 80px auto 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease;
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-search-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.mobile-search-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-close:hover {
    background: #f5f5f5;
    color: #000;
}

.mobile-search-close:active {
    transform: scale(0.95);
}

.mobile-search-content {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.mobile-search-form {
    margin-bottom: 16px;
}

.mobile-search-input-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #f9f9f9;
    overflow: hidden;
    transition: all 0.2s ease;
}

.mobile-search-input-wrapper:focus-within {
    border-color: #007bff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.mobile-search-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: #f9f9f9;
    border-right: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.mobile-search-input-wrapper:focus-within .mobile-search-icon-container {
    background: #ffffff;
}

.mobile-search-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 16px;
    background: transparent;
    color: #1a1a1a;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.mobile-search-input:focus {
    outline: none;
}

.mobile-search-input::placeholder {
    color: #999;
}

.mobile-search-icon {
    color: #999;
    pointer-events: none;
}

.mobile-search-results {
    max-height: 400px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-search-results .search-category-header {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    margin: 0;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.mobile-search-results .search-category-line {
    flex: 0 0 auto;
    height: 0.5px;
    background: #e5e7eb;
    border: none;
    width: 40px;
}

.mobile-search-results .search-category-name {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-search-results .search-result-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 24px;
    color: #6b7280;
    font-weight: 300;
}

.mobile-search-results .search-category-separator {
    display: none;
}

.mobile-search-results .search-category-separator-other {
    display: none;
}

.mobile-search-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #1a1a1a;
    transition: background-color 0.2s ease;
    border-radius: 8px;
    margin-bottom: 2px;
}

.mobile-search-results .search-result-item:hover,
.mobile-search-results .search-result-item:active {
    background: #f8f9fa;
}

.mobile-search-results .search-result-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

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

.mobile-search-results .search-result-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-search-results .search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-search-results .search-category {
    font-size: 11px;
    color: #666;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
}

.mobile-search-results .search-loading,
.mobile-search-results .search-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .mobile-search-container {
        margin: 60px auto 0;
        max-height: calc(100vh - 60px);
        border-radius: 20px 20px 0 0;
    }
    
    .mobile-search-header {
        padding: 16px 20px;
    }
    
    .mobile-search-header h3 {
        font-size: 18px;
    }
    
    .mobile-search-content {
        padding: 20px;
    }
}
