#wc-gift-finder {
    max-width: 1200px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gift-finder-filters {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.filter-section {
    flex: 1;
    min-width: 200px;
}

.filter-section h3 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 2px solid #8cc63f;
    display: inline-block;
    padding-bottom: 3px;
}

.age-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.age-btn {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #555;
}

.age-btn:hover {
    border-color: #8cc63f;
    color: #8cc63f;
}

.age-btn.active {
    background: #8cc63f;
    color: #fff;
    border-color: #8cc63f;
}

.price-slider-container {
    padding: 0 5px;
}

#price-range {
    width: 100%;
    accent-color: #8cc63f;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 10px;
    color: #999;
}

.brand-filter select,
.sort-filter select {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    font-size: 13px;
    background-color: #fff;
}

#gift-finder-results {
    min-height: 200px;
    position: relative;
}

.gift-finder-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hover Görsel Efekti */
.product-thumbnail-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    display: block;
    aspect-ratio: 1 / 1;
    background-color: #fff;
}

.product-thumbnail-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease-in-out;
}

.product-thumbnail-container .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.product-thumbnail-container.has-hover-image:hover img:not(.hover-image) {
    opacity: 0;
}

.product-thumbnail-container.has-hover-image:hover .hover-image {
    opacity: 1;
}

/* WooCommerce Grid */
.gift-finder-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

@media (max-width: 992px) {
    .filter-section {
        min-width: 45%;
    }
}

@media (max-width: 576px) {
    .filter-section {
        min-width: 100%;
    }
}
