/* MERLHEART — Streetwear Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --mh-black: #0a0a0a;
    --mh-white: #fafafa;
    --mh-gray: #888;
    --mh-light: #f5f5f5;
    --mh-border: #e8e8e8;
    --mh-accent: #c8ff00;
    --mh-font-display: 'Bebas Neue', sans-serif;
    --mh-font-body: 'Inter', sans-serif;
    --mh-radius-sm: 6px;
    --mh-radius-md: 10px;
    --mh-radius-lg: 12px;
}

body.merlheart {
    font-family: var(--mh-font-body);
    color: var(--mh-black);
    background: var(--mh-white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
}

body.merlheart .header-area,
body.merlheart .header-top,
body.merlheart .top-selector-wrapper,
body.merlheart .single-top-selector,
body.merlheart .setting-top { display: none !important; }

/* ========== NEW HEADER ========== */
.mh-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--mh-white);
    border-bottom: 1px solid var(--mh-border);
}

.mh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.mh-logo {
    font-family: var(--mh-font-display);
    font-size: 26px;
    letter-spacing: 4px;
    color: var(--mh-black);
    text-decoration: none;
    flex-shrink: 0;
}

.mh-nav--desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.mh-header-icons--desktop {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mh-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.mh-nav a {
    font-family: var(--mh-font-display);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-black);
    text-decoration: none;
    transition: color 0.2s;
}

.mh-nav a.is-active,
.mh-nav-account-link.is-active {
    color: var(--mh-black);
    font-weight: 600;
}

.mh-nav-drawer-link--account {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--mh-border);
}

.mh-nav-drawer-link.is-active {
    font-weight: 600;
}

.mh-nav-login-link {
    font-family: var(--mh-font-display);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mh-inline-logout-form {
    display: inline;
    margin: 0;
    padding: 0;
}

.mh-nav-logout-form {
    display: inline-flex;
    align-items: center;
}

/* Logout button — shared across header, drawer, footer, account */
.mh-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 10px 20px;
    background: var(--mh-white);
    border: 1px solid var(--mh-black);
    cursor: pointer;
    font-family: var(--mh-font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-black);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.mh-logout-btn i {
    font-size: 14px;
    line-height: 1;
}

.mh-logout-btn:hover {
    background: var(--mh-black);
    border-color: var(--mh-black);
    color: var(--mh-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.mh-logout-btn:active {
    transform: translateY(1px);
}

.mh-logout-btn--nav {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.mh-account-page .mh-nav-logout-form {
    display: none;
}

.mh-nav-drawer-logout {
    display: block;
    width: 100%;
    padding: 0 20px 16px;
    margin-top: 4px;
}

.mh-logout-btn--drawer {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    font-size: 13px;
    letter-spacing: 2px;
    background: var(--mh-light);
    border-color: var(--mh-black);
}

.mh-logout-btn--drawer:hover {
    background: var(--mh-black);
    border-color: var(--mh-black);
    color: var(--mh-white);
}

.mh-footer-logout-item {
    list-style: none;
    margin-top: 4px;
}

.mh-logout-btn--footer {
    padding: 0;
    border: none;
    background: none;
    font-family: var(--mh-font-body);
    font-size: inherit;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.75);
    gap: 6px;
}

.mh-logout-btn--footer:hover {
    background: none;
    border-color: transparent;
    color: var(--mh-white);
}

.mh-logout-btn--account {
    min-width: 148px;
    padding: 12px 24px;
    font-size: 13px;
    letter-spacing: 2px;
}

.mh-nav a:hover { color: var(--mh-gray); }

/* Nav Shop dropdown */
.mh-nav-shop-wrap {
    position: relative;
    /* 向下延伸 hover 区域，负 margin 抵消布局高度，header 不会变高 */
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.mh-nav-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mh-nav-shop-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.mh-nav-shop-wrap.is-open .mh-nav-shop-link i,
.mh-nav-shop-wrap:hover .mh-nav-shop-link i {
    transform: rotate(180deg);
}

.mh-nav-shop-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 560px;
    background: var(--mh-white);
    border: 1px solid var(--mh-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.mh-nav-shop-wrap:hover .mh-nav-shop-menu,
.mh-nav-shop-wrap.is-open .mh-nav-shop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mh-nav-shop-wrap.is-open .mh-nav-shop-col,
.mh-nav-shop-wrap:hover .mh-nav-shop-col {
    animation: mh-slide-up 0.35s ease both;
}

.mh-nav-shop-col:nth-child(1) { animation-delay: 0.03s; }
.mh-nav-shop-col:nth-child(2) { animation-delay: 0.07s; }
.mh-nav-shop-col:nth-child(3) { animation-delay: 0.11s; }
.mh-nav-shop-col:nth-child(4) { animation-delay: 0.15s; }

.mh-nav-shop-all {
    display: block;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--mh-border);
    font-family: var(--mh-font-body) !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: var(--mh-black) !important;
    text-decoration: none;
    font-weight: 600;
}

.mh-nav-shop-all:hover {
    color: var(--mh-gray) !important;
}

.mh-nav-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.mh-nav-shop-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.mh-nav-shop-cat-link {
    font-family: var(--mh-font-display) !important;
    font-size: 15px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--mh-black) !important;
    text-decoration: none;
    padding-bottom: 6px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--mh-light);
    white-space: nowrap;
}

.mh-nav-shop-cat-link:hover {
    color: var(--mh-gray) !important;
}

.mh-nav-shop-sub {
    display: block;
    font-family: var(--mh-font-body) !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--mh-gray) !important;
    text-decoration: none;
    padding: 2px 0;
    line-height: 1.4;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mh-nav-shop-sub:hover {
    color: var(--mh-black) !important;
    padding-left: 4px;
}

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

.mh-icon-link {
    position: relative;
    color: var(--mh-black);
    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    overflow: visible;
}

.mh-icon-link:hover { color: var(--mh-gray); }

button.mh-icon-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.mh-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--mh-black);
    color: var(--mh-white);
    font-size: 10px;
    font-family: var(--mh-font-body);
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    box-sizing: border-box;
}

.mh-notify-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #c0392b;
    color: var(--mh-white);
    font-size: 10px;
    font-family: var(--mh-font-body);
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    box-sizing: border-box;
}

.mh-notify-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.mh-notify-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    max-height: min(420px, calc(100vh - 96px));
    background: var(--mh-white);
    border: 1px solid var(--mh-border);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 1200;
    flex-direction: column;
    overflow: hidden;
}

.mh-notify-panel.is-open {
    display: flex;
}

.mh-notify-panel[hidden],
.mh-notify-panel:not(.is-open) {
    display: none !important;
}

.mh-notify-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-notify-panel-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mh-notify-mark-all {
    background: none;
    border: none;
    color: var(--mh-gray);
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}

.mh-notify-close {
    background: none;
    border: none;
    color: var(--mh-gray);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 2px;
}

.mh-notify-close:hover {
    color: var(--mh-black);
}

.mh-notify-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

.mh-notify-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--mh-border);
    cursor: pointer;
}

.mh-notify-item.is-unread {
    background: #faf8f5;
}

.mh-notify-item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.mh-notify-item-msg {
    font-size: 13px;
    color: var(--mh-gray);
    line-height: 1.45;
}

.mh-notify-item-time {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #999;
}

.mh-notify-empty {
    margin: 0;
    padding: 24px 16px;
    text-align: center;
    color: var(--mh-gray);
    font-size: 14px;
}

.mh-lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid var(--mh-border);
    border-radius: 6px;
    padding: 2px;
}

.mh-lang-btn {
    border: none;
    background: transparent;
    font-size: 11px;
    font-family: var(--mh-font-body);
    padding: 4px 7px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--mh-gray);
    transition: background 0.2s, color 0.2s;
}

.mh-lang-btn.is-active {
    background: var(--mh-black);
    color: var(--mh-white);
}

.mh-lang-btn:hover:not(.is-active) {
    color: var(--mh-black);
}

.mh-mobile-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    color: var(--mh-black);
}

/* ========== NEW FOOTER ========== */
.mh-footer {
    background: var(--mh-black);
    color: #ccc;
    margin-top: 80px;
    padding: 60px 0 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.mh-footer .mh-logo {
    color: var(--mh-white);
    display: inline-block;
    margin-bottom: 12px;
}

.mh-footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid #222;
}

.mh-footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 300px;
    color: #999;
}

.mh-footer-company {
    margin-bottom: 24px;
    padding-top: 4px;
    border-top: 1px solid #2a2a2a;
}

.mh-footer-company-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin: 18px 0 14px;
    font-weight: 600;
}

.mh-footer-company-dl {
    margin: 0;
    display: grid;
    gap: 10px;
    max-width: 320px;
}

.mh-footer-company-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
    align-items: start;
}

.mh-footer-company-row dt {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin: 0;
    line-height: 1.5;
    padding-top: 1px;
}

.mh-footer-company-row dd {
    font-size: 12px;
    line-height: 1.55;
    color: #ccc;
    margin: 0;
    word-break: break-word;
}

.mh-footer-company-row dd a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s;
}

.mh-footer-company-row dd a:hover {
    color: var(--mh-white);
}

.mh-footer-company-row--address dd {
    line-height: 1.65;
}

.mh-footer-copyright {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.mh-footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.mh-social {
    display: flex;
    gap: 14px;
}

.mh-social a {
    color: #888;
    font-size: 16px;
    transition: color 0.2s;
}

.mh-social a:hover { color: var(--mh-white); }

.mh-auth-msg {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.mh-auth-msg.is-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.mh-auth-msg.is-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.mh-order-pay-link {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.mh-order-pay-link:hover {
    opacity: 0.85;
}

.mh-order-pay-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--mh-border);
}

.mh-order-pay-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

body.mh-order-pay-page .mh-checkout-back {
    text-decoration: none;
}

.mh-footer-col h4,
.mh-footer-heading {
    font-family: var(--mh-font-display);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-white);
    margin-bottom: 16px;
}

.mh-footer-toggle {
    display: none;
}

.mh-footer-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mh-footer-col ul li { margin-bottom: 8px; }

.mh-footer-panel ul li { margin-bottom: 8px; }

.mh-footer-col ul a {
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.mh-footer-col ul a:hover { color: var(--mh-white); }

.mh-footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.mh-footer-bottom p {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Hide old footer when new one is present */
body.merlheart:has(.mh-footer) .footer-area { display: none !important; }

/* ========== PAGE LAYOUT ========== */
.mh-page-head {
    padding: 32px 0 24px;
    text-align: center;
}

.mh-page-title {
    font-family: var(--mh-font-display);
    font-size: 36px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.mh-breadcrumb {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mh-gray);
    margin-bottom: 8px;
}

.mh-breadcrumb a {
    color: var(--mh-gray);
    text-decoration: none;
}

.mh-breadcrumb a:hover { color: var(--mh-black); }

body.merlheart .breadcrumb-area { display: none !important; }

.mh-content {
    padding-bottom: 60px;
}

/* ========== AUTH PAGES ========== */
body.mh-auth-page {
    background: var(--mh-light);
    min-height: 100dvh;
    overflow-x: hidden;
    max-width: 100%;
}

body.mh-auth-page .mh-header {
    background: var(--mh-white);
}

body.mh-auth-page .footer-area { display: none !important; }

.mh-auth-wrap {
    min-height: calc(100dvh - 64px);
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.mh-auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
    flex: 1;
    min-height: calc(100dvh - 64px);
    overflow: hidden;
    box-sizing: border-box;
}

.mh-auth-visual {
    position: relative;
    background: var(--mh-black);
    color: var(--mh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 40px;
    overflow: hidden;
    min-height: 0;
}

.mh-auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, transparent 45%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 80px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 80px
        );
    pointer-events: none;
}

.mh-auth-visual-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mh-accent);
}

.mh-auth-visual-inner {
    position: relative;
    z-index: 1;
    max-width: 400px;
}

.mh-auth-badge {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 24px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-black);
    background: var(--mh-accent);
    border-radius: var(--mh-radius-sm);
}

.mh-auth-visual-title {
    font-family: var(--mh-font-display);
    font-size: clamp(48px, 6vw, 72px);
    letter-spacing: 6px;
    line-height: 0.95;
    margin: 0 0 20px;
    font-weight: 400;
}

.mh-auth-visual-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 32px;
}

.mh-auth-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mh-auth-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.88);
}

.mh-auth-perks li::before {
    content: '';
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: var(--mh-accent);
    border-radius: 50%;
}

.mh-auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    background: var(--mh-light);
    min-height: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.mh-auth-box {
    width: 100%;
    max-width: 400px;
    padding: 32px 32px 28px;
    border: 1px solid var(--mh-border);
    background: var(--mh-white);
    border-radius: var(--mh-radius-lg);
    box-shadow: 0 16px 48px rgba(10, 10, 10, 0.06);
    margin: auto 0;
    box-sizing: border-box;
}

body.mh-auth-page.mh-auth-register .mh-auth-form-panel {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
}

body.mh-auth-page.mh-auth-register .mh-auth-box {
    margin: 0 auto;
}

body.mh-auth-page.mh-auth-register .mh-auth-field {
    margin-bottom: 10px;
}

body.mh-auth-page.mh-auth-register .mh-auth-box-head {
    margin-bottom: 16px;
    padding-bottom: 12px;
}

body.mh-auth-page.mh-auth-register .mh-auth-box input {
    padding: 11px 14px 11px 38px;
}

body.mh-auth-page.mh-auth-register .mh-auth-footer {
    margin-top: 18px;
    padding-top: 16px;
    padding-bottom: 4px;
}

.mh-auth-box-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-auth-box h1 {
    font-family: var(--mh-font-display);
    font-size: 36px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 8px;
    line-height: 1;
}

.mh-auth-box h1::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--mh-accent);
    margin-top: 12px;
    border-radius: 2px;
}

.mh-auth-box .mh-subtitle {
    text-align: left;
    color: var(--mh-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.mh-auth-field {
    margin-bottom: 12px;
}

.mh-auth-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mh-gray);
    margin-bottom: 8px;
}

.mh-auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mh-auth-input-wrap > i {
    position: absolute;
    left: 14px;
    font-size: 14px;
    color: var(--mh-gray);
    pointer-events: none;
    transition: color 0.2s;
}

.mh-auth-box input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--mh-border);
    padding: 13px 14px 13px 40px;
    font-size: 14px;
    background: var(--mh-light);
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    border-radius: var(--mh-radius-sm);
}

.mh-auth-box input:focus {
    border-color: var(--mh-black);
    background: var(--mh-white);
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.25);
}

.mh-auth-input-wrap:focus-within > i {
    color: var(--mh-black);
}

.mh-auth-box .mh-btn {
    margin-top: 8px;
}

.mh-auth-box .mh-btn:hover {
    background: var(--mh-accent);
    border-color: var(--mh-accent);
    color: var(--mh-black);
}

.mh-auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--mh-border);
    font-size: 13px;
    color: var(--mh-gray);
}

.mh-auth-footer a {
    color: var(--mh-black);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--mh-accent);
    transition: color 0.2s;
}

.mh-auth-footer a:hover {
    color: var(--mh-gray);
}

.mh-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    min-width: 0;
}

.mh-auth-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--mh-gray);
}

.mh-auth-options input[type="checkbox"] {
    accent-color: var(--mh-black);
    width: 14px;
    height: 14px;
}

.mh-auth-options a {
    color: var(--mh-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.mh-auth-options a:hover { color: var(--mh-black); }

@media (max-width: 991px) {
    body.mh-auth-page .mh-auth-visual {
        display: none;
    }

    body.mh-auth-page .mh-header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .mh-auth-split {
        grid-template-columns: 1fr;
        display: block;
        height: auto;
        min-height: calc(100dvh - 64px);
        overflow: visible;
    }

    .mh-auth-wrap {
        height: auto;
        min-height: calc(100dvh - 64px);
    }

    .mh-auth-form-panel {
        min-height: calc(100dvh - 64px);
        height: auto;
        padding: 28px 24px 40px;
        align-items: center;
        justify-content: center;
    }

    .mh-auth-box {
        padding: 28px 28px 24px;
        max-width: 460px;
        margin: 0 auto;
    }

    body.mh-auth-page.mh-auth-register .mh-auth-form-panel {
        align-items: flex-start;
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .mh-auth-box h1 {
        font-size: 30px;
    }

    .mh-auth-box-head {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .mh-auth-field {
        margin-bottom: 10px;
    }

    .mh-auth-box input {
        padding: 11px 14px 11px 38px;
    }

    .mh-auth-options {
        margin-bottom: 14px;
    }

    .mh-auth-footer {
        margin-top: 16px;
        padding-top: 14px;
    }
}

@media (max-width: 767px) {
    body.mh-auth-page .container {
        padding: 0 16px;
    }

    .mh-auth-form-panel {
        padding: 20px 16px 32px;
        align-items: stretch;
    }

    .mh-auth-box {
        max-width: none;
        width: 100%;
        padding: 24px 20px 20px;
        border-radius: var(--mh-radius-md);
    }

    .mh-auth-options {
        flex-wrap: wrap;
        gap: 10px;
    }

    body.mh-auth-page.mh-auth-register .mh-auth-form-panel {
        padding-top: 16px;
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    body.mh-auth-page .mh-header-inner {
        height: 56px;
    }

    body.mh-auth-page .mh-auth-wrap {
        min-height: calc(100dvh - 56px);
    }

    body.mh-auth-page .mh-auth-split {
        min-height: calc(100dvh - 56px);
    }

    body.mh-auth-page .mh-auth-form-panel {
        min-height: calc(100dvh - 56px);
        padding: 16px 12px 28px;
    }

    body.mh-auth-page .mh-logo {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .mh-auth-box {
        padding: 20px 16px 16px;
        box-shadow: 0 8px 24px rgba(10, 10, 10, 0.05);
        border: 1px solid var(--mh-border);
    }

    .mh-auth-box h1 {
        font-size: 26px;
    }

    .mh-auth-box .mh-subtitle {
        font-size: 13px;
    }
}

.mh-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--mh-black);
    color: var(--mh-white);
    border: 2px solid var(--mh-black);
    font-family: var(--mh-font-display);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: var(--mh-radius-md);
}

.mh-btn:hover {
    background: transparent;
    color: var(--mh-black);
}

/* ========== CART & WISHLIST ========== */
.mh-cart-list,
.mh-wishlist-list {
    max-width: 900px;
    margin: 0 auto;
}

.mh-cart-header,
.mh-wishlist-header {
    display: grid;
    grid-template-columns: 1fr 100px 80px 32px;
    gap: 16px;
    padding: 0 16px 12px;
    border-bottom: 2px solid var(--mh-black);
    font-family: var(--mh-font-display);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-gray);
}

.mh-wishlist-header {
    grid-template-columns: 1fr 90px 100px 32px;
}

.mh-cart-header span:nth-child(2),
.mh-cart-header span:nth-child(3) { text-align: center; }

.mh-cart-item,
.mh-wishlist-item {
    display: grid;
    grid-template-columns: 1fr 100px 80px 32px;
    gap: 16px;
    align-items: center;
    padding: 20px 16px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-wishlist-item {
    grid-template-columns: 1fr 90px 100px 32px;
}

.mh-cart-item-main,
.mh-wishlist-item-main {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.mh-cart-item-img,
.mh-wishlist-item-img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--mh-light);
}

.mh-cart-item-img img,
.mh-wishlist-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh-cart-item-info a,
.mh-wishlist-item-info a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--mh-black);
    text-decoration: none;
    margin-bottom: 4px;
}

.mh-cart-item-info a:hover,
.mh-wishlist-item-info a:hover { color: var(--mh-gray); }

.mh-cart-item-meta {
    font-size: 12px;
    color: var(--mh-gray);
}

.mh-cart-item-price,
.mh-cart-item-total,
.mh-wishlist-item-price {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

/* Quantity stepper */
.mh-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--mh-border);
    height: 32px;
}

.mh-qty-btn {
    width: 28px;
    height: 30px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--mh-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    padding: 0;
    line-height: 1;
}

.mh-qty-btn:hover { background: var(--mh-light); }

.mh-qty input {
    width: 32px;
    height: 30px;
    border: none;
    border-left: 1px solid var(--mh-border);
    border-right: 1px solid var(--mh-border);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    background: var(--mh-white);
    padding: 0;
    -moz-appearance: textfield;
}

.mh-qty input::-webkit-outer-spin-button,
.mh-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mh-cart-remove,
.mh-wishlist-remove {
    background: none;
    border: none;
    color: var(--mh-gray);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    text-align: center;
}

.mh-cart-remove:hover,
.mh-wishlist-remove:hover { color: var(--mh-black); }

.mh-cart-footer {
    max-width: 900px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.mh-cart-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mh-btn-outline {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--mh-black);
    border: 1px solid var(--mh-black);
    font-family: var(--mh-font-display);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.mh-btn-outline:hover {
    background: var(--mh-black);
    color: var(--mh-white);
}

.mh-btn-sm {
    display: inline-block;
    padding: 10px 24px;
    background: var(--mh-black);
    color: var(--mh-white);
    border: 1px solid var(--mh-black);
    font-family: var(--mh-font-display);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.mh-btn-sm:hover {
    background: transparent;
    color: var(--mh-black);
}

.mh-cart-summary {
    width: 280px;
    border: 1px solid var(--mh-border);
    padding: 24px;
}

.mh-cart-summary h3 {
    font-family: var(--mh-font-display);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--mh-gray);
}

.mh-cart-summary-row.total {
    font-weight: 600;
    color: var(--mh-black);
    font-size: 15px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--mh-border);
}

.mh-cart-summary .mh-btn {
    margin-top: 16px;
    font-size: 14px;
    padding: 12px;
}

.mh-stock {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.mh-stock.in { color: #2d6a1e; }
.mh-stock.out { color: #c0392b; }

.mh-add-cart-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--mh-black);
    color: var(--mh-white);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--mh-black);
}

.mh-add-cart-btn:hover {
    background: transparent;
    color: var(--mh-black);
}

.mh-add-cart-btn.disabled {
    background: var(--mh-light);
    color: var(--mh-gray);
    border-color: var(--mh-border);
    pointer-events: none;
}

/* Hide old cart table */
body.merlheart .cart-table .table-content { display: none !important; }
body.merlheart .cart-table .coupon-all,
body.merlheart .cart-table .cart-page-total { display: none !important; }

/* ========== HERO & PRODUCTS (index/shop) ========== */
body.merlheart .hero-slider-one .slider-text-info h1 {
    font-family: var(--mh-font-display);
    font-size: 72px;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}

body.merlheart .hero-slider-one .slider-text-info p { display: none; }

body.merlheart .slider-btn {
    background: var(--mh-black) !important;
    border: 2px solid var(--mh-black) !important;
    font-family: var(--mh-font-display) !important;
    letter-spacing: 3px !important;
    border-radius: var(--mh-radius-md) !important;
    padding: 14px 40px !important;
}

body.merlheart .slider-btn:hover {
    background: transparent !important;
    color: var(--mh-black) !important;
}

body.merlheart .slider-btn .fa-plus { display: none; }

body.merlheart .section-title h2 {
    font-family: var(--mh-font-display);
    font-size: 36px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

body.merlheart .section-title p { color: var(--mh-gray); font-size: 14px; }

/* Section link bar — view all / view more between title and products */
body.merlheart .mh-section-linkbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 28px;
}

body.merlheart .mh-section-linkbar--promo {
    margin-bottom: 20px;
}

body.merlheart .mh-view-all {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--mh-black);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

body.merlheart .mh-view-all:hover {
    color: var(--mh-accent-dark, #9ecc00);
}

body.merlheart .mh-view-all--light {
    color: var(--mh-white);
}

body.merlheart .mh-view-all--light:hover {
    color: var(--mh-accent);
}

body.merlheart .mh-product-carousel {
    position: relative;
}

body.merlheart .mh-product-carousel .slick-slide {
    margin: 0 8px;
}

body.merlheart .mh-product-carousel .slick-list {
    margin: 0 -8px;
}

body.merlheart .mh-product-carousel .slick-arrow {
    font-size: 18px;
    position: absolute;
    top: 42%;
    left: -4px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 5;
    color: var(--mh-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, background 0.2s ease;
}

body.merlheart .mh-product-carousel .slick-arrow.slick-next {
    left: auto;
    right: -4px;
}

body.merlheart .mh-product-carousel:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

body.merlheart .mh-product-carousel .slick-arrow:hover {
    background: var(--mh-accent);
    color: var(--mh-black);
}

body.merlheart .mh-promo-deals .mh-section-linkbar--promo {
    margin-bottom: 16px;
}

.mh-status-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-status-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--mh-black);
    cursor: pointer;
    margin: 0;
}

.mh-status-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--mh-black);
    cursor: pointer;
    flex-shrink: 0;
}

body.merlheart .single-product-wrap .product-content h3 a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

body.merlheart .star_content { display: none !important; }

/* Product card — remove black hover bar, show icon on image */
body.merlheart .single-product-wrap:hover .price-box {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.merlheart .product-content .product-action {
    display: none !important;
}

body.merlheart .single-product-wrap .quick_view {
    display: none !important;
}

body.merlheart .product-image .mh-cart-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mh-black);
    color: var(--mh-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(6px) scale(1) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s, color 0.2s;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    box-shadow: none;
}

body.merlheart .single-product-wrap:hover .product-image .mh-cart-icon {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

body.merlheart .product-image .mh-cart-icon:hover {
    background: var(--mh-white);
    color: var(--mh-black);
    box-shadow: 0 0 0 1px var(--mh-black);
}

body.merlheart .product-image .mh-wishlist-icon {
    position: absolute;
    bottom: 60px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mh-black);
    color: var(--mh-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(6px) scale(1) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s, color 0.2s;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    box-shadow: none;
}

body.merlheart .single-product-wrap:hover .product-image .mh-wishlist-icon {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

body.merlheart .product-image .mh-wishlist-icon:hover {
    background: var(--mh-white);
    color: var(--mh-black);
    box-shadow: 0 0 0 1px var(--mh-black);
}

body.merlheart .product-image .mh-wishlist-icon.is-active {
    background: var(--mh-white);
    color: #c0392b;
    box-shadow: 0 0 0 1px #c0392b;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

body.merlheart .mh-pdp-wishlist.is-active {
    color: #c0392b;
    border-color: #c0392b;
}

body.merlheart .mh-pdp-wishlist.is-active:hover {
    background: #c0392b;
    color: var(--mh-white);
}

body.merlheart .label-product { border-radius: var(--mh-radius-sm) !important; font-size: 10px !important; }

/* Shop sidebar — hidden on other pages, visible on shop */
body.merlheart:not(.mh-shop-page) .sidebar-categores-box,
body.merlheart:not(.mh-shop-page) .shop-sidebar,
body.merlheart:not(.mh-shop-page) .sidebar-widget { display: none !important; }

body.merlheart:not(.mh-shop-page) .content-wraper .row > .col-lg-9,
body.merlheart:not(.mh-shop-page) .content-wraper .row > .order-lg-2,
body.merlheart:not(.mh-shop-page) .content-wraper .col-lg-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.merlheart:not(.mh-shop-page) .content-wraper .row > .col-lg-3 { display: none !important; }

body.merlheart.mh-shop-page .content-wraper .col-lg-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
    width: 75% !important;
}

body.merlheart.mh-shop-page .content-wraper .col-lg-3 {
    display: block !important;
}

body.merlheart .content-wraper > .container {
    max-width: 1280px;
}

/* ========== SHOP FILTER ========== */
.mh-shop-filter {
    border: 1px solid var(--mh-border);
    padding: 24px 20px;
    position: sticky;
    top: 80px;
    background: var(--mh-white);
    overflow: hidden;
    max-width: 100%;
}

.mh-filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-filter-head h3 {
    font-family: var(--mh-font-display);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.mh-filter-clear {
    background: none;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mh-gray);
    cursor: pointer;
    padding: 0;
}

.mh-filter-clear:hover { color: var(--mh-black); }

.mh-filter-section { margin-bottom: 28px; }

.mh-filter-section h4 {
    font-family: var(--mh-font-display);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--mh-gray);
}

.mh-price-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.mh-price-values em { font-style: normal; }
.mh-price-sep { color: var(--mh-gray); }

.mh-price-range {
    max-width: 100%;
    overflow: hidden;
}

.mh-range-wrap {
    position: relative;
    height: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.mh-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--mh-border);
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.mh-range-fill {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--mh-black);
    left: 0%;
    right: 0%;
}

.mh-range-input {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 16px;
    margin: 0;
    padding: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    transform: translateY(-50%);
    z-index: 2;
}

.mh-range-input:last-of-type {
    z-index: 3;
}

.mh-range-input::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: transparent;
    height: 2px;
    border: none;
}

.mh-range-input::-moz-range-track {
    background: transparent;
    height: 2px;
    border: none;
}

.mh-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--mh-black);
    border: 2px solid var(--mh-white);
    box-shadow: 0 0 0 1px var(--mh-black);
    box-sizing: border-box;
    margin-top: -7px;
    cursor: pointer;
    pointer-events: auto;
}

.mh-range-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--mh-black);
    border: 2px solid var(--mh-white);
    box-shadow: 0 0 0 1px var(--mh-black);
    box-sizing: border-box;
    cursor: pointer;
    pointer-events: auto;
}

.mh-cat-list { display: flex; flex-direction: column; gap: 4px; }

.mh-cat-item { border-bottom: 1px solid var(--mh-light); }
.mh-cat-item:last-child { border-bottom: none; }

.mh-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.mh-cat-label,
.mh-subcat-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.mh-cat-label input,
.mh-subcat-label input {
    width: 15px;
    height: 15px;
    accent-color: var(--mh-black);
    cursor: pointer;
    flex-shrink: 0;
}

.mh-cat-toggle {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: var(--mh-gray);
    font-size: 11px;
    transition: transform 0.2s;
}

.mh-cat-item.is-open .mh-cat-toggle { transform: rotate(180deg); }

.mh-subcat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 24px;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.mh-cat-item.is-open .mh-subcat-list {
    max-height: 160px;
    padding-bottom: 12px;
    opacity: 1;
}

.mh-subcat-label { font-size: 12px; color: var(--mh-gray); }
.mh-subcat-label:hover { color: var(--mh-black); }

.mh-filter-apply {
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
    padding: 12px;
}

.mh-filter-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--mh-black);
    color: var(--mh-white);
    border: none;
    font-family: var(--mh-font-display);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 16px;
}

body.merlheart .shop-top-bar,
body.merlheart .shop-products-wrapper {
    width: 100%;
}

/* Shop grid — phone 2 cols, tablet 3 cols */
body.merlheart.mh-shop-page #grid-view .shop-product-area .row {
    margin-left: -8px;
    margin-right: -8px;
}

body.merlheart.mh-shop-page #grid-view .shop-product-area .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

@media (max-width: 767px) {
    body.merlheart.mh-shop-page #grid-view .shop-product-area .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    body.merlheart.mh-shop-page #grid-view .shop-product-area .row > [class*="col-"] {
        margin-top: 16px !important;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    body.merlheart.mh-shop-page #grid-view .shop-product-area .row > [class*="col-"] {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Checkout — minimal split layout */
body.mh-checkout-page .main-wrapper {
    background: var(--mh-white);
}

.mh-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px);
    min-height: calc(100vh - 64px);
    max-width: 1320px;
    margin: 0 auto;
}

.mh-checkout-main {
    padding: 40px 56px 56px 56px;
    max-width: 100%;
    width: 100%;
}

.mh-checkout-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--mh-gray);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.mh-checkout-back:hover { color: var(--mh-black); }

.mh-checkout-foot button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--mh-gray);
    cursor: pointer;
    text-decoration: none;
}

.mh-checkout-foot button:hover { color: var(--mh-black); }

.mh-checkout-back {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.mh-checkout-block {
    margin-bottom: 36px;
}

.mh-checkout-heading {
    font-family: var(--mh-font-display);
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
    font-weight: 400;
}

.mh-checkout-note {
    font-size: 13px;
    color: var(--mh-gray);
    margin-bottom: 20px;
}

.mh-checkout-note a {
    color: var(--mh-black);
    text-decoration: underline;
}

.mh-field-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--mh-gray);
    margin-bottom: 8px;
}

.mh-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--mh-border);
    border-radius: 8px;
    background: var(--mh-light);
    font-size: 14px;
    font-family: var(--mh-font-body);
    color: var(--mh-black);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.mh-input:focus {
    outline: none;
    border-color: var(--mh-black);
    background: var(--mh-white);
    box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}

.mh-checkout-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mh-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mh-checkout-submit {
    width: 100%;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 8px;
    transition: transform 0.2s ease, background 0.2s;
}

.mh-checkout-submit:active {
    transform: scale(0.98);
}

.mh-checkout-foot {
    margin-top: 32px;
    font-size: 12px;
    color: var(--mh-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.mh-checkout-foot a {
    color: var(--mh-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.mh-checkout-foot a:hover { color: var(--mh-black); }

.mh-checkout-summary {
    background: var(--mh-light);
    border-left: 1px solid var(--mh-border);
    padding: 40px 36px;
    position: sticky;
    top: 64px;
    align-self: start;
    min-height: calc(100vh - 64px);
    overflow: visible;
}

.mh-checkout-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
    padding: 6px 10px 0 0;
    overflow: visible;
}

.mh-checkout-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    overflow: visible;
}

.mh-checkout-item-img {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: var(--mh-radius-sm);
    background: var(--mh-light);
    border: 1px solid var(--mh-border);
    flex-shrink: 0;
    overflow: visible;
}

.mh-checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mh-checkout-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--mh-black);
    color: var(--mh-white);
    font-size: 11px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 2px var(--mh-light);
}

.mh-checkout-item-info h3 {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mh-checkout-item-info p {
    font-size: 12px;
    color: var(--mh-gray);
    margin: 0 0 6px;
}

.mh-checkout-item-price {
    font-size: 13px;
    font-weight: 500;
}

.mh-checkout-discount {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.mh-checkout-discount .mh-input {
    flex: 1;
}

.mh-checkout-discount-btn {
    padding: 0 18px;
    border: 1px solid var(--mh-border);
    border-radius: 8px;
    background: var(--mh-white);
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.mh-checkout-discount-btn:hover {
    border-color: var(--mh-black);
}

.mh-checkout-vouchers {
    margin-bottom: 20px;
}

.mh-checkout-vouchers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.mh-checkout-vouchers-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.mh-voucher-nav-group {
    display: flex;
    gap: 6px;
}

.mh-voucher-nav {
    width: 28px;
    height: 28px;
    border: 1px solid var(--mh-border);
    border-radius: 999px;
    background: var(--mh-white);
    color: var(--mh-black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color 0.2s, background 0.2s;
}

.mh-voucher-nav:hover {
    border-color: var(--mh-black);
}

.mh-voucher-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mh-voucher-track::-webkit-scrollbar {
    display: none;
}

.mh-voucher-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.mh-voucher-card-inner {
    display: flex;
    align-items: stretch;
    min-height: 88px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed rgba(0, 0, 0, 0.18);
    background: var(--mh-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.mh-voucher-card-left {
    width: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 12px 8px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #0a0a0a 0%, #2d2d2d 100%);
}

.mh-voucher-card-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.mh-voucher-card-off {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.85;
}

.mh-voucher-card-truck {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 4px;
    color: #b8f0b0;
}

.mh-voucher-card--shipping .mh-voucher-card-left {
    background: linear-gradient(145deg, #1e4d2b 0%, #2d6a1e 100%);
}

.mh-voucher-card-divider {
    width: 1px;
    align-self: stretch;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.35) 0,
        rgba(255, 255, 255, 0.35) 4px,
        transparent 4px,
        transparent 8px
    );
    flex-shrink: 0;
}

.mh-voucher-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 14px;
    background: var(--mh-white);
}

.mh-voucher-card-code {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--mh-black);
}

.mh-voucher-card-meta {
    font-size: 11px;
    line-height: 1.35;
    color: var(--mh-gray);
}

.mh-voucher-card.is-active .mh-voucher-card-inner {
    outline: 2px solid var(--mh-black);
    outline-offset: 2px;
}

.mh-voucher-card.is-disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.mh-voucher-card.is-disabled .mh-voucher-card-inner {
    background: #f5f5f5;
}

.mh-voucher-card:focus-visible .mh-voucher-card-inner {
    outline: 2px solid var(--mh-black);
    outline-offset: 2px;
}

.mh-checkout-voucher-hint {
    font-size: 12px;
    color: var(--mh-gray);
    margin: -8px 0 16px;
}

.mh-checkout-voucher-hint.is-applied {
    color: #027a48;
}

.mh-checkout-discount-btn.is-disabled,
.mh-checkout-discount-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.mh-checkout-voucher-msg {
    font-size: 12px;
    margin: -12px 0 16px;
}

.mh-checkout-voucher-msg.is-error {
    color: #b42318;
}

.mh-checkout-voucher-msg.is-success {
    color: #027a48;
}

.mh-checkout-discount-section {
    margin-bottom: 12px;
}

.mh-checkout-row--discount-head {
    margin-bottom: 6px;
}

.mh-checkout-row--discount-line {
    margin-bottom: 0;
    padding-left: 0;
}

.mh-checkout-discount-code {
    font-size: 12px;
    color: var(--mh-gray);
    letter-spacing: 0.04em;
}

.mh-checkout-discount-amount {
    color: #027a48;
    font-size: 13px;
}

.mh-checkout-row--discount span:last-child {
    color: #027a48;
}

.mh-checkout-totals {
    border-top: 1px solid var(--mh-border);
    padding-top: 20px;
}

.mh-checkout-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
}

.mh-checkout-row--muted span:last-child {
    color: var(--mh-gray);
    font-size: 12px;
}

.mh-checkout-row--total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--mh-border);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.mh-pay-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-pay-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--mh-border);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.mh-pay-method:hover {
    border-color: var(--mh-black);
}

.mh-pay-method.is-selected {
    border-color: var(--mh-black);
    background: #fafafa;
}

.mh-pay-method input {
    margin-top: 4px;
    accent-color: var(--mh-black);
}

.mh-pay-method-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mh-pay-method-body strong {
    font-size: 14px;
    font-weight: 600;
}

.mh-pay-method-body small {
    font-size: 12px;
    color: var(--mh-gray);
}

.mh-pay-msg {
    margin-top: 12px;
    font-size: 13px;
}

.mh-pay-msg.is-error { color: #c0392b; }
.mh-pay-msg.is-success { color: #2d6a1e; }

.mh-pay-detail {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--mh-border);
    background: #fafafa;
}

.mh-pay-detail[hidden] {
    display: none !important;
}

.mh-pay-detail-hint {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--mh-gray);
}

.mh-fpx-bank-select {
    width: 100%;
    cursor: pointer;
}

.mh-xendit-components {
    min-height: 120px;
}

.mh-xendit-components:empty {
    min-height: 0;
}

.mh-demo-card-form {
    display: grid;
    gap: 12px;
}

.mh-xendit-components.is-loading {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mh-gray);
    font-size: 13px;
}

.mh-xendit-components.is-loading::after {
    content: attr(data-loading-text);
}

.mh-order-success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.mh-order-success-card {
    text-align: center;
    max-width: 480px;
    padding: 48px 32px;
    background: #fff;
    border: 1px solid var(--mh-border);
}

.mh-order-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--mh-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.mh-order-success-ref {
    font-size: 13px;
    color: var(--mh-gray);
    margin: 16px 0 24px;
}

.mh-order-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.mh-btn-outline {
    background: transparent;
    border: 1px solid var(--mh-black);
    color: var(--mh-black);
}

/* ========== ANIMATIONS ========== */
@keyframes mh-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mh-slide-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.merlheart:not(.mh-loading) .mh-animate-in {
    animation: mh-fade-up 0.45s ease both;
}

.mh-animate-in--2 { animation-delay: 0.08s; }
.mh-animate-in--3 { animation-delay: 0.14s; }
.mh-animate-in--4 { animation-delay: 0.2s; }

.mh-btn {
    transition: background 0.2s, color 0.2s, transform 0.15s ease, box-shadow 0.2s;
}

.mh-btn:active {
    transform: scale(0.98);
}

.mh-pdp-details summary {
    transition: color 0.2s;
}

.mh-pdp-details[open] summary {
    color: var(--mh-black);
}

.mh-pdp-accordion-trigger {
    transition: color 0.2s;
}

.mh-pdp-accordion.is-open .mh-pdp-accordion-trigger {
    color: var(--mh-black);
}

@media (prefers-reduced-motion: reduce) {
    .mh-animate-in,
    .mh-nav-shop-col {
        animation: none !important;
    }

    .mh-nav-shop-menu,
    .mh-subcat-list,
    .mh-nav,
    .mh-shop-filter,
    .mh-cart-drawer,
    .mh-cart-overlay {
        transition: none !important;
    }
}

/* Product details */
body.merlheart .product-details-content h2 {
    font-family: var(--mh-font-display);
    font-size: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

body.merlheart .add-to-cart-btn { background: var(--mh-black) !important; border-radius: var(--mh-radius-md) !important; }

/* Hide index clutter */
body.merlheart .latest-blog-post-area,
body.merlheart .client-testimonials-area,
body.merlheart .categories-list-post-area,
body.merlheart .our-services-area { display: none !important; }

/* Promo countdown — MERLHEART */
body.merlheart .mh-promo-deals.daily-deals-bg {
    position: relative;
}

body.merlheart .mh-promo-deals.daily-deals-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

body.merlheart .mh-promo-deals .container {
    position: relative;
    z-index: 1;
}

body.merlheart .mh-promo-deals .daily-deals-title h2 {
    font-family: var(--mh-font-display);
    font-size: 36px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mh-white);
    margin-bottom: 8px;
}

body.merlheart .mh-promo-deals .daily-deals-title p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 28px;
}

body.merlheart .mh-promo-deals .countdown-deals {
    gap: 6px;
    justify-content: flex-start;
    max-width: 300px;
}

body.merlheart .mh-promo-deals .mh-promo-countdown.countdown-deals {
    margin-bottom: 20px;
}

body.merlheart .mh-promo-deals .countdown-deals .cdown {
    flex: 0 0 auto;
    width: 64px;
    max-width: 64px;
    height: auto;
    min-height: 64px;
    padding: 10px 6px 8px;
    border-radius: var(--mh-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 10, 10, 0.65);
    color: var(--mh-white);
    backdrop-filter: blur(6px);
}

body.merlheart .mh-promo-deals .countdown-deals .cdown:first-child {
    background: var(--mh-accent);
    border-color: var(--mh-accent);
    color: var(--mh-black);
}

body.merlheart .mh-promo-deals .countdown-deals .time-count {
    font-family: var(--mh-font-display);
    font-size: 22px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: block;
    margin-bottom: 2px;
}

body.merlheart .mh-promo-deals .countdown-deals .cdown p {
    font-size: 9px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
    line-height: 1.2;
}

body.merlheart .mh-promo-deals .single-product-wrap {
    background: var(--mh-white);
    border-radius: var(--mh-radius-md);
    overflow: hidden;
}

body.merlheart .mh-promo-deals .single-product-wrap .product-content {
    padding: 16px;
}

body.merlheart .mh-promo-deals .single-product-wrap .product-content h3,
body.merlheart .mh-promo-deals .single-product-wrap .product-content h3 a {
    color: var(--mh-black);
}

body.merlheart .mh-promo-deals .single-product-wrap .product-content .price-box {
    color: var(--mh-black);
}

body.merlheart .mh-promo-deals .single-product-wrap .product-content .price-box .new-price {
    color: var(--mh-black);
    font-weight: 600;
    font-size: 15px;
}

body.merlheart .mh-promo-deals .single-product-wrap .product-content .price-box .old-price {
    color: var(--mh-gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

body.merlheart .mh-promo-deals .mh-promo-countdown {
    margin-bottom: 28px;
}

body.merlheart .mh-promo-deals .product-action .add-to-cart {
    background: var(--mh-black);
    border-radius: var(--mh-radius-sm);
}

@media (max-width: 991px) {
    body.merlheart .mh-promo-deals .mh-deals-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0 !important;
    }

    body.merlheart .mh-promo-deals .daily-deals-title h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    body.merlheart .mh-promo-deals .daily-deals-title p {
        margin-bottom: 20px;
    }

    body.merlheart .mh-product-carousel .slick-arrow {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%);
    }
}

@media (max-width: 767px) {
    .mh-footer {
        margin-top: 48px;
        padding: 36px 0 0;
    }

    .mh-footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 24px;
    }

    .mh-footer-brand {
        text-align: center;
        padding-bottom: 24px;
        margin-bottom: 8px;
        border-bottom: 1px solid #222;
    }

    .mh-footer-brand p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .mh-footer-company {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .mh-footer-company-dl {
        max-width: none;
    }

    .mh-social {
        justify-content: center;
    }

    .mh-footer-col {
        border-bottom: 1px solid #222;
    }

    .mh-footer-heading {
        display: none;
    }

    .mh-footer-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        margin: 0;
        background: none;
        border: none;
        color: var(--mh-white);
        font-family: var(--mh-font-display);
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
    }

    .mh-footer-toggle i {
        font-size: 12px;
        color: #888;
        transition: transform 0.25s ease;
    }

    .mh-footer-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mh-footer-col.is-open .mh-footer-panel {
        max-height: 220px;
        padding-bottom: 14px;
    }

    .mh-footer-col.is-open .mh-footer-toggle i {
        transform: rotate(45deg);
        color: var(--mh-accent);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .mh-nav--desktop {
        display: none !important;
    }

    .mh-header-icons--desktop {
        display: none !important;
    }

    .mh-header-actions {
        gap: 12px;
    }

    .mh-header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .mh-checkout-layout {
        grid-template-columns: 1fr;
    }

    .mh-checkout-summary {
        order: -1;
        min-height: 0;
        position: static;
        border-left: none;
        border-bottom: 1px solid var(--mh-border);
    }

    .mh-checkout-main {
        padding: 32px 24px 48px;
        max-width: none;
    }

    .mh-lang-switch {
        order: 10;
    }

    .mh-header-actions {
        gap: 12px;
    }

    .mh-field-row {
        grid-template-columns: 1fr;
    }

    .mh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .mh-cart-header { display: none; }

    .mh-cart-item,
    .mh-wishlist-item {
        grid-template-columns: 1fr;
        gap: 12px;
        position: relative;
        padding: 20px 0;
    }

    .mh-cart-item-price,
    .mh-cart-item-total,
    .mh-wishlist-item-price { text-align: left; }

    .mh-cart-remove,
    .mh-wishlist-remove {
        position: absolute;
        top: 20px;
        right: 0;
    }

    .mh-cart-footer { flex-direction: column; }
    .mh-cart-summary { width: 100%; }

    body.merlheart.mh-shop-page .content-wraper .col-lg-9,
    body.merlheart.mh-shop-page .content-wraper .col-lg-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .mh-shop-filter {
        display: block;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 998;
        overflow-y: auto;
        border: none;
        border-top: 1px solid var(--mh-border);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .mh-shop-filter.is-mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 576px) {
    .mh-footer-grid { grid-template-columns: 1fr; }
    body.merlheart .hero-slider-one .slider-text-info h1 { font-size: 40px; }
    .mh-page-title { font-size: 28px; }
    body.merlheart .our-team-area .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========== ROUNDED CORNERS — buttons & cards ========== */
.mh-btn-outline,
.mh-btn-sm,
.mh-add-cart-btn,
.mh-filter-mobile-btn,
.mh-filter-apply,
.mh-pdp-add,
.mh-size-btn,
.mh-checkout-discount-btn,
.mh-cart-checkout-btn,
body.merlheart .contact-submit-btn .submit-btn {
    border-radius: var(--mh-radius-md);
}

.mh-auth-box {
    border-radius: var(--mh-radius-lg);
}

.mh-auth-box input {
    border-radius: var(--mh-radius-sm);
}

.mh-shop-filter,
.mh-cart-summary,
.mh-nav-shop-menu {
    border-radius: var(--mh-radius-md);
}

.mh-qty {
    border-radius: var(--mh-radius-sm);
    overflow: hidden;
}

.mh-cart-qty {
    border-radius: var(--mh-radius-sm);
    overflow: visible;
}

.mh-input {
    border-radius: var(--mh-radius-sm);
}

.mh-wishlist-item-img {
    border-radius: var(--mh-radius-sm);
    overflow: hidden;
}

.mh-cart-item-img {
    border-radius: var(--mh-radius-sm);
    overflow: hidden;
}

.mh-checkout-item-img {
    border-radius: var(--mh-radius-sm);
    overflow: visible;
}

.mh-pdp-thumb {
    border-radius: var(--mh-radius-sm);
    overflow: hidden;
}

.mh-pdp-main {
    border-radius: var(--mh-radius-md);
    overflow: hidden;
}

body.merlheart .single-product-wrap .product-image {
    border-radius: var(--mh-radius-md);
    overflow: hidden;
}

body.merlheart .single-banner a img {
    border-radius: var(--mh-radius-md);
}

.mh-cart-rec-card img {
    border-radius: var(--mh-radius-sm);
}

.mh-checkout-summary {
    border-radius: var(--mh-radius-md);
}

/* ========== PRODUCT CARDS — compact images & color swatches ========== */
body.merlheart .single-product-wrap .product-image {
    padding: 12px 12px 0;
    background: var(--mh-light);
}

body.merlheart .single-product-wrap .product-image > a {
    display: block;
    max-height: 200px;
    overflow: hidden;
}

body.merlheart .single-product-wrap .product-image > a img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
}

body.merlheart .single-product-wrap .product-content {
    margin-top: 14px;
    padding: 0 4px 8px;
}

body.merlheart .single-product-wrap .price-box {
    margin-bottom: 10px;
}

.mh-card-swatches {
    margin-top: 0;
}

.mh-card-variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.mh-card-variant-row {
    margin: 0;
}

.mh-card-variant-row--qty {
    margin-top: 8px;
}

.mh-card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mh-size-btn--card {
    min-width: 36px;
    padding: 5px 10px;
    font-size: 11px;
}

.mh-card-qty {
    margin-top: 0;
}

.mh-card-qty input {
    width: 42px;
    font-size: 12px;
}

.mh-cart-icon.is-disabled,
.mh-wishlist-icon.is-disabled,
.mh-add-to-cart.is-disabled,
.mh-add-to-cart:disabled,
.mh-cart-icon:disabled,
.mh-wishlist-icon:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.mh-pdp-thumb--color {
    border: 1px solid var(--mh-border);
}

.mh-pdp-thumb--color.is-active {
    border-color: var(--mh-black);
    box-shadow: 0 0 0 1px var(--mh-black);
}

.product-layout-list .mh-card-variants {
    gap: 14px;
    margin-top: 10px;
}

.product-layout-list .mh-card-variant-row--qty {
    margin-top: 10px;
}

.product-layout-list .mh-add-to-cart {
    margin-top: 14px;
}

.mh-card-swatches .mh-color-swatch--img {
    width: 22px;
    height: 22px;
}

.mh-section-empty {
    width: 100%;
    text-align: center;
    color: #888;
    padding: 2rem 1rem;
    margin: 0;
}

.mh-section-empty--light {
    color: rgba(255, 255, 255, 0.85);
}

.mh-color-swatches {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.mh-color-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

span.mh-color-swatch {
    cursor: default;
}

button.mh-color-swatch:hover {
    transform: scale(1.08);
}

.mh-color-swatch.is-active,
.mh-color-swatch--light.is-active {
    box-shadow: 0 0 0 2px var(--mh-white), 0 0 0 3px var(--mh-black);
}

.mh-color-swatch--light {
    border-color: var(--mh-border);
}

.mh-color-swatch--static {
    cursor: default;
    pointer-events: none;
}

.mh-drawer-color-swatches {
    margin-top: 0;
    display: inline-flex;
    vertical-align: middle;
}

.mh-drawer-variant-swatch {
    display: inline-flex;
    align-items: center;
}

.mh-color-swatch--img {
    padding: 0;
    overflow: hidden;
    background: var(--mh-light);
    border: 1px solid var(--mh-border);
}

.mh-color-swatch--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh-drawer-variant-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.mh-variant-sep {
    color: var(--mh-gray);
}

.mh-variant-size {
    color: var(--mh-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mh-checkout-item-info .mh-drawer-variant-inline {
    margin: 0 0 6px;
}

.mh-drawer-stock {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.mh-drawer-stock.in { color: #2d6a1e; }
.mh-drawer-stock.out { color: #c0392b; }

/* ========== PRODUCT DETAILS (BAPE-style) ========== */
body.mh-pdp-page .mh-pdp-wrap {
    padding: 32px 0 48px;
}

body.mh-pdp-page .mh-page-head {
    margin-bottom: 8px;
}

.mh-pdp {
    align-items: flex-start;
}

.mh-pdp-gallery {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mh-pdp-thumbs-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mh-pdp-thumb-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mh-border);
    border-radius: 50%;
    background: var(--mh-white);
    color: var(--mh-black);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.mh-pdp-thumb-nav i {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.mh-pdp-nav-icon--mob {
    display: none;
}

.mh-pdp-thumb-nav:hover:not(:disabled) {
    background: var(--mh-black);
    border-color: var(--mh-black);
    color: var(--mh-white);
}

.mh-pdp-thumb-nav:disabled {
    opacity: 0.28;
    cursor: not-allowed;
}

.mh-pdp-thumbs-viewport {
    width: 64px;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.mh-pdp-thumbs-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.mh-pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.mh-pdp-thumb {
    width: 64px;
    height: 80px;
    padding: 4px;
    border: 1px solid var(--mh-border);
    background: var(--mh-white);
    cursor: pointer;
    transition: border-color 0.2s;
}

.mh-pdp-thumb.is-active {
    border-color: var(--mh-black);
}

.mh-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mh-pdp-main {
    flex: 1;
    background: var(--mh-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    max-height: 520px;
    padding: 24px;
    position: relative;
}

.mh-pdp-zoom-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 460px;
    cursor: crosshair;
}

.mh-pdp-zoom-wrap.is-zoomable:hover {
    cursor: none;
}

.mh-pdp-main img {
    max-width: 100%;
    max-height: 460px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.mh-pdp-zoom-lens {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid var(--mh-black);
    border-radius: 50%;
    background-color: var(--mh-white);
    background-repeat: no-repeat;
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.9),
        0 8px 28px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    z-index: 2;
}

.mh-pdp-zoom-wrap.is-zooming .mh-pdp-zoom-lens {
    opacity: 1;
    visibility: visible;
}

.mh-pdp-info {
    padding: 8px 0 0 24px;
    position: sticky;
    top: 88px;
}

.mh-pdp-title {
    font-family: var(--mh-font-display);
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 400;
}

.mh-pdp-price {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.mh-pdp-price .old-price {
    text-decoration: line-through;
    color: var(--mh-gray);
    margin-left: 8px;
    font-weight: 400;
}

.mh-checkout-item-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.mh-checkout-item-price-old {
    font-size: 12px;
    color: var(--mh-gray);
    text-decoration: line-through;
}

.mh-pdp-option {
    margin-bottom: 24px;
}

.mh-pdp-label {
    display: block;
    font-family: var(--mh-font-display);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--mh-gray);
}

.mh-pdp-swatches .mh-color-swatch {
    width: 22px;
    height: 22px;
}

.mh-pdp-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mh-size-btn {
    min-width: 44px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--mh-border);
    background: var(--mh-white);
    font-size: 13px;
    font-family: var(--mh-font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.mh-size-btn:hover {
    border-color: var(--mh-black);
}

.mh-size-btn.is-active {
    background: var(--mh-black);
    color: var(--mh-white);
    border-color: var(--mh-black);
}

.mh-size-btn.is-disabled,
.mh-size-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.mh-pdp-add {
    flex: 1;
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.mh-pdp-purchase {
    margin-bottom: 32px;
}

.mh-pdp-option--qty {
    margin-bottom: 0;
}

.mh-pdp-purchase .mh-qty {
    height: 40px;
}

.mh-pdp-purchase .mh-qty-btn {
    width: 36px;
    height: 38px;
    font-size: 18px;
}

.mh-pdp-purchase .mh-qty input {
    width: 44px;
    height: 38px;
    font-size: 14px;
}

.mh-pdp-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mh-pdp-actions .mh-pdp-wishlist,
.mh-pdp-actions .mh-pdp-add {
    flex: 1;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
}

.mh-pdp-actions .mh-pdp-wishlist {
    padding: 14px 16px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.mh-pdp-add:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.mh-pdp-accordions {
    border-top: 1px solid var(--mh-border);
}

.mh-pdp-stock {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 6px 0 12px;
}

.mh-pdp-stock.in { color: #2d6a1e; }
.mh-pdp-stock.out { color: #c0392b; }

.mh-pdp-accordion {
    border-bottom: 1px solid var(--mh-border);
}

.mh-pdp-accordion-trigger {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    padding: 16px 0;
    font-family: var(--mh-font-display);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--mh-black);
}

.mh-pdp-accordion-trigger::after {
    content: '+';
    font-family: var(--mh-font-body);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.mh-pdp-accordion.is-open .mh-pdp-accordion-trigger::after {
    content: '−';
}

.mh-pdp-accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mh-pdp-accordion.is-open .mh-pdp-accordion-panel {
    grid-template-rows: 1fr;
}

.mh-pdp-accordion-content {
    overflow: hidden;
}

.mh-pdp-accordion-content p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--mh-gray);
}

.mh-pdp-details {
    border-bottom: 1px solid var(--mh-border);
}

.mh-pdp-details summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 0;
    font-family: var(--mh-font-display);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mh-pdp-details summary::-webkit-details-marker { display: none; }

.mh-pdp-details summary::after {
    content: '+';
    font-family: var(--mh-font-body);
    font-size: 18px;
    font-weight: 300;
}

.mh-pdp-details[open] summary::after {
    content: '−';
}

.mh-pdp-details p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--mh-gray);
}

body.mh-pdp-page .product-area .section-title p {
    display: none;
}

@media (max-width: 991px) {
    .mh-pdp-info {
        padding: 32px 0 0;
        position: static;
    }

    .mh-pdp-main {
        min-height: 320px;
        max-height: 400px;
    }

    .mh-pdp-main img {
        max-height: 340px;
    }
}

@media (max-width: 576px) {
    .mh-pdp-gallery {
        flex-direction: column-reverse;
    }

    .mh-pdp-thumbs-col {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    .mh-pdp-nav-icon--desk {
        display: none;
    }

    .mh-pdp-nav-icon--mob {
        display: block;
    }

    .mh-pdp-thumbs-viewport {
        flex: 1;
        width: auto;
        min-width: 0;
        height: auto;
        overflow: hidden;
    }

    .mh-pdp-thumbs-track {
        flex-direction: row;
        width: max-content;
    }

    .mh-pdp-zoom-wrap.is-zoomable {
        cursor: default;
    }

    body.merlheart .single-product-wrap .product-image > a img {
        height: 170px;
    }
}

/* ========== MOBILE NAV DRAWER ========== */
body.mh-nav-open { overflow: hidden; }

.mh-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mh-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mh-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100%);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--mh-white);
    z-index: 1099;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
}

.mh-nav-drawer.is-open { transform: translateX(0); }

.mh-nav-drawer-head {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--mh-border);
    flex-shrink: 0;
}

.mh-nav-drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--mh-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mh-nav-drawer-title {
    font-family: var(--mh-font-display);
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mh-nav-drawer-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 16px;
}

.mh-nav-drawer-link {
    display: block;
    padding: 14px 20px;
    font-family: var(--mh-font-display);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-black);
    text-decoration: none;
    border-bottom: 1px solid var(--mh-light);
}

.mh-nav-drawer-link:hover {
    color: var(--mh-gray);
}

.mh-nav-drawer-group {
    border-bottom: 1px solid var(--mh-light);
}

.mh-nav-drawer-toggle,
.mh-nav-drawer-cat-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border: none;
    background: none;
    font-family: var(--mh-font-display);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-black);
    cursor: pointer;
    text-align: left;
}

.mh-nav-drawer-toggle i,
.mh-nav-drawer-cat-toggle i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.mh-nav-drawer-group.is-open > .mh-nav-drawer-toggle i,
.mh-nav-drawer-cat.is-open > .mh-nav-drawer-cat-toggle i {
    transform: rotate(180deg);
}

.mh-nav-drawer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mh-nav-drawer-group.is-open > .mh-nav-drawer-panel {
    max-height: 1200px;
}

.mh-nav-drawer-sublink--all {
    font-weight: 600;
}

.mh-nav-drawer-cat {
    border-top: 1px solid var(--mh-light);
}

.mh-nav-drawer-cat-toggle {
    font-family: var(--mh-font-body);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 600;
    padding: 12px 20px 12px 28px;
}

.mh-nav-drawer-cat-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mh-nav-drawer-cat.is-open > .mh-nav-drawer-cat-panel {
    max-height: 280px;
}

.mh-nav-drawer-sublink {
    display: block;
    padding: 10px 20px 10px 40px;
    font-size: 13px;
    color: var(--mh-gray);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.mh-nav-drawer-sublink:hover {
    color: var(--mh-black);
    padding-left: 44px;
}

.mh-nav-drawer-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 20px;
    border-top: 1px solid var(--mh-border);
    flex-shrink: 0;
}

.mh-nav-drawer-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--mh-black);
    font-size: 18px;
    text-decoration: none;
    background: none;
    border: 1px solid var(--mh-border);
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    padding: 0;
}

.mh-nav-drawer-icon:hover {
    border-color: var(--mh-black);
}

.mh-nav-drawer-icon .mh-cart-count,
.mh-nav-drawer-icon .mh-wishlist-count {
    position: absolute;
    top: -4px;
    right: -4px;
}

/* ========== CART DRAWER ========== */
body.mh-cart-open { overflow: hidden; }

.mh-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mh-cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mh-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--mh-white);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
}

.mh-cart-drawer.is-open { transform: translateX(0); }

.mh-cart-drawer-head {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-cart-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--mh-black);
    padding: 4px;
}

.mh-cart-drawer-head h2 {
    font-family: var(--mh-font-display);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.mh-cart-drawer-meta {
    font-size: 12px;
    color: var(--mh-gray);
    white-space: nowrap;
}

.mh-cart-drawer-scroll {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.mh-cart-drawer-empty {
    text-align: center;
    padding: 48px 16px;
    color: var(--mh-gray);
    font-size: 14px;
}

.mh-cart-drawer-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mh-cart-drawer-item {
    display: grid;
    grid-template-columns: 28px 72px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
}

.mh-cart-drawer-item.is-unselected {
    opacity: 0.55;
}

.mh-cart-item-check {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 26px;
    margin: 0;
    cursor: pointer;
}

.mh-cart-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--mh-black);
    cursor: pointer;
    flex-shrink: 0;
}

.mh-cart-select-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px 12px;
    border-bottom: 1px solid var(--mh-border);
    margin-bottom: 4px;
}

.mh-cart-select-all-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.mh-cart-select-all-input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--mh-black);
    cursor: pointer;
}

.mh-cart-selected-meta {
    font-size: 12px;
    color: var(--mh-gray);
    white-space: nowrap;
}

.mh-cart-checkout-btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

.mh-checkout-empty {
    font-size: 13px;
    color: var(--mh-gray);
    margin: 0;
    padding: 8px 0;
}

.mh-cart-item-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mh-cart-item-meta {
    min-width: 0;
    flex: 1;
}

.mh-cart-item-body h4 {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.mh-cart-item-body p {
    font-size: 12px;
    color: var(--mh-gray);
    margin: 0;
}

.mh-cart-item-price {
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.mh-cart-item-img {
    position: relative;
    width: 72px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--mh-light);
    border: 1px solid var(--mh-border);
}

.mh-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.mh-cart-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--mh-black);
    color: var(--mh-white);
    font-size: 11px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.mh-cart-item-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.mh-cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--mh-border);
    border-radius: 6px;
}

.mh-cart-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--mh-white);
    cursor: pointer;
    font-size: 14px;
}

.mh-cart-qty-val {
    min-width: 32px;
    padding: 0 4px;
    text-align: center;
    font-size: 13px;
    border-left: 1px solid var(--mh-border);
    border-right: 1px solid var(--mh-border);
    line-height: 28px;
    flex-shrink: 0;
}

.mh-drawer-variant-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.mh-drawer-variant-label {
    color: var(--mh-muted, #888);
    flex-shrink: 0;
}

.mh-drawer-variant-label::after {
    content: ':';
}

.mh-drawer-variant-value {
    color: var(--mh-text, #222);
}

.mh-cart-item-meta h4,
.mh-wishlist-item-meta h4 {
    margin: 0;
}

.mh-wishlist-item-meta {
    flex: 1;
    min-width: 0;
}

.mh-cart-remove-btn {
    margin-left: auto;
    flex-shrink: 0;
    background: var(--mh-white);
    border: 1px solid #d64545;
    color: #c0392b;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--mh-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.mh-cart-remove-btn:hover {
    background: #c0392b;
    color: var(--mh-white);
}

.mh-cart-rec {
    display: none !important;
}

.mh-cart-rec h3 {
    font-family: var(--mh-font-display);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.mh-cart-rec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mh-cart-rec-card {
    text-decoration: none;
    color: inherit;
}

.mh-cart-rec-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    background: var(--mh-light);
    border-radius: 8px;
    margin-bottom: 8px;
}

.mh-cart-rec-name {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mh-cart-rec-price {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.mh-cart-drawer-foot {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-top: 1px solid var(--mh-border);
    box-sizing: border-box;
}

.mh-cart-foot-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 500;
    max-width: 100%;
}

.mh-cart-checkout-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 14px;
    border-radius: 8px;
}

/* ========== WISHLIST DRAWER ========== */
body.mh-wishlist-open { overflow: hidden; }

.mh-wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--mh-black);
    color: var(--mh-white);
    font-size: 10px;
    font-family: var(--mh-font-body);
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    box-sizing: border-box;
}

.mh-wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mh-wishlist-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mh-wishlist-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--mh-white);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
}

.mh-wishlist-drawer.is-open { transform: translateX(0); }

.mh-wishlist-drawer-head {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-wishlist-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--mh-black);
    padding: 4px;
}

.mh-wishlist-drawer-head h2 {
    font-family: var(--mh-font-display);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.mh-wishlist-drawer-meta {
    font-size: 12px;
    color: var(--mh-gray);
    white-space: nowrap;
}

.mh-wishlist-drawer-scroll {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.mh-wishlist-drawer-empty {
    text-align: center;
    padding: 48px 16px;
    color: var(--mh-gray);
    font-size: 14px;
}

.mh-wishlist-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mh-wishlist-drawer-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.mh-wishlist-item-img {
    width: 72px;
    height: 88px;
    flex-shrink: 0;
    border-radius: var(--mh-radius-sm);
    overflow: hidden;
    background: var(--mh-light);
    border: 1px solid var(--mh-border);
}

.mh-wishlist-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh-wishlist-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-wishlist-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mh-wishlist-item-body h4 {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
    min-width: 0;
}

.mh-wishlist-stock {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mh-wishlist-stock.in { color: #2d6a1e; }
.mh-wishlist-stock.out { color: #c0392b; }

.mh-wishlist-item-price {
    display: block;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.mh-wishlist-item-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
}

.mh-wishlist-item-controls .mh-wishlist-remove-btn {
    margin-left: auto;
    flex-shrink: 0;
}

.mh-wishlist-item-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
}

.mh-wishlist-add-cart {
    display: inline-block;
    padding: 9px 12px;
    background: var(--mh-black);
    color: var(--mh-white);
    border: 1px solid var(--mh-black);
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--mh-radius-sm);
    transition: all 0.2s;
    text-align: center;
}

.mh-wishlist-add-cart:hover {
    background: transparent;
    color: var(--mh-black);
}

.mh-wishlist-add-cart.disabled {
    background: var(--mh-light);
    color: var(--mh-gray);
    border-color: var(--mh-border);
    cursor: default;
}

.mh-wishlist-remove-btn {
    background: var(--mh-white);
    border: 1px solid #d64545;
    color: #c0392b;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    padding: 9px 12px;
    border-radius: var(--mh-radius-sm);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.mh-wishlist-remove-btn:hover {
    background: #c0392b;
    color: var(--mh-white);
}

.mh-wishlist-drawer-foot {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-top: 1px solid var(--mh-border);
    box-sizing: border-box;
}

.mh-wishlist-shop-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    display: block;
}

.mh-cart-drawer-foot .mh-btn,
.mh-wishlist-drawer-foot .mh-btn {
    box-sizing: border-box;
    max-width: 100%;
}

/* ========== PRELOADER ========== */
body.mh-loading { overflow: hidden; }

.mh-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--mh-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.mh-preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mh-preloader-inner {
    text-align: center;
}

.mh-preloader-logo {
    display: block;
    font-family: var(--mh-font-display);
    font-size: 42px;
    letter-spacing: 8px;
    color: var(--mh-white);
    animation: mh-pulse 1.4s ease-in-out infinite;
}

.mh-preloader-bar {
    width: 120px;
    height: 2px;
    background: #222;
    margin: 24px auto 0;
    overflow: hidden;
    position: relative;
}

.mh-preloader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--mh-accent);
    animation: mh-loadbar 1.1s ease-in-out infinite;
}

@keyframes mh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

@keyframes mh-loadbar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ========== RESPONSIVE — tablet & mobile enhancements ========== */

/* Tablet (≤991px) */
@media (max-width: 991px) {
    .mh-logo {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .mh-pdp {
        flex-direction: column;
    }

    .mh-pdp-gallery {
        justify-content: center;
        max-width: 100%;
    }

    .mh-pdp-main {
        width: 100%;
    }

    body.merlheart .banner-area .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    body.merlheart .content-wraper .about-us-img,
    body.merlheart .content-wraper .about-info-wrapper,
    body.merlheart .contact-form,
    body.merlheart .contact-infor {
        margin-bottom: 32px;
    }

    body.merlheart .content-wraper .row > .col-lg-6,
    body.merlheart .content-wraper .row > .col-lg-7,
    body.merlheart .content-wraper .row > .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .shop-top-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .shop-bar-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .product-select-box {
        width: 100%;
    }

    .product-short {
        width: 100%;
    }

    .mh-checkout-discount {
        flex-direction: column;
        align-items: stretch;
    }

    .mh-checkout-discount .mh-input {
        width: 100%;
    }

    .mh-cart-drawer,
    .mh-wishlist-drawer {
        width: min(380px, 100%);
    }

    body.merlheart .section-title h2 {
        font-size: 30px;
    }

    .mh-page-head {
        padding-top: 24px;
    }

    body.merlheart .breadcrumb-area {
        padding: 28px 0;
    }

    .mh-wishlist-list,
    .mh-cart-list {
        padding: 0 4px;
    }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .mh-header-inner {
        height: 56px;
        gap: 12px;
    }

    .mh-logo {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .mh-lang-btn {
        padding: 4px 8px;
        font-size: 11px;
    }

    .mh-icon-link {
        font-size: 17px;
    }

    .mh-cart-drawer,
    .mh-wishlist-drawer {
        width: 100%;
    }

    .mh-nav-shop-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.merlheart .hero-slider-one .slider-text-info {
        padding: 0 16px;
    }

    body.merlheart .hero-slider-one .slider-text-info h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    body.merlheart .slider-btn {
        padding: 12px 28px !important;
        font-size: 14px !important;
    }

    body.merlheart .banner-area .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    body.merlheart .section-title h2 {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .mh-page-title {
        font-size: 24px;
    }

    .mh-breadcrumb {
        font-size: 12px;
    }

    .mh-checkout-main {
        padding: 24px 16px 40px;
    }

    .mh-checkout-summary {
        padding: 24px 16px;
    }

    .mh-checkout-item {
        gap: 12px;
    }

    .shop-top-bar {
        margin-top: 0 !important;
    }

    .mh-filter-mobile-btn {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .toolbar-amount {
        width: 100%;
        font-size: 12px;
    }

    .mh-cart-rec-grid {
        grid-template-columns: 1fr;
    }

    .mh-footer-grid {
        gap: 24px;
    }

    .mh-footer-bottom {
        text-align: center;
    }

    body.merlheart .single-team {
        margin-bottom: 8px;
    }

    body.merlheart .our-team-area .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .mh-pdp-title {
        font-size: 22px;
    }

    .mh-pdp-info {
        padding-top: 20px;
    }

    .mh-content {
        padding-bottom: 40px;
    }
}

/* Small phones — register form fit */
@media (max-width: 390px) {
    body.mh-auth-page .mh-auth-box h1 {
        font-size: 24px;
    }

    body.mh-auth-page .mh-auth-box input {
        padding: 10px 12px 10px 36px;
        font-size: 13px;
    }

    body.mh-auth-page .mh-auth-field label {
        font-size: 10px;
        margin-bottom: 6px;
    }
}

/* Account / order history */
.mh-account {
    padding: 8px 0 24px;
}

.mh-account-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--mh-border);
}

.mh-account-logout-form {
    flex-shrink: 0;
    margin: 0;
}

.mh-account-logout-form .mh-logout-btn--account {
    width: auto;
}

.mh-account-eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mh-gray);
    margin: 0 0 8px;
}

.mh-account-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.mh-account-email {
    margin: 0;
    color: var(--mh-gray);
    font-size: 14px;
    word-break: break-all;
}

.mh-account-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.mh-account-section-head h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.mh-account-shop-link {
    font-size: 13px;
    color: var(--mh-black);
    text-decoration: none;
}

.mh-account-shop-link:hover {
    text-decoration: underline;
}

.mh-order-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mh-order-card {
    border: 1px solid var(--mh-border);
    border-radius: 14px;
    background: var(--mh-white);
    overflow: hidden;
}

.mh-order-card-summary {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    padding: 18px 20px;
    cursor: pointer;
}

.mh-order-card-summary::-webkit-details-marker {
    display: none;
}

.mh-order-card[open] .mh-order-card-summary {
    border-bottom: 1px solid var(--mh-border);
    background: #fafafa;
}

.mh-order-card-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
}

.mh-order-no {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mh-order-date {
    font-size: 12px;
    color: var(--mh-gray);
}

.mh-order-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.mh-order-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: #f2f2f2;
    color: var(--mh-black);
}

.mh-order-badge--paid {
    background: #ecfdf3;
    color: #027a48;
}

.mh-order-badge--pending {
    background: #fffaeb;
    color: #b54708;
}

.mh-order-total {
    font-size: 15px;
    font-weight: 700;
}

.mh-order-items-count {
    font-size: 12px;
    color: var(--mh-gray);
}

.mh-order-card-body {
    padding: 20px;
}

.mh-order-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.mh-order-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mh-order-item-img {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 1px solid var(--mh-border);
    background: var(--mh-light);
    overflow: visible;
    flex-shrink: 0;
}

.mh-order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}

.mh-order-item-variant.mh-variant-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 4px 0 0;
}

.mh-order-pay-sep {
    opacity: 0.7;
}

.mh-order-item-info {
    flex: 1;
    min-width: 0;
}

.mh-order-item-info h3 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mh-order-item-variant,
.mh-order-item-qty {
    margin: 0;
    font-size: 12px;
    color: var(--mh-gray);
}

.mh-order-item-price {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.mh-order-shipping {
    padding: 16px 0;
    border-top: 1px solid var(--mh-border);
    border-bottom: 1px solid var(--mh-border);
    margin-bottom: 16px;
}

.mh-order-shipping h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
    color: var(--mh-gray);
}

.mh-order-shipping p {
    margin: 0 0 4px;
    font-size: 13px;
}

.mh-order-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-order-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.mh-order-total-row--grand {
    font-weight: 700;
    font-size: 15px;
    padding-top: 8px;
}

.mh-order-empty {
    text-align: center;
    padding: 48px 20px;
    border: 1px dashed var(--mh-border);
    border-radius: 14px;
    background: var(--mh-white);
    max-width: 100%;
    box-sizing: border-box;
}

.mh-order-empty p {
    margin: 0 0 20px;
    color: var(--mh-gray);
    font-size: 14px;
}

.mh-account-empty-btn {
    display: inline-block;
    width: auto;
    min-width: 160px;
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 2px;
}

/* Tablet */
@media (max-width: 991px) {
    .mh-account-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .mh-account-head {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .mh-account-logout-form {
        width: 100%;
    }

    .mh-account-logout-form .mh-logout-btn--account {
        width: 100%;
        padding: 12px 16px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .mh-account-title {
        font-size: 26px;
    }

    .mh-account-eyebrow {
        font-size: 11px;
    }

    .mh-account-email {
        font-size: 13px;
    }

    .mh-account-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 16px;
    }

    .mh-account-section-head h2 {
        font-size: 16px;
    }

    .mh-account-shop-link {
        font-size: 12px;
    }

    .mh-order-empty {
        padding: 32px 16px 28px;
    }

    .mh-account-empty-btn {
        width: 100%;
        max-width: 220px;
    }

    .mh-order-card-summary {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .mh-order-card-meta {
        width: 100%;
        gap: 8px 10px;
    }

    .mh-order-card-body {
        padding: 16px;
    }

    .mh-order-item {
        gap: 12px;
    }

    .mh-order-item-price {
        align-self: flex-start;
        margin-left: 76px;
    }
}

/* Legal & company compliance pages */
.mh-legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
    align-items: start;
    padding: 24px 0 48px;
}

.mh-legal-head h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mh-legal-updated {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.mh-legal-intro {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.mh-legal-section {
    margin-bottom: 28px;
}

.mh-legal-section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mh-legal-section p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 10px;
}

.mh-legal-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mh-legal-nav h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mh-legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mh-legal-nav li + li {
    margin-top: 8px;
}

.mh-legal-nav a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.mh-legal-nav a:hover,
.mh-legal-nav a[aria-current="page"] {
    color: var(--mh-accent, #c9a227);
    font-weight: 600;
}

.mh-company-card {
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.mh-company-card-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.mh-company-dl {
    margin: 0;
}

.mh-company-dl > div {
    margin-bottom: 12px;
}

.mh-company-dl > div:last-child {
    margin-bottom: 0;
}

.mh-company-dl dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 2px;
}

.mh-company-dl dd {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #222;
}

@media (max-width: 991px) {
    .mh-legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mh-legal-sidebar {
        position: static;
    }
}

/* About page */
.mh-about-page {
    padding-bottom: 56px;
}

.mh-about-hero {
    margin-bottom: 72px;
    padding-top: 8px;
}

.mh-about-image-wrap {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
}

.mh-about-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}

.mh-about-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mh-about-image-caption .mh-about-eyebrow {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.mh-about-image-sub {
    font-size: 22px;
    letter-spacing: 4px;
    color: #fff;
    font-weight: 600;
}

.mh-about-story {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mh-about-story-head {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.mh-about-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 12px;
}

.mh-about-title {
    font-family: var(--mh-font-display);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 16px;
}

.mh-about-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    max-width: 520px;
}

.mh-about-story-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.mh-about-block {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #ececec;
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mh-about-block:hover {
    border-color: #d8d8d8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mh-about-block--accent {
    background: #fafafa;
    border-color: #e0e0e0;
}

.mh-about-block-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #aaa;
    padding-top: 2px;
}

.mh-about-block-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 10px;
}

.mh-about-block-body p:last-child {
    margin-bottom: 0;
}

.mh-about-emphasis {
    font-weight: 600;
    color: #111 !important;
}

.mh-about-quote {
    position: relative;
    margin: 0 0 28px;
    padding: 24px 24px 24px 28px;
    background: #111;
    border-radius: 6px;
    border: none;
}

.mh-about-quote-mark {
    position: absolute;
    top: 8px;
    left: 14px;
    font-size: 48px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    font-family: Georgia, serif;
}

.mh-about-quote p {
    position: relative;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    color: #f5f5f5;
    letter-spacing: 0.3px;
}

.mh-about-story-foot {
    padding-top: 8px;
    border-top: 1px solid #e8e8e8;
}

.mh-about-story-foot p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 10px;
}

.mh-about-tagline {
    display: inline-block;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    padding: 10px 16px;
    font-size: 12px !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: #111;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.mh-about-faq {
    max-width: 860px;
    margin: 0 auto 48px;
    scroll-margin-top: 100px;
}

.mh-about-faq-head {
    text-align: center;
    margin-bottom: 32px;
}

.mh-about-faq-head h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.mh-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-faq-item {
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.mh-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #111;
    transition: color 0.2s ease, background 0.2s ease;
}

.mh-faq-trigger:hover,
.mh-faq-item.is-open .mh-faq-trigger {
    background: #fafafa;
}

.mh-faq-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    position: relative;
}

.mh-faq-icon::before,
.mh-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #111;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mh-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mh-faq-item.is-open .mh-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

.mh-faq-panel {
    overflow: hidden;
    height: 0;
    transition: height 0.35s ease;
}

.mh-faq-panel-inner {
    padding: 0 18px 18px;
}

.mh-faq-panel-inner p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 10px;
}

.mh-faq-panel-inner p:last-child {
    margin-bottom: 0;
}

.mh-faq-panel-inner ul {
    margin: 0 0 12px 18px;
    padding: 0;
}

.mh-faq-panel-inner li {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 4px;
}

@media (max-width: 991px) {
    .mh-about-hero {
        margin-bottom: 48px;
    }

    .mh-about-image-wrap,
    .mh-about-image {
        min-height: 320px;
    }

    .mh-about-image-wrap {
        margin-bottom: 8px;
    }

    .mh-about-title {
        font-size: 30px;
    }

    .mh-about-block {
        grid-template-columns: 36px 1fr;
        padding: 16px;
    }

    .mh-footer-company-row {
        grid-template-columns: 76px 1fr;
    }
}
