/* =========================================================
   MASALA ZONE - PROFESSIONAL MENU
   ========================================================= */

.mz-menu-page{
    --mz-bg: #080d15;
    --mz-card: #0e1520;
    --mz-card-hover: #121c29;
    --mz-gold: #dca85f;
    --mz-gold-light: #f0c889;
    --mz-white: #f8f4ed;
    --mz-text: #d5d0c8;
    --mz-muted: #9299a3;
    --mz-border: rgba(220,168,95,.18);

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 90px 0 120px;

    background:
        radial-gradient(
            circle at top center,
            rgba(220,168,95,.06),
            transparent 35%
        ),
        var(--mz-bg);

    color: var(--mz-text);

    box-sizing: border-box;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

.mz-menu-page *,
.mz-menu-page *::before,
.mz-menu-page *::after{
    box-sizing: border-box;
}


/* =========================================================
   MENU HEADER
   ========================================================= */

.mz-menu-heading{
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 55px;
    text-align: center;
}

.mz-menu-eyebrow{
    display: inline-block;

    margin-bottom: 18px;

    color: var(--mz-gold);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.mz-menu-heading h1{
    margin: 0 0 20px;

    color: var(--mz-white) !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;

    line-height: 1.05;
    letter-spacing: -1px;
}

.mz-menu-heading p{
    max-width: 720px;

    margin: 0 auto;

    color: var(--mz-muted) !important;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CATEGORY NAVIGATION
   ========================================================= */

.mz-menu-categories{
    width: min(1200px, calc(100% - 40px));

    margin: 0 auto 75px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}

.mz-menu-category{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 20px;

    border: 1px solid var(--mz-border);
    border-radius: 30px;

    background: rgba(255,255,255,.02);

    color: var(--mz-text) !important;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    text-decoration: none !important;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.mz-menu-category:hover{
    background: var(--mz-gold);
    border-color: var(--mz-gold);

    color: #111 !important;

    transform: translateY(-2px);
}


/* =========================================================
   CATEGORY SECTION
   ========================================================= */

.mz-menu-section{
    width: min(1200px, calc(100% - 40px));

    margin: 0 auto 110px;

    scroll-margin-top: 100px;
}

.mz-menu-section-heading{
    display: flex;
    align-items: center;
    gap: 25px;

    margin-bottom: 45px;
}

.mz-section-line{
    flex: 1;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mz-border)
        );
}

.mz-section-line:last-child{
    background:
        linear-gradient(
            90deg,
            var(--mz-border),
            transparent
        );
}

.mz-menu-section-heading h2{
    margin: 0;

    color: var(--mz-gold-light) !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;

    line-height: 1.2;

    text-align: center;

    white-space: nowrap;
}


/* =========================================================
   FOOD GRID
   ========================================================= */

.mz-menu-grid{
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 32px;
}


/* =========================================================
   FOOD CARD
   ========================================================= */

.mz-food-card{
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--mz-border);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.01)
        );

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.mz-food-card:hover{
    transform: translateY(-6px);

    border-color: rgba(220,168,95,.45);

    background: var(--mz-card-hover);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);
}


/* =========================================================
   FOOD IMAGE
   ========================================================= */

.mz-food-image{
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #111822;
}

.mz-food-image img{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease,
        filter .5s ease;
}

.mz-food-card:hover .mz-food-image img{
    transform: scale(1.05);
}

.mz-food-image-placeholder{
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #111822,
            #080d15
        );
}

.mz-food-image-placeholder span{
    color: var(--mz-gold);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;
}


/* =========================================================
   FEATURED BADGE
   ========================================================= */

.mz-featured-badge{
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 3px;

    background: var(--mz-gold);

    color: #111;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    box-shadow:
        0 5px 15px rgba(0,0,0,.25);
}


/* =========================================================
   FOOD CONTENT
   ========================================================= */

.mz-food-content{
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 25px 24px 24px;
}


/* =========================================================
   FOOD NAME + PRICE
   ========================================================= */

.mz-food-top{
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 12px;
}

.mz-food-top h3{
    margin: 0;

    color: var(--mz-white) !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
    font-weight: 400;

    line-height: 1.25;
}

.mz-food-price{
    flex-shrink: 0;

    color: var(--mz-gold-light) !important;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;

    white-space: nowrap;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mz-food-description{
    margin: 0 0 23px;

    color: var(--mz-muted) !important;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.mz-food-actions{
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: auto;
}

.mz-food-actions button{
    min-height: 45px;

    padding: 11px 14px;

    border: 1px solid var(--mz-gold);

    border-radius: 3px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .2s ease;
}


/* Add To Cart */

.mz-add-cart{
    background: transparent !important;

    color: var(--mz-gold-light) !important;
}

.mz-add-cart:hover{
    background: var(--mz-gold) !important;

    color: #111 !important;

    transform: translateY(-2px);
}


/* Order Now */

.mz-order-now{
    background: var(--mz-gold) !important;

    color: #111 !important;
}

.mz-order-now:hover{
    background: var(--mz-gold-light) !important;

    border-color: var(--mz-gold-light);

    transform: translateY(-2px);
}


/* =========================================================
   DESKTOP LARGE
   ========================================================= */

@media (min-width: 1400px){

    .mz-menu-grid{
        gap: 38px;
    }

    .mz-food-content{
        padding: 28px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px){

    .mz-menu-page{
        padding-top: 70px;
    }

    .mz-menu-grid{
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;
    }

    .mz-menu-section{
        margin-bottom: 85px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px){

    .mz-menu-page{
        width: 100%;

        padding: 55px 0 80px;
    }

    .mz-menu-heading{
        width: calc(100% - 32px);

        margin-bottom: 38px;
    }

    .mz-menu-eyebrow{
        margin-bottom: 13px;

        font-size: 10px;

        letter-spacing: 3px;
    }

    .mz-menu-heading h1{
        font-size: 42px;

        line-height: 1.05;
    }

    .mz-menu-heading p{
        font-size: 14px;

        line-height: 1.7;
    }


    /* CATEGORY BUTTONS */

    .mz-menu-categories{
        width: calc(100% - 32px);

        justify-content: flex-start;

        margin-bottom: 55px;

        gap: 8px;
    }

    .mz-menu-category{
        min-height: 38px;

        padding: 8px 13px;

        font-size: 9px;

        letter-spacing: 1px;
    }


    /* SECTION */

    .mz-menu-section{
        width: calc(100% - 32px);

        margin-bottom: 75px;
    }

    .mz-menu-section-heading{
        gap: 12px;

        margin-bottom: 28px;
    }

    .mz-menu-section-heading h2{
        font-size: 27px;

        white-space: normal;

        text-align: center;
    }


    /* GRID */

    .mz-menu-grid{
        grid-template-columns: 1fr;

        gap: 22px;
    }


    /* CARD */

    .mz-food-card:hover{
        transform: none;
    }

    .mz-food-image{
        aspect-ratio: 16 / 11;
    }

    .mz-food-content{
        padding: 20px;
    }

    .mz-food-top h3{
        font-size: 21px;
    }

    .mz-food-price{
        font-size: 17px;
    }

    .mz-food-description{
        font-size: 13px;

        line-height: 1.65;

        margin-bottom: 20px;
    }

    .mz-food-actions{
        gap: 8px;
    }

    .mz-food-actions button{
        min-height: 44px;

        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px){

    .mz-menu-heading h1{
        font-size: 36px;
    }

    .mz-menu-section-heading h2{
        font-size: 24px;
    }

    .mz-food-content{
        padding: 18px;
    }

    .mz-food-top h3{
        font-size: 19px;
    }

    .mz-food-price{
        font-size: 16px;
    }

}
/* =========================================================
   MASALA ZONE MENU - FINAL PROFESSIONAL POLISH
   ========================================================= */

/* =========================
   MENU PAGE
========================= */

.mz-menu-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}


/* =========================
   MENU HEADER POLISH
========================= */

.mz-menu-heading {
    position: relative;
}

.mz-menu-eyebrow {
    position: relative;
    padding: 7px 16px;
    border: 1px solid rgba(220,168,95,.30);
    border-radius: 50px;
    background: rgba(220,168,95,.06);
}

.mz-menu-heading h1 {
    text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.mz-menu-heading p {
    color: #aeb5bf !important;
}


/* =========================
   CATEGORY NAVIGATION
========================= */

.mz-menu-categories {
    position: sticky;
    top: 20px;
    z-index: 20;

    padding: 14px;

    border: 1px solid rgba(220,168,95,.14);
    border-radius: 16px;

    background: rgba(8,13,21,.88);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.20);
}

.mz-menu-category {
    position: relative;
    overflow: hidden;
}

.mz-menu-category::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform: translateX(-120%);
    transition: transform .45s ease;
}

.mz-menu-category:hover::before {
    transform: translateX(120%);
}


/* =========================
   SECTION HEADING
========================= */

.mz-menu-section-heading {
    position: relative;
}

.mz-menu-section-heading h2 {
    position: relative;

    padding: 0 5px;

    text-shadow:
        0 4px 20px rgba(220,168,95,.12);
}

.mz-section-line {
    opacity: .75;
}


/* =========================
   FOOD CARD
========================= */

.mz-food-card {
    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.008)
        );

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);

    transform: translateZ(0);
}

.mz-food-card:hover {
    box-shadow:
        0 22px 55px rgba(0,0,0,.40),
        0 0 0 1px rgba(220,168,95,.08);
}


/* =========================
   FOOD IMAGE
========================= */

.mz-food-image {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #111822,
            #080d15
        );
}

.mz-food-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 45%,
            rgba(0,0,0,.25)
        );

    opacity: .7;
}

.mz-food-image img {
    filter: saturate(1.03) contrast(1.02);
}

.mz-food-card:hover .mz-food-image img {
    transform: scale(1.055);
}


/* =========================
   FEATURED BADGE
========================= */

.mz-featured-badge {
    border-radius: 50px;

    padding: 8px 13px;

    background:
        linear-gradient(
            135deg,
            #f0c889,
            #dca85f
        );

    box-shadow:
        0 7px 20px rgba(0,0,0,.30);
}


/* =========================
   FOOD CONTENT
========================= */

.mz-food-content {
    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.012),
            transparent
        );
}


/* =========================
   FOOD NAME
========================= */

.mz-food-top h3 {
    transition:
        color .25s ease,
        transform .25s ease;
}

.mz-food-card:hover .mz-food-top h3 {
    color: var(--mz-gold-light) !important;
}


/* =========================
   PRICE
========================= */

.mz-food-price {
    padding: 5px 9px;

    border: 1px solid rgba(220,168,95,.20);
    border-radius: 6px;

    background: rgba(220,168,95,.055);

    letter-spacing: .2px;
}


/* =========================
   DESCRIPTION
========================= */

.mz-food-description {
    color: #9da5b0 !important;
}


/* =========================
   BUTTONS
========================= */

.mz-food-actions button {
    position: relative;

    overflow: hidden;

    border-radius: 6px;

    letter-spacing: 1.2px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.12);
}

.mz-food-actions button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.22),
            transparent
        );

    transform: skewX(-20deg);

    transition: left .5s ease;
}

.mz-food-actions button:hover::before {
    left: 140%;
}

.mz-food-actions button:hover {
    box-shadow:
        0 8px 22px rgba(0,0,0,.25);
}


/* =========================
   ADD TO CART
========================= */

.mz-add-cart {
    background: rgba(220,168,95,.025) !important;
}

.mz-add-cart:hover {
    background: var(--mz-gold) !important;
}


/* =========================
   ORDER NOW
========================= */

.mz-order-now {
    background:
        linear-gradient(
            135deg,
            #e8b86f,
            #dca85f
        ) !important;

    box-shadow:
        0 7px 18px rgba(220,168,95,.12);
}

.mz-order-now:hover {
    background:
        linear-gradient(
            135deg,
            #f0c889,
            #e8b86f
        ) !important;

    box-shadow:
        0 9px 24px rgba(220,168,95,.20);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .mz-menu-categories {
        top: 10px;
    }

    .mz-food-top {
        gap: 10px;
    }

    .mz-food-top h3 {
        font-size: 21px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mz-menu-page {
        padding-top: 45px;
    }

    .mz-menu-heading h1 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .mz-menu-categories {
        position: relative;
        top: auto;

        padding: 10px;

        border-radius: 12px;

        justify-content: flex-start;

        overflow-x: auto;
        flex-wrap: nowrap;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .mz-menu-categories::-webkit-scrollbar {
        display: none;
    }

    .mz-menu-category {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .mz-menu-section-heading {
        gap: 10px;
    }

    .mz-menu-section-heading h2 {
        font-size: 26px;
    }

    .mz-section-line {
        min-width: 20px;
    }

    .mz-food-card {
        border-radius: 9px;
    }

    .mz-food-image {
        aspect-ratio: 16 / 10;
    }

    .mz-food-content {
        padding: 20px 18px 18px;
    }

    .mz-food-top {
        align-items: center;
    }

    .mz-food-top h3 {
        font-size: 20px;
    }

    .mz-food-price {
        font-size: 15px;
        padding: 4px 8px;
    }

    .mz-food-description {
        font-size: 13px;
    }

    .mz-food-actions {
        grid-template-columns: 1fr 1fr;
    }

    .mz-food-actions button {
        min-height: 46px;
        padding: 10px 8px;

        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .mz-menu-page {
        padding-left: 0;
        padding-right: 0;
    }

    .mz-menu-heading {
        width: calc(100% - 24px);
    }

    .mz-menu-categories {
        width: calc(100% - 24px);
    }

    .mz-menu-section {
        width: calc(100% - 24px);
    }

    .mz-food-content {
        padding: 17px;
    }

    .mz-food-top h3 {
        font-size: 18px;
    }

    .mz-food-price {
        font-size: 14px;
    }

    .mz-food-actions {
        gap: 7px;
    }

    .mz-food-actions button {
        font-size: 9px;
        letter-spacing: .7px;
    }

}


/* =========================================================
   WORDPRESS / THEME OVERRIDE
========================================================= */

.mz-menu-page a {
    text-decoration: none;
}

.mz-menu-page button {
    font-family: inherit;
}

.mz-menu-page h1,
.mz-menu-page h2,
.mz-menu-page h3,
.mz-menu-page p {
    margin-top: 0;
}

.mz-menu-page img {
    max-width: 100%;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.mz-menu-page button:focus-visible,
.mz-menu-page a:focus-visible {
    outline: 2px solid var(--mz-gold-light);
    outline-offset: 3px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mz-menu-page *,
    .mz-menu-page *::before,
    .mz-menu-page *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

}
/* =========================================================
   MASALA ZONE - SHOPPING CART
========================================================= */

/* =========================
   CART OVERLAY
========================= */

.mz-cart-overlay {
    position: fixed !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(0, 0, 0, .72) !important;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99998 !important;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.mz-cart-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================
   CART DRAWER
========================= */

.mz-cart-drawer {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: min(430px, 100vw) !important;
    height: 100dvh !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    background:
        linear-gradient(
            180deg,
            #111822 0%,
            #080d15 100%
        ) !important;

    border-left: 1px solid rgba(220,168,95,.22) !important;

    box-shadow:
        -20px 0 60px rgba(0,0,0,.45) !important;

    transform: translateX(105%) !important;

    visibility: hidden;
    opacity: 0;

    z-index: 99999 !important;

    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        opacity .25s ease,
        visibility .35s ease !important;

    overflow: hidden !important;
}

.mz-cart-drawer.active {
    transform: translateX(0) !important;

    visibility: visible;
    opacity: 1;
}


/* =========================
   CART HEADER
========================= */

.mz-cart-header {
    flex-shrink: 0;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 28px 26px 22px !important;

    border-bottom: 1px solid rgba(255,255,255,.08) !important;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            transparent
        );
}

.mz-cart-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #dca85f;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.mz-cart-header h2 {
    margin: 0 !important;

    color: #fff !important;

    font-family: "Playfair Display", serif !important;

    font-size: 28px !important;
    line-height: 1.1 !important;
}


/* =========================
   CLOSE BUTTON
========================= */

.mz-cart-close {
    width: 44px !important;
    height: 44px !important;

    flex: 0 0 44px;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(220,168,95,.35) !important;
    border-radius: 50% !important;

    background: rgba(220,168,95,.05) !important;

    color: #dca85f !important;

    font-size: 28px !important;
    font-weight: 300 !important;
    line-height: 1 !important;

    cursor: pointer !important;

    transition: .25s ease !important;
}

.mz-cart-close:hover {
    background: #dca85f !important;
    color: #080d15 !important;

    transform: rotate(90deg);
}


/* =========================
   CART ITEMS AREA
========================= */

.mz-cart-items {
    flex: 1 1 auto;

    min-height: 0;

    overflow-y: auto !important;

    padding: 20px 22px !important;

    scrollbar-width: thin;
    scrollbar-color: rgba(220,168,95,.35) transparent;
}

.mz-cart-items::-webkit-scrollbar {
    width: 5px;
}

.mz-cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.mz-cart-items::-webkit-scrollbar-thumb {
    background: rgba(220,168,95,.35);
    border-radius: 20px;
}


/* =========================
   EMPTY CART
========================= */

.mz-cart-empty {
    min-height: 350px;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center;
}

.mz-cart-empty-icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border: 1px solid rgba(220,168,95,.25);
    border-radius: 50%;

    background: rgba(220,168,95,.05);

    font-size: 30px;
}

.mz-cart-empty h3 {
    margin: 0 0 8px !important;

    color: #fff !important;

    font-family: "Playfair Display", serif !important;

    font-size: 24px !important;
}

.mz-cart-empty p {
    max-width: 260px;

    margin: 0 !important;

    color: #8f99a6 !important;

    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* =========================
   CART ITEM
========================= */

.mz-cart-item {
    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.mz-cart-item:first-child {
    padding-top: 5px;
}

.mz-cart-item-info {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 15px;
}

.mz-cart-item-info h3 {
    margin: 0 !important;

    color: #fff !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    line-height: 1.4 !important;
}

.mz-cart-item-info span {
    flex-shrink: 0;

    color: #dca85f;

    font-size: 14px;
    font-weight: 700;
}


/* =========================
   CART ITEM BOTTOM
========================= */

.mz-cart-item-bottom {
    display: flex !important;
    align-items: center !important;

    gap: 12px;
}


/* =========================
   QUANTITY
========================= */

.mz-cart-quantity {
    display: flex !important;
    align-items: center !important;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 7px;

    overflow: hidden;

    background: rgba(255,255,255,.025);
}

.mz-cart-quantity button {
    width: 32px;
    height: 32px;

    padding: 0 !important;
    margin: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0 !important;

    background: transparent !important;

    color: #dca85f !important;

    font-size: 18px !important;
    line-height: 1 !important;

    cursor: pointer;

    transition: .2s ease;
}

.mz-cart-quantity button:hover {
    background: rgba(220,168,95,.12) !important;
}

.mz-cart-quantity span {
    min-width: 30px;

    text-align: center;

    color: #fff;

    font-size: 13px;
    font-weight: 600;
}


.mz-cart-item-total {
    margin-left: auto;

    color: #fff;

    font-size: 14px;
}


/* =========================
   REMOVE
========================= */

.mz-cart-remove {
    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;

    background: transparent !important;

    color: #8f99a6 !important;

    font-size: 10px !important;

    cursor: pointer !important;

    transition: .2s ease;
}

.mz-cart-remove:hover {
    color: #e77d7d !important;
}


/* =========================
   CART FOOTER
========================= */

.mz-cart-footer {
    flex-shrink: 0;

    padding: 20px 22px 24px !important;

    border-top: 1px solid rgba(255,255,255,.08);

    background:
        rgba(5,9,15,.96);
}

.mz-cart-summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.mz-cart-summary span {
    color: #929aa5;

    font-size: 13px;
}

.mz-cart-total {
    color: #dca85f;

    font-size: 22px;
}


/* =========================
   CHECKOUT
========================= */

.mz-cart-checkout {
    width: 100% !important;
    min-height: 54px !important;

    border: 0 !important;
    border-radius: 7px !important;

    background:
        linear-gradient(
            135deg,
            #edc27f,
            #dca85f
        ) !important;

    color: #10151c !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    letter-spacing: 1.2px !important;
    text-transform: uppercase;

    cursor: pointer !important;

    box-shadow:
        0 8px 25px rgba(220,168,95,.15);

    transition: .25s ease !important;
}

.mz-cart-checkout:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(220,168,95,.22);
}


/* =========================
   CONTINUE SHOPPING
========================= */

.mz-cart-continue {
    width: 100% !important;

    margin-top: 10px !important;
    padding: 10px !important;

    border: 0 !important;

    background: transparent !important;

    color: #8e98a5 !important;

    font-size: 11px !important;

    cursor: pointer !important;

    transition: .2s ease;
}

.mz-cart-continue:hover {
    color: #dca85f !important;
}


/* =========================
   FLOATING CART
========================= */

.mz-floating-cart {
    position: fixed !important;

    right: 25px !important;
    bottom: 25px !important;

    min-width: 64px;
    height: 58px;

    padding: 0 17px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 8px;

    border: 1px solid rgba(220,168,95,.30) !important;
    border-radius: 50px !important;

    background:
        linear-gradient(
            135deg,
            #151e2a,
            #0b1119
        ) !important;

    color: #fff !important;

    box-shadow:
        0 12px 35px rgba(0,0,0,.40);

    cursor: pointer !important;

    z-index: 99990 !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.mz-floating-cart:hover {
    transform: translateY(-3px);

    border-color: rgba(220,168,95,.65) !important;

    box-shadow:
        0 16px 40px rgba(0,0,0,.50);
}

.mz-cart-icon {
    font-size: 20px;
}

.mz-cart-label {
    color: #fff;

    font-size: 12px;
    font-weight: 600;
}

.mz-cart-count {
    min-width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 6px;

    border-radius: 50px;

    background: #dca85f;

    color: #10151c;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   MOBILE CART
========================================================= */

@media (max-width: 767px) {

    .mz-cart-drawer {
        width: 100vw !important;

        border-left: 0 !important;

        transform: translateY(105%) !important;
    }

    .mz-cart-drawer.active {
        transform: translateY(0) !important;
    }

    .mz-cart-header {
        padding:
            22px 18px 18px !important;
    }

    .mz-cart-header h2 {
        font-size: 25px !important;
    }

    .mz-cart-items {
        padding:
            15px 17px !important;
    }

    .mz-cart-footer {
        padding:
            17px !important;
    }

    .mz-floating-cart {
        right: 15px !important;
        bottom: 15px !important;

        height: 54px;

        min-width: 54px;

        padding: 0 14px !important;
    }

    .mz-cart-label {
        display: none;
    }

}


/* =========================
   PREVENT BODY SCROLL
========================= */

body.mz-cart-open {
    overflow: hidden !important;
}