:root {
    --bg: #050505;
    --surface: #121212;
    --surface-2: #1b1b1b;
    --accent: #ff8b3d;
    --accent-dark: #ff6a1b;
    --text: #f8efe7;
    --muted: #b9a898;
    --border: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth
}

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 139, 61, 0.18), transparent 28%),
        linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.login-loader {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);

    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


.loader-card {

    width: 320px;
    padding: 35px;
     background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: popup .3s ease;

}


.loader-card h3 {

    margin: 15px 0 5px;
    color: #f8f9fa;
    font-size: 20px;

}


.loader-card p {

    color: #686868;
    font-size: 14px;

}


.spinner {

    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 5px solid #e5e7eb;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    margin: auto;

}


.progress-bar {

    width:100%;
    height:8px;
    background:#e5e7eb;
    border-radius:20px;
    overflow:hidden;
    margin-top:25px;

}


.progress-fill {

    height:100%;
    width:0%;
    background:linear-gradient(
        90deg,
        var(--accent),
        #7c3aed
    );

    animation: progress 2s infinite;

}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.social-links a:hover {
    background: #ff9800;
    transform: translateY(-3px);
}
@keyframes spin {

    to {
        transform:rotate(360deg);
    }

}


@keyframes progress {

    0% {
        width:0%;
    }

    50% {
        width:75%;
    }

    100% {
        width:100%;
    }

}


@keyframes popup {

    from {
        transform:scale(.8);
        opacity:0;
    }

    to {
        transform:scale(1);
        opacity:1;
    }

}
.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.038);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.012);
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer_header_image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 18px;
    margin-top: 18px;
}

@media (max-width:992px) {
    .offer_header_image {
        height: 350px;
    }
}

@media (max-width:768px) {
    .offer_header_image {
        height: 220px;
        border-radius: 18px;
    }
}

.offer_header_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Premium hover */


/* Soft gradient shine */


@media(max-width:768px) {
    .offer_header_image {
        height: 180px;
        border-radius: 18px;
    }
}

/* Logo */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    font-size: 1.5rem;
    font-weight: 700;

    color: #fff;
}

.brand span {
    color: #ff8b3d;
}

/* Navigation */

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links a {
    text-decoration: none;

    color: #d5d5d5;

    padding: 10px 18px;

    border-radius: 50px;

    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {

    background: #ff8b3d;
    color: #fff;

    box-shadow: 0 8px 20px rgba(255, 139, 61, .3);
}

/* Right Side */

.nav-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    border: none;
    background: #1f1f1f;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 139, 61, .35);
}

.menu-btn {
    display: none;
    border: none;
    background: #1f1f1f;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 22px;
}
/* Overlay */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}


.offer-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}
/* Responsive */

@media(max-width:768px) {

    .nav-links {
        display: none;
    }

    .cart-btn span {
        display: none;
    }

    .cart-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);

    }

    .menu-btn {
        display: block;
    }

    .brand {
        font-size: 1.2rem;
    }
}

.mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;

    height: 70px;

    display: none;
    justify-content: space-around;
    align-items: center;

    background: rgba(18, 18, 18, .88);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .45),
        inset 0 1px rgba(255, 255, 255, .05);

    z-index: 999;
}

.nav-item {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    color: #9e9e9e;

    font-size: 11px;
    font-weight: 600;

    transition: .3s;
}

.nav-item .icon {
    font-size: 22px;
    margin-bottom: 4px;
    transition: .3s;
}

.nav-item:hover {
    color: #ff8b3d;
}

.nav-item.active {
    color: #ff8b3d;
}

.nav-item.active .icon {
    transform: translateY(-4px) scale(1.15);
}

/* Mobile Only */

@media(max-width:768px) {

    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 90px;
    }

}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0 2rem;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    font-size: 0.8rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin: 0.3rem 0 0.8rem;
}

.hero p {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0 0 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-meta div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    color: var(--text);
    font-size: 0.95rem;
}

.hero-meta span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #140a04;
    box-shadow: 0 10px 30px rgba(255, 139, 61, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
}

.hero-card {
    background: linear-gradient(145deg, rgba(255, 139, 61, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 1.3rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.hero-card h3 {
    margin: 0 0 0.4rem;
}

.hero-card ul {
    padding-left: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.section {
    padding: 1.5rem 0 2.5rem;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-title h2 {
    margin: 0;
    font-size: 1.25rem;
}

.category-row {
    display: flex;
    gap: 16px;
    padding-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.category-row::-webkit-scrollbar {
    display: none;
    /* Chrome, Edge, Safari */
}

.category-row.active {
    cursor: grabbing;
}

.category-card {
    flex: 0 0 180px;
}



.category-row::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.category-item {
    flex: 0 0 auto;
    width: 110px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    overflow: hidden;
}

.category-item:hover {
    transform: translateY(-4px);
    border-color: #ff8b3d;
    box-shadow: 0 10px 25px rgba(255, 139, 61, 0.25);
}

.category-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff8b3d;
    display: block;
    margin: 0 auto 10px;
}

.category-item span {
    display: -webkit-box;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 20px;
    max-height: 40px;
}

.category-card {
    flex: 0 0 min(280px, 82vw);
    max-width: 280px;
    height: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0;
    overflow: hidden;

}

.category-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.category-card-content {
    padding: 1rem;
}

.category-card .emoji {
    font-size: 1.7rem;
}

.category-card p {
    margin: 0.3rem 0 0.6rem;
    color: var(--muted);
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.menus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Tablet */
@media (min-width:768px) {
    .menus {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width:1200px) {
    .menus {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-card {
    background: #161616;
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 139, 61, .2);
}

.menu-image {
    position: relative;
}

.menu-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff8b3d;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.menu-content {
    padding: 18px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-header h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.price {
    color: #ff8b3d;
    font-size: 20px;
    font-weight: 700;
}

.description {
    color: #bfbfbf;
    font-size: 14px;
    line-height: 2.1;
    margin-bottom: 18px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    color: #FFD54F;
    font-weight: 600;
}

.add-btn {
    background: #ff8b3d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.add-btn:hover {
    background: #ff7420;
}

.chip {
    background: rgba(255, 139, 61, 0.14);
    color: var(--accent);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.menu-image img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.menu-content {
    padding: 12px;
}

.menu-header h3 {
    font-size: 16px;
}

.price {
    font-size: 16px;
}

.description {
    font-size: 13px;
    margin: 8px 0;
}

.add-btn {
    padding: 8px 14px;
    font-size: 13px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.card-body {
    padding: 1rem;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.card h3 {
    margin: 0 0 0.35rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.price {
    font-weight: 800;
    color: var(--accent);
}

.emoji {
    font-size: 2rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.order-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.cart {
    background: var(--surface-2);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

form {
    display: grid;
    gap: 0.75rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    padding: 0.8rem 0.9rem;
    font: inherit;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.status {
    margin-top: 0.75rem;
    min-height: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 860px) {

    .hero,
    .order-layout {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 4.2rem;
    }
}


.hero-slider {
    position: relative;
    margin: 18px;
    overflow: hidden;
    border-radius: 22px;
}

.slides {
    display: flex;
    transition: .5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .15));
}

.offer {
    width: max-content;
    background: #ff8b3d;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.overlay h2 {
    margin: 14px 0 8px;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
}

.overlay p {
    color: #ddd;
    margin-bottom: 18px;
}

.overlay button {
    width: max-content;
    background: #ff8b3d;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ffffff88;
    border-radius: 50%;
}

.dot.active {
    width: 28px;
    border-radius: 20px;
    background: #ff8b3d;
}

/* Review  */
.reviews {
    padding: 70px 20px;
}

.review_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 600px;
}

.review_header h2 {
    margin: 0;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

.review_header p {
    margin-top: 12px;
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.6;
}

.section-title h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #aaa;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: linear-gradient(135deg, #181818, #232323);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 24px;
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 139, 61, .25);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff8b3d;
}

.review-header h4 {
    margin: 0;
    color: #fff;
}

.review-header span {
    color: #FFD54F;
    font-size: 14px;
}

.review-card p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 15px;
}

/* Tablet */
@media(max-width:992px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

.about {
    max-width: 1200px;
    margin: 80px auto;
    /* padding: 0 20px; */

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: top;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.about-tag {
    display: inline-block;

    padding: 8px 18px;

    background: rgba(255, 139, 61, .15);
    color: #ff8b3d;

    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.about-content h2 {
    margin: 20px 0;
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
}

.about-content>p {
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature {
    display: flex;
    gap: 18px;
    padding: 18px;

    background: linear-gradient(135deg, #181818, #232323);

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, .06);

    transition: .3s;
}

.feature:hover {
    transform: translateX(8px);
    border-color: #ff8b3d;
}

.feature span {
    font-size: 30px;
}

.feature h4 {
    margin: 0 0 6px;
    color: #fff;
}

.feature p {
    margin: 0;
    color: #bdbdbd;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

    margin: 35px 0;
}

.about-stats div {
    text-align: center;

    padding: 8px;

    border-radius: 12px;

    background: #171717;
}

.about-stats h3 {
    margin: 0;
    color: #ff8b3d;
    font-size: 18px;
}

.about-stats span {
    color: #aaa;
    font-size: 12px;
}

.about-btn {
    display: inline-block;

    padding: 14px 30px;

    background: #ff8b3d;
    color: #fff;

    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;

    transition: .3s;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 139, 61, .35);
}

@media(max-width:768px) {

    .about {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 300px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    /* .about-stats {
        grid-template-columns: 1fr;
    } */
}
.menu-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
/* Offer Section  */
.offers {
    padding: 50px 0;
}

.offer-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.offer-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 139, 61, .15);
    color: #ff8b3d;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-header h2 {
    margin: 18px 0 10px;
    font-size: 42px;
    color: #fff;
}

.offer-header p {
    color: #aaa;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.offer-card {
    background: linear-gradient(135deg, #181818, #252525);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 30px;
    transition: .35s;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(255, 139, 61, .25);
}

.offer-card.featured {
    background: linear-gradient(135deg, #ff8b3d, #ff6a00);
    color: #fff;
}

.discount {
    display: inline-block;
    background: #fff;
    color: #ff6a00;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.offer-card h3 {
    margin-bottom: 12px;
    color: #fff;
}

.offer-card p {
    color: #cfcfcf;
    line-height: 1.7;
}

.offer-card.featured p {
    color: #fff;
}

.offer-card a {
    display: inline-block;
    margin-top: 20px;
    color: #ff8b3d;
    text-decoration: none;
    font-weight: 600;
}

.offer-card.featured a {
    color: #fff;
}

@media(max-width:992px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-header h2 {
        font-size: 30px;
    }
}

/* gallery section  */
.gallery {
    padding: 80px 20px;
}

.gallery-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.gallery-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 139, 61, .15);
    color: #ff8b3d;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-header h2 {
    margin: 18px 0 10px;
    color: #fff;
    font-size: 42px;
}

.gallery-header p {
    color: #aaa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 220px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            transparent);

    display: flex;
    align-items: flex-end;
    padding: 25px;

    opacity: 0;
    transition: .35s;
}

.gallery-overlay h3 {
    color: #fff;
    margin: 0;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media(max-width:992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

}

@media(max-width:768px) {

    .gallery-header h2 {
        font-size: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

}

/* footer */
.footer {
    margin-top: 80px;
    background: linear-gradient(135deg, #0b0b0b1a, #1a1a1a, #ff8b3d28);
    /* border-top:1px solid rgba(255,255,255,.08); */
    color: #ddd;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 40px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer h2 {
    color: #ff8b3d;
    margin-bottom: 15px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 18px;
}

.footer p {
    color: #aaa;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #ff8b3d;
    padding-left: 6px;
}

.footer-bottom {
        max-width: 1200px;
    text-align: center;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #888;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

/* Tablet */
@media (max-width:992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}

/* Mobile - Hide footer */
@media (max-width:768px) {
    .footer {
        display: none;
    }
}




/* ===== Cart Layout ===== */
.cart-page {
    max-width: 1200px;
    /* margin:40px auto;
    padding:20px; */
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom:25px; */
}

.cart-header h2 {
    color: #fff;
    font-size: 32px;
}

.cart-header span {
    color: #ff8b3d;
    font-weight: 700;
    font-size: 18px;
}

/* Cart List */
.cart-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 22px;
    background: #181818;
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s ease;
}

.cart-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 139, 61, .3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.cart-item img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
}

.cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-info h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}

.cart-info p {
    color: #aaa;
    margin: 10px 0 0;
    font-size: 16px;
}

.cart-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price {
    color: #ff8b3d;
    font-size: 26px;
    font-weight: 800;
}

/* Quantity Box */
.qty-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #232323;
    padding: 8px 14px;
    border-radius: 40px;
}

.qty-box button {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #ff8b3d;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* Summary */
.cart-summary {
    background: #181818;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 20px;
}

.row {
    display: flex;
    justify-content: space-between;
    margin: 16px 0;
    color: #ddd;
    font-size: 17px;
}

.total {
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
}

.checkout-btn {
    width: 100%;
    margin-top: 28px;
    padding: 18px;
    border: none;
    border-radius: 18px;
    background: #ff8b3d;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.checkout-btn:hover {
    background: #ff7420;
    transform: translateY(-2px);
}

/* ===== Mobile ===== */
@media(max-width:768px) {

    .cart-page {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cart-item {
        flex-direction: row;
        padding: 15px;
        gap: 16px;
    }

    .cart-item img {
        width: 90px;
        height: 90px;
        border-radius: 16px;
    }

    .cart-info h3 {
        font-size: 18px;
    }

    .cart-info p {
        font-size: 14px;
    }

    .price {
        font-size: 20px;
    }

    .cart-summary {
        position: static;
    }
}



/* menu detail  */

/* .container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
} */

.food-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #181818, #232323);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.food-image {
    position: relative;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.food-image:hover img {
    transform: scale(1.08);
}



.food-info {
    padding: 15px;
}



.title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.title-price h1 {
    font-size: 36 px;
    margin-bottom: 8px;
    color: #fcfcfc;
}

.category {
    color: #777;
    font-size: 17px;
}

.price-box {
    text-align: right;
}

.price-box small {
    color: #888;
}

.price-box h2 {
    color: #ff6b35;
    font-size: 42px;
}



.description {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}



.chips span:hover {
    background: #ff6b35;
    color: #fff;
}

.bottom-area {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 18px;
    background: black;
    padding: 10px 18px;
    border-radius: 50px;
    color: white;
}

.quantity button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #181818, #232323);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .08);
    color: white;
}

.quantity span {
    font-size: 20px;
    font-weight: 600;
}

.cart-btn- {
    border: none;
    padding: 12px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7a18, #ff4b2b);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 15px 35px rgba(255, 107, 53, .35);
}

.cart-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(255, 107, 53, .45);
}

@media(max-width:900px) {
    .food-detail {
        grid-template-columns: 1fr;
        gap: 50;
    }

}



.skeleton {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);
    animation: shimmer 1.4s infinite;
}

.loader-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.loader-text {
    width: 75%;
    height: 14px;
    border-radius: 8px;
    margin: auto;
}
.menu-loader {
    /* display: flex; */
    gap: 15px;
    padding: 15px;
     background: linear-gradient(135deg, #181818, #232323);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #151515;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );
    animation: shimmer 1.4s infinite;
}

.menu-img {
    width: 100%;
    height: 90px;
    border-radius: 12px;
    flex-shrink: 0;
}

.menu-content {
    flex: 1;
    padding-top: 5px;
}

.menu-title {
    width: 100%;
    height: 18px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.menu-desc {
    width: 90%;
    height: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menu-price {
    width: 35%;
    height: 15px;
    border-radius: 8px;
}


@keyframes shimmer {
    100% {
        left: 150%;
    }
}


.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background: #161616;
    padding: 25px;
    width: 350px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 5px 5px 35px rgb(26, 26, 26);
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 5px;
    font-size: 15px;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 25px;
}


.payment-box {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.payment-option {
    flex: 1;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-card {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    background: #161616;
}

.payment-card span {
    font-size: 30px;
}

.payment-card h4 {
    margin: 8px 0;
    font-size: 16px;
}

.payment-card p {
    margin: 0;
    font-size: 13px;
    color: #777;
}


/* Selected payment */
.payment-option input:checked+.payment-card {
    border-color: #ff6b00;
    background: #161616;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.payment-card:hover {
    border-color: #ff6b00;
}

.qr-content {
    width: 500px;
    text-align: center;
}

.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.qr-option {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 10px;
    width: 140px;
    background: #161616;
}

.qr-option img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.qr-option h4 {
    margin: 5px;
}

.qr-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 25px;
}




.profile-card {
    background:
        linear-gradient(145deg,
            #161616,
            #090909);
    border-radius: 28px;
    padding: 25px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .7);
    border: 1px solid #242424;
}
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout-btn {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.logout-btn:hover {
    background: #c1121f;
}

.profile-header_s {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow:
        0 0 20px var(--accent-dark);
}


h1 {

    font-size: 25px;
    margin-bottom: 8px;

}


.email {

    color: #aaa;
    font-size: 14px;

}


.info-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

}


.info-box {

    background: #111;

    padding: 18px;
    border-radius: 18px;

    border: 1px solid #222;

}


.info-box span {

    color: var(--accent);
    font-size: 13px;

}


.info-box p {

    margin-top: 8px;
    color: #ddd;
    font-size: 14px;

}



.orders {

    margin-top: 30px;

}


.orders h2 {

    margin-bottom: 15px;
    font-size: 20px;

}



.order-card {

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #111;

    padding: 18px;

    border-radius: 18px;

    margin-bottom: 12px;

    border: 1px solid #222;

    transition: .3s;

}


.order-card:hover {

    transform: translateY(-4px);

    border-color: var(--accent);

}



.order-card h3 {

    font-size: 16px;

}


.order-card p {

    color: #888;
    font-size: 13px;
    margin-top: 5px;

}


.order-card strong {

    color: var(--accent);
    font-size: 18px;

}


.mobile {
    display: none;
}

.desk {
    display: inline-block;
}


/* Mobile App Style */

@media(max-width:480px) {

    /* .container {
        padding: 12px;
    } */

  .desk {
        display: none;
    }

    .mobile {
        display: inline-block;
        margin-top: 10px;
    }
    .profile-card {

        padding: 20px;
        border-radius: 24px;

    }
    .profile-header {

        flex-direction: column;
        text-align: center;

    }


    .profile-image {

        width: 100px;
        height: 100px;

    }


    .info-grid {

        grid-template-columns: 1fr;

    }


    .order-card {

        padding: 15px;

    }

}





/* Order Page */
.order-page{
    display:flex;
    flex-direction:column;
    gap:20px;
    /* padding:15px; */
}

/* Card */
.order-card_{
    background:#151515;
    border:1px solid #2b2b2b;
    border-radius:18px;
    padding:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

/* Header */
.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.card-header h3,
.order-card h3{
    font-size:18px;
    font-weight:600;
    color:#fff;
}

/* Status Badge */


.pending{
    background:#ffb300;
    color:#111;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

/* Information Rows */
.info-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.info-row:last-child{
    border-bottom:none;
}

.info-row span{
    color:#9ca3af;
    font-size:14px;
}

.info-row strong{
    color:#fff;
    text-align:right;
    font-size:14px;
    font-weight:600;
    word-break:break-word;
}

/* Total */
.total{
    margin-top:10px;
}

.total strong{
    color:var(--accent);
    font-size:18px;
}

/* Items */
.item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.item:last-child{
    border-bottom:none;
}

.item img{
    width:70px;
    height:70px;
    border-radius:12px;
    object-fit:cover;
    background:#222;
}

.flex-grow{
    flex:1;
    min-width:0;
}

.flex-grow h4{
    color:#fff;
    margin-bottom:6px;
    font-size:16px;
}

.flex-grow small{
    color:#9ca3af;
    display:block;
    margin-top:3px;
    font-size:13px;
}

.item strong{
    color:var(--accent);
    font-size:16px;
    white-space:nowrap;
}

.text-success{
    color:#22c55e !important;
}

/* Tablet */
@media (max-width:768px){

    .order-page{
        padding:12px;
        gap:15px;
    }

    .order-card{
        padding:16px;
    }

}

/* Mobile */
@media (max-width:576px){

    .order-page{
        padding:10px;
    }

    .card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .info-row{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .info-row strong{
        text-align:left;
    }

    .item{
        align-items:flex-start;
    }

    .item img{
        width:60px;
        height:60px;
    }

    .item strong{
        font-size:15px;
    }

    .flex-grow h4{
        font-size:15px;
    }

}

/* Small Phones */
@media (max-width:380px){

    .order-card{
        padding:14px;
        border-radius:14px;
    }

    .card-header h3,
    .order-card h3{
        font-size:16px;
    }

    .badge{
        font-size:11px;
        padding:5px 12px;
    }

    .item{
        gap:10px;
    }

    .item img{
        width:55px;
        height:55px;
    }

}

.cart-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title h3 {
    margin: 0;
}

.cart-delete {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-delete:hover {
    background: #d93636;
}


.login-card{
    max-width:420px;
    margin:40px auto;
     background:#151515;
    border:1px solid #2b2b2b;
    padding:25px;
    border-radius:12px;
   
}

.form-group{
    margin-bottom:15px;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.form-group input{
    width:100%;
    padding:10px;
     background:#151515;
    border:1px solid #2b2b2b;
    border-radius:8px;
    outline: none;
   
    
}

.btn-login{
    width:100%;
    padding:12px;
    border:none;
    background:var(--accent);
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.btn-login:hover{
    background:#218838;
}