/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Custom CSS starts here */

/* =============================================================================
   TZ Product Filter — [tz_product_filter] shortcode styles
============================================================================= */

/* ── Wrapper ── */
.tz-filter-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}

/* ── Select dropdowns ── */
.tz-filter-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    border: 1.5px solid #d0d5dd;
    border-radius: 50px;
    padding: 10px 40px 10px 18px;
    font-size: 16px;
    color: #706f6f;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 200px;
}

.tz-filter-select:focus {
    outline: none;
    border-color: #00577B;
    box-shadow: 0 0 0 3px rgba(40, 141, 168, 0.18);
}

.tz-filter-select:hover {
    border-color: #00577B;
}

/* ── Submit button ── */
.tz-filter-wrap .tz-filter-btn {
    background: #00577B;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.tz-filter-wrap .tz-filter-btn:hover {
    background: #1e6e86;
    transform: translateY(-1px);
}

/* ── Reset link ── */
.tz-filter-reset {
    font-size: 16px;
    color: #706f6f;
    text-decoration: underline;
    white-space: nowrap;
    cursor: pointer;
}

.tz-filter-reset:hover {
    color: #1e6e86;
}

/* ── Product count text ── */
.tz-filter-count {
    width: 100%;
    margin: 20px 0 0;
    font-size: 16px;
    color: #706f6f;
}

.tz-filter-count strong {
    color: #706f6f;
	font-weight:700;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .tz-filter-select {
        min-width: 100%;
    }
    .tz-filter-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width:768px){
	.tz-filter-wrap{
		flex-wrap:wrap;
	}
}
