/* =========================
   Global Styles
========================= */
:root {
    --primary-color: #FF7F00;
    --black-color: #000000;
    --white-color: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --transition: all 0.3s ease-in-out;
}
/* =========================
   Global Polish
========================= */
html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--white-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* =========================
   Top Header
========================= */
.top-header {
    background-color: var(--black-color);
    color: var(--white-color);
    font-size: 14px;
}

.top-header a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.top-header a:hover {
    color: var(--primary-color);
}

/* =========================
   Navbar
========================= */
.custom-navbar {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    padding: 18px 0;
    transition: all 0.35s ease-in-out;
}

.custom-navbar .container {
    transition: all 0.35s ease-in-out;
}

.site-logo {
    max-height: 60px;
    width: auto;
    display: block;
    transition: all 0.35s ease-in-out;
}

.custom-navbar .nav-link {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    margin-left: 18px;
    transition: var(--transition);
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--primary-color);
}

.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: calc(100% - 18px);
}

.custom-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.custom-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Sticky polished navbar */
.custom-navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.96);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.custom-navbar.scrolled .site-logo {
    max-height: 52px;
}

.custom-navbar.scrolled .container {
    max-width: 1320px;
}
/* =========================
   Navbar Toggler
========================= */
.custom-toggler {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 6px 10px;
    box-shadow: none;
    border-radius: 8px;
}

.custom-toggler:focus {
    box-shadow: none;
}

.custom-toggler-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: none;
    position: relative;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--white-color);
    transition: var(--transition);
}

.custom-toggler-icon::before {
    top: 6px;
}

.custom-toggler-icon::after {
    top: 16px;
}

/* =========================
   Mobile Navbar
========================= */
@media (max-width: 991.98px) {
    .custom-navbar {
        top: 40px;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 12px 0;
    }

    .custom-navbar.scrolled {
        top: 0;
    }

    .custom-navbar .navbar-collapse {
        margin-top: 15px;
        padding: 16px 18px;
        border-radius: 16px;
        background-color: rgba(0, 0, 0, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .custom-navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
        display: inline-block;
    }

    .custom-navbar .nav-link::after {
        left: 0;
        width: 0;
    }

    .custom-navbar .nav-link:hover::after,
    .custom-navbar .nav-link.active::after {
        width: 42px;
    }

    .custom-btn {
        margin-top: 10px;
        display: inline-block;
    }

    .site-logo {
        max-height: 50px;
    }

    .custom-navbar.scrolled .site-logo {
        max-height: 46px;
    }
}
@media (max-width: 767.98px) {
    .categories-section,
    .popular-menu-section,
    .why-choose-section,
    .promo-section,
    .testimonials-section,
    .faq-section,
    .contact-cta-section {
        padding: 70px 0;
    }
}

/* =========================
   Hero Section
========================= */
.hero-section {
    position: relative;
    min-height: 760px;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
                url('../images/home/hero-bg.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 170px 0 80px;
}

.hero-row {
    min-height: 590px;
}

.hero-image img {
    max-width: 78%;
    animation: floatImage 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-outline-btn {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* =========================
   Responsive Hero
========================= */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 125px 0 60px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-btns {
        justify-content: center;
    }
    .hero-row {
        min-height: auto;
    }

    .hero-image img {
        max-width: 70%;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-section {
        padding: 150px 0 70px;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* =========================
   Cheese Divider
========================= */
.cheese-divider {
    position: absolute;
    bottom: -40px; /* PUSH DOWN */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.cheese-divider svg {
    display: block;
    width: 100%;
    height: 120px;
    transform: rotate(180deg);

    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.2));
}

.cheese-divider path {
    fill: none;
}

/* =========================
   Section Heading
========================= */
.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 15px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 0;
}
    .hero-section {
    position: relative;
    overflow: hidden;
}

/* Divider */
.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}
/* =========================
   Categories Section
========================= */
.categories-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.96));
}

.category-card {
    background-color: var(--white-color);
    border-radius: 24px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.category-image {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .categories-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .section-heading {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-text {
        font-size: 15px;
    }

    .category-card {
        padding: 25px 18px;
    }

    .category-image {
        width: 140px;
        height: 140px;
    }

    .category-name {
        font-size: 22px;
    }
}

/* =========================
   Popular Menu Section
========================= */
.popular-menu-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.menu-card {
    position: relative;
    background-color: var(--white-color);
    border-radius: 24px;
    padding: 24px 20px 20px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.menu-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 30px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.menu-badge.new {
    background-color: #111111;
}

.menu-image {
    background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
    border-radius: 20px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    margin-bottom: 22px;
    overflow: hidden;
}

.menu-image img {
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.15));
}

.menu-card:hover .menu-image img {
    transform: scale(1.08);
}

.menu-content {
    position: relative;
}

.menu-rating {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.menu-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 10px;
}

.menu-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
    min-height: 76px;
}

.menu-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.menu-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.menu-cart-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.menu-cart-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .popular-menu-section {
        padding: 80px 0;
    }

    .menu-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .menu-card {
        padding: 22px 18px 18px;
    }

    .menu-image {
        min-height: 220px;
        padding: 25px 15px;
    }

    .menu-image img {
        max-height: 170px;
    }

    .menu-title {
        font-size: 21px;
    }

    .menu-price {
        font-size: 22px;
    }

    .menu-text {
        min-height: auto;
    }
}
/* =========================
   Signature Section
========================= */
.signature-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    color: var(--white-color);
    position: relative;
}

.signature-content {
    max-width: 520px;
}

.signature-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.signature-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.signature-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.signature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.signature-list li {
    font-size: 15px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.signature-image img {
    max-width: 85%;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.4));
}

/* Responsive */
@media (max-width: 991.98px) {
    .signature-section {
        padding: 80px 0;
        text-align: center;
    }

    .signature-content {
        margin: 0 auto;
    }

    .signature-title {
        font-size: 34px;
    }

    .signature-image img {
        max-width: 70%;
    }
}

@media (max-width: 767.98px) {
    .signature-section {
        padding: 70px 0;
    }

    .signature-title {
        font-size: 28px;
    }
}
/* =========================
   Why Choose Us Section
========================= */
.why-choose-section {
    padding: 100px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
        url('../images/home/hero-bg.png') center center / cover no-repeat;
    position: relative;
}

.why-card {
    background-color: var(--white-color);
    border-radius: 24px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.08);
}

.why-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 12px;
}

.why-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .why-card {
        padding: 28px 20px;
    }

    .why-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .why-title {
        font-size: 21px;
    }
}
/* =========================
   Tray Flip Section
========================= */
.tray-flip-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.tray-flip-heading {
    margin-bottom: 50px;
}

.tray-flip-heading .section-title {
    color: var(--white-color);
}

.tray-scene {
    perspective: 1800px;
    max-width: 950px;
    margin: 0 auto;
}

.tray-card {
    position: relative;
    width: 100%;
    height: 540px;
    transform-style: preserve-3d;
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: rotateX(180deg);
}

.tray-card.is-flipped {
    transform: rotateX(0deg);
}

.tray-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 28px;
    overflow: hidden;
}

.tray-surface {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background:
        radial-gradient(circle at top center, rgba(255, 127, 0, 0.12), transparent 40%),
        linear-gradient(180deg, #2a2a2a 0%, #171717 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Back face */
.tray-back {
    transform: rotateX(180deg);
}

.tray-back-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
}

.tray-back-text {
    font-size: 26px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.5px;
}

/* Front face */
.tray-front {
    transform: rotateX(0deg);
}

.tray-front-content {
    position: absolute;
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    text-align: center;
    padding: 0 20px;
    z-index: 3;
}

.tray-front-content h3 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 12px;
}

.tray-front-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

/* Food items */
.tray-food-items {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.tray-food {
    position: absolute;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
    animation: trayFloat 3.5s ease-in-out infinite;
}

.tray-burger {
    width: 250px;
    top: 85px;
    left: 80px;
    animation-delay: 0s;
}

.tray-fries {
    width: 170px;
    top: 120px;
    left: 380px;
    animation-delay: 0.35s;
}

.tray-drink {
    width: 150px;
    top: 90px;
    right: 95px;
    animation-delay: 0.7s;
}

@keyframes trayFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* subtle tray shine */
.tray-surface::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .tray-flip-section {
        padding: 85px 0;
    }

    .tray-card {
        height: 500px;
    }

    .tray-burger {
        width: 210px;
        top: 95px;
        left: 40px;
    }

    .tray-fries {
        width: 145px;
        top: 135px;
        left: 280px;
    }

    .tray-drink {
        width: 130px;
        top: 100px;
        right: 45px;
    }

    .tray-front-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .tray-flip-section {
        padding: 70px 0;
    }

    .tray-flip-heading {
        margin-bottom: 35px;
    }

    .tray-card {
        height: 460px;
    }

    .tray-back-text {
        font-size: 20px;
    }

    .tray-burger {
        width: 160px;
        top: 95px;
        left: 20px;
    }

    .tray-fries {
        width: 110px;
        top: 135px;
        left: 170px;
    }

    .tray-drink {
        width: 95px;
        top: 105px;
        right: 20px;
    }

    .tray-front-content {
        bottom: 28px;
    }

    .tray-front-content h3 {
        font-size: 26px;
    }

    .tray-front-content p {
        font-size: 14px;
    }
}
/* =========================
   Testimonials Section
========================= */
.testimonials-section {
    padding: 100px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
        url('../images/home/hero-bg.png') center center / cover no-repeat;
    position: relative;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 24px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: #666666;
    margin-bottom: 28px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-user-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 127, 0, 0.15);
}

.testimonial-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--black-color);
    margin: 0 0 4px;
}

.testimonial-user-role {
    font-size: 14px;
    color: #777777;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 26px 20px;
    }

    .testimonial-user-image {
        width: 58px;
        height: 58px;
    }

    .testimonial-user-name {
        font-size: 17px;
    }
}


/* =========================
   FAQ Section
========================= */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.custom-faq-accordion .accordion-item {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: var(--white-color);
}

.custom-faq-accordion .accordion-button {
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 18px;
    font-weight: 700;
    padding: 24px 26px;
    box-shadow: none;
    border: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff7ef;
    color: var(--primary-color);
    box-shadow: none;
}

.custom-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.custom-faq-accordion .accordion-body {
    padding: 0 26px 24px;
    font-size: 15px;
    line-height: 1.9;
    color: #666666;
    background-color: #fff7ef;
}

.custom-faq-accordion .accordion-button::after {
    filter: hue-rotate(0deg);
}

.custom-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 80px 0;
    }

    .custom-faq-accordion .accordion-button {
        font-size: 17px;
        padding: 22px 22px;
    }

    .custom-faq-accordion .accordion-body {
        padding: 0 22px 22px;
    }
}

@media (max-width: 767.98px) {
    .custom-faq-accordion .accordion-button {
        font-size: 16px;
        padding: 20px 18px;
    }

    .custom-faq-accordion .accordion-body {
        padding: 0 18px 20px;
        font-size: 14px;
    }
}

/* =========================
   Contact CTA Section
========================= */
.contact-cta-section {
    padding: 100px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
        url('../images/home/hero-bg.png') center center / cover no-repeat;
    position: relative;
}

.contact-cta-box {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 30px;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
}

.contact-cta-box::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.12);
}

.contact-cta-box::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.08);
}

.contact-cta-box > * {
    position: relative;
    z-index: 2;
}

.contact-cta-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-cta-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 18px;
    line-height: 1.2;
}

.contact-cta-text {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.contact-cta-outline-btn {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-cta-outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .contact-cta-section {
        padding: 80px 0;
    }

    .contact-cta-box {
        padding: 55px 28px;
    }

    .contact-cta-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .contact-cta-box {
        padding: 42px 20px;
        border-radius: 24px;
    }

    .contact-cta-title {
        font-size: 29px;
    }

    .contact-cta-text {
        font-size: 15px;
    }
}

/* =========================
   Contact Page Modern Upgrade
========================= */
.contact-info-box-modern,
.contact-form-box-modern {
    padding: 34px 28px;
}

.contact-info-intro,
.contact-form-head {
    margin-bottom: 24px;
}

.contact-info-label,
.contact-form-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-info-intro h3,
.contact-form-head h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black-color);
}

.contact-info-intro p,
.contact-form-head p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 18px;
    border-radius: 18px;
    background: #fff7ef;
    border: 1px solid rgba(255, 127, 0, 0.08);
}

.contact-info-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.14);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--black-color);
}

.contact-info-card p {
    margin-bottom: 0;
    color: #666666;
    line-height: 1.8;
}

.contact-info-card a {
    color: #666666;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-help-strip {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.contact-help-strip i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-textarea {
    min-height: 150px;
    resize: none;
}

.contact-map-wrap {
    margin-top: 50px;
}

.contact-map-box {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
        url('../images/menu/menu-header-bg.jpg') center center / cover no-repeat;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-map-overlay {
    position: absolute;
    left: 40px;
    bottom: 40px;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.contact-map-overlay h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--black-color);
}

.contact-map-overlay p {
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-info-box-modern,
    .contact-form-box-modern {
        padding: 28px 22px;
    }

    .contact-map-overlay {
        left: 24px;
        right: 24px;
        bottom: 24px;
        max-width: unset;
    }
}

@media (max-width: 767.98px) {
    .contact-info-box-modern,
    .contact-form-box-modern {
        padding: 24px 18px;
    }

    .contact-info-intro h3,
    .contact-form-head h3,
    .contact-map-overlay h3 {
        font-size: 24px;
    }

    .contact-map-box {
        min-height: 260px;
    }

    .contact-map-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
    }

    .contact-info-card {
        padding: 16px;
    }
}

/* =========================
   Footer
========================= */
.site-footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-top: 90px;
}

.footer-widget {
    height: 100%;
}

.footer-logo img {
    max-height: 58px;
    width: auto;
    margin-bottom: 22px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    max-width: 320px;
    margin-bottom: 24px;
}

.footer-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 24px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 14px;
}

.footer-links li:last-child,
.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li span {
    color: var(--white-color);
    font-weight: 700;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 75px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 45px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 65px;
    }

    .footer-logo img {
        max-height: 52px;
    }

    .footer-title {
        font-size: 19px;
    }

    .footer-text,
    .footer-contact li,
    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 18px 0;
    }
}
/* =========================
   Image Polish
========================= */
img {
    max-width: 100%;
    height: auto;
}

.category-image img,
.menu-image img,
.promo-image img,
.hero-image img {
    display: block;
    margin: 0 auto;
}

.category-image img {
    object-fit: contain;
}

.menu-image img {
    object-fit: contain;
}

.testimonial-user-image img {
    object-fit: cover;
}

/* =========================
   Scroll To Top
========================= */
.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border: none;
    outline: none;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 12px 25px rgba(255, 127, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #e56f00;
}

.footer-logo {
    text-decoration: none;
}
.btn:focus,
button:focus,
.navbar-toggler:focus {
    box-shadow: none !important;
}





/* //////////////////////////////////////////////////////////////////////////////////////////// */
/* =========================
   Menu Page Header
========================= */
.menu-page-header {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
        url('../images/home/hero-bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.menu-page-header-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.menu-page-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.menu-page-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white-color);
    margin-bottom: 18px;
}

.menu-page-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 0;
}

/* =========================
   Menu Layout
========================= */
.menu-layout-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.menu-sidebar {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 26px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 110px;
}

.menu-sidebar-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 22px;
}

.menu-category-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-category-item {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
}

.menu-category-item:hover,
.menu-category-item.active {
    background-color: #fff7ef;
    border-color: rgba(255, 127, 0, 0.25);
    box-shadow: 0 10px 22px rgba(255, 127, 0, 0.08);
}

.menu-category-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-color: #fff7ef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-category-thumb img {
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
}

.menu-category-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--black-color);
}

.menu-items-panel {
    padding-left: 10px;
}

.menu-panel-head {
    margin-bottom: 30px;
}

.menu-panel-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 10px;
}

.menu-panel-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 0;
}

.menu-items-group {
    display: none;
}

.menu-items-group.active {
    display: flex;
}

.menu-item-card {
    height: 100%;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.menu-item-image {
    min-height: 220px;
    background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
}

.menu-item-image img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.14));
}

.menu-item-content {
    padding: 22px 20px 20px;
}

.menu-item-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 10px;
}

.menu-item-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 18px;
    min-height: 76px;
}

.menu-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.menu-item-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.menu-item-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.menu-item-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1199.98px) {
    .menu-page-title {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .menu-page-header {
        padding: 170px 0 90px;
    }

    .menu-page-title {
        font-size: 42px;
    }

    .menu-layout-section {
        padding: 80px 0;
    }

    .menu-sidebar {
        position: static;
    }

    .menu-items-panel {
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .menu-page-header {
        padding: 150px 0 80px;
    }

    .menu-page-title {
        font-size: 34px;
    }

    .menu-page-text,
    .menu-panel-text {
        font-size: 15px;
    }

    .menu-layout-section {
        padding: 70px 0;
    }

    .menu-sidebar {
        padding: 22px 16px;
    }

    .menu-sidebar-title {
        font-size: 22px;
    }

    .menu-category-thumb {
        width: 56px;
        height: 56px;
    }

    .menu-category-thumb img {
        max-width: 40px;
        max-height: 40px;
    }

    .menu-category-name {
        font-size: 16px;
    }

    .menu-panel-title {
        font-size: 30px;
    }

    .menu-item-desc {
        min-height: auto;
    }
}

/* =========================
   Shared Inner Page Header
========================= */
.inner-page-header {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
        url('../images/home/hero-bg.png') center center / cover no-repeat;
}

.inner-page-header .menu-page-title {
    color: var(--white-color);
}

/* =========================
   About Page
========================= */
.about-page-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-page-image img {
    max-width: 85%;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18));
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-item i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.about-feature-item p {
    margin-bottom: 0;
    color: #666666;
    line-height: 1.8;
}

/* =========================
   Auth Pages
========================= */
.auth-page-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.auth-card {
    max-width: 580px;
    margin: 0 auto;
    padding: 35px 30px;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.auth-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.custom-form-label {
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 8px;
}

.custom-form-control {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    box-shadow: none;
}

.custom-form-control:focus {
    border-color: rgba(255, 127, 0, 0.35);
    box-shadow: none;
}

.auth-bottom-text {
    color: #666666;
}

.auth-bottom-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   Cart Page
========================= */
.cart-page-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.cart-table-wrap,
.cart-summary-box,
.contact-info-box,
.contact-form-box {
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-table-wrap {
    padding: 10px 24px;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 1.4fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-info img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cart-item-info h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

.cart-item-info p {
    margin-bottom: 0;
    color: #666666;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: #fff7ef;
    color: var(--primary-color);
    font-weight: 700;
}

.cart-item-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

.cart-summary-box {
    padding: 30px 24px;
}

.cart-summary-box h3,
.contact-info-box h3,
.contact-form-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 22px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #666666;
}

.cart-summary-row.total {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 800;
    color: var(--black-color);
}

/* =========================
   Contact Page
========================= */
.contact-page-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-info-box,
.contact-form-box {
    padding: 32px 26px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #666666;
    line-height: 1.8;
}

.contact-info-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
    .about-page-section,
    .auth-page-section,
    .cart-page-section,
    .contact-page-section {
        padding: 80px 0;
    }

    .inner-page-header {
        padding: 170px 0 90px;
    }

    .cart-item-row {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

@media (max-width: 767.98px) {
    .about-page-section,
    .auth-page-section,
    .cart-page-section,
    .contact-page-section {
        padding: 70px 0;
    }

    .inner-page-header {
        padding: 150px 0 80px;
    }

    .auth-card,
    .contact-info-box,
    .contact-form-box,
    .cart-summary-box {
        padding: 24px 18px;
    }

    .cart-table-wrap {
        padding: 8px 18px;
    }

    .cart-item-info {
        align-items: flex-start;
    }

    .cart-item-info img {
        width: 68px;
        height: 68px;
    }
}

/* =========================
   Dashboard
========================= */
.dashboard-section {
    padding: 50px 0 100px;
    background: #f9f9f9;
}

.dashboard-sidebar {
    background: #ffffff;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    position: sticky;
    top: 110px;
}

.dashboard-user {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--black-color);
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 10px;
}

.dashboard-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border-radius: 14px;
    color: #333333;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.dashboard-menu a i {
    width: 18px;
    text-align: center;
}

.dashboard-menu a:hover,
.dashboard-menu a.active {
    background: var(--primary-color);
    color: #ffffff;
}

.dashboard-menu .logout {
    color: #dc3545;
}

.dashboard-menu .logout:hover {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

.dashboard-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    min-height: 100%;
}

.dashboard-tab {
    display: none;
}

.dashboard-tab.active {
    display: block;
}

.dashboard-section-head {
    margin-bottom: 24px;
}

.dashboard-section-head h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 8px;
}

.dashboard-section-head p {
    margin-bottom: 0;
    color: #666666;
    line-height: 1.8;
}

.dash-stat-card {
    background: #fff7ef;
    padding: 22px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.dash-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 127, 0, 0.15);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.dash-stat-info h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #555555;
}

.dash-stat-info span {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
}

.dashboard-block {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.dashboard-block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dashboard-block-head h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 0;
}

.dashboard-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.dashboard-order-mini-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-order-mini-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f8f8f8;
}

.dashboard-order-mini-item strong {
    display: block;
    margin-bottom: 4px;
}

.dashboard-order-mini-item p {
    margin: 0;
    color: #666666;
    font-size: 14px;
}

.address-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.active-address {
    border-color: rgba(255, 127, 0, 0.35);
    background: #fffaf5;
}

.address-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.address-card-top h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.address-card p {
    margin-bottom: 16px;
    color: #666666;
    line-height: 1.8;
}

.address-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 127, 0, 0.12);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
}

.address-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-outline-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.12);
    color: #333333;
    border-radius: 50px;
    padding: 8px 16px;
}

.order-history-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    margin-bottom: 18px;
}

.order-history-top,
.order-history-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.order-history-top {
    margin-bottom: 14px;
}

.order-history-top h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.order-history-top p,
.order-history-middle p {
    margin-bottom: 0;
    color: #666666;
}

.order-history-middle {
    margin-bottom: 16px;
}

.order-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.order-status.delivered {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.16);
    color: #b58100;
}

.order-status.cancelled {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

.password-block {
    max-width: 760px;
}

@media (max-width: 991.98px) {
    .dashboard-section {
        padding: 35px 0 80px;
    }

    .dashboard-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .dashboard-section {
        padding: 30px 0 70px;
    }

    .dashboard-sidebar,
    .dashboard-content,
    .dashboard-block,
    .address-card,
    .order-history-card {
        padding: 20px;
    }

    .dashboard-section-head h2 {
        font-size: 26px;
    }

    .dash-stat-card {
        padding: 18px;
    }
}
/* =========================
   Dashboard Hero Header
========================= */
.dashboard-hero-header {
    position: relative;
    padding: 150px 0 70px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
        url('../images/home/hero-bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.dashboard-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    flex-wrap: wrap;
}

.dashboard-hero-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dashboard-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 8px;
}

.dashboard-hero-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.dashboard-hero-action .btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* Make dashboard section tuck nicely under hero */
.dashboard-section {
    padding: 50px 0 100px;
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 991.98px) {
    .dashboard-hero-header {
        padding: 135px 0 60px;
    }

    .dashboard-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .dashboard-hero-header {
        padding: 125px 0 55px;
    }

    .dashboard-hero-title {
        font-size: 28px;
    }

    .dashboard-hero-text {
        font-size: 14px;
    }
}






































































































/* =========================
   Full Section Pattern Background
========================= */
.section-pattern-full {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

/* Pattern Layer */
.section-pattern-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/pattern-1.png');
    background-repeat: repeat;
    background-size: 320px auto; /* control density */
    opacity: 0.2; /* VERY LOW for premium look */
    pointer-events: none;
}

/* Keep content above pattern */
.section-pattern-full > .container {
    position: relative;
    z-index: 2;
}



/* =========================
   Geometric Line Pattern Background
========================= */
.section-line-pattern {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

/* Pattern Layer */
.section-line-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/pattern-2.png');
    background-repeat: repeat;
    background-size: 400px auto; /* controls spacing */
    
    opacity: 0.2; /* VERY subtle */
    
    pointer-events: none;
}

/* Keep content above */
.section-line-pattern > .container {
    position: relative;
    z-index: 2;
}