    /* Category Page Styles - Mobile First Optimized */

    /* CRITICAL MOBILE RESET */
    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }

    @media (min-width: 769px) {
        .container {
            max-width: 1400px;
            padding: 0 30px;
        }
    }

    /* MOBILE CATEGORY LAYOUT OVERRIDE */
    .category-main {
        padding: 80px 0 60px;
        background: #f8f9fa;
    }

    /* IMAGE LOADING OPTIMIZATION */
    .product-image {
        background: #f8f9fa;
        position: relative;
    }

    .product-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(45deg, transparent 35%, #e9ecef 35%, #e9ecef 65%, transparent 65%);
        background-size: 20px 20px;
        animation: loading-shimmer 1.5s infinite;
        border-radius: 4px;
        z-index: 1;
    }

    .product-image img[loading="lazy"] {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .product-image img[loading="lazy"].loaded,
    .product-image img:not([loading="lazy"]) {
        opacity: 1;
    }

    .product-image img.loaded + ::before {
        display: none;
    }

    @keyframes loading-shimmer {
        0% { opacity: 0.6; }
        50% { opacity: 1; }
        100% { opacity: 0.6; }
    }

    .category-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }

    @media (min-width: 769px) {
        .category-layout {
            grid-template-columns: 280px 1fr;
            gap: 40px;
            margin-top: 30px;
        }
    }

    /* DESKTOP SIDEBAR */
    .category-sidebar.desktop-only {
        display: none;
    }

    @media (min-width: 769px) {
        .category-sidebar.desktop-only {
            display: block !important;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 140px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            order: 1;
            width: 280px;
            min-width: 280px;
        }
    }

    /* MOBILE CONTENT AREA */
    .category-content {
        background: #ffffff;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        width: 100%;
        order: 1;
    }

    @media (min-width: 769px) {
        .category-content {
            padding: 30px;
            border-radius: 12px;
            order: 2;
        }
    }

    /* PRODUCTS GRID - RESPONSIVE DESIGN */
    .products-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 100%;
        margin: 0;
        padding: 0;
        contain: layout style;
    }

    @media (min-width: 576px) {
        .products-grid {
            gap: 20px;
        }
    }

    @media (min-width: 769px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            justify-items: center;
        }
    }

    @media (min-width: 1024px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            justify-items: center;
        }
    }

    @media (min-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 45px;
            justify-items: center;
        }
    }

    @media (min-width: 1400px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            justify-items: center;
        }
    }

    /* ========================================
    DESKTOP PRODUCT CARD - CLEAN REDESIGN
    ======================================== */

    @media (min-width: 769px) {
        /* Desktop Product Card Container */
        .product-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: 100%;
            max-width: 400px;
            position: relative;
            overflow: hidden;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            height: fit-content;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #e0e0e0;
        }

        /* Desktop Product Image */
        .product-image {
            position: relative;
            margin-bottom: 0;
            overflow: hidden;
            border-radius: 16px 16px 0 0;
            aspect-ratio: 1;
            width: 100%;
            background: #f8f9fa;
            flex-shrink: 0;
        }

        .product-image a {
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: block;
            opacity: 1;
            filter: none;
            will-change: transform;
            image-rendering: auto;
            image-rendering: -webkit-optimize-contrast;
            background-color: #f8f9fa;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        /* Desktop Product Actions */
        .product-actions {
            position: absolute;
            top: 16px;
            right: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 10;
        }

        .product-card:hover .product-actions {
            opacity: 1;
        }

        .wishlist-btn,
        .quick-view-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .wishlist-btn:hover,
        .quick-view-btn:hover {
            background: #000;
            color: #ffffff;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        /* Desktop Product Info */
        .product-info {
            padding: 20px;
            text-align: left;
            background: #ffffff;
            border-radius: 0 0 16px 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
            gap: 8px;
        }

        /* Desktop Product Title */
        .product-title {
            margin-bottom: 0;
            flex-shrink: 0;
        }

        .product-title a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            line-height: 1.4;
            display: block;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-clamp: 2;
            max-height: 2.8em;
            transition: color 0.3s ease;
        }

        .product-title a:hover {
            color: #666;
            text-decoration: none;
        }

        /* Desktop Product Price */
        .product-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0;
            flex-wrap: wrap;
            flex-shrink: 0;
        }

        .current-price {
            font-weight: 700;
            font-size: 20px;
            color: #1a1a1a;
            font-family: 'Poppins', sans-serif;
        }

        .old-price {
            color: #999;
            text-decoration: line-through;
            font-size: 14px;
            font-weight: 500;
        }

        /* Desktop Add to Cart Button */
        .add-to-cart-btn {
            width: 100%;
            padding: 14px 20px;
            background: #1a1a1a;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            min-height: 48px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex-shrink: 0;
            margin-top: auto;
        }

        .add-to-cart-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Desktop Product Badge */
        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #ff4757;
            color: #fff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
        }
    }

    /* ========================================
    MOBILE PRODUCT CARD STYLES
    ======================================== */

    @media (max-width: 768px) {
        /* Mobile Product Card - Enlarged */
        .product-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            width: 100%;
            min-width: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Mobile Product Image - Enlarged */
        .product-image {
            position: relative;
            margin-bottom: 0;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
            aspect-ratio: 1;
            width: 100%;
            background: #fff;
            flex-shrink: 0;
        }

        .product-image a {
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            opacity: 1;
            filter: none;
            background: #f8f9fa;
            will-change: auto;
            image-rendering: auto;
            image-rendering: -webkit-optimize-contrast;
            max-width: 100%;
            min-height: 180px;
            border-radius: 0;
        }

        /* Mobile Product Info - Enlarged */
        .product-info {
            text-align: center;
            width: 100%;
            padding: 12px;
            background: #ffffff;
            border-radius: 0 0 12px 12px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-title {
            margin-bottom: 10px;
        }

        .product-title a {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            line-height: 1.3;
            display: block;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-clamp: 2;
            max-height: 2.6em;
        }

        @media (min-width: 576px) {
            .product-title a {
                font-size: 15px;
            }
        }

        /* Mobile Product Price - Enlarged */
        .product-price {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .current-price {
            font-weight: 700;
            font-size: 15px;
            color: #000;
            font-family: 'Poppins', sans-serif;
        }

        @media (min-width: 576px) {
            .current-price {
                font-size: 16px;
            }
        }

        .old-price {
            color: #999;
            text-decoration: line-through;
            font-size: 12px;
        }

        @media (min-width: 576px) {
            .old-price {
                font-size: 14px;
            }
        }

        /* Mobile Add to Cart Button - Enlarged */
        .add-to-cart-btn {
            width: 100%;
            padding: 10px 12px;
            background: #000;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            min-height: 40px;
            transition: all 0.3s ease;
            margin-top: auto;
            flex-shrink: 0;
        }

        @media (min-width: 576px) {
            .add-to-cart-btn {
                padding: 12px 16px;
                font-size: 14px;
                min-height: 44px;
            }
        }

        /* Mobile Actions Buttons - Enlarged */
        .product-actions {
            position: absolute;
            top: 8px;
            right: 8px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            opacity: 0.8;
        }

        .wishlist-btn,
        .quick-view-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            color: #666;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
        }

        /* Hide quick view on mobile */
        .quick-view-btn {
            display: none !important;
        }

        /* Mobile Product Badge - Enlarged */
        .product-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #ff4757;
            color: #fff;
            padding: 4px 8px;
            border-radius: 14px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 2px 6px rgba(255, 71, 87, 0.25);
        }
    }

    /* ========================================
    MOBILE FILTER BUTTONS
    ======================================== */

    .mobile-filter-toggle {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    @media (min-width: 769px) {
        .mobile-filter-toggle {
            display: none;
        }
    }

    .filter-toggle-btn,
    .sort-toggle-btn {
        padding: 14px 20px;
        border: 2px solid #e9ecef;
        background: #ffffff;
        border-radius: 12px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        color: #333;
        min-height: 48px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .filter-toggle-btn:hover,
    .sort-toggle-btn:hover {
        border-color: #000;
        background: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .filter-toggle-btn:active,
    .sort-toggle-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .filter-toggle-btn i,
    .sort-toggle-btn i {
        font-size: 16px;
        color: #666;
    }

    .filter-toggle-btn:hover i,
    .sort-toggle-btn:hover i {
        color: #000;
    }

    /* ========================================
    CATEGORY HEADER
    ======================================== */

    .category-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
    }

    .category-header h1 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 4px;
        font-family: 'Poppins', sans-serif;
    }

    .category-header p {
        color: #666;
        font-size: 12px;
        margin: 0;
    }

    @media (min-width: 769px) {
        .category-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .category-header h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .category-header p {
            font-size: 1rem;
        }
    }

    /* ========================================
    DESKTOP ELEMENTS HIDE
    ======================================== */

    .desktop-only {
        display: none;
    }

    @media (min-width: 769px) {
        .desktop-only {
            display: block !important;
        }
    }

    /* ========================================
    DESKTOP SIDEBAR STYLES
    ======================================== */

    @media (min-width: 769px) {
        .filter-section {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e0e0e0;
        }

        .filter-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .filter-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #000;
            font-family: 'Poppins', sans-serif;
        }

        .category-filters {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .category-group {
            display: flex;
            flex-direction: column;
        }

        .category-filter {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 15px;
            color: #666;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
        }

        .category-filter:hover {
            background: #f8f9fa;
            color: #000;
            text-decoration: none;
        }

        .category-filter.active {
            background: #000;
            color: #ffffff;
        }

        .parent-category {
            font-weight: 600;
        }

        .toggle-icon {
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .toggle-icon i {
            font-size: 12px;
            color: #999;
        }

        .parent-category:hover .toggle-icon i {
            color: #666;
        }

        .parent-category.active .toggle-icon i {
            color: #ffffff;
        }

        .subcategories {
            margin-left: 15px;
            margin-top: 5px;
            display: none;
        }

        .subcategories .category-filter {
            padding: 8px 15px;
            font-size: 0.9em;
            font-weight: 400;
        }

        .subcategory {
            background: #f8f9fa;
        }

        .subcategory:hover {
            background: #e9ecef;
        }

        .subcategory.active {
            background: #333;
            color: #ffffff;
        }

        /* Alt kategori gösterimi */
        .subcategory-prefix {
            display: none; /* -- işaretini gizle */
        }

        .subcategory::before {
            content: '▶';
            color: #999;
            font-size: 0.8em;
            margin-right: 8px;
            font-weight: normal;
        }

        .subcategory.active::before {
            color: #ffffff;
        }

        .price-filter {
            margin-top: 15px;
        }

        .price-inputs {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
        }

        .price-inputs input {
            flex: 1;
            padding: 10px 8px;
            border: 2px solid #e9ecef;
            border-radius: 6px;
            font-size: 13px;
            min-width: 0;
            max-width: 70px;
            box-sizing: border-box;
            background: #ffffff;
            transition: border-color 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .price-inputs input:focus {
            outline: none;
            border-color: #000;
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }

        .price-inputs span {
            color: #666;
            font-weight: 500;
            font-size: 12px;
            min-width: 12px;
            text-align: center;
        }

        .filter-btn {
            width: 100%;
            padding: 10px 16px;
            background: #000;
            color: #ffffff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            min-height: 40px;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .filter-btn:hover {
            background: #333;
            transform: translateY(-1px);
        }

        .filter-btn i {
            font-size: 14px;
        }

        .sort-options select {
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            background: #fff;
            cursor: pointer;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            min-width: 180px;
            font-size: 14px;
            color: #333;
            transition: all 0.3s ease;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 40px;
        }

        .sort-options select:focus {
            outline: none;
            border-color: #000;
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }

        .sort-options select:hover {
            border-color: #000;
        }

        .sort-filter select {
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            background: #fff;
            cursor: pointer;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            width: 100%;
            font-size: 14px;
            color: #333;
            transition: all 0.3s ease;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 40px;
        }

        .sort-filter select:focus {
            outline: none;
            border-color: #000;
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }

        .sort-filter select:hover {
            border-color: #000;
        }
    }

    /* ========================================
    RESPONSIVE DESIGN
    ======================================== */

    @media (max-width: 1024px) {
        .category-content {
            grid-template-columns: 250px 1fr;
            gap: 30px;
        }
        
        .category-layout {
            grid-template-columns: 250px 1fr;
            gap: 30px;
        }
        
        .category-sidebar {
            padding: 20px;
        }
    }

    @media (max-width: 768px) {
        .category-main {
            padding: 80px 0 60px;
        }
        
        .category-layout {
            grid-template-columns: 1fr;
            gap: 0;
        }
        
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
    }



    /* ========================================
    UTILITY CLASSES
    ======================================== */

    .no-products {
        text-align: center;
        padding: 80px 20px;
        color: #666;
    }

    .no-products i {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 30px;
    }

    .no-products h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 15px;
        font-family: 'Poppins', sans-serif;
    }

    .no-products p {
        color: #666;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .no-products .btn-primary {
        background: #000;
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        font-family: 'Poppins', sans-serif;
    }

    .no-products .btn-primary:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        color: #ffffff;
    }

    /* ========================================
    PAGINATION
    ======================================== */

    .pagination-section {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .pagination {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .page-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-decoration: none;
        color: #666;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .page-link:hover {
        background: #f8f9fa;
        border-color: #000;
        color: #000;
    }

    .page-link.active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    .page-link.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .page-dots {
        padding: 0 10px;
        color: #999;
    }

    /* ========================================
    MOBILE RESPONSIVE IMPROVEMENTS
    ======================================== */

    @media (max-width: 768px) {
        body {
            overflow-x: hidden;
        }
        
        .container {
            padding: 0 15px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .category-content {
            padding: 15px;
            box-sizing: border-box;
        }
        
        .products-grid {
            width: 100%;
            box-sizing: border-box;
        }
        
        .product-card {
            min-width: 0;
            box-sizing: border-box;
        }
        
        .product-image img {
            max-width: 100%;
            width: 100%;
            height: auto;
        }
        
        .category-layout {
            gap: 15px;
        }
        
        .sort-options.desktop-only {
            display: none !important;
        }
        
        .mobile-filter-toggle {
            margin-bottom: 15px;
        }
        
        .category-header h1 {
            font-size: 1.25rem;
            margin-bottom: 5px;
        }
        
        .category-header p {
            font-size: 13px;
        }
    }

    /* ========================================
    IMAGE CLARITY FIXES
    ======================================== */

    .product-image::before,
    .product-image::after {
        display: none !important;
        content: none !important;
    }

    .product-card::before,
    .product-card::after {
        display: none !important;
        content: none !important;
    }

    .product-image img {
        -webkit-filter: none !important;
        filter: none !important;
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
        background-color: transparent !important;
        mix-blend-mode: normal !important;
    }

    .product-image .overlay,
    .product-card .overlay {
        display: none !important;
    }

    .product-card,
    .product-image,
    .product-info {
        opacity: 1 !important;
        background: #fff !important;
    }

    .product-image {
        background: #fff !important;
    }

    .product-image,
    .product-image img {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
        -webkit-filter: none !important;
    } 

    /* ========================================
    MOBILE SORT MODAL
    ======================================== */

    .mobile-sort-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        align-items: flex-end;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-sort-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-sort-modal .modal-content {
        background: #fff;
        border-radius: 20px 20px 0 0;
        width: 100%;
        max-height: 70vh;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-sort-modal.active .modal-content {
        transform: translateY(0);
    }

    .mobile-sort-modal .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e9ecef;
    }

    .mobile-sort-modal .modal-header h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #000;
        margin: 0;
        font-family: 'Poppins', sans-serif;
    }

    .mobile-sort-modal .modal-close {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #f8f9fa;
        border: none;
        color: #666;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-sort-modal .modal-close:hover {
        background: #000;
        color: #fff;
    }

    .sort-options-mobile {
        padding: 20px;
    }

    .sort-option {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
        color: #666;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 10px;
        border: 2px solid transparent;
    }

    .sort-option:hover {
        background: #f8f9fa;
        color: #000;
        text-decoration: none;
    }

    .sort-option.active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    .sort-option i {
        font-size: 16px;
        width: 20px;
    }

    /* ========================================
    MOBILE OVERLAY
    ======================================== */

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* ========================================
    MOBILE SIDEBAR ANIMATION IMPROVEMENTS
    ======================================== */



    /* ========================================
    MOBILE FILTER MODAL - SIFIRDAN YENİ TASARIM
    ======================================== */

    .mobile-filter-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        display: flex;
        align-items: flex-end;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-filter-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-filter-modal .modal-content {
        background: #fff;
        border-radius: 24px 24px 0 0;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.15);
    }

    .mobile-filter-modal.active .modal-content {
        transform: translateY(0);
    }

    .mobile-filter-modal .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 16px;
        border-bottom: 1px solid #f0f0f0;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
        border-radius: 24px 24px 0 0;
    }

    .mobile-filter-modal .modal-header h3 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin: 0;
        font-family: 'Poppins', sans-serif;
    }

    .mobile-filter-modal .modal-close {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f8f9fa;
        border: none;
        color: #666;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .mobile-filter-modal .modal-close:hover {
        background: #000;
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Filter Options Container - Compact */
    .filter-options-mobile {
        padding: 16px;
        padding-bottom: 32px;
    }

    /* Filter Sections - Compact */
    .mobile-filter-modal .filter-section {
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-filter-modal .filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .mobile-filter-modal .filter-section h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #000;
        font-family: 'Poppins', sans-serif;
    }

    /* Filter Options */
    .mobile-filter-modal .filter-options {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .category-group-mobile {
        display: flex;
        flex-direction: column;
    }

    .mobile-filter-modal .filter-option {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
        color: #333;
        text-decoration: none;
        border-radius: 16px;
        transition: all 0.3s ease;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        border: 2px solid transparent;
        background: #f8f9fa;
        font-size: 16px;
    }

    .mobile-filter-modal .filter-option:hover {
        background: #f0f0f0;
        color: #000;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .mobile-filter-modal .filter-option.active {
        background: #000;
        color: #fff;
        border-color: #000;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .mobile-filter-modal .parent-category {
        font-weight: 600;
    }

    .mobile-filter-modal .toggle-icon {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .mobile-filter-modal .toggle-icon i {
        font-size: 14px;
        color: #999;
    }

    .mobile-filter-modal .parent-category:hover .toggle-icon i {
        color: #666;
    }

    .mobile-filter-modal .parent-category.active .toggle-icon i {
        color: #ffffff;
    }

    .subcategories-mobile {
        margin-left: 20px;
        margin-top: 8px;
        display: none;
    }

    .subcategories-mobile .filter-option {
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 400;
        background: #f0f0f0;
    }

    .subcategories-mobile .subcategory {
        background: #f0f0f0;
    }

    .subcategories-mobile .subcategory:hover {
        background: #e9ecef;
    }

    .subcategories-mobile .subcategory.active {
        background: #333;
        color: #ffffff;
    }

    /* Mobile alt kategori gösterimi */
    .subcategories-mobile .subcategory-prefix {
        display: none; /* -- işaretini gizle */
    }

    .subcategories-mobile .subcategory::before {
        content: '▶';
        color: #999;
        font-size: 0.8em;
        margin-right: 8px;
        font-weight: normal;
    }

    .subcategories-mobile .subcategory.active::before {
        color: #ffffff;
    }

    .mobile-filter-modal .filter-option i {
        font-size: 18px;
        width: 24px;
        text-align: center;
    }

    /* Price Filter Form - Mobile Compact */
    .mobile-filter-modal .price-filter-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-filter-modal .price-inputs {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-filter-modal .price-inputs input {
        flex: 1;
        padding: 14px 12px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        background: #fff;
        color: #333;
        transition: all 0.3s ease;
        min-height: 48px;
        max-width: 120px;
    }

    .mobile-filter-modal .price-inputs input:focus {
        outline: none;
        border-color: #000;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    }

    .mobile-filter-modal .price-inputs input::placeholder {
        color: #999;
        font-weight: 400;
        font-size: 13px;
    }

    .mobile-filter-modal .price-separator {
        color: #666;
        font-weight: 600;
        font-size: 16px;
        padding: 0 4px;
        min-width: 20px;
        text-align: center;
    }

    /* Apply Filter Button - Mobile Compact */
    .mobile-filter-modal .apply-filter-btn {
        width: 100%;
        padding: 14px 20px;
        background: #000;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .mobile-filter-modal .apply-filter-btn:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .mobile-filter-modal .apply-filter-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .mobile-filter-modal .apply-filter-btn i {
        font-size: 16px;
    }

    /* Mobile Filter Toggle Buttons */
    @media (max-width: 768px) {
        .mobile-filter-toggle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
            padding: 0 20px;
        }

        .filter-toggle-btn,
        .sort-toggle-btn {
            padding: 16px 24px;
            border: 2px solid #e9ecef;
            background: #ffffff;
            border-radius: 16px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 15px;
            color: #333;
            min-height: 56px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .filter-toggle-btn::before,
        .sort-toggle-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .filter-toggle-btn:hover::before,
        .sort-toggle-btn:hover::before {
            left: 100%;
        }

        .filter-toggle-btn:hover,
        .sort-toggle-btn:hover {
            border-color: #000;
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .filter-toggle-btn:active,
        .sort-toggle-btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .filter-toggle-btn i,
        .sort-toggle-btn i {
            font-size: 18px;
            color: #666;
            transition: color 0.3s ease;
        }

        .filter-toggle-btn:hover i,
        .sort-toggle-btn:hover i {
            color: #000;
        }
    } 

    /* Mobile Price Inputs - Ultra Compact */
    @media (max-width: 480px) {
        .mobile-filter-modal .price-inputs {
            gap: 6px;
        }
        
        .mobile-filter-modal .price-inputs input {
            padding: 12px 8px;
            font-size: 13px;
            min-height: 44px;
            max-width: 100px;
        }
        
        .mobile-filter-modal .price-separator {
            font-size: 14px;
            padding: 0 2px;
            min-width: 16px;
        }
        
        .mobile-filter-modal .apply-filter-btn {
            padding: 12px 16px;
            font-size: 14px;
            min-height: 44px;
        }
    }

    @media (max-width: 360px) {
        .mobile-filter-modal .price-inputs input {
            max-width: 80px;
            font-size: 12px;
            padding: 10px 6px;
        }
        
        .mobile-filter-modal .price-separator {
            font-size: 12px;
            min-width: 12px;
        }
    } 