@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'HvDTrial Brandon Grotesque Regular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/HvDTrial_Brandon_Grotesque_regular.woff') format('woff');
}
:root {
    --primary-font: "DM Sans", serif;
    --heading-font: 'HvDTrial Brandon Grotesque Regular';
    --body-font: "DM Sans", serif;
}
/* font-family: var(--heading-font); */
/* font-family: var(--primary-font); */

:root {
    --primary-color: #252525;
    --accent-color: #F36D00;
    --text-color: #515151;
    --background-color: #FFFFFF;
    /*--secondary-color: #2ecc71;  */
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    color: #333;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: bold;
}

p {
    font-family: var(--primary-font);
    line-height: 1.6;
}

.container {max-width: 1490px;}

/* Header CSS */

.main-header {
    padding: 23px 0;
}

.main-header .navbar-brand img {
    width: 215px;
    height: 94px;
    object-fit: contain;
}

.main-header .nav-link {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin-right: 60px;
}

.main-header .nav {
    align-items: center;
}

.login-btn {
    color: #121212;
    font-family: "DM Sans", serif;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    width: 124px;
    border-radius: 6px;
    border: 1px solid;
    background-color: #fff;
    transition: 0.5s;
}

.login-btn:hover {
    background-color: #F36D00;
    transition: 0.5s !important; 
    border-color: #F36D00;
    color: #fff;
}
.signup-btn {
    color: #fff;
    font-family: "DM Sans", serif;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    width: 124px;
    border-radius: 6px;
    border: 1px solid #F36D00;
    background-color: #F36D00;
    transition: 0.5s;
    margin-right: 40px;
}

.signup-btn:hover {
    background-color: #fff;
    transition: 0.5s !important; 
    border-color: #F36D00;
    color: #F36D00;
}

.login-btn {
    margin-right: 20px;
}
.lang-icon img,.cart-icon img {
    width: 20px;
}

a.nav-link.lang-icon {
    margin-right: 40px;
}


/* Search Header */
.search-header nav {
    display: flex;
    align-items: center;
}

.hdr-tab {
    background-color: #F5F3F1;
    box-shadow: inset 0 0 4px 0px #00000015;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px;
    border-radius: 100px;
    margin: 0 40px;
}

.hdr-tab .tab-btn a {
    font-size: 18px;
    color: #000; 
    font-weight: 500;
    padding: 6px 22px;
    display: flex;
    align-items: center;
}

.hdr-tab .tab-btn a img {
    filter: brightness(0);
    height: 20px;
    width: 22px;
    object-fit: contain;
    margin-right: 5px;
}

.hdr-tab .tab-btn a.active {
    background-color: #fff;
    border-radius: 100px;
}

.hdr-tab .tab-btn a.active img {
    filter: none;
}
.hdr-location input {
    background-image: url(../../assets/images/home/location.svg);
    background-repeat: no-repeat;
    background-position: 20px center;
    padding: 14px 20px;
    border-radius: 100px;
    background-color: #F5F3F1;
    padding-left: 50px;
    font-family: 'DM Sans';
    font-weight: 400;
    color: #121212 !important; 
    font-size: 18px;
    width: 380px;
}

.hdr-location input::placeholder {
    color: #121212 !important;
}

/* Banner Section */
.banner img {
    height: 620px;
    object-fit: cover;
}

.category-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-sec .cat-item {
    width: 12.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #F8F8F8;
    height: 170px;
    border: 1px solid #E0E0E0;
    border-right: 0;
    transition: 0.5s !important; 
}

.category-sec .cat-item:last-child {
    border-right: 1px solid #E0E0E0;
}

.category-sec .cat-item img {
    height: 84px;
    width: 84px;
    object-fit: contain;
    margin-bottom: 10px;
}

.category-sec .cat-item p {
    color: #252525;
    font-size: 16px;
    font-weight: 700;
    font-family: 'HvDTrial Brandon Grotesque Regular';
}

a {
    text-decoration: none;
    color: #F36D00;
}

.category-sec .cat-item:hover {
    background-color: #F36D00;
    transition: 0.5s !important; 
    border-color: #F36D00 !important; 
}

.category-sec .cat-item:hover p {
    color: #fff;
}

.search-area .container {
    border-radius: 25px;
    background-color: #fff;
    padding: 0;
    padding-bottom: 70px;
}

.search-box {
    margin-top: 70px;
}

.search-box h2 {
    color: #252525;
    font-size: 40px;
    margin-bottom: 40px;
}

.search-box .input-group {
    width: 55%;
    margin: 0 auto;
}

.search-box .input-group input {
    font-size: 18px;
    color: #252525;
    font-family: 'DM Sans';
    font-weight: 400;
    height: 60px;
    padding: 24px;
    border-radius: 6px !important; 
}

.search-box button {
    border: 0;
    width: 150px;
    height: 60px;
    background-color: #F36D00;
    color: #fff;
    border-radius: 6px !important; 
    margin-left: 20px !important; 
    font-weight: 700;
    font-size: 18px;
    font-family: 'DM Sans';
}

.search-box button:hover {
    background-color: #fff;
    border: 1px solid #f36d00;
    color: #f36d00;
}

.brands-slider {
    border-bottom: 1px solid #d9d9d9;
    overflow: hidden;
}

.brands-slider h3 {
    color: #252525;
    font-size: 40px;
    font-weight: 700;
    font-family: 'HvDTrial Brandon Grotesque Regular';
}

.brands-slider a {
    font-size: 16px;
    color: #F36D00 !important; 
    font-family: 'HvDTrial Brandon Grotesque Regular';
    font-weight: 700;
    margin-top: 20px !important; 
    display: block;
}

.brands-slider .row {
    align-items: center;
}

.brands-slider img {
    height: 160px;
    width: 160px !important; 
    object-fit: contain;
    margin: 0 15px !important; 
}

.brands-slider .slick-list.draggable {
    overflow: visible;
    z-index: -1;
}

.brands-slider .brand-left {
    background-color: #fff;
    padding-left: 11% !important; 
    padding: 110px 0;
    margin-top: 40px;
}


/* Eat Section */
.how-eat {
    padding: 110px 0;
}

.how-eat h2 {
    text-align: center;
    font-weight: 700;
    font-size: 60px;
    color: #252525 !important; 
    margin-bottom: 50px;
}
.how-eat .eat-icon {
    margin-bottom: 24px;
    height: 74px;
    width: 74px;
    object-fit: contain;
}

.inner-box {
    border: 1px solid #CBCBCB;
    border-radius: 24px;
    padding: 44px 30px;
    transition: 0.5s;
}

.inner-box h4 {
    color: #252525;
    font-size: 24px;
    font-weight: 700;
    font-family: 'HvDTrial Brandon Grotesque Regular';
    margin-bottom: 20px;
    transition: 0.5s;
}

.inner-box p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color: #252525;
    opacity: 80%;
    transition: 0.5s;
}

.inner-box:hover {
    background-color: #F36D00;
    transition: 0.5s;
}

.inner-box:hover h4 {
    color: #fff;
    transition: 0.5s;
}

.inner-box:hover p {
    color: #fff;
    transition: 0.5s;
}

/* Eat Sec */
.why-eat {
    background-color: #FEF4EE;
    padding: 110px 0;
}

.why-eat h2 {
    color: #252525; 
    font-size: 60px;
    line-height: 100px;
    letter-spacing: -2px;
}

.eat-icons {
    margin-top: 50px;
}

.eat-icons .eat-ico {
    display: flex;
    margin-bottom: 40px;
}

.eat-icons .eat-ico img {
    height: 80px;
    width: 80px;
    background-color: #F36D00;
    padding: 10px;
    border-radius: 12px;
    object-fit: contain;
}

.eat-icons .eat-ico .ico-data {
    margin-left: 30px;
}

.ico-data h3 {
    font-size: 28px;
    font-family: 'HvDTrial Brandon Grotesque Regular';
    font-weight: 700;
    color: #252525;
}

.ico-data p {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: #252525;
    opacity: 80%;
}
.why-eat .row {
    align-items: center;
}

.img-div img {
    width: 100%;
}

.img-div {
    border-radius: 24px;
    overflow: hidden;
}
.eat-icons .eat-ico:last-child {
    margin: 0;
}

/* Got Sec */
.got-sec {
    padding: 110px 0;
}

.sec-cont h2 {
    font-size: 60px;
    line-height: 70px;
    color: #252525;
    margin-bottom: 50px;
    font-weight: 700;
}

.sec-cont p {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    color: #252525;
    opacity: 80%;
    margin-bottom: 30px;
}

.common-btn {
    background-color: #F36D00;
    color: #fff;
    padding: 20px 40px;
    display: inline-block;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'DM Sans';
    transition: 0.5s;
    border: 2px solid transparent;
}

.common-btn:hover {
    transition: 0.5s;
    border-color: #F36D00;
    background-color: #fff;
    color: #F36D00;
}

.got-sec .sec-cont {
    padding-left: 50px;
}

.got-sec .row {
    align-items: center;
}

.near-sec h2 {
    font-size: 60px;
    line-height: 70px;
    color: #252525;
    margin-bottom: 60px;
}

.states-list {
    margin: 0;
    padding: 0;
    column-count: 5;
}

.states-list li {
    list-style-type: none;
    padding: 10px 0;
}

.states-list li a {
    font-size: 18px;
    font-weight: 400;
    color: #252525;
    opacity: 80%;
    font-family: 'DM Sans';
    transition: 0.5s;
}
.near-sec .container {
    border-top: 1px solid #d9d9d9;
    padding-top: 110px;
}

.near-sec {
    padding-bottom: 110px;
}
.states-list li a:hover {
    color: #F36D00;
    transition: 0.5s;
}
/* Footer Sec */
.footer-custom {
    background-color: #252525;
}
.footer-custom .ftr-logo {border-right: 1px solid #ffffff10;padding-top: 110px;}

.footer-custom .ftr-logo img {
    width: 280px;
    height: 120px;
    object-fit: contain;
}

.footer-custom {
    background-image: url(../../assets/images/home/footer-bg.png);
    background-repeat: no-repeat;
    background-position: left bottom;
}
.ftr-contnt {padding-top: 110px;padding-left: 70px;}

.ftr-contnt h4 {
    font-weight: 900;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    font-family: 'HvDTrial Brandon Grotesque Regular';
    margin-bottom: 30px;
}

.ftr-nav {
    padding: 0;
}

.ftr-nav li {
    list-style-type: none;
    margin-bottom: 20px;
}

.ftr-nav a {
    font-size: 18px;
    color: #fff;
    opacity: 70%;
    font-family: 'DM Sans';
    font-weight: 400;
    transition: 0.5s;
}

.news-letter-hd {
    display: flex;
    align-items: center;
}

.news-letter-hd h4 {
    font-size: 24px;
    width: 50%;
}

.news-letter-hd p {
    opacity: 50%;
    width: 50%;
    color: #fff;
    line-height: 24px;
    font-size: 14px;
    text-align: right;
}
.ftr-second-row {
    margin-top: 70px;
}

.news-letter form {
    display: flex;
    align-items: center;
    position: relative;
}

.news-letter input {
    height: 64px;
    background-color: #373737;
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    border: 0;
}

.news-letter input::placeholder {
    color: #fff;
    opacity: 50%;
    font-size: 14px;
}

.news-letter button {
    padding: 0;
    background-color: transparent;
    border: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: 0.5s;
}

.news-letter button img {
    height: 18px;
    width: 18px;
    object-fit: contain;
}

.news-letter button:hover {
    background-color: transparent;
    transform: translate(0px, -5px);
    transition: 0.5s;
}

.ftr-contnt p {
    color: #fff;
}

.ftr-second-row p {
    opacity: 70%;
    font-size: 18px;
    line-height: 34px;
    font-weight: 400;
}

.copy-right .social-icon {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: baseline;
    margin: 0;
}

.copy-right .social-icon a {
    background-color: #f36d00;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    transition: 0.5s;
}

.copy-right .social-icon a i {font-size: 15px;}

.copy-right .social-icon li {
    margin-right: 15px;
}

.copy-right .row {
    align-items: center;
}

.copy-right {
    padding: 24px 0;
    border-top: 1px solid #ffffff10;
    margin-top: 100px;
}

.copy-right p {
    margin: 0;
    text-align: right;
}

.copy-right .social-icon a:hover {
    background-color: transparent;
    border: 1px solid #fff;
    transition: 0.5s;
}
.ftr-nav a:hover {
    opacity: 100%;
    transition: 0.5s;
}






/* Style 2 CSS */
.form-check-input:checked {
    background-color: #F36D00;
    border-color: #F36D00;
}
.star {
    font-size: 40px;
    color: #ddd; /* Default star color */
    cursor: pointer;
    transition: color 0.2s;
  }
.star.filled {
    color: var(--accent-color); /* Filled star color */
  }

.search-area {
    padding: 70px 0;
}
/* .sidebar {
    height: 100vh;
    position: sticky;
    top: 10px; 
  } */
#search-header {
    box-shadow: 0 0 40px #00000010;
}
.filter-card {
    padding: 20px 20px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fff;
}
.restaurant-card {
    border: 1px solid #DDD;
    border-radius: 16px;
    overflow: hidden;
}
.restaurant-card img {
    max-width: 100%;
    width: 100%;
}
.filter-card h3.card-title {
    color: var(--primary-color);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px;
}
.filter-card label.form-label {
    font-family: var(--secondary-color); 
    font-size: 18px;
    font-weight: 500;
}

.filter-card .form-check {
    font-family: var(--secondary-color); 
    font-size: 18px;
    margin-bottom: 5px;
}
.openNow {
    margin-top: 30px;
    margin-bottom: 30px;
}
.openNow .form-check {
    display: flex;
    padding: 0;
    justify-content: space-between;
    margin-bottom: 20px;
}

.openNow label {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
}

.minimumAmount {
    margin: 40px 0;
}
img.toolptil {
    padding-left: 20px;
}
.ratingCol h5 {
    margin-bottom: 0;
}
.ratingCol {
    margin-bottom: 25px;
}
.offersSavings {
    margin-bottom: 30px;
}
.search-form button.btn {
    background: transparent;
    border: 0;
    position: absolute;
    left: 12px;
    padding: 0;
    line-height: 36px;
}

.search-form button.btn img {
    width: 13px;
}

.search-form input {
    padding: 7px 10px 7px 30px;
    border-radius: 30px;
    background: #F5F3F1;
    border: 0;
}

.search-form input::placeholder {
    color: #999999;
}

.search-form input:focus {
    box-shadow: 0 0 0 .25rem rgb(197 197 197 / 25%);
    border: 0;
}
.cuisines .search-form {
    margin-bottom: 20px;
}
.search-form {
    position: relative;
}
.main-search input {
    padding: 20px 10px 20px 60px;
}

.main-search button.btn {
    line-height: 60px;
    left: 25px;
}

.main-search button.btn img {
    width: 25px;
}
.container-form {
    width: 70%;
    margin-right: 40px;
}

.sortBy-filter {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sortBy-filter label.form-label {
    width: 35%;
    margin-bottom: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.sortBy-filter 
 select.form-select {
    border-radius: 10px;
    border: 1px solid #DDD;
    padding: 12px 12px;
}
.search-top {
    margin-bottom: 50px;
}
.search-right {
    padding-left: 30px;
}
.search-right h3 {
    color: var(--primary-color);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.restaurant-card h6 {
    color: #252525;
    font-size: 22px;
    font-weight: 700;
     /* 441.667% */
    font-family: var(--heading-font);
}

.restaurant-card .rating-category {
    display: flex;
    justify-content: space-between;
}

.restaurant-card .rating-category st {
    margin-right: 5px;
    font-size: 20px;
    color: var(--accent-color);
}

.restaurant-card .rating-category span.star-rating {
    color: #838383;
    font-size: 18px;
    font-weight: 500;
}

.restaurant-card .rating-category span.star-rating el {
    color: var(--primary-color);
}
.timeAmount img {
    width: 16px;
    position: relative;
    top: -1px;
}

.timeAmount span {
    margin-left: 7px;
    color: var(--text-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.restaurant-card .free-delivery {
    background: var(--accent-color);
    padding: 7px 12px;
}
.restaurant-card .free-delivery img {
    padding-right: 7px;
    width: 25px;
}
.restaurant-card .body-card {
    padding: 20px 20px;
}
.searchRow {
    margin-top: 40px;
}
.cuisine-card {
    text-align: center;
  }
  .cuisine-card img {
    width: 100%;
    border-radius: 12px;
    height: 100px;
    object-fit: cover;
  }
  .cuisine-label {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
  }
  .searchCuisines {
    padding-right: 0;
    display: flex;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.searchCuisines .col {
    width: 10%;
    padding: 0 5px;
    margin-top: 0;
}

.searchCuisines .col img {
    height: 97px;
}
.restaurant-card-bottom {
    padding-top: 30px;
}

.restaurant-card-bottom h3 {
    margin-top: 30px;
}

.restaurant-card-bottom p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 35px;
}