
:root {
    --mu-black: #050505;
    --mu-charcoal: #121212;
    --mu-red: #ef2028;
    --mu-red-dark: #c8141d;
    --mu-green: #2f8b39;
    --mu-white: #ffffff;
    --mu-muted: #6b6b6b;
    --mu-border: #e9e9e9;
    --mu-radius: 16px;
    --mu-shadow: 0 12px 30px rgba(0,0,0,.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.mu-theme,
body {
    margin: 0;
    background: #fff;
    color: #151515;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.mu-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */
.mu-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #050505;
    color: #fff;
    transition: box-shadow .2s ease;
}

.admin-bar .mu-header {
    top: 32px;
}

.mu-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.mu-header-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mu-logo img {
    display: block;
    width: 250px;
    max-height: 58px;
    object-fit: contain;
}

.mu-menu,
.mu-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mu-menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

.mu-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    padding: 28px 0;
}

.mu-menu a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    transform: scaleX(0);
    background: var(--mu-red);
    transition: transform .2s ease;
}

.mu-menu a:hover:after,
.mu-menu .current-menu-item > a:after {
    transform: scaleX(1);
}

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

.mu-cart-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    display: inline-flex;
}

.mu-cart-count {
    position: absolute;
    right: -9px;
    top: -8px;
    min-width: 19px;
    height: 19px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mu-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.mu-order-btn,
.mu-btn,
.mu-product-btn,
.woocommerce a.button.mu-product-btn,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mu-red);
    color: #fff !important;
    border: 0;
    border-radius: 11px;
    padding: 13px 24px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.2;
    transition: .2s ease;
}

.mu-order-btn:hover,
.mu-btn:hover,
.mu-product-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--mu-red-dark);
    color: #fff !important;
}

.mu-mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
}

.mu-mobile-toggle span {
    display: block;
    height: 3px;
    margin: 6px 7px;
    background: #fff;
    border-radius: 5px;
}

.mu-mobile-panel {
    display: none;
}

/* Home */
.mu-home {
    background: #fff;
}

.mu-hero-exact {
    background: #0b0b0b url('../images/sushi-hero.jpg') right center/cover no-repeat;
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
}

.mu-hero-exact:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 43%, rgba(0,0,0,.08) 100%);
}

.mu-hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    color: #fff;
    padding: 62px 0;
}

.mu-hero-content h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(42px, 6vw, 68px);
    line-height: .96;
    font-weight: 900;
    text-shadow: 0 3px 0 #000;
}

.mu-hero-content .mu-red-title {
    color: var(--mu-red);
    -webkit-text-stroke: 2px #fff;
    text-shadow: 0 4px 0 #111;
}

.mu-hero-content .mu-script {
    color: var(--mu-green);
    font-family: Georgia, serif;
    font-style: italic;
    -webkit-text-stroke: 1px #fff;
}

.mu-hero-content h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
}

.mu-hero-content p {
    max-width: 520px;
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.55;
}

.mu-hero-meta {
    display: grid;
    gap: 9px;
    margin-bottom: 22px;
    font-weight: 800;
    font-size: 18px;
}

.mu-hero-meta span {
    color: var(--mu-red);
    margin-right: 8px;
}

.mu-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.mu-btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.7);
}

.mu-btn-outline:hover {
    background: #fff;
    color: #111 !important;
}

.mu-btn-outline.light {
    border-color: var(--mu-red);
    color: var(--mu-red) !important;
}

.mu-btn-outline.light:hover {
    color: #fff !important;
    background: var(--mu-red);
}

.mu-cat-row {
    width: min(1180px, calc(100% - 40px));
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.mu-cat-card {
    background: #fff;
    border: 1px solid var(--mu-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--mu-shadow);
    text-align: center;
    text-decoration: none;
    color: #111;
}

.mu-cat-card img {
    width: 100%;
    aspect-ratio: 1.75;
    object-fit: cover;
    display: block;
}

.mu-cat-card strong {
    display: block;
    padding: 13px 8px 16px;
    font-size: 18px;
}

.mu-section {
    padding: 34px 0;
}

.mu-section-title {
    text-align: center;
    font-size: 30px;
    margin: 0 0 26px;
    line-height: 1.1;
    font-weight: 900;
    position: relative;
}

.mu-section-title:after {
    content: "";
    width: 48px;
    height: 3px;
    background: var(--mu-red);
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

.mu-products-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mu-product-card {
    border: 1px solid var(--mu-border);
    border-radius: 12px;
    background: #fff;
    padding: 16px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

.mu-product-image {
    display: block;
    margin-bottom: 12px;
}

.mu-product-image img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: contain;
    display: block;
}

.mu-product-card h3 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 900;
}

.mu-product-card p {
    margin: 0 0 9px;
    font-size: 12px;
    line-height: 1.35;
    color: #222;
    min-height: 48px;
}

.mu-price {
    color: var(--mu-red);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.mu-product-card .added_to_cart {
    display: block;
    margin-top: 8px;
    color: var(--mu-green);
    font-weight: 800;
    text-decoration: none;
    font-size: 12px;
}

.mu-product-card .mu-product-btn,
.mu-product-card .button {
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 8px;
}

.mu-delivery-banner {
    width: min(1180px, calc(100% - 40px));
    margin: 16px auto 0;
    min-height: 190px;
    border-radius: 14px;
    overflow: hidden;
    background: #101010 url('../images/sushi-cta.jpg') right center/cover no-repeat;
    color: #fff;
    position: relative;
}

.mu-delivery-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.25));
}

.mu-delivery-content {
    position: relative;
    z-index: 2;
    padding: 34px 46px;
}

.mu-delivery-content h2 {
    color: #fff;
    font-size: 40px;
    margin: 0 0 6px;
}

.mu-green-script {
    color: #47a849 !important;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
}

.mu-delivery-icons {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.mu-best-grid,
.mu-feature-grid {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.mu-best-grid {
    grid-template-columns: repeat(3, 1fr);
}

.mu-best-card {
    border: 1px solid var(--mu-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: #fff;
}

.mu-best-card img {
    width: 100%;
    aspect-ratio: 2;
    object-fit: cover;
    display: block;
}

.mu-best-card h3 {
    margin: 16px 0 7px;
    font-size: 22px;
}

.mu-best-card .mu-price {
    padding-bottom: 16px;
}

.mu-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--mu-red);
    color: #fff;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 9px;
}

.mu-badge.green {
    background: var(--mu-green);
}

.mu-feature-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 34px;
}

.mu-feature-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
}

.mu-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--mu-red);
    border: 2px solid currentColor;
    font-size: 23px;
}

.mu-feature-item h3 {
    margin: 0 0 4px;
    font-size: 17px;
}

.mu-feature-item p {
    margin: 0;
    font-size: 13px;
    color: #333;
}

/* Footer */
.mu-contact-strip {
    background: #070707 url('../images/sushi-footer.jpg') right center/cover no-repeat;
    color: #fff;
    padding: 26px 0;
    position: relative;
}

.mu-contact-strip:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.55));
}

.mu-contact-strip-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mu-contact-phone {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mu-contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mu-red);
    color: #fff;
    font-size: 34px;
}

.mu-contact-phone p,
.mu-contact-address p {
    margin: 0;
}

.mu-contact-phone strong {
    display: block;
    font-size: clamp(24px, 3vw, 34px);
}

.mu-contact-address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.mu-footer {
    background: #080808;
    color: #fff;
    padding: 48px 0 0;
}

.mu-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .8fr 1fr 1.1fr .6fr;
    gap: 36px;
}

.mu-footer-brand img {
    width: 235px;
    display: block;
    margin-bottom: 8px;
}

.mu-footer p {
    color: #d2d2d2;
    line-height: 1.5;
}

.mu-footer-col h3 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 16px;
}

.mu-footer-col a,
.mu-footer-menu a {
    display: block;
    color: #d2d2d2;
    text-decoration: none;
    margin-bottom: 8px;
}

.mu-socials {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.mu-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.mu-halal-badge {
    align-self: start;
    justify-self: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mu-red);
    color: #fff;
    border: 4px solid #fff;
    font-weight: 900;
    font-size: 18px;
}

.mu-footer-bottom {
    text-align: center;
    margin-top: 34px;
    padding: 17px;
    background: #050505;
    color: #aaa;
    font-size: 13px;
}

/* Basic pages */
.mu-basic-page,
.mu-contact-page {
    padding: 60px 0;
    background: #fff;
}

.mu-basic-page h1 {
    margin-top: 0;
    font-size: clamp(36px, 5vw, 64px);
}

/* WooCommerce */
.mu-wc-page {
    background: #fff;
}

.mu-wc-hero {
    background: #0b0b0b url('../images/sushi-hero.jpg') right center/cover no-repeat;
    color: #fff;
    padding: 70px 0;
    position: relative;
}

.mu-wc-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.28));
}

.mu-wc-hero .mu-wrap {
    position: relative;
    z-index: 2;
}

.mu-wc-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    color: #fff;
    font-weight: 900;
}

.mu-wc-hero p {
    max-width: 620px;
    margin: 12px 0 0;
    font-size: 18px;
}

.mu-wc-content {
    width: min(1180px, calc(100% - 40px));
    margin: 40px auto 70px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 24px;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 0 !important;
}

.woocommerce ul.products:before,
.woocommerce ul.products:after {
    display: none !important;
}

.woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    border: 1px solid var(--mu-border);
    border-radius: 14px;
    padding: 16px !important;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.woocommerce ul.products li.product a img {
    aspect-ratio: 1.35;
    object-fit: contain;
    margin-bottom: 14px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #111;
    font-size: 18px;
    font-weight: 900;
    padding: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--mu-red);
    font-weight: 900;
    font-size: 21px;
}

.woocommerce div.product .product_title {
    color: #111;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
}

.woocommerce div.product form.cart .button {
    min-height: 52px;
}

.woocommerce div.product div.images img {
    border-radius: 16px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order {
    background: var(--mu-red);
    border-radius: 10px;
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    border-radius: 14px;
    overflow: hidden;
}

.woocommerce .quantity .qty {
    min-height: 44px;
    border: 1px solid var(--mu-border);
    border-radius: 8px;
}

/* Contact */
.mu-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.mu-contact-card {
    border: 1px solid var(--mu-border);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--mu-shadow);
}

.mu-contact-card h2 {
    margin-top: 0;
    color: var(--mu-red);
}

.mu-contact-card a {
    color: var(--mu-red);
    font-weight: 800;
}

.mu-added-message {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 9999;
    background: var(--mu-green);
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .mu-nav {
        display: none;
    }

    .mu-mobile-toggle {
        display: block;
    }

    .mu-mobile-panel {
        display: none;
        background: #050505;
        border-top: 1px solid rgba(255,255,255,.08);
        padding: 16px 20px 22px;
    }

    .mu-mobile-panel.is-open {
        display: grid;
    }

    .mu-mobile-panel a {
        color: #fff;
        text-decoration: none;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-weight: 800;
    }

    .mu-mobile-call {
        color: var(--mu-red) !important;
    }

    .mu-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mu-cat-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }

    .mu-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mu-halal-badge {
        justify-self: start;
    }
}

@media (max-width: 782px) {
    .admin-bar .mu-header {
        top: 46px;
    }
}

@media (max-width: 767px) {
    .mu-header-inner {
        height: 68px;
        width: min(100% - 24px, 1180px);
    }

    .mu-logo img {
        width: 185px;
    }

    .mu-order-btn {
        display: none;
    }

    .mu-hero-exact {
        min-height: 520px;
        background-position: 65% center;
    }

    .mu-hero-exact:before {
        background: rgba(0,0,0,.72);
    }

    .mu-hero-content {
        width: min(100% - 28px, 1180px);
        text-align: center;
    }

    .mu-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .mu-hero-actions {
        justify-content: center;
    }

    .mu-cat-row,
    .mu-products-grid,
    .mu-best-grid,
    .mu-feature-grid,
    .mu-contact-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .mu-delivery-content {
        padding: 28px 22px;
        text-align: center;
    }

    .mu-delivery-content h2 {
        font-size: 31px;
    }

    .mu-delivery-icons,
    .mu-contact-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .mu-contact-strip-inner,
    .mu-contact-phone,
    .mu-contact-address {
        flex-direction: column;
    }

    .mu-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mu-footer-brand img,
    .mu-socials {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .mu-halal-badge {
        justify-self: center;
    }
}

@media (max-width: 600px) {
    .admin-bar .mu-header {
        top: 0;
    }
}
