.cymbal-layout-container {
            margin: 20px 0;
        }

        .cymbal-stats {
            margin-bottom: 16px;
            color: var(--webflex-ui-text, #2e3137);
            font-size: 14px;
            text-align: right;
            font-family: "Lato", sans-serif;
        }
        
        .cymbal-filters-horizontal {
            margin-bottom: 30px;
        }
        
        .cymbal-content-full {
            width: 100%;
        }
        
        .cymbal-filters {
            padding: 20px;
            background: var(--webflex-light-bg, #efefef);
            border-radius: 0px;
            border: 1px solid var(--webflex-accent, #cea350);
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        
        .cymbal-filters .custom-dropdown {
            flex: 1;
            min-width: 145px;
            max-width: 200px;
        }
        
        .cymbal-filters form {
            margin-bottom: 20px;
        }

        .cymbal-filters form:last-child {
            margin-bottom: 0;
        }

        .cymbal-filters select,
        .artist-filters select {
            width: 100%;
            padding: 8px 32px 8px 12px;
            background-color: var(--webflex-light-bg, #efefef);
            border: 1px solid var(--webflex-accent, #cea350);
            color: var(--webflex-filter-text, #2e3137);
            border-radius: 0px;
            cursor: pointer;
            font-family: "Lato", sans-serif;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .cymbal-filters select option,
        .artist-filters select option {
            background-color: var(--webflex-light-bg, #efefef) !important;
            color: var(--webflex-filter-text, #2e3137);
            padding: 12px !important;
        }

        .cymbal-filters select option:hover,
        .cymbal-filters select option:focus,
        .cymbal-filters select option:active,
        .cymbal-filters select option:checked,
        .artist-filters select option:hover,
        .artist-filters select option:focus,
        .artist-filters select option:active,
        .artist-filters select option:checked {
            background-color: var(--webflex-accent, #cea350) !important;
            color: #ffffff !important;
        }
        
        .filtered-cymbals {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .cymbal-item {
            background: var(--webflex-light-bg, #efefef);
            padding: 20px;
            border-radius: 0px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(var(--webflex-accent-rgb), 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .cymbal-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(var(--webflex-accent-rgb), 0.1);
            border-color: rgba(var(--webflex-accent-rgb), 0.3);
        }
        
        .cymbal-item:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--webflex-accent, #cea350), var(--webflex-title-link-bg, #2e3137));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .cymbal-item:hover:before {
            opacity: 1;
        }
        
        .cymbal-title {
            margin: 0;
            padding: 10px 0;
            text-align: center;
            position: relative;
        }
        
        .cymbal-title a {
            color: var(--webflex-accent, #cea350);
            text-decoration: none;
            font-family: "Lato", sans-serif;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 16px;
            border-radius: 0px;
            background: var(--webflex-title-link-bg, #2e3137);
        }
        
        .cymbal-title a:hover {
            color: var(--webflex-title-link-hover-text, #ffffff);
            background: var(--webflex-title-link-hover-bg, #2e3137);
            transform: scale(1.02);
        }
        
        /* Mobil responsive düzenleme */
        @media (max-width: 768px) {
            .cymbal-filters {
                flex-direction: column;
                gap: 10px;
                padding: 15px;
            }
            
            .cymbal-filters .custom-dropdown {
                width: 100%;
                max-width: 100%;
            }
            
            .filtered-cymbals {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .cymbal-filters-horizontal {
                margin-bottom: 20px;
            }
        }
        
        .cymbal-image {
            margin-bottom: 15px;
        }
        
        .cymbal-image img {
            width: 100%;
            height: auto;
            border-radius: 0px;
            display: block;
        }
        
        .cymbal-content {
            color: var(--webflex-card-text, #2e3137);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            text-align: center;
        }
        
        .view-tc-button {
            display: inline-block;
            padding: 8px 20px;
            background: transparent;
            border: none;
            color: var(--webflex-accent, #cea350);
            text-decoration: none;
            border-radius: 0px;
            font-family: "Lato", sans-serif;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .view-tc-button:hover {
            background: transparent;
            color: var(--webflex-accent, #cea350);
        }

        /* Sayfalandırma Stilleri */
        .cymbal-pagination {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
            display: flex;
            justify-content: center;
        }

        .cymbal-pagination .page-numbers {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 5px;
            flex-wrap: wrap;
        }

        .cymbal-pagination .page-numbers li {
            display: inline-block;
        }

        .cymbal-pagination .page-numbers a,
        .cymbal-pagination .page-numbers span {
            display: block;
            padding: 8px 12px;
            background: var(--webflex-light-bg, #efefef);
            color: var(--webflex-pagination-text, #2e3137);
            text-decoration: none;
            border: 1px solid var(--webflex-accent, #cea350);
            border-radius: 0px;
            transition: all 0.3s ease;
            font-family: "Lato", sans-serif;
            font-size: 14px;
            min-width: 40px;
            text-align: center;
        }

        .cymbal-pagination .page-numbers a:hover {
            background: var(--webflex-accent, #cea350);
            color: #fff;
        }

        .cymbal-pagination .page-numbers .current {
            background: var(--webflex-accent, #cea350);
            color: #fff;
        }

        .cymbal-pagination .page-numbers .prev,
        .cymbal-pagination .page-numbers .next {
            padding: 8px 15px;
        }
        
        /* Mobil responsive düzenleme */
        @media (max-width: 768px) {
            .cymbal-layout-container {
                flex-direction: column;
            }
            
            .cymbal-sidebar {
                flex: none;
                width: 100%;
            }
        }

        /* Firefox için özel stiller */
        @-moz-document url-prefix() {
            .cymbal-filters select,
            .artist-filters select {
                color: var(--webflex-filter-text, #2e3137);
                background-color: var(--webflex-light-bg, #efefef);
            }
            
            .cymbal-filters select option,
            .artist-filters select option {
                background-color: var(--webflex-light-bg, #efefef);
            }
        }

        /* Edge ve IE için özel stiller */
        @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
            .cymbal-filters select,
            .artist-filters select {
                padding-right: 32px;
                background-image: none;
            }
        }

        /* Select elementlerinin focus durumunu düzelt */
        .cymbal-filters select:focus,
        .artist-filters select:focus {
            outline: none;
            box-shadow: none;
            border-color: var(--webflex-accent, #cea350);
        }

        /* Webkit için özel focus stilini kaldır */
        .cymbal-filters select:focus::-webkit-focus-ring-color,
        .artist-filters select:focus::-webkit-focus-ring-color {
            outline: none;
        }

        /* Firefox için özel focus stilini kaldır */
        .cymbal-filters select:-moz-focusring,
        .artist-filters select:-moz-focusring {
            color: transparent;
            text-shadow: 0 0 0 #dfe2e5;
        }

        /* Hover ile açılan dropdown */
        .cymbal-filters select,
        .artist-filters select {
            transition: all 0.3s ease;
        }

        .cymbal-filters select:hover,
        .artist-filters select:hover {
            cursor: pointer;
        }

        /* Select elementini hover durumunda otomatik aç */
        .cymbal-filters select:hover,
        .artist-filters select:hover {
            pointer-events: auto;
        }

        .cymbal-filters select:not(:hover),
        .artist-filters select:not(:hover) {
            pointer-events: none;
        }

        /* Dropdown açıldığında arka plan ve yazı renkleri */
        .cymbal-filters select option,
        .artist-filters select option {
            background-color: var(--webflex-light-bg, #efefef);
            color: var(--webflex-filter-text, #2e3137);
            padding: 12px;
            cursor: pointer;
        }

        /* Dropdown option hover durumu */
        .cymbal-filters select option:hover,
        .artist-filters select option:hover {
            background-color: var(--webflex-accent, #cea350) !important;
            color: #ffffff !important;
        }

        .cymbal-filters .custom-dropdown {
            position: relative;
            width: 100%;
        }

        .cymbal-filters .selected-option {
            padding: 8px 32px 8px 12px;
            background-color: var(--webflex-light-bg, #efefef);
            border: 1px solid var(--webflex-accent, #cea350);
            color: var(--webflex-filter-text, #2e3137);
            border-radius: 0px;
            cursor: pointer;
            font-family: "Lato", sans-serif;
        }

        .cymbal-filters .dropdown-options {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--webflex-light-bg, #efefef);
            border: 1px solid var(--webflex-accent, #cea350);
            border-radius: 0px;
            margin-top: 4px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
        }

        .cymbal-filters .dropdown-option {
            padding: 8px 12px;
            cursor: pointer;
            color: var(--webflex-filter-text, #2e3137);
        }

        .cymbal-filters .dropdown-option:hover {
            background-color: var(--webflex-accent, #cea350);
            color: #ffffff;
        }
