   .card-wrapper {
                margin: 80px 0;
            }



            .plane-card {
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                overflow: hidden;
                transition: transform 0.2s ease;
                box-shadow: 0px 0px 4px 0px #00000040;
                margin-bottom: 20px;
            }



            .plane-img {
                height: 100%;
                object-fit: cover;
            }

            .plane-body h5 {
                font-weight: 700;
                color: #144e9d;
            }

            .icon-text {
                font-size: 0.9rem;
                margin-right: 1rem;
            }

            .icon-text i {
                margin-right: 0.25rem;
				font-family:"Roboto";
            }

            .btn-lime {
                background-color: #d4f000;
                border: none;
                color: #000;
                font-weight: 600;
                transition: background-color 0.3s ease;
                height: 43px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .btn-lime:hover {
                background-color: #c0db00;
            }

            .favorite-icon {
                font-size: 1.25rem;
                color: #444;
                cursor: pointer;
            }


.custom-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.custom-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  object-fit: cover; 
  height: 250px;
  width: 100%;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.btn-outline-secondary {
  border-radius: 8px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  margin-right: 5px;
  color: #007bff;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.btn-link {
  color: #007bff;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: none;
}

/*----------------------
PRODUCT-CARD-Ui
----------------------*/
.card-bg{
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  border:5px solid #EBEBEB;
}
.product-card-wrapper{
  padding: 30px;
}
.product-card-meta > div h5{
margin: 0px;
font-size: 36px;
color: #173976;
font-family:var( --e-global-typography-primary-font-family ), sans-serif;
}



/*----------------------
SEARCH-FITLER-Ui
----------------------*/

.search-filter-label{
  border:1px solid #EBEBEB;
  border-radius: 7px;
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.search-filter-field--type-range > .search-filter-label{
  border:none;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}
.search-filter-style--choice-checkbox > .search-filter-label{
  position: relative;
}
.search-filter-style--choice-checkbox > .search-filter-label::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f078';
  margin-right: 8px;
  display: inline-block;
  transition: 0.3s;
  position: absolute;
  right: 0;
}

/* When .open is added to the label, change icon to chevron-up */
.search-filter-style--choice-checkbox > .search-filter-label.open::after {
  content: '\f077'; /* fa-chevron-up */
}

.search-filter-base{
  margin-bottom: 20px;
}

.search-filter-base > div + div{
  padding: 0px 10px 0px 10px;
}

.search-filter-base::last-child{
  margin-bottom: 0px;
}

.search-filter-base .search-filter-input-group .search-filter-input-checkbox > label{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.search-filter-base .search-filter-input-group .search-filter-input-checkbox > label > .search-filter-input-checkbox__label {
  width: auto;
}

.search-filter-base .search-filter-input-group .search-filter-input-checkbox > label > span{
  padding: 0px;   
}
.filter-wrapper .search-filter-base .search-filter-input-button {
  height: 40px;
  width:100%;
}
.custom-btn {
  color: #333 !important;
  border:none !important;
}

.custom-btn:hover {
  border:none !important;
  background-color: transparent !important;
}


.custom-btn:focus {
  border:none !important;
  background-color: transparent !important;
}

.pagination .wp-pagenavi a, .wp-pagenavi span {
  padding: 16px !important;
  color: #333 !important;
}
.pagination .wp-pagenavi span.current {
  font-weight: bold;
  background: #c0db00 !important;
  color: #fff !important;
  border: #c0db00 !important;
}

/*----------------------
  RESPONSIVE QUERY
----------------------*/

/* Tablets (portrait and landscape) */
@media (max-width: 1024px) {

.product-card-meta > div h5{
  font-size: 24px;
}
.btn-lime{
  font-size: 12px;
  height: 37px;
}
.product-card-wrapper{
  padding: 10px;
}

}