/* Genel Container */
.auv-container {
    margin: 20px 0;
}

/* Arama Alanı */
.auv-search-wrapper {
    margin-bottom: 30px;
}

.auv-search-box {
    max-width: 600px;
    margin: 0 auto;
}

.auv-search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.auv-search-input:focus {
    outline: none;
    border-color: #ff6900;
}

/* Kategori Filtreleri */
.auv-category-filter {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.auv-category-btn {
    display: inline-block;
    padding: 8px 20px;
    margin: 5px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.auv-category-btn:hover {
    background: #ff6900;
    color: #fff;
    border-color: #ff6900;
}

.auv-category-btn.active {
    background: #ff6900;
    color: #fff;
    border-color: #ff6900;
}

/* Ürün Grid */
.auv-products-wrapper {
    min-height: 300px;
}

.auv-products-grid {
    margin: 0 -10px 40px;
    position: relative;
}

.auv-grid-sizer,
.auv-product-item {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.auv-columns-2 .auv-grid-sizer,
.auv-columns-2 .auv-product-item {
    width: 50%;
}

.auv-columns-3 .auv-grid-sizer,
.auv-columns-3 .auv-product-item {
    width: 33.333%;
}

.auv-columns-4 .auv-grid-sizer,
.auv-columns-4 .auv-product-item {
    width: 25%;
}

/* Ürün Kartları */
.auv-product-card {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.auv-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #ff6900;
}

.auv-product-image {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.auv-product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.auv-product-card:hover .auv-product-image img {
    transform: scale(1.05);
}

.auv-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.auv-product-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    line-height: 1.4;
}

.auv-product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auv-product-title a:hover {
    color: #ff6900;
}

.auv-product-categories {
    margin-bottom: 12px;
}

.auv-category-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #666;
}

.auv-product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.auv-product-tags {
    margin-bottom: 15px;
}

.auv-tag {
    display: inline-block;
    color: #ff6900;
    font-size: 12px;
    margin-right: 8px;
}

.auv-product-button {
    display: inline-block;
    background: #ff6900;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.auv-product-button:hover {
    opacity: 0.9;
    transform: translateX(5px);
    color: #fff;
}

.auv-amazon-disclaimer {
    font-size: 10px;
    color: #999;
    margin: 10px 0 0 0;
    font-style: italic;
    line-height: 1.4;
}

.auv-no-results {
    text-align: center;
    padding: 40px;
    color: #666;
        grid-column: 1 / -1;
    width: 100%;
}

/* Daha Fazla Yükle */
.auv-load-more {
    text-align: center;
    margin: 40px 0;
}

.auv-load-more-btn {
    background: #ff6900;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.auv-load-more-btn:hover {
    opacity: 0.9;
}

.auv-load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sayfalama */
.auv-pagination {
    text-align: center;
    margin: 40px 0;
}

.auv-pagination a,
.auv-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}

.auv-pagination .current {
    background: #ff6900;
    color: #fff;
    border-color: #ff6900;
}

/* Responsive */
@media (max-width: 768px) {
    .auv-columns-3 .auv-grid-sizer,
    .auv-columns-3 .auv-product-item,
    .auv-columns-4 .auv-grid-sizer,
    .auv-columns-4 .auv-product-item {
        width: 50%;
    }
    
    .auv-category-filter {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .auv-columns-2 .auv-grid-sizer,
    .auv-columns-2 .auv-product-item,
    .auv-columns-3 .auv-grid-sizer,
    .auv-columns-3 .auv-product-item,
    .auv-columns-4 .auv-grid-sizer,
    .auv-columns-4 .auv-product-item {
        width: 100%;
    }
    
    .auv-product-content {
        padding: 15px;
    }
    
    .auv-category-btn {
        font-size: 13px;
        padding: 6px 15px;
    }
}