/* =====================================================
   CAFFEINE COVE
   MODERN COFFEE HOUSE
===================================================== */

:root {
    --bg: #f1f1f1;
    --bg-secondary: #fbfbfb;
    --white: #ffffff;

    --black: #1f2226;
    --dark: #292929;
    --gray: #666;
    --light-gray: #ddd;

    --brown: #c7a17a;
    --brown-dark: #9d7956;
    --brown-light: #e8d5bd;

    --border: rgba(31, 34, 38, 0.12);

    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.12);

    --transition: 0.35s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


body {
    font-family: "Open Sans", sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}


body.no-scroll {
    overflow: hidden;
}


img {
    max-width: 100%;
}


a {
    text-decoration: none;
}


button,
input,
textarea {
    font-family: inherit;
}


button {
    border: none;
}


ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: "Oswald", sans-serif;
}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-track {
    background: #eee;
}


::-webkit-scrollbar-thumb {
    background: var(--brown);
    border-radius: 20px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--brown-dark);
}


/* =====================================================
   LOADER
===================================================== */

#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;

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

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}


#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
}


.loader-content {
    text-align: center;
    color: #fff;
}


.loader-content h3 {
    color: #fff;
    font-size: 28px;
    margin-top: 18px;
}


.loader-content p {
    color: #aaa;
    font-size: 13px;
    margin-top: 5px;
}


.coffee-loader {
    width: 80px;
    height: 80px;

    margin: auto;

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

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    animation: loaderPulse 1.5s infinite;
}


.coffee-loader i {
    color: var(--brown);
    font-size: 30px;

    animation: coffeeRotate 1.8s infinite ease-in-out;
}


@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.08);
    }
}


@keyframes coffeeRotate {

    0% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}


/* =====================================================
   GLOBAL
===================================================== */

.section-padding {
    padding: 110px 0;
}


.section-label {
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
}


.section-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--dark);
    margin: 12px 0 20px;
}


.section-title span {
    color: var(--brown);
}


.section-description {
    color: var(--gray);
    line-height: 1.9;
    max-width: 570px;
}


/* =====================================================
   HEADER
===================================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}


#header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}


#header .navbar {
    min-height: 78px;
}


.logo {
    width: 190px;
    display: block;

    transition: var(--transition);
}


.logo:hover {
    opacity: 0.8;
}


.navbar-nav {
    gap: 4px;
}


.nav-link {
    position: relative;

    color: var(--dark) !important;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 15px !important;

    transition: var(--transition);
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    background: var(--brown);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}


.nav-link:hover,
.nav-link.active {
    color: var(--brown) !important;
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 18px;
}


.header-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #f4f4f4;

    color: var(--dark);

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

    position: relative;

    cursor: pointer;

    transition: var(--transition);
}


.header-icon:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-2px);
}


.icon-count {
    position: absolute;

    top: -4px;
    right: -3px;

    min-width: 17px;
    height: 17px;

    padding: 0 4px;

    border-radius: 20px;

    background: var(--black);
    color: #fff;

    font-size: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.wishlist-btn.active {
    background: #ffe9e9;
    color: #c0392b;
}


.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}


.navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    background: none;

    font-size: 22px;
    color: var(--dark);
}


#scrollProgress {
    position: absolute;

    bottom: 0;
    left: 0;

    height: 2px;

    width: 0%;

    background: var(--brown);
}


/* =====================================================
   HERO
===================================================== */

#home {
    min-height: 100vh;

    position: relative;

    overflow: v;

    background:
        url("./images/home-bg.png") center / cover no-repeat,
        var(--bg);

    display: flex;
    align-items: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(241, 241, 241, 0.96) 0%,
            rgba(241, 241, 241, 0.86) 48%,
            rgba(241, 241, 241, 0.35) 100%
        );
}


.home-content {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 30px;

    padding-top: 70px;
}


.hero-badge {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    background: rgba(199, 161, 122, 0.12);

    color: var(--brown-dark);

    border: 1px solid rgba(199, 161, 122, 0.25);

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.hero-badge i {
    color: var(--brown);
}


.content-text h3 {
    font-size: 24px;

    font-weight: 400;

    margin-top: 25px;
}


.content-text h1 {
    color: var(--dark);

    font-size: clamp(52px, 6vw, 86px);

    line-height: 1;

    font-weight: 600;

    margin: 18px 0 25px;
}


.content-text h1 span {
    color: var(--brown);
    display: block;
}


.content-text > p {
    color: var(--gray);

    max-width: 620px;

    font-size: 16px;

    line-height: 1.8;
}


.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}


.btn-main,
.btn-outline {
    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: 25px;

    font-size: 17px;
    font-weight: 700;

    transition: var(--transition);
}


.btn-main {
    background: var(--brown);
    color: #fff;
}


.btn-main:hover {
    background: var(--black);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}


.btn-outline {
    border: 1px solid var(--dark);
    color: var(--dark);
}


.btn-outline:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px);
}


.hero-stats {
    display: flex;

    gap: 35px;

    margin-top: 55px;
}


.stat {
    display: flex;
    flex-direction: column;
}


.stat strong {
    font-family: "Oswald", sans-serif;

    font-size: 32px;

    color: var(--dark);
}


.stat span {
    font-size: 11px;

    color: var(--gray);

    text-transform: uppercase;

    letter-spacing: 1px;
}


.hero-image {
    position: relative;

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

    min-height: 600px;
}


.hero-image img {
    width: min(650px, 100%);

    position: relative;
    z-index: 2;

    animation: coffeeFloat 5s ease-in-out infinite;
}


@keyframes coffeeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


.hero-image-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(199, 161, 122, 0.18);

    filter: blur(45px);
}


.floating-card {
    position: absolute;

    right: 0;
    bottom: 130px;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(255, 255, 255, 0.94);

    padding: 13px 17px;

    border-radius: 12px;

    box-shadow: var(--shadow-lg);

    animation: floatingCard 4s ease-in-out infinite;
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


.floating-card > i {
    color: #e6a72c;
}


.floating-card strong {
    display: block;
    font-size: 14px;
}


.floating-card span {
    color: #777;
    font-size: 10px;
}


.scroll-indicator {
    position: absolute;

    z-index: 4;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 6px;

    color: #777;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.scroll-indicator i {
    animation: scrollArrow 1.5s infinite;
}


@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =====================================================
   ABOUT
===================================================== */

#about {
    background: #fff;
}


.about-image-wrapper {
    position: relative;

    padding: 25px;
}


.about-image-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 70%;
    height: 70%;

    border: 1px solid var(--brown);

    z-index: 0;
}


.about-image-wrapper img {
    position: relative;

    z-index: 2;

    width: 100%;

    display: block;

    box-shadow: var(--shadow-lg);
}


.experience-card {
    position: absolute;

    right: 0;
    bottom: 0;

    z-index: 4;

    background: var(--black);
    color: #fff;

    padding: 20px 25px;

    display: flex;
    flex-direction: column;
}


.experience-card strong {
    color: var(--brown);

    font-family: "Oswald";

    font-size: 38px;

    line-height: 1;
}


.experience-card span {
    font-size: 11px;

    margin-top: 5px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.about-feature {
    display: flex;

    gap: 18px;

    margin-top: 28px;
}


.feature-icon {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

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

    background: rgba(199, 161, 122, 0.12);

    color: var(--brown);

    border-radius: 50%;

    transition: var(--transition);
}


.about-feature:hover .feature-icon {
    background: var(--brown);
    color: #fff;
    transform: rotate(8deg);
}


.about-feature h3 {
    font-size: 20px;
    margin-bottom: 7px;
}


.about-feature p {
    color: var(--gray);

    line-height: 1.7;

    font-size: 14px;
}


/* =====================================================
   MENU
===================================================== */

.menu-section {
    background: var(--bg-secondary);
}


.heading {
    text-align: center;
}


.heading > p {
    color: var(--gray);
}


.menu-controls {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin: 50px 0 30px;
}


.menu-filters {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.filter-btn {
    background: transparent;

    border: 1px solid var(--border);

    color: var(--dark);

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}


.filter-btn:hover,
.filter-btn.active {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}


.menu-search {
    width: 260px;

    position: relative;
}


.menu-search i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #888;
}


.menu-search input {
    width: 100%;

    border: 1px solid var(--border);

    background: #fff;

    border-radius: 30px;

    padding: 12px 15px 12px 42px;

    outline: none;

    font-size: 13px;

    transition: var(--transition);
}


.menu-search input:focus {
    border-color: var(--brown);

    box-shadow:
        0 0 0 4px rgba(199, 161, 122, 0.1);
}


.menu-card {
    height: 100%;

    display: grid;

    grid-template-columns: 190px 1fr;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.menu-card:hover {
    transform: translateY(-6px);

    border-color: rgba(199, 161, 122, 0.35);

    box-shadow: var(--shadow-lg);
}


.menu-image {
    position: relative;

    min-height: 220px;

    overflow: hidden;

    background: #f4f4f4;
}


.menu-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.menu-card:hover .menu-image img {
    transform: scale(1.06);
}


.product-tag {
    position: absolute;

    top: 12px;
    left: 12px;

    background: var(--black);
    color: #fff;

    padding: 6px 9px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    border-radius: 4px;
}


.quick-view {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: var(--dark);

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

    cursor: pointer;

    opacity: 0;

    transform: translateY(-8px);

    transition: var(--transition);
}


.menu-card:hover .quick-view {
    opacity: 1;

    transform: translateY(0);
}


.quick-view:hover {
    background: var(--brown);
    color: #fff;
}


.menu-info {
    padding: 25px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
}


.menu-info h3 {
    font-size: 22px;

    margin-bottom: 12px;
}


.menu-info p {
    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;
}


.menu-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
}


.menu-bottom > strong {
    color: var(--brown);

    font-family: "Oswald";

    font-size: 23px;
}


.product-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}


.wishlist-product,
.add-cart {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    cursor: pointer;

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

    transition: var(--transition);
}


.wishlist-product {
    background: #f5f5f5;
    color: var(--dark);
}


.wishlist-product:hover,
.wishlist-product.active {
    background: #ffe5e5;
    color: #c0392b;
}


.add-cart {
    background: var(--black);
    color: #fff;
}


.add-cart:hover {
    background: var(--brown);
    transform: rotate(90deg);
}


.menu-product.hidden {
    display: none;
}


.empty-menu {
    display: none;

    text-align: center;

    padding: 70px 20px;

    color: var(--gray);
}


.empty-menu.show {
    display: block;
}


.empty-menu i {
    font-size: 45px;

    color: var(--brown);

    margin-bottom: 15px;
}


.empty-menu h3 {
    color: var(--dark);
}


/* =====================================================
   TESTIMONIALS
===================================================== */

#testimonials {
    background: #fff;
}


.testimonial-card {
    position: relative;

    height: 100%;

    background: var(--bg);

    padding: 35px;

    border: 1px solid transparent;

    transition: var(--transition);
}


.testimonial-card:hover {
    transform: translateY(-7px);

    border-color: rgba(199, 161, 122, 0.25);

    box-shadow: var(--shadow-lg);
}


.quote {
    color: var(--brown);

    font-size: 30px;
}


.stars {
    color: #e3a329;

    letter-spacing: 3px;

    font-size: 13px;

    margin: 12px 0;
}


.testimonial-card > p {
    color: var(--gray);

    line-height: 1.8;

    font-size: 14px;

    min-height: 100px;
}


.customer {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
}


.customer img {
    width: 55px;
    height: 55px;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #fff;
}


.customer h3 {
    font-size: 17px;

    margin: 0 0 3px;
}


.customer span {
    color: #888;

    font-size: 11px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    background: var(--bg);
}


.reservation-wrapper {
    margin-top: 50px;

    background: #fff;

    box-shadow: var(--shadow-lg);
}


.map-wrapper {
    min-height: 650px;
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;

    min-height: 650px;

    border: 0;

    display: block;
}


.contact-content {
    padding: 45px;
}


.reservation-icon {
    width: 55px;
    height: 55px;

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

    background: rgba(199, 161, 122, 0.13);

    color: var(--brown);

    border-radius: 50%;

    margin-bottom: 20px;
}


.contact-content h3 {
    font-size: 30px;

    text-transform: uppercase;

    margin-bottom: 10px;
}


.contact-content > p {
    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}


.contact-content label {
    display: block;

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 6px;
}


.contact-content input,
.contact-content textarea {
    width: 100%;

    background: #fafafa;

    border: 1px solid #ddd;

    padding: 13px 14px;

    outline: none;

    font-size: 13px;

    resize: vertical;

    transition: var(--transition);
}


.contact-content input:focus,
.contact-content textarea:focus {
    background: #fff;

    border-color: var(--brown);

    box-shadow:
        0 0 0 4px rgba(199, 161, 122, 0.1);
}


.contact-content input.error,
.contact-content textarea.error {
    border-color: #dc3545;
}


.error-message {
    display: block;

    color: #dc3545;

    font-size: 10px;

    margin-top: 4px;

    min-height: 13px;
}


.btn-submit {
    width: 100%;

    min-height: 52px;

    background: var(--black);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    cursor: pointer;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: var(--transition);
}


.btn-submit:hover {
    background: var(--brown);

    transform: translateY(-2px);
}


/* =====================================================
   FOOTER
===================================================== */

#footer {
    color: #fff;
}


.footer-top {
    background:
        linear-gradient(
            rgba(20, 20, 20, 0.92),
            rgba(20, 20, 20, 0.96)
        ),
        url("./images/footer-bg.png") center / cover;

    padding: 80px 0;
}


.footer-logo {
    width: 190px;

    margin-bottom: 20px;

    filter: brightness(0) invert(1);
}


.footer-description {
    max-width: 430px;

    color: #aaa;

    font-size: 13px;

    line-height: 1.8;
}


#footer h3 {
    color: #fff;

    font-size: 20px;

    margin-bottom: 22px;
}


.social-links {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}


.social-links a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: #fff;

    transition: var(--transition);
}


.social-links a:hover {
    background: var(--brown);

    border-color: var(--brown);

    transform: translateY(-3px);
}


.footer-links li {
    margin-bottom: 12px;
}


.footer-links a {
    color: #aaa;

    font-size: 13px;

    transition: var(--transition);
}


.footer-links a:hover {
    color: var(--brown);

    padding-left: 5px;
}


.contact-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 18px;
}


.contact-list i {
    color: var(--brown);

    width: 18px;

    margin-top: 2px;
}


.copyright {
    background: #151515;

    padding: 20px 0;

    color: #888;

    font-size: 11px;
}


.copyright .container {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


.copyright p {
    margin: 0;
}


.copyright a {
    color: var(--brown);
}


/* =====================================================
   CART
===================================================== */

.cart-canvas {
    width: min(430px, 100%);

    background: #fff;
}


.offcanvas-header {
    padding: 25px;

    border-bottom: 1px solid #eee;
}


.cart-label {
    color: var(--brown);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.offcanvas-header h5 {
    font-size: 27px;

    margin-top: 3px;
}


.cart-items {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.empty-cart {
    text-align: center;

    padding: 80px 20px;

    color: #888;
}


.empty-cart i {
    color: var(--brown);

    font-size: 45px;

    margin-bottom: 15px;
}


.empty-cart h3 {
    color: var(--dark);

    font-size: 21px;
}


.empty-cart p {
    font-size: 12px;
}


.cart-item {
    display: grid;

    grid-template-columns: 65px 1fr auto;

    gap: 12px;

    align-items: center;

    padding-bottom: 15px;

    border-bottom: 1px solid #eee;
}


.cart-item img {
    width: 65px;
    height: 65px;

    object-fit: cover;

    background: #f4f4f4;
}


.cart-item-info h4 {
    font-size: 16px;

    margin-bottom: 5px;
}


.cart-item-price {
    color: var(--brown);

    font-size: 13px;

    font-weight: 700;
}


.quantity-control {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 8px;
}


.quantity-control button {
    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #eee;

    cursor: pointer;
}


.quantity-control span {
    font-size: 12px;

    min-width: 15px;

    text-align: center;
}


.remove-item {
    background: transparent;

    color: #aaa;

    cursor: pointer;

    transition: var(--transition);
}


.remove-item:hover {
    color: #dc3545;
}


.cart-footer {
    border-top: 1px solid #eee;

    padding: 20px 25px;
}


.cart-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;
}


.cart-total span {
    color: #777;

    font-size: 13px;
}


.cart-total strong {
    color: var(--brown);

    font-family: "Oswald";

    font-size: 25px;
}


.checkout-btn {
    width: 100%;

    min-height: 52px;

    background: var(--black);

    color: #fff;

    cursor: pointer;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    transition: var(--transition);
}


.checkout-btn:hover {
    background: var(--brown);
}


/* =====================================================
   QUICK VIEW
===================================================== */

.quick-modal {
    border: 0;

    border-radius: 0;

    padding: 15px;

    text-align: center;

    position: relative;
}


.modal-close {
    position: absolute;

    right: 15px;
    top: 15px;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: #f2f2f2;

    cursor: pointer;

    z-index: 2;
}


.quick-modal .modal-body {
    padding: 50px 35px 35px;
}


.quick-icon {
    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(199, 161, 122, 0.13);

    color: var(--brown);

    font-size: 30px;
}


.quick-modal h2 {
    font-size: 35px;

    margin: 10px 0;
}


.quick-modal p {
    color: var(--gray);

    line-height: 1.8;

    font-size: 14px;
}


.quick-price {
    font-family: "Oswald";

    color: var(--brown);

    font-size: 28px;

    margin: 20px 0;
}


/* =====================================================
   TOAST
===================================================== */

.toast {
    border: 0;

    border-radius: 10px;

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}


.toast-body {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;
}


.toast-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(25, 135, 84, 0.12);

    color: #198754;
}


.toast-body strong {
    display: block;

    font-size: 13px;
}


.toast-body p {
    color: #777;

    margin: 2px 0 0;

    font-size: 11px;
}


/* =====================================================
   BACK TO TOP
===================================================== */

#backToTop {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--black);
    color: #fff;

    z-index: 900;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}




#backToTop:hover {
    background: var(--brown);

    transform: translateY(-3px);
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   DARK MODE
===================================================== */

body.dark-mode {
    --bg: #181818;
    --bg-secondary: #202020;
    --white: #181818;

    --black: #f5f5f5;
    --dark: #f2f2f2;
    --gray: #aaa;

    --border: rgba(255, 255, 255, 0.1);
}


body.dark-mode #header {
    background: rgba(24, 24, 24, 0.92);

    border-color: rgba(255, 255, 255, 0.08);
}


body.dark-mode #header.scrolled {
    background: rgba(24, 24, 24, 0.98);
}


body.dark-mode .nav-link {
    color: #eee !important;
}


body.dark-mode .header-icon {
    background: #292929;
    color: #eee;
}


body.dark-mode #home {
    background-color: #181818;
}


body.dark-mode .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(24, 24, 24, 0.97),
            rgba(24, 24, 24, 0.75),
            rgba(24, 24, 24, 0.25)
        );
}


body.dark-mode .content-text h1,
body.dark-mode .content-text h3,
body.dark-mode .stat strong,
body.dark-mode .section-title,
body.dark-mode .about-feature h3,
body.dark-mode .menu-info h3,
body.dark-mode .testimonial-card h3 {
    color: #f5f5f5;
}


body.dark-mode .menu-card,
body.dark-mode .menu-search input,
body.dark-mode .contact-content,
body.dark-mode .cart-canvas,
body.dark-mode .quick-modal {
    background: #242424;
    color: #eee;
}


body.dark-mode .menu-card {
    border-color: rgba(255, 255, 255, 0.08);
}


body.dark-mode .filter-btn {
    color: #eee;
}


body.dark-mode .menu-search input {
    color: #eee;
}


body.dark-mode .contact-content input,
body.dark-mode .contact-content textarea {
    background: #1d1d1d;
    color: #eee;

    border-color: rgba(255, 255, 255, 0.12);
}


body.dark-mode .testimonial-card {
    background: #242424;
}


body.dark-mode .cart-item {
    border-color: rgba(255, 255, 255, 0.1);
}


body.dark-mode .cart-total {
    border-color: rgba(255, 255, 255, 0.1);
}


body.dark-mode .empty-cart h3,
body.dark-mode .quick-modal h2 {
    color: #fff;
}


body.dark-mode .navbar-toggler-icon {
    color: #fff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .content-text h1 {
        font-size: 68px;
    }

    .menu-card {
        grid-template-columns: 150px 1fr;
    }

}


@media (max-width: 991px) {

    .section-padding {
        padding: 80px 0;
    }


    #header .navbar {
        min-height: 70px;
    }


    .navbar-collapse {
        background: #fff;

        margin-top: 10px;

        padding: 15px;

        box-shadow: var(--shadow-lg);
    }


    body.dark-mode .navbar-collapse {
        background: #242424;
    }


    .navbar-nav {
        gap: 0;
    }


    .nav-link {
        padding: 12px 10px !important;
    }


    .header-actions {
        margin: 15px 0 0;

        justify-content: center;
    }


    .home-content {
        grid-template-columns: 1fr;

        padding: 130px 0 80px;

        text-align: center;
    }


    .content-text > p {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }


    .hero-image {
        min-height: 400px;
    }


    .hero-image img {
        max-width: 500px;
    }


    .floating-card {
        right: 10%;
        bottom: 40px;
    }


    .about-image-wrapper {
        max-width: 650px;

        margin: auto;
    }


    .menu-controls {
        flex-direction: column;

        align-items: stretch;
    }


    .menu-filters {
        justify-content: center;
    }


    .menu-search {
        width: 100%;
    }


    .reservation-wrapper {
        margin-top: 35px;
    }


    .map-wrapper,
    .map-wrapper iframe {
        min-height: 450px;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 65px 0;
    }


    .section-title {
        font-size: 37px;
    }


    .logo {
        width: 150px;
    }


    .content-text h3 {
        font-size: 20px;
    }


    .content-text h1 {
        font-size: 50px;
    }


    .hero-stats {
        gap: 20px;

        flex-wrap: wrap;
    }


    .hero-image {
        min-height: 320px;
    }


    .hero-image-glow {
        width: 260px;
        height: 260px;
    }


    .floating-card {
        right: 0;

        padding: 10px 13px;
    }


    .about-image-wrapper {
        padding: 15px;
    }


    .experience-card {
        right: 0;
    }


    .menu-card {
        grid-template-columns: 130px 1fr;
    }


    .menu-image {
        min-height: 200px;
    }


    .menu-info {
        padding: 18px;
    }


    .menu-info h3 {
        font-size: 19px;
    }


    .menu-info p {
        font-size: 12px;
    }


    .contact-content {
        padding: 30px 20px;
    }


    .copyright .container {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 575px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .btn-main,
    .btn-outline {
        width: 100%;
    }


    .hero-stats {
        gap: 12px;

        justify-content: space-between;
    }


    .stat strong {
        font-size: 27px;
    }


    .stat span {
        font-size: 9px;
    }


    .hero-image {
        min-height: 260px;
    }


    .floating-card {
        display: none;
    }


    .menu-card {
        grid-template-columns: 1fr;
    }


    .menu-image {
        height: 230px;
    }


    .menu-info {
        min-height: 220px;
    }


    .menu-filters {
        justify-content: flex-start;

        overflow-x: auto;

        padding-bottom: 5px;

        flex-wrap: nowrap;
    }


    .filter-btn {
        white-space: nowrap;
    }


    .testimonial-card {
        padding: 25px;
    }


    .map-wrapper,
    .map-wrapper iframe {
        min-height: 350px;
    }


    .cart-canvas {
        width: 100%;
    }


    #backToTop {
        right: 15px;
        bottom: 15px;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

