.hero{
    height: 100px;
    text-align: end !important;
    padding: 0; 
}

.hero-img-wrap{
    height: 100%;
}

.intro-excerpt{
    text-align: center !important;
    margin-top: 100px;  
    left: -110px;
}

.container{
    height: 100%;
    text-align: center !important;
}

/* Filtreleme Container */
.filter-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.filter-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2f2f2f;
}

.filter-toggle {
    background: none;
    border: none;
    color: #2f2f2f;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-toggle:hover {
    background: #e9ecef;
}

.filter-toggle.active {
    background: #2f2f2f;
    color: #fff;
}

.filter-content {
    padding: 20px;
    display: none;
}

.filter-content.active {
    display: block;
}

/* Filtre Grupları */
.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    color: #2f2f2f;
    font-weight: 500;
}

.filter-group label i {
    margin-right: 5px;
    color: #666;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #2f2f2f;
}

.filter-btn.active {
    background: #2f2f2f;
    color: #fff;
    border-color: #2f2f2f;
}

/* Filtre Aksiyonları */
.filter-actions {
    margin-top: 20px;
    text-align: center;
}

.btn-reset {
    background: none;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #dc3545;
    color: #fff;
}

.btn-reset i {
    margin-right: 5px;
}

/* Ürün Bulunamadı Mesajı */
.no-products {
    padding: 30px;
    color: #666;
    font-size: 1.1rem;
}

/* Ürün Kartı Stilleri */
.product-item {
    display: block;
    position: relative;
    text-decoration: none;
    color: #000;
    margin-bottom: 30px;
}

.product-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2f2f2f;
}

.product-details {
    font-size: 0.9rem;
    color: #666;
}

.product-details p {
    margin-bottom: 8px;
}

.product-details strong {
    color: #2f2f2f;
}

.icon-cross {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-item:hover .icon-cross {
    opacity: 1;
}

.icon-cross img {
    width: 15px;
    height: 15px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .filter-content {
        padding: 15px;
    }
    
    .filter-options {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .filter-header h3 {
        font-size: 1.1rem;
    }
}

/* Sayfa Geçiş Animasyonları */
.page-transition-enter {
    opacity: 0;
    transform: translateY(20px);
}

.page-transition-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-transition-exit {
    opacity: 1;
    transform: translateY(0);
}

.page-transition-exit-active {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Sayfa İçerik Animasyonları */
.content-fade-in {
    animation: contentFadeIn 0.8s ease forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ürün Kartı Animasyonları */
.product-card-animate {
    animation: productCardAppear 0.6s ease forwards;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes productCardAppear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Filtre Panel Animasyonları */
.filter-panel-animate {
    animation: filterPanelSlide 0.4s ease forwards;
}

@keyframes filterPanelSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


