/**
 * Sort Product Catalog Frontend Styles
 */

/* Dropdown style variations */

/* Minimal style */
.sort-product-catalog-dropdown-minimal .orderby,
.sort-product-catalog-dropdown-minimal .woocommerce-ordering select {
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: inherit;
}

.sort-product-catalog-dropdown-minimal .orderby:focus,
.sort-product-catalog-dropdown-minimal .woocommerce-ordering select:focus {
    outline: none;
    border-bottom: 2px solid #2271b1;
}

/* Outlined style */
.sort-product-catalog-dropdown-outlined .orderby,
.sort-product-catalog-dropdown-outlined .woocommerce-ordering select {
    border: 2px solid #ddd;
    background: transparent;
    padding: 10px 16px;
    border-radius: 4px;
}

.sort-product-catalog-dropdown-outlined .orderby:focus,
.sort-product-catalog-dropdown-outlined .woocommerce-ordering select:focus {
    border-color: #2271b1;
}

/* Filled style */
.sort-product-catalog-dropdown-filled .orderby,
.sort-product-catalog-dropdown-filled .woocommerce-ordering select {
    border: none;
    background: #f0f0f0;
    padding: 12px 16px;
    border-radius: 4px;
}

.sort-product-catalog-dropdown-filled .orderby:focus,
.sort-product-catalog-dropdown-filled .woocommerce-ordering select:focus {
    background: #e8e8e8;
}

/* Enhanced ordering - with before/after text */
.woocommerce-ordering.sort-product-catalog-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
}

.woocommerce-ordering.sort-product-catalog-enhanced select {
    flex: 0 0 auto;
}

/* Text before/after dropdown */
.sort-product-catalog-text-before,
.sort-product-catalog-text-after,
.sort-product-catalog-result-count {
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
}

.sort-product-catalog-result-count {
    color: #666;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 767px) {
    .woocommerce-ordering.sort-product-catalog-enhanced {
        flex-wrap: wrap;
    }
}
