:root {

    --primary-col: #f7b70b;
    --primary-dark: #dca306;

    --bg-dark: #f8f9fa;

    --bg-card: #ffffff;

    --text-white: #343434;

    --text-muted: #a7a7a7;

    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.highlight {
    color: var(--primary-col);
    font-weight: 800;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-col), var(--primary-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 183, 11, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: var(--bg-dark);
    border: 1px solid #ddd;
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #eee;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: padding 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-col);
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.new-nav {
    background: #333333;
    border-bottom: none;
    padding: 5px 0;
}


.v44_568 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.5px;
    line-height: 1;
}

:root {
    --primary-col: #dca306;
}

.v44_569 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-top: 4px;
}

.new-nav .nav-links a {
    color: var(--primary-col);
    font-size: 0.8rem;
    font-weight: 500;
}

.new-nav .nav-links a.active {
    border-bottom: 2px solid var(--primary-col);
    padding-bottom: 5px;
}

.new-hero {
    position: relative;
    padding: 0;
    width: 100%;
    margin-top: 60px;
    /* Use img tag for dynamic aspect ratio */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* --- Carousel Styles --- */
.carousel-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.prev-slide,
.next-slide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
}

.next-slide {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-slide {
    left: 0;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-col);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.menu-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #dca306;
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-col);
    border-color: var(--primary-col);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 183, 11, 0.3);
}

.menu-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.menu-grid::-webkit-scrollbar {
    height: 8px;
}

.menu-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.menu-grid::-webkit-scrollbar-thumb {
    background: var(--primary-col);
    border-radius: 10px;
}

.menu-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.menu-card {
    flex: 0 0 280px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: none;
    text-align: center;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: none;
}

.menu-img {
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-bottom: none;
    background-color: transparent;
    margin: 0 auto;
}

.img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background: transparent;
    color: var(--text-muted);
    font-size: 2rem;
}

.menu-info {
    padding: 10px;
}

.menu-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.menu-category {
    display: none;
}

.menu-price {
    display: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-col);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.left-arrow {
    left: 10%;
}

.right-arrow {
    right: 10%;
}

.about-section {
    background: #f4f4f4;
    padding: 80px 20px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    color: #a7a7a7;
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-text p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    mix-blend-mode: multiply;
}

.gallery-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.section-subtitle {
    color: var(--primary-col);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.gallery-section h2 {
    color: #c4c4c4;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-top: 5px;
}

.gallery-line {
    width: 50px;
    height: 4px;
    background: var(--primary-col);
    margin: 15px auto 40px auto;
}

.gallery-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 5px;
}

.main-footer {
    background: #4a4543;
    padding: 60px 20px;
    color: white;
    border-top: none;
    margin-top: 0;
    text-align: left;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo span {
    color: var(--primary-col);
    font-size: 1.5rem;
}

.socials {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.socials i {
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
}

.socials i:hover {
    color: white;
}

.main-footer h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.main-footer ul {
    list-style: none;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer ul li a {
    color: #aaa;
    font-size: 0.8rem;
}

.main-footer ul li a:hover {
    color: white;
}

.loader-container {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--primary-col);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary-col);
}

.menu-detail-layout {
    display: flex;
    gap: 30px;
}

.menu-detail-img {
    flex: 1;
}

.menu-detail-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.menu-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-detail-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.category-badge {
    display: inline-block;
    background: rgba(247, 183, 11, 0.1);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.menu-detail-info .price {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.menu-detail-info .desc {
    color: var(--text-muted);
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
}

.exit-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.exit-link:hover {
    color: var(--primary-col);
    text-decoration: underline;
}

.cart-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-col);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.cart-floating-btn:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--primary-col);
    font-size: 0.8rem;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-modal {
    margin: 0 0 0 auto;
    min-height: 100vh;
    border-radius: 0;
    width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.modal.show .side-modal {
    transform: translateX(0);
}

.cart-items {
    margin: 20px 0;
    max-height: 60vh;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
}

.cart-item-price {
    color: var(--primary-col);
    font-size: 0.9rem;
}

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

.cart-btn {
    background: #eee;
    border: 1px solid #ddd;
    color: var(--text-white);
    width: 28px;
    height: 28px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.cart-btn:hover {
    background: var(--primary-col);
    color: white;
    border-color: var(--primary-col);
}

.cart-qty {
    font-weight: bold;
    width: 20px;
    text-align: center;
}

.cart-total {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: right;
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}

@media (max-width: 768px) {
    .menu-detail-layout {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;

    }
}