
.car-filter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: #f2e9b8;
    border: 1px solid #e3e3e3;
    border-radius: 18px;
    flex-wrap: wrap;
}

.car-filter-seats {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.car-filter-label,
.car-filter-group label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.car-filter-seat-list {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8deb0;
    padding: 4px;
    border-radius: 999px;
    flex-wrap: wrap;
}

.car-seat-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 18px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
    background: transparent;
}

.car-seat-item:hover {
    text-decoration: none;
    color: #111;
}

.car-seat-item.is-active {
    background: #ffd500;
    color: #111;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
	border-radius: 13px !important;
}

.car-filter-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.car-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.car-filter-group select {
    min-width: 160px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #e8deb0;
    border-radius: 12px;
    background: #e8deb0;
    box-shadow: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

@media (max-width: 849px) {
    .car-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .car-filter-seats {
        flex-direction: column;
        align-items: flex-start;
    }

    .car-filter-seat-list,
    .car-filter-right,
    .car-filter-group {
        width: 100%;
		border-radius: 20px !important;
    }

    .car-filter-right,
    .car-filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .car-filter-group select {
        width: 100%;
		
    }
}
/* Mobile: 1 sản phẩm / 1 hàng dạng row dọc */
@media (max-width: 767px) {

  .car-filter-products .products.row {
    display: block !important;
    overflow: visible !important;
    white-space: normal !important;
    margin: 0 !important;
  }

  .car-filter-products .products.row > .col,
  .car-filter-products .product-small.col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    display: block !important;
    padding: 0 0 15px 0 !important;
    margin: 0 !important;
	   border-bottom: 1px solid #eee;
   padding-bottom: 20px !important;
   margin-bottom: 20px !important;
  }

  .car-filter-products .product-small .col-inner,
  .car-filter-products .product-small .box {
    width: 100%;
  }

  .car-filter-products .box-image img {
    width: 100%;
    height: auto;
    display: block;
  }
	.deal-badge{
		top: -225px;
	}
}