.topfilter{

display: inline !important;

margin-right: 20px;

margin-top: 10px;

}

.filterCard{

margin-bottom: 30px;

box-shadow:  0 2px 8px rgba(0, 0, 0, 0.1);

text-align: center;

}

.topfilterSubmit{

padding: 6px 30px;

display: inline;

background-color:  #b8926a;

color: #fff; 

margin-left: 30px;

}

.filterCard {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.filterCard form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 18px;
}

.filterCard form > label {
    display: flex;
    flex-direction: column;
    min-width: 180px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.filterCard select.form-control {
    appearance: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.25s ease;
}

.filterCard select.form-control:hover {
    border-color: #b8926a;
}

.filterCard select.form-control:focus {
    border-color: #b8926a;
    box-shadow: 0 0 0 3px rgba(184,146,106,0.2);
    background-color: #fff;
}

.filterCard select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.filterCard .topfilterSubmit:first-of-type {
    background: #f3f0ec;
    color: #8a6a47;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 14px;
    cursor: default;
    border: none;
}

.filterCard button[type="submit"] {
    background: linear-gradient(135deg, #b8926a, #a07a55);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    min-height: 44px;
    transition: all 0.3s ease;
}

.filterCard button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(184,146,106,0.35);
}

@media (max-width: 768px) {
    .filterCard {
        padding: 16px;
    }

    .filterCard form {
        gap: 14px;
    }

    .filterCard form > label {
        width: 100%;
        min-width: 100%;
    }

    .filterCard button[type="submit"] {
        width: 100%;
        text-align: center;
    }
}


.filterCard label i {
    margin-right: 6px;
    color: #b8926a;
    font-size: 14px;
}

.filterCard button i {
    margin-right: 8px;
}
