#page-products .ev-model-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#page-products .ev-model-card:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

#page-products .ev-model-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

#page-products .ev-model-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

#page-products .ev-model-image img {
    width: 100%;
    padding: 20px;
    transition: transform 0.5s ease;
}

#page-products .ev-model-card:hover .ev-model-image img {
    transform: scale(1.05);
}

#page-products .ev-model-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#page-products .ev-model-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#page-products .ev-specs-table {
    width: 100%;
    margin-bottom: 25px;
}

#page-products .ev-specs-table tr {
    border-bottom: 1px solid #ecf0f1;
}

#page-products .ev-specs-table tr:last-child {
    border-bottom: none;
}

#page-products .ev-specs-table td {
    padding: 12px 5px;
    font-size: 14px;
}

#page-products .spec-label {
    font-weight: 600;
    color: #7f8c8d;
    width: 50%;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

#page-products .spec-value {
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
    font-size: 15px;
}

#page-products .ev-price-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: auto;
}

#page-products .price-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

#page-products .price-value {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#page-products .teklif-btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px 5px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#page-products .teklif-btn:hover {
    background: transparent;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#page-products .detay-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

#page-products .detay-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: white;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    #page-products .ev-model-content {
        flex-direction: column;
    }

    #page-products .ev-model-image {
        flex: 0 0 auto;
        height: 250px;
    }

    #page-products .ev-model-image img {
        padding: 10px;
    }

    #page-products .ev-model-details {
        padding: 20px;
    }

    #page-products .ev-model-title {
        font-size: 22px;
    }

    #page-products .price-value {
        font-size: 26px;
    }

    #page-products .teklif-btn,
    #page-products .detay-btn {
        display: block;
        margin: 10px 0;
    }
}

/* Filtre Toggle Butonu */
.filter-toggle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.filter-toggle-btn svg {
    transition: transform 0.3s ease;
}

.filter-toggle-btn.active svg {
    transform: rotate(180deg);
}

/* Filtre Konteyneri */
.ev-filters-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.ev-filters-container.active {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 30px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.filter-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Range Input Styles */
.range-input-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s;
}

.range-input-container:hover {
    border-color: #667eea;
}

.range-input-container label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
    font-size: 13px;
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-inputs input {
    flex: 1;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.range-inputs input:focus {
    outline: none;
    border-color: #667eea;
}

.range-inputs span {
    color: #adb5bd;
    font-weight: bold;
}

/* Range Slider */
.slider-container {
    margin-top: 15px;
    padding: 0 5px;
}

.range-slider {
    position: relative;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 20px 0;
}

.range-slider .range-progress {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}

input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    top: 50%;
    transform: translateY(-50%);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
}

/* Dropdown Filter */
.dropdown-filter label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    font-size: 13px;
}

.dropdown-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.dropdown-select:focus {
    outline: none;
    border-color: #667eea;
}

/* Checkbox Filter */
.checkbox-filter label:first-child {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
    font-size: 13px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkbox-item:hover {
    background: #e9ecef;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-custom {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-custom::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-item label {
    cursor: pointer;
    font-size: 14px;
    color: #495057;
}

/* Toggle Filter */
.toggle-filter label:first-child {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
    font-size: 13px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 34px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
    background: #667eea;
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(24px);
}

#ebv-banyo-label {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

.filter-btn {
    flex: 1;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.apply-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.reset-btn {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
}

.reset-btn:hover {
    background: #e9ecef;
}

/* Model Cards */
.item {
    margin-bottom: 25px;
}

.ev-model-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ev-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ev-model-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.ev-model-image {
    overflow: hidden;
}

.ev-model-image img {
    width: 100%;

    transition: transform 0.5s;
}

.ev-model-card:hover .ev-model-image img {
    transform: scale(1.05);
}

.ev-model-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ev-model-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.ev-specs-table {
    width: 100%;
    margin-bottom: 20px;
}

.ev-specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.ev-specs-table td {
    padding: 10px 0;
    font-size: 14px;
}

.spec-label {
    color: #666;
    font-weight: 500;
    width: 50%;
}

.spec-value {
    color: #333;
    font-weight: 600;
}

.ev-price-section {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.price-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 15px;
}

.teklif-btn,
.detay-btn {
    display: inline-block;
    padding: 12px 24px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
}

.teklif-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.detay-btn {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
}

.detay-btn:hover {
    background: #e9ecef;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    margin: 20px 0;
}

.no-results p {
    font-size: 18px;
    color: #666;
}

@media (max-width: 992px) {
    .ev-model-content {
        grid-template-columns: 1fr;
    }

    .filter-group {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
    }
}

/* Isotope geçişleri için */
.item {
    transition: all 0.5s ease;
}

.no-results {
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}