/* WooCommerce Style Overrides */

/* Base Styles */
* {
    box-sizing: border-box;
}

/* WooCommerce Default Overrides */
.woocommerce-result-count,
.woocommerce-ordering {
    margin: 0 !important;
}

ul.products {
    display: contents !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul.products::before,
ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Product Count Styling */
.woocommerce-result-count {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Sort Select Styling */
.woocommerce-ordering select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce-ordering select:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.1);
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Custom Ordering */
.custom-ordering {
    display: inline-flex;
}

.custom-ordering select {
    min-width: 200px;
    font-size: 0.875rem;
    color: #374151;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    cursor: pointer;
}

.custom-ordering select:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.1);
}

.custom-ordering select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Filtreleme butonu hover efekti */
.filter-button {
    transition: all 0.2s ease;
}