:root {
    --bottom-nav-height: calc(64px + env(safe-area-inset-bottom));
}

body {
    margin: 0px;
    padding-bottom: var(--bottom-nav-height);
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}





/* header start */





.mobile-header {
    /* background: #fefbea; */
    background-color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
}

.mobile-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.mobile-logo img {
    /* width: 65px; */
    width: 130px;
    height: auto;
}

/* User */
.mobile-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.mobile-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fd5302;
    margin-bottom: 4px;
}

.mobile-user span {
    font-size: 12px;
    font-weight: 500;
    color: #fd5302;
    line-height: 1;
}

/* Mobile */
@media (max-width: 575px) {
    .mobile-logo img {
        width: 100px;
    }

    .mobile-user img {
        width: 42px;
        height: 42px;
    }

    .mobile-user span {
        font-size: 11px;
    }
}


/* end */





/* category and products */

.category-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.food-category {
    min-width: 100px;
    text-align: center;
    cursor: pointer;
}

.category-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    margin: auto;
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active-circle {
    background: #fd5302;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

.food-category h6 {
    margin-top: 15px;
    color: #6a6c6e;
    font-size: 15px;
    font-weight: 400;
}

.food-category.active h6 {
    color: #000;
}


@media (max-width:576px) {



    .category-circle {
        width: 50px;
        height: 50px;
    }

    .food-category {
        min-width: 85px;
    }

    .food-category h6 {
        font-size: 14px;
    }

    .active-circle {
        font-size: 14px;
    }
}

/* category end */


/* food card sectin*/

.food-section {
    background: #ffffff;
    /* padding: 100px 0px; */
}

.food-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.food-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    height: 100%;
}

.food-img-box {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.food-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff0000;
    color: #fff;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.food-content {
    flex: 1;
    min-width: 0;
    padding-right: 105px;
}

.food-content h4 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.food-content p {
    color: #6a6c6e;
    font-size: 15px;
    margin-bottom: 15px;
}

.food-content del {
    display: block;
    color: #c0c0c0;
    font-size: 18px;
}

.food-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.rating-box {
    position: absolute;
    top: 25px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7df;
    color: #e39a00;
    padding: 7px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.add-btn {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 5px;
    background: #fd5302;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 767px) {

    .food-title {
        font-size: 18px;
    }

    .food-card {
        padding: 18px;
        border-radius: 15px;
        gap: 15px;
        align-items: flex-start;
    }

    .food-content {
        padding-right: 75px;
    }

    .food-img-box {
        width: 95px;
        height: 95px;
        border-radius: 22px;
    }

    .offer-badge {
        padding: 5px 12px;
        font-size: 11px;
        top: 10px;
        left: 10px;
    }

    .food-content h4 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .food-content p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .food-content del {
        font-size: 14px;
    }

    .food-content h3 {
        font-size: 22px;
    }

    .rating-box {
        top: 18px;
        right: 18px;
        font-size: 12px;
        padding: 5px 12px;
    }

    .add-btn {
        right: 18px;
        bottom: 18px;
        width: 60px;
        height: 60px;
        border-radius: 20px;
        font-size: 28px;
    }
}



@media(max-width:432px) {

    .food-content h4 {
        font-size: 15px;
    }

    .food-content h3 {
        font-size: 16px;
    }

    .food-content p {
        font-size: 10px;
    }

    .add-btn {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        font-size: 14px;
    }
}


/* food */










/* flot menu bottom strat */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    gap: 6px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px -4px 12px;
    z-index: 999;
}

.bottom-nav a {
    text-decoration: none;
    /* color: #a0a0a0; */
    color: #6a6c6e;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.bottom-nav i {
    display: block;
    font-size: 21px;
    line-height: 1;
    margin-bottom: 0;
}

.bottom-nav span {
    display: block;
    max-width: 100%;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bottom-nav .active {
    color: #fd5302;
}


.floating-cart {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background: #fd5302;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(195, 77, 5, .35);
}

.floating-cart span {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
}



@media(max-width:432px) {
    .bottom-nav i {
        font-size: 17px;
    }
}

/* flot end */



/* cart page start */

.food-cart-section {
    padding: 30px 0;
    background: #ffffff;
}

.food-cart-wrapper {
    display: flex;
    gap: 30px;
    /* align-items: flex-start; */
}


.food-cart-items {
    flex: 1;
    min-width: 0;
}


.food-cart-summary {
    width: 360px;
    flex-shrink: 0;
}

.food-cart-items,
.food-cart-summary {
    background: #ffffff;
    border: 1px solid #f2ece4;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}



.food-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.food-cart-header span {
    color: #fd5302;
    font-weight: 600;
}

.food-cart-header h2 {
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 0;
}

.food-cart-count {
    width: 85px;
    height: 85px;
    background: #fff7df;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.food-cart-count strong {
    font-size: 24px;
    color: #fd5302;
}

.food-cart-count small {
    color: #666;
}

/* CARD */

.food-cart-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.food-cart-image {
    flex-shrink: 0;
}

.food-cart-image img {
    width: 110px;
    height: 110px;
    border-radius: 22px;
    object-fit: cover;
    background: #fff;
}

.food-cart-content {
    flex: 1;
    min-width: 0;
}

.food-cart-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.food-cart-content p {
    font-size: 15px;
    color: #6a6c6e;
    margin-bottom: 12px;
}

.food-cart-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.food-cart-price del {
    color: #999;
}

.food-cart-price span {
    color: #fd5302;
    font-size: 24px;
    font-weight: 700;
}

/* ACTIONS */

.food-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.food-qty-box {
    background: #fff7df;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.food-qty-box button {
    width: 32px;
    height: 32px;
    border: none;
    background: #fd5302;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.food-delete-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #fff7df;
    color: #fd5302;
    border-radius: 50%;
    cursor: pointer;
}

/* SUMMARY */

.food-cart-summary h3 {
    margin-bottom: 30px;
    font-size: 18px;
}

.food-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.food-total-box {
    background: #fff7df;
    padding: 22px;
    border-radius: 22px;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.food-total-box h2 {
    margin: 0;
    color: #fd5302;
    font-size: 25px;
}

/* .food-checkout-btn {
    width: 100%;
    height: 58px;
    border: none;
    background: #fd5302;
    color: #fff;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
} */

.food-checkout-btn {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fd5302;
    color: #fff;
    border-radius: 18px;

    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;

    transition: all .3s ease;
}

.food-checkout-btn:hover {
    background: #a84204;
    color: #fff;
    transform: translateY(-2px);
}



@media (max-width:991px) {

    .food-cart-wrapper {
        flex-direction: column;
    }

    .food-cart-summary {
        width: 100%;
    }
}



@media (max-width:767px) {

    .food-cart-section {
        padding: 50px 0;
    }

    .food-cart-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .food-cart-items,
    .food-cart-summary {
        padding: 20px;
        border-radius: 24px;
    }

    .food-cart-header h2 {
        font-size: 28px;
    }

    .food-cart-count {
        width: 65px;
        height: 65px;
    }

    .food-cart-card {
        padding: 12px;
        gap: 12px;
    }

    .food-cart-image img {
        width: 75px;
        height: 75px;
        border-radius: 16px;
    }

    .food-cart-content h4 {
        font-size: 16px;
    }

    .food-cart-content p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .food-cart-price span {
        font-size: 18px;
    }

    .food-qty-box {
        gap: 5px;
        padding: 4px;
    }

    .food-qty-box button {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .food-delete-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}


@media (max-width:432px) {

    .food-cart-content h4 {
        font-size: 15px;
    }

    .food-cart-content p {
        font-size: 10px;
    }

    .food-cart-price span {
        font-size: 16px;
    }

    .food-cart-price del {
        font-size: 14px;
    }

    .food-cart-header h2 {
        font-size: 20px;
    }
}

/* cart page end */



/* buy now page */

.buy-now-section {
    padding: 50px 0;
    background: #ffffff;
}

.buy-now-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.buy-form-card {
    flex: 1;
}

.buy-summary-card {
    width: 400px;
}

.buy-form-card,
.buy-summary-card {
    background: #fff;
    border: 1px solid #f1ece6;
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
}

/* Title */

.buy-title span {
    color: #fd5302;
    font-weight: 600;
}

.buy-title h2 {
    font-size: 30px;
    margin: 8px 0 10px;
}

.buy-title p {
    color: #666;
    margin-bottom: 35px;
}

/* Form */

.buy-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.buy-full-width {
    grid-column: 1/-1;
}

.buy-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.buy-form-group input,
.buy-form-group textarea {
    width: 100%;
    height: 58px;
    background: #ffffff;
    border: 1px solid #ece4db;
    border-radius: 18px;
    padding: 0 20px;
    outline: none;
    transition: .3s;
}

.buy-form-group textarea {
    height: 130px;
    padding: 18px 20px;
    resize: none;
}

.buy-form-group input:focus,
.buy-form-group textarea:focus {
    border-color: #fd5302;
    box-shadow: 0 0 0 4px rgba(195, 77, 5, .08);
}

/* Order */

.buy-summary-card h3 {
    margin-bottom: 25px;
    font-size: 18px;
}

.buy-product-box {
    background: #fff7df;
    border-radius: 24px;
    padding: 25px;
}

.buy-product-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.buy-product-item:last-child {
    margin-bottom: 0;
}

.buy-product-item h6 {
    margin: 0 0 4px;
    font-size: 16px;
}

.buy-product-item small {
    color: #666;
}

.buy-total-box {
    margin: 25px 0;
    padding: 22px;
    border: 1px dashed #fd5302;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buy-total-box span {
    font-size: 16px;
    font-weight: 600;
}

.buy-total-box h2 {
    margin: 0;
    color: #fd5302;
    font-size: 34px;
}

/* Payment */

.payment-box {
    margin-bottom: 25px;
}

.payment-box h5 {
    margin-bottom: 18px;
    font-size: 18px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff7df;
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 12px;
    cursor: pointer;
}

.payment-option input {
    accent-color: #fd5302;
}

/* Policy */

.buy-policy-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.buy-policy-text a {
    color: #fd5302;
    text-decoration: none;
    font-weight: 600;
}

.buy-policy-text a:hover {
    text-decoration: underline;
}

/* Button */

.place-order-btn {
    width: 100%;
    height: 60px;
    border: none;
    background: #fd5302;
    color: #fff;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.place-order-btn:hover {
    transform: translateY(-2px);
}

/* Responsive */

@media (max-width:991px) {

    .buy-now-wrapper {
        flex-direction: column;
    }

    .buy-summary-card {
        width: 100%;
    }
}

@media (max-width:767px) {

    .buy-now-section {
        padding: 40px 0;
    }

    .buy-form-card,
    .buy-summary-card {
        padding: 22px;
        border-radius: 24px;
    }

    .buy-title h2 {
        font-size: 30px;
    }

    .buy-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .buy-total-box h2 {
        font-size: 28px;
    }
}


@media (max-width:432px) {

    .buy-title h2 {
        font-size: 25px;
    }


    .buy-total-box h2 {
        font-size: 24px;
    }
}

/* buy page end */



/* bannner start*/

.hero-banner {
    background: #ffffff;
    padding: 30px 0;
}

.hero-banner-box {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 20px 50px rgba(0,0,0,.10); */
}

/* Slider Images */
.hero-bg-slider,
.hero-bg-slider .owl-stage-outer,
.hero-bg-slider .owl-stage,
.hero-bg-slider .owl-item,
.hero-bg-item {
    height: 100%;
}

.hero-bg-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-banner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.25)
        );

    /* background: linear-gradient(135deg,
            rgba(195, 77, 5, 0.75),
            rgba(195, 77, 5, 0.45)); */
    z-index: 2;
}

/* Fixed Content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-badge {
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 70px;
    color: #fff7df;
    font-weight: 800;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 20px;
    /* font-family: "Croissant One", serif; */
    font-family: "Dancing Script", cursive;
}

.hero-content p {
    font-size: 18px;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-btn {
    background: #fd5302;
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    background: #fff;
    color: #fd5302;
}

/* Responsive */
@media (max-width:991px) {
    .hero-banner-box {
        height: 500px;
        border-radius: 25px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width:576px) {
    .hero-banner {
        padding: 50px 0;
    }

    .hero-banner-box {
        height: 430px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

/* banner end */




/* signup page */

.food-signup-section {
    background: #fff7df;
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.food-signup-box {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Left Image Side */

.food-signup-image {
    position: relative;
    min-height: 650px;
}

.food-signup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-signup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(195,77,5,.45),
        rgba(195,77,5,.75)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    color: #fff;
}

.food-signup-overlay h2 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.food-signup-overlay p {
    font-size: 16px;
    line-height: 1.8;
}

/* Right Form */

.food-signup-form-side {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.food-signup-heading h3 {
    font-size: 30px;
    font-weight: 500;
    color: #222;
    margin-bottom: 12px;
}

.food-signup-heading p {
    color: #777;
    margin-bottom: 40px;
}

.food-form-group {
    margin-bottom: 22px;
}

.food-form-group input {
    width: 100%;
    height: 60px;
    border: 2px solid #f1f1f1;
    background: #fffaf0;
    border-radius: 16px;
    padding: 0 22px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.food-form-group input:focus {
    border-color: #fd5302;
    background: #fff;
}

.food-signup-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 16px;
    background: #fd5302;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: .3s;
}

.food-signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(195,77,5,.25);
}

.food-login-link {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.food-login-link a {
    color: #fd5302;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
    .food-signup-box {
        grid-template-columns: 1fr;
    }

    .food-signup-image {
        min-height: 320px;
    }

    .food-signup-form-side {
        padding: 45px 30px;
    }

    .food-signup-overlay h2 {
        font-size: 30px;
    }

    .food-signup-heading h3 {
        font-size: 32px;
    }
}


@media (max-width: 432px) {
    
    .food-signup-overlay h2 {
        font-size: 25px;
    }

    .food-signup-overlay p{
        font-size: 15px;
    }

    .food-signup-heading h3 {
        font-size: 25px;
    }
}

/* signup end */



/* login page */

.food-login-section {
    background: #fff7df;
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.food-login-box {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Left Image Side */

.food-login-image {
    position: relative;
    min-height: 650px;
}

.food-login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-login-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(195,77,5,.45),
        rgba(195,77,5,.75)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    color: #fff;
}

.food-login-overlay h2 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.food-login-overlay p {
    font-size: 16px;
    line-height: 1.8;
}

/* Right Form */

.food-login-form-side {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.food-login-heading h3 {
    font-size: 30px;
    font-weight: 500;
    color: #222;
    margin-bottom: 12px;
}

.food-login-heading p {
    color: #777;
    margin-bottom: 40px;
}

.food-login-group {
    margin-bottom: 22px;
}

.food-login-group input {
    width: 100%;
    height: 60px;
    border: 2px solid #f1f1f1;
    background: #fffaf0;
    border-radius: 16px;
    padding: 0 22px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.food-login-group input:focus {
    border-color: #fd5302;
    background: #fff;
}

.food-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.food-login-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.food-login-options a {
    color: #fd5302;
    text-decoration: none;
    font-weight: 600;
}

.food-login-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 16px;
    background: #fd5302;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.food-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(195,77,5,.25);
}

.food-register-link {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.food-register-link a {
    color: #fd5302;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */

@media (max-width:991px) {
    .food-login-box {
        grid-template-columns: 1fr;
    }

    .food-login-image {
        min-height: 320px;
    }

    .food-login-form-side {
        padding: 45px 30px;
    }

    .food-login-overlay h2 {
        font-size: 30px;
    }

    .food-login-heading h3 {
        font-size: 32px;
    }
}

@media (max-width:432px) {
    .food-login-overlay h2 {
        font-size: 25px;
    }

    .food-login-overlay p {
        font-size: 15px;
    }

    .food-login-heading h3 {
        font-size: 25px;
    }

    .food-login-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}


/* login page end */



/* privacy page */

.privacy-section {
    background: #fff7df;
    padding: 40px 0;
}

.privacy-heading {
    max-width: 750px;
    margin: 0 auto 60px;
}

.privacy-heading span {
    display: inline-block;
    background: rgba(195, 77, 5, 0.1);
    color: #fd5302;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy-heading h2 {
    font-size:30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.privacy-heading p {
    color: #666;
    line-height: 30px;
}

.privacy-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    /* box-shadow: 0 20px 50px rgba(0,0,0,.08); */
}

.privacy-item {
    padding: 25px 0;
    border-bottom: 1px solid #f1f1f1;
}

.privacy-item:last-child {
    border-bottom: none;
}

.privacy-item h4 {
    color: #fd5302;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.privacy-item p {
    color: #666;
    line-height: 30px;
    margin: 0;
}

@media (max-width: 767px) {
    .privacy-section {
        padding: 50px 0;
    }

    .privacy-box {
        padding: 30px 25px;
        border-radius: 25px;
    }

    .privacy-heading h2 {
        font-size: 30px;
    }

    .privacy-item h4 {
        font-size: 20px;
    }

    .privacy-item p {
        line-height: 28px;
    }
}


@media (max-width: 432px) {
   .privacy-heading h2 {
        font-size: 23px;
    }

    .privacy-item h4 {
        font-size: 18px;
    }
}


/* privacy  end */