

.tekiner-kategori-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body .u-header,
body .u-header *,
body .u-footer,
body .u-footer *,
body header,
body header *,
body footer,
body footer *,
html .u-header,
html .u-header *,
html .u-footer,
html .u-footer * {
}

:root {
    --primary-color: #08428e;
    --primary-dark: #073670;
    --primary-light: #0d5cb8;
    --secondary-color: #ffffff;
    --accent-color: #00a651;
    --text-primary: #484848;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --border-light: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tekiner-kategori-page {
    background: #ffffff;
    min-height: 100vh;
    overflow: visible; 
}

.tekiner-kategori-page h1,
.tekiner-kategori-page h2,
.tekiner-kategori-page h3,
.tekiner-kategori-page h4,
.tekiner-kategori-page h5,
.tekiner-kategori-page h6 {
}

.container {
    max-width: 100%; 
    margin: 0;
    padding: 1.5rem 3cm 0; 
    overflow: visible; 
}

@media (max-width: 1199px) {
    .container {
        padding: 1.5rem 2cm 0;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 1.5rem 1cm 0;
    }
}

.breadcrumb {
    margin-bottom: 0;
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 400;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    margin-right: 2px;
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
    font-weight: 400;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #002741;
    font-weight: 700; 
    font-size: 15px;
}

.category-header {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2;
}

.category-description,
.category-description p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
}

.category-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.category-meta-marka .marka-filter-label {
    color: var(--text-secondary);
    font-size: 14px;
}
.category-meta-marka .marka-filter-name {
    font-weight: 600;
    color: var(--primary-color);
}

.category-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.product-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 6px 10px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: pulse-border 2s infinite;
}

.product-count svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 66, 142, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(8, 66, 142, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(8, 66, 142, 0);
    }
}

.product-count:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.product-count:hover svg {
    color: var(--white);
}

.page-stats {
    display: flex;
    align-items: center;
    gap: 16px; 
}

.view-count, .product-count {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    box-sizing: border-box;
    padding: 0 12px;
    background: transparent;
    border: 1px solid #e9ecef;
    border-radius: 0;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.product-count svg {
    animation: pulse-blue 2s infinite;
}

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

.sales-consultant-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    box-sizing: border-box;
    padding: 0 14px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    font-weight: 500;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.sales-consultant-btn:hover {
    background: #063a7a;
    border-color: #063a7a;
    color: #fff;
    box-shadow: 0 1px 3px rgba(8, 66, 142, 0.25);
}

.consultant-avatar {
    position: relative;
    display: flex;
    align-items: center;
}

.online-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 16px;
    background: #ffffff;
    color: #28a745;
    border: 2px solid #28a745;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 2px 4px;
}

.consultant-text {
    font-weight: 500;
    color: white;
}

.consultant-avatar {
    position: relative;
    display: flex;
    align-items: center;
}

.consultant-avatar svg {
    transition: transform 0.2s ease;
}

.view-count svg {
    color: var(--primary-color);
}

.social-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    
}

.share-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.share-btn, .like-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    box-sizing: border-box;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0; 
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.share-btn:hover, .like-btn:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.share-btn.active {
    background: #f8f9fa;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.share-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.25s ease, 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow: hidden;
    padding: 4px;
}

.share-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.share-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 2px 0;
}

.share-menu-item:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.share-menu-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #64748b;
    transition: all 0.2s ease;
}

.share-menu-item:hover svg {
    color: #3b82f6;
    transform: scale(1.1);
}

.like-btn.liked {
    background: #ffe6e6;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.like-btn.liked svg {
    fill: #ff6b6b;
}

.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    gap: 20px;
    flex-wrap: wrap;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.btn-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    box-sizing: border-box;
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filter:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-filter:focus,
.btn-filter:active {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(8, 66, 142, 0.2);
}

@media (max-width: 1023px) {
    .btn-filter {
        display: inline-flex !important;
    }
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
    height: 40px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    height: 100%;
    min-height: 40px;
    box-sizing: border-box;
    padding: 0 40px 0 40px; 
    border: 1px solid var(--border-color);
    font-size: 14px;
    transition: all 0.2s ease;
    background: var(--white);
}

.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.search-input::placeholder {
    font-size: 14px;
    font-weight: 400;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
}

.search-input:focus {
    outline: none !important;
    border-color: #08428e !important; 
    box-shadow: 0 0 0 2px rgba(8, 66, 142, 0.1) !important; 
}

.search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s ease;
    z-index: 10; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin: 0;
}

.search-clear:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.sort-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.sort-select {
    height: 40px;
    box-sizing: border-box;
    padding: 0 12px;
    padding-right: 28px;
    border: 1px solid var(--border-color);
    font-size: 13px;
    background: var(--white);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.view-toggle {
    display: inline-flex;
    align-items: stretch;
    height: 36px;
    gap: 2px;
    padding: 3px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.view-btn {
    height: 100%;
    min-width: 40px;
    box-sizing: border-box;
    padding: 0 14px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:first-child {
    border-radius: 0;
}

.view-btn:last-child {
    border-radius: 0;
}

.view-btn:hover {
    color: #334155;
    background: rgba(255, 255, 255, 0.8);
}

.view-btn.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 1px 3px rgba(8, 66, 142, 0.25);
}

.view-btn.active:hover {
    background: #063a7a;
    color: #fff;
}

.category-content {
    display: flex !important;
    gap: 0;
    align-items: flex-start;
    background: #ffffff;
    margin-top: 0;
    position: relative; 
    overflow: visible !important; 
    height: auto !important; 
}

.category-content::before {
    content: '';
    position: absolute;
    left: 300px; 
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e7eb;
    z-index: 1;
}

@media (min-width: 1024px) {
    .category-content::before {
        left: 280px; 
    }
}

.category-content.no-sidebar::before {
    display: none;
}

.category-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: #ffffff;
    border-right: none; 
    position: -webkit-sticky !important; 
    position: sticky !important; 
    top: 60px !important; 
    max-height: calc(100vh - 120px) !important; 
    overflow-y: auto;
    padding: 28px 0 28px 24px;
    transition: all 0.3s ease;
    align-self: flex-start !important; 
    z-index: 10; 
    will-change: transform; 
}

@media (min-width: 1024px) {
    .category-sidebar {
        width: 280px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        border-right: none; 
        padding: 20px 0;
        top: 60px !important; 
        max-height: calc(100vh - 120px); 
        position: sticky !important; 
    }
    
    .category-sidebar.hide {
        width: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        border-right: none;
        padding: 0;
    }
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 0 0;
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin: 0 !important;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.sidebar-close:hover {
    color: var(--text-primary);
}

.sidebar-content {
    padding: 0;
    overflow: visible !important; 
    height: auto !important; 
}

.filter-list {
    list-style: none;
    padding: 0 24px 0 0;
    margin: 0 24px 0 0;
    overflow: visible !important; 
    max-height: none !important;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.filter-list::-webkit-scrollbar {
    display: none !important; 
}

#orta-kategori-list {
    overflow: visible !important;
    max-height: none !important;
}

.filter-list:not(.alt-kategori-sublist) {
    overflow: visible !important;
    max-height: none !important;
}

.filter-group {
    margin-bottom: 32px;
    padding: 0 24px 0 0;
}

.filter-group:first-child {
    margin-top: 0;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-item {
    margin-bottom: 0;
    width: 100%;
    list-style: none;
}

.filter-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 14px 0;
    padding: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.current-category {
    background: #002741 !important;
    color: #ffffff !important;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    margin-left: 0;
    margin-right: 24px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    text-align: left;
    width: calc(100% - 24px);
    box-sizing: border-box;
    overflow: hidden;
}

.current-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.25) 55%, 
        rgba(255, 255, 255, 0.15) 60%, 
        transparent 70%, 
        transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite ease-in-out;
    width: 200%;
}

@keyframes shimmer {
    0% { 
        transform: translateX(-100%); 
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(100%); 
        opacity: 0;
    }
}

.current-category .filter-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #ffffff !important;
    flex: 1;
    min-width: 0;
    font-size: 15px;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
}

.current-category .filter-label span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.current-category .filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
    min-width: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    border-bottom: 1px solid #f3f4f6;
}

.filter-link::before {
    display: none;
}

.filter-link:hover {
    background: transparent;
    color: #002741;
    transform: none;
    box-shadow: none;
    font-weight: 500;
}

.filter-label {
    font-weight: 400;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    transition: all 0.2s ease;
    margin: 0;
}

.filter-label svg {
    display: none;
}

.filter-label span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.filter-count {
    background: #e5e7eb;
    color: var(--text-secondary);
    padding: 0;
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 10px;
    transition: all 0.2s ease;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-link:hover .filter-count {
    background: #002741;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

.no-subcategories {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.sidebar-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-all-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: var(--secondary-color);
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-all-products:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.category-main {
    flex: 1;
    min-width: 0;
    padding: 20px;
    background: #ffffff;
    overflow: visible !important; 
    position: relative; 
}

.search-results-info {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 16px 20px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, margin-bottom 0.3s ease, padding 0.3s ease !important;
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.search-results-info.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    max-height: 100px !important;
    margin-bottom: 20px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.search-results-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading-sweep 2s infinite;
    z-index: 1;
}

.search-results-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: loading-sweep 2.5s infinite;
    animation-delay: 0.5s;
    z-index: 1;
}

@keyframes loading-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.results-text {
    margin: 0 !important;
    color: var(--white) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: block !important;
    float: left !important;
    position: relative !important;
    z-index: 2 !important;
}

.btn-container {
    display: block !important;
    float: right !important;
    margin-left: auto !important;
    position: relative !important;
    z-index: 2 !important;
}

.btn-clear-search {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: none !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    border-radius: 4px !important;
    float: right !important;
}

.btn-clear-search:hover {
    background: var(--secondary-color) !important;
}

.products-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
    justify-items: stretch;
    overflow: visible !important; 
}

.products-grid.view-grid {
    grid-template-columns: repeat(4, 1fr);
    align-content: start;
}

@media (min-width: 1024px) {
    .products-grid.view-grid.no-sidebar {
        grid-template-columns: repeat(5, 1fr);
    }
}

.products-grid.view-list {
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px;
}

.nike-product-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    border-radius: 0; 
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-badge-bestseller-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: #002741;
    box-shadow: none;
    border-radius: 0;
    white-space: nowrap;
    transition: transform 0.25s ease;
    overflow: hidden;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-badge-bestseller-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-badge-bestseller-ribbon:hover::before {
    left: 100%;
}

.product-badge-bestseller-ribbon:hover {
    transform: translateY(-2px);
}

.product-badge-bestseller-ribbon::after {
    display: none;
}

.product-badge-bestseller-ribbon .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #fff;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.product-badge-bestseller-ribbon .badge-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: #fff;
}

.product-badge-bestseller-ribbon span:not(.badge-icon) {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: none;
}

footer,
.site-footer,
.u-footer {
    position: relative !important;
    z-index: 100 !important;
}

.nike-product-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(148, 163, 184, 0.18);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.tekiner-kategori-page .product-image-container,
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    padding-left: 14px;
    padding-right: 14px;
    box-sizing: border-box;
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    z-index: 1; 
}

.product-image-container:active {
    cursor: pointer;
}

.product-image-container:hover {
    cursor: pointer;
}

.product-image-container img {
    cursor: pointer;
    pointer-events: none; 
}

.product-image-container .product-image {
    cursor: pointer;
    pointer-events: none; 
}

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.product-image-placeholder .placeholder-text {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding: 20px;
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.product-image.active {
    opacity: 1;
}

.product-image.active {
    opacity: 1;
    z-index: 1; 
}

.product-image:not(.active) {
    opacity: 0;
    z-index: 0; 
}

.gallery-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 10; 
    pointer-events: none; 
}

.gallery-dots .dot {
    pointer-events: auto; 
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11; 
}

.dot.active {
    background: #09428e;
    transform: scale(1.2);
}

.nike-product-card:hover .product-image.active {
    transform: translate(-50%, -50%) scale(1.02);
    transition: transform 0.4s ease;
}

.product-info {
    padding: 18px 18px 14px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: #002741;
    margin: 0 0 0 !important; 
    padding-bottom: 9px !important; 
    border-bottom: 1px solid #c0c0c0 !important; 
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: auto !important; 
}

.product-category {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 8px 0 8px; 
    line-height: 1.3;
}

.nike-product-card:hover .product-category,
.product-link:hover .product-category {
    color: var(--text-secondary) !important;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-top: auto;
    min-height: 48px;
    justify-content: flex-end;
}

.product-options-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.product-options-row .color-options {
    width: auto;
}

.product-options-row .line-thickness {
    width: auto;
}

.color-options {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.95);
    cursor: default;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 
                0 0 0 2px rgba(255, 255, 255, 0.9);
}

.color-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 
                0 0 0 3px rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 1);
}

.color-circle.color-circle--split {
    background: linear-gradient(135deg, var(--c1, #000) 0%, var(--c1) 50%, var(--c2, #fff) 50%, var(--c2) 100%) !important;
}

.color-circle[style*="background-color: #FFFF00"],
.color-circle[style*="background-color: #FFD700"],
.color-circle[style*="background-color: #eab308"] {
    animation: yellowPulse 1.9s ease-in-out infinite;
}

@keyframes yellowPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 
                    0 0 0 2px rgba(255, 255, 255, 0.9);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3), 
                    0 0 0 3px rgba(255, 255, 255, 0.95);
    }
}

.color-circle[style*="background-color: #6600CC"],
.color-circle[style*="background-color: #800080"],
.color-circle[style*="background-color: #7c3aed"] {
    animation: purplePulse 1.6s ease-in-out infinite;
}

@keyframes purplePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 
                    0 0 0 2px rgba(255, 255, 255, 0.9);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 4px 10px rgba(147, 51, 234, 0.3), 
                    0 0 0 3px rgba(255, 255, 255, 0.95);
    }
}

.line-thickness {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
    padding: 0;
    width: 100%;
}

.line-thickness::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #09428e 0%, #0d5cb8 100%);
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
}

.product-detail-button {
    background: transparent;
    color: #000000;
    text-decoration: none;
    padding: 8px 12px;
    border: 2px solid #000000;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin: 0 0 0 0;
    width: auto;
    min-width: 120px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.product-detail-button:hover {
    background: #000000;
    color: #fff;
    border-color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.product-detail-button:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-detail-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-detail-button:hover::before {
    left: 100%;
}

.product-detail-button .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-detail-button:hover .arrow {
    transform: translateX(3px);
}

.filter-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.filter-dropdown-btn {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    background: #ffffff;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    transition: all 0.2s ease;
    box-shadow: none;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    position: relative;
}

.filter-dropdown-btn:hover {
    border-color: var(--primary-color);
    background: #fafbfc;
    box-shadow: none;
}

.filter-dropdown-btn.active {
    border-color: var(--primary-color);
    background: #fafbfc;
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: none;
}

.dropdown-selected {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-selected .color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.dropdown-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 8px;
    color: #64748b;
}

.filter-dropdown-btn:hover .dropdown-arrow,
.filter-dropdown-btn.active .dropdown-arrow {
    color: #3b82f6;
}

.filter-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.25s ease;
    pointer-events: none;
    padding: 6px;
}

.filter-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.filter-dropdown-menu::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 3px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

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

.filter-dropdown-item {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-radius: 0;
    margin: 0;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    position: relative;
    border-bottom: 1px solid #f3f4f6;
}

.filter-dropdown-item::before {
    display: none;
}

.filter-dropdown-item:hover {
    background: #fafbfc;
    color: var(--primary-color);
    transform: none;
    font-weight: 500;
}

.filter-dropdown-item.selected {
    background: #f0f4f8;
    color: var(--primary-color);
    font-weight: 600;
}

.filter-dropdown-item .color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 
                0 0 0 2px rgba(255, 255, 255, 0.8);
    transition: all 0.25s ease;
    position: relative;
}

.filter-dropdown-item:hover .color-circle {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 
                0 0 0 3px rgba(255, 255, 255, 0.9);
}

.filter-dropdown-item.selected .color-circle {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4), 
                0 0 0 3px rgba(59, 130, 246, 0.2);
    border-color: rgba(255, 255, 255, 1);
}

.filter-dropdown-item[data-value*="mm"] {
    position: relative;
    padding-left: 50px;
    display: flex;
    align-items: center;
}

.filter-dropdown-item[data-value*="mm"]::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 3px;
    background: #475569;
    border-radius: 2px;
    transition: all 0.25s ease;
    z-index: 1;
}

.filter-dropdown-item[data-value*="mm"] span {
    position: relative;
    z-index: 2;
    background: transparent;
}

.filter-dropdown-item[data-value*="mm"]:hover::after {
    background: #1e293b;
    height: 4px;
}

.filter-dropdown-item[data-value*="mm"].selected::after {
    background: #3b82f6;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
}

.bestseller-filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 0;
    background: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.bestseller-filter-checkbox:hover {
    border-color: #002741;
    background: #f8fafc;
}

.bestseller-filter-checkbox:checked {
    background: #002741 !important;
    border-color: #002741 !important;
    box-shadow: 0 2px 4px rgba(0, 39, 65, 0.25);
}

.bestseller-filter-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: 2px solid #ffffff;
    border-top: none;
    border-left: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bestseller-filter-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #475569;
    font-weight: 400;
}

.bestseller-filter-label:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.nike-product-card {
    cursor: pointer;
}

.nike-product-card .product-image-container {
    cursor: default !important;
}

.nike-product-card .product-image-container * {
    cursor: default !important;
}

.nike-product-card .product-image-container:hover {
    cursor: default !important;
}

.nike-product-card .product-image-container:hover * {
    cursor: default !important;
}

.nike-product-card .product-name {
    cursor: pointer;
}

.color-count {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-left: auto;
}

.thickness-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.thickness-value {
    color: var(--text-primary);
    font-weight: 600;
    background: var(--border-light);
    padding: 2px 6px;
    border-radius: 4px;
}

.product-description {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-details {
    margin-top: auto;
}

.details-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid var(--primary-color);
    background: var(--white);
    border-radius: 4px;
}

.details-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.details-link::after {
    content: '→';
    transition: transform 0.2s ease;
    font-weight: 700;
}

.details-link:hover::after {
    transform: translateX(2px);
}

.products-grid.view-list .nike-product-card {
    flex-direction: row; 
    height: auto;
    min-height: 140px;
}

.products-grid.view-list .product-link {
    flex-direction: row; 
    height: 100%;
    display: flex;
}

.products-grid.view-list .product-image-container {
    width: 140px;
    min-width: 140px;
    padding-top: 0;
    height: 140px;
    flex-shrink: 0;
}

.products-grid.view-list .product-info {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.products-grid.view-list .product-name {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-grid.view-list .product-description {
    -webkit-line-clamp: 2;
    font-size: 12px;
    margin-bottom: 6px;
    color: #666;
}

.products-grid.view-list .product-category {
    font-size: 11px;
    margin-bottom: 6px;
    color: #888;
}

.products-grid.view-list .product-colors,
.products-grid.view-list .product-line-thickness {
    font-size: 11px;
    margin-bottom: 4px;
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.loading-state .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-state p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.no-products {
    text-align: center !important;
    padding: 60px 20px !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 20px 0 !important;
    position: relative !important;
    z-index: 999 !important;
    grid-column: 1 / -1 !important;
    clear: both !important;
    min-height: 400px !important;
}

.products-grid.view-list .no-products {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
    float: none !important;
    min-height: 400px !important;
}

.no-products-icon {
    color: var(--text-muted);
    margin-bottom: 30px;
    opacity: 0.6;
    width: 80px;
    height: 80px;
}

.no-products h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin: 0 0 16px !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.no-products p {
    color: var(--text-secondary) !important;
    margin: 0 0 32px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 500px !important;
    text-align: center !important;
}

.no-products-empty-category p {
    margin-bottom: 0 !important;
}

.no-products-found {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin: 20px 0;
}

.no-products-found h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.no-products-found p {
    color: var(--text-secondary);
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 400px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.pagination {
    margin-top: 40px;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .dots {
    border: none;
    background: transparent;
}

@media (max-width: 1023px) {
    .tekiner-kategori-page > .container {
        padding-left: max(12px, env(safe-area-inset-left, 0px)) !important;
        padding-right: max(12px, env(safe-area-inset-right, 0px)) !important;
    }
    
    
    .category-sidebar {
        position: fixed;
        top: 0;
        left: -100% !important; 
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        max-height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        border: none;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        flex: none !important;
    }
    
    
    .category-sidebar.open {
        left: 0 !important;
        opacity: 1;
        visibility: visible;
    }
    
    
    .btn-filter {
        display: inline-flex !important;
    }
    
    .sidebar-close {
        display: flex;
    }
    
    
    .tekiner-kategori-page .category-content {
        width: 100% !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        flex-wrap: nowrap !important;
    }
    
    
    .tekiner-kategori-page .category-main {
        order: 1 !important;
    }
    
    
    .tekiner-kategori-page .category-sidebar {
        order: 2 !important;
    }
    
    
    .category-content::before {
        display: none !important;
    }
    
    
    .category-content.sidebar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
        display: block !important;
    }
    
    
    .category-content:not(.sidebar-open)::before {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    
    .category-main {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        padding: 12px 10px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    
    .products-grid,
    .tekiner-kategori-page #productsGrid.products-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        grid-auto-rows: minmax(min-content, auto);
    }
    
    .tekiner-kategori-page .products-grid .nike-product-card {
        height: auto !important;
        min-height: 0;
        align-self: start;
    }
    
    .products-grid.view-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .tekiner-kategori-page {
        padding: 0;
    }
    
    .category-header {
        padding: 16px 0;
        margin-bottom: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-info {
        width: 100%;
    }
    
    .category-stats {
        width: 100%;
        align-items: flex-start;
        margin-top: 12px;
    }
    
    .category-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    
    .category-meta {
        margin-top: 8px;
    }
    
    .category-toolbar {
        padding: 12px 0;
        margin-bottom: 0;
    }
    
    .tekiner-kategori-page .category-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .toolbar-left,
    .toolbar-right {
        width: 100%;
    }
    
    .tekiner-kategori-page .toolbar-right {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tekiner-kategori-page .sort-select {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
    }
    
    .search-box {
        max-width: none;
    }
    
    .products-grid.view-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tekiner-kategori-page .product-image-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .products-grid.view-list {
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    
    .products-grid.view-list .product-image-container {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }
    
    .products-grid.view-list .product-info {
        padding: 10px 12px;
    }
    
    .products-grid.view-list .product-name {
        font-size: 13px;
    }
    
    .products-grid.view-list .nike-product-card {
        min-height: 120px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    
    .product-badge-bestseller-ribbon {
        top: 10px;
        left: 10px;
        padding: 7px 12px;
        gap: 6px;
    }
    
    .product-badge-bestseller-ribbon .badge-icon {
        width: 14px;
        height: 14px;
    }
    
    .product-badge-bestseller-ribbon span:not(.badge-icon) {
        font-size: 10px;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 576px) {
    .tekiner-kategori-page > .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .tekiner-kategori-page .category-main {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
    
    .category-header {
        padding: 12px 0;
    }
    
    .category-title {
        font-size: 18px !important;
    }
    
    .breadcrumb-list {
        font-size: 12px;
    }
    
    .products-grid.view-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .tekiner-kategori-page .products-grid.view-grid {
        gap: 10px;
    }
    
    .tekiner-kategori-page .product-info {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .products-grid.view-list {
        grid-template-columns: 1fr; 
        gap: 10px;
    }
    
    .products-grid.view-list .product-link {
        flex-direction: row; 
    }
    
    .products-grid.view-list .product-image-container {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }
    
    .products-grid.view-list .product-info {
        padding: 8px 10px;
    }
    
    .products-grid.view-list .product-name {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .products-grid.view-list .product-description {
        font-size: 10px;
        -webkit-line-clamp: 2;
    }
    
    .products-grid.view-list .nike-product-card {
        min-height: 100px;
    }
    
    .view-toggle {
        display: none;
    }
    
    .btn-filter .btn-text {
        display: none;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-name {
        font-size: 12px;
        min-height: 32px;
    }
    
    
    .product-badge-bestseller-ribbon {
        top: 8px;
        left: 8px;
        padding: 6px 10px;
        gap: 5px;
    }
    
    .product-badge-bestseller-ribbon .badge-icon {
        width: 12px;
        height: 12px;
    }
    
    .product-badge-bestseller-ribbon span:not(.badge-icon) {
        font-size: 9px;
        letter-spacing: 0.05em;
    }
}

.consultant-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultant-modal.show {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: #fff;
    color: #333;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.consultant-header {
    padding: 32px 24px 24px;
    text-align: center;
    background: linear-gradient(135deg, #08428e 0%, #0d5cb8 100%);
    color: #fff;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.consultant-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.consultant-avatar-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.avatar-initials {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.online-text {
    font-size: 11px;
    font-weight: 600;
    color: #28a745;
}

.consultant-info {
    margin-top: 16px;
}

.consultant-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.consultant-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.consultant-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.consultant-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    padding: 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #08428e;
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 2px;
}

.stat-sublabel {
    font-size: 11px;
    color: #999;
    font-weight: 400;
}

.consultant-description {
    padding: 24px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    border-bottom: 1px solid #e9ecef;
}

.consultant-description p {
    margin: 0 0 12px;
}

.consultant-description p:last-child {
    margin-bottom: 0;
}

.consultant-contact {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-btn.phone {
    background: #08428e;
    color: #fff;
    border-color: #08428e;
    box-shadow: 0 2px 8px rgba(8, 66, 142, 0.2);
}

.contact-btn.phone:hover {
    background: #0d5cb8;
    border-color: #0d5cb8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 66, 142, 0.3);
}

.contact-btn.phone svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.95;
}

.contact-btn.phone span {
    letter-spacing: 0.3px;
}

.contact-btn.email {
    background: #ffffff;
    color: #08428e;
    border-color: #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-btn.email:hover {
    background: #f8f9fa;
    border-color: #08428e;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(8, 66, 142, 0.15);
}

.contact-btn.email svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #08428e;
}

.contact-btn.email span {
    color: #08428e;
}

.contact-btn svg {
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #09428e;
    flex-shrink: 0;
}

.contact-details {
        flex: 1;
    }
    
.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.4;
}

.contact-value:hover {
    color: #09428e;
}

.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

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

.contact-btn-modern svg {
    transition: transform 0.2s ease;
}

.contact-btn-modern:hover svg {
    transform: scale(1.1);
}

.phone-btn-modern {
    background: #28a745;
    color: white;
}

.phone-btn-modern:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.whatsapp-btn-modern {
    background: #25d366;
    color: white;
}

.whatsapp-btn-modern:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.email-btn-modern {
    background: #09428e;
    color: white;
}

.email-btn-modern:hover {
    background: #07316a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 66, 142, 0.3);
}

.footer-info {
    text-align: center;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

.response-time svg {
    color: #10b981;
}

.footer-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

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

.phone-btn {
    background: #28a745;
    color: white;
}

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

.email-btn {
    background: #09428e;
    color: white;
}

.email-btn:hover {
    background: #07316a;
    transform: translateY(-1px);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

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

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 16px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .modal-footer {
        padding: 14px;
        gap: 8px;
    }
    
    .contact-btn-modern {
        padding: 10px 6px;
        font-size: 11px;
    }
    
    .contact-btn-modern svg {
        width: 18px;
        height: 18px;
    }
    
    .stat-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .stat-badge strong {
        font-size: 12px;
    }
    
    .footer-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-btn {
        flex: none;
    }
    
    .consultant-avatar-large {
        width: 50px;
        height: 50px;
    }
    
    .consultant-info-header {
        gap: 12px;
    }
    
    .consultant-info-header {
        gap: 12px;
    }
    
    .consultant-avatar-large {
        width: 50px;
        height: 50px;
    }
    
    .consultant-name h3 {
        font-size: 16px;
    }
}

@media print {
    
    @page {
        size: A4;
        margin: 8mm 10mm;
    }
    
    @page:first {
        margin-top: 10mm;
    }
    
    
    header,
    .site-header,
    .category-header,
    .breadcrumb,
    .social-actions,
    .sort-wrapper,
    .filter-toggle-btn,
    .filtrele-btn,
    .consultant-modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .consultant-header {
        padding: 24px 20px 20px;
    }
    
    .consultant-avatar-circle {
        width: 80px;
        height: 80px;
    }
    
    .avatar-initials {
        font-size: 28px;
    }
    
    .consultant-name {
        font-size: 20px;
    }
    
    .consultant-stats {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 12px;
        padding: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .consultant-contact {
        padding: 16px 20px 20px;
    }
    
    .contact-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .consultant-btn,
    .modal,
    .consultant-modal,
    footer,
    .site-footer,
    .sidebar,
    .category-sidebar,
    .share-menu,
    nav,
    .navigation,
    .category-toolbar,
    .category-main > *:first-child:not(.products-grid),
    .page-stats {
        display: none !important;
    }
    
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.5;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    
    .tekiner-kategori-page {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        page-break-inside: avoid;
    }
    
    .category-main {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    
    .category-sidebar,
    .sidebar-content,
    .filter-group,
    .filter-list {
        display: none !important;
    }
    
    
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        page-break-before: auto !important;
        page-break-inside: avoid !important;
    }
    
    
    .nike-product-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 6px !important;
        border: 1px solid #ddd !important;
        border-radius: 0 !important; 
        box-shadow: none !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        background: white !important;
        height: auto !important;
        min-height: 180px !important;
        max-height: 220px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
    }
    
    .nike-product-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    
    .product-image-container {
        width: 100% !important;
        height: 90px !important;
        max-height: 90px !important;
        min-height: 90px !important;
        margin-bottom: 6px !important;
        background: white !important;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .product-image-container img {
        width: 100% !important;
        height: 100% !important;
        max-height: 90px !important;
        object-fit: contain !important;
    }
    
    
    .product-info {
        padding: 4px 8px 8px 8px !important;
        margin: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
    }
    
    .product-name {
        font-size: 11pt !important;
        font-weight: 700 !important;
        color: black !important;
        margin: 0 0 3px 0 !important;
        padding: 0 !important;
        background: transparent !important;
        line-height: 1.2 !important;
        min-height: auto !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }
    
    .product-category {
        font-size: 9pt !important;
        color: #666 !important;
        margin: 0 0 4px 0 !important;
        line-height: 1.2 !important;
    }
    
    .product-price {
        font-size: 11pt !important;
        font-weight: 700 !important;
        color: black !important;
        margin: 0 0 6px 0 !important;
        line-height: 1.2 !important;
    }
    
    
    .product-options {
        margin: 0 !important;
        padding: 4px 0 0 0 !important;
        border-top: 1px solid #ddd !important;
        font-size: 9pt !important;
        flex-shrink: 0;
    }
    
    .color-options {
        margin-bottom: 4px !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        flex-wrap: wrap !important;
    }
    
    .color-circle {
        width: 12px !important;
        height: 12px !important;
        border: 1px solid #ccc !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    .color-count,
    .line-thickness {
        font-size: 9pt !important;
        color: #666 !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }
    
    
    .product-badge-bestseller-ribbon {
        padding: 4px 8px !important;
        background: linear-gradient(135deg, #08428e 0%, #0d5cb8 100%) !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    .product-badge-bestseller-ribbon .badge-icon {
        font-size: 10pt !important;
    }
    
    .product-badge-bestseller-ribbon span:not(.badge-icon) {
        font-size: 8pt !important;
        letter-spacing: 0.4px !important;
    }
    
    
    .products-grid {
        orphans: 3 !important;
        widows: 3 !important;
    }
    
    .products-grid > * {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        page-break-before: auto !important;
    }
    
    
    .nike-product-card:nth-child(3n+1) {
        page-break-before: auto !important;
    }
    
    
    .nike-product-card {
        page-break-after: auto !important;
    }
    
    
    .category-content,
    .container {
        page-break-inside: avoid !important;
    }
    
    
    .share-btn,
    .like-btn,
    .product-card-link::after {
        display: none !important;
    }
    
    
    a {
        color: black !important;
        text-decoration: none !important;
    }
    
    
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    
    .container,
    .wrap,
    .main-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    
    .category-title,
    .page-title {
        font-size: 18pt !important;
        font-weight: 700 !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        color: black !important;
        page-break-after: avoid;
    }
    
    
    .product-count-btn {
        display: none !important;
    }
}

.orta-kategori-filter-btn {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

.orta-kategori-item {
    position: relative;
}

.alt-kategori-sublist {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-left: 20px !important;
    margin-top: 5px !important;
    border-left: 2px solid #e5e7eb;
    animation: slideDown 0.3s ease-out;
    max-height: 400px !important; 
    overflow-y: auto !important; 
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f1f1f1;
}

.alt-kategori-sublist::-webkit-scrollbar {
    width: 6px;
}

.alt-kategori-sublist::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.alt-kategori-sublist::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.alt-kategori-sublist::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.alt-kategori-sublist .filter-item {
    margin: 0 !important;
    padding: 5px 0 !important;
    min-height: 40px; 
    display: flex;
    align-items: center;
    flex-shrink: 0; 
}

.alt-kategori-sublist .filter-link {
    padding: 6px 12px !important;
    font-size: 13px !important;
    color: #6b7280 !important;
    transition: all 0.2s;
}

.alt-kategori-sublist .filter-link:hover {
    color: #002741 !important;
    background-color: #f3f4f6 !important;
    border-radius: 4px;
}

.alt-kategori-sublist .filter-item.active .filter-link {
    color: #002741 !important;
    font-weight: 600 !important;
    background-color: #e0e7ff !important;
}

.orta-kategori-arrow {
    transition: transform 0.3s ease !important;
    display: inline-block;
}

.orta-kategori-item.expanded .orta-kategori-arrow {
    transform: rotate(180deg) !important;
}

.orta-kategori-item.active .filter-link {
    color: #002741 !important;
    font-weight: 600 !important;
}

.orta-kategori-item.active .filter-link .filter-count {
    background: #002741 !important;
    color: #ffffff !important;
}

.filter-item.active .filter-link {
    color: #002741 !important;
    font-weight: 600 !important;
}

.filter-item.active .filter-link .filter-count {
    background: #002741 !important;
    color: #ffffff !important;
}

.kategori-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
}

.kategori-loader-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e5e7eb;
    border-top-color: #002741;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

.kategori-loader-text {
    margin-left: 10px;
    color: #666;
    font-size: 14px;
}

