/* ============================================
   MakHome 2025 — Main Stylesheet
   Design System + All Sections
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Colors */
    --mh-black: #1a1a1a;
    --mh-dark: #333;
    --mh-gray-700: #555;
    --mh-gray-500: #888;
    --mh-gray-400: #aaa;
    --mh-gray-300: #ccc;
    --mh-gray-200: #e0e0e0;
    --mh-gray-100: #f5f5f5;
    --mh-gray-50: #fafafa;
    --mh-white: #fff;
    --mh-warm-bg: #f8f6f3;

    /* Typography */
    --mh-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mh-font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Sizes */
    --mh-container: 1400px;
    --mh-container-padding: 40px;
    --mh-header-height: 64px;
    --mh-topbar-height: 36px;

    /* Transitions */
    --mh-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --mh-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --mh-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --mh-duration: 0.4s;
    --mh-duration-slow: 0.8s;
    --mh-duration-fast: 0.2s;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--mh-font-sans);
    color: var(--mh-black);
    background: var(--mh-white);
    line-height: 1.6;
    overflow-x: clip;
}

body.mh-no-scroll { overflow: hidden; }

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--mh-duration-fast) var(--mh-ease);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* --- Container --- */
.mh-container {
    max-width: var(--mh-container);
    margin: 0 auto;
    padding: 0 var(--mh-container-padding);
}

/* --- Scroll Animation States --- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--mh-duration-slow) var(--mh-ease-out),
                transform var(--mh-duration-slow) var(--mh-ease-out);
}

[data-animate].mh-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="stagger"] {
    opacity: 1;
    transform: none;
}

[data-animate="stagger"] > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--mh-ease-out),
                transform 0.6s var(--mh-ease-out);
}

[data-animate="stagger"].mh-visible > * {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   TOP BAR
   ============================================ */
.mh-topbar {
    background: transparent;
    color: var(--mh-white);
    height: var(--mh-topbar-height);
    font-size: 12px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
}

.mh-topbar__inner {
    max-width: none;
    margin: 0;
    padding: 0 var(--mh-container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mh-topbar__store,
.mh-topbar__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    transition: color var(--mh-duration-fast);
}

.mh-topbar__store:hover,
.mh-topbar__phone:hover {
    color: var(--mh-white);
}


/* ============================================
   HEADER
   ============================================ */
.mh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--mh-white);
    height: var(--mh-header-height);
    border-bottom: 1px solid var(--mh-gray-200);
    transition: background var(--mh-duration), box-shadow var(--mh-duration), transform 0.3s;
}

.mh-header--scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.mh-header--hero-visible {
    background: transparent;
    border-bottom-color: transparent;
}

/* On homepage: logo is white by default (for hero overlay).
   When scrolled past hero, invert to black for white bg.
   But NOT while hero is still visible. */
.home .mh-header--scrolled:not(.mh-header--hero-visible) .mh-header__logo img,
.home .mh-header--scrolled:not(.mh-header--hero-visible) img.custom-logo,
.single-fc_collection .mh-header--scrolled:not(.mh-header--hero-visible) .mh-header__logo img,
.single-fc_collection .mh-header--scrolled:not(.mh-header--hero-visible) img.custom-logo {
    filter: invert(1);
    transition: filter 0.3s;
}

.mh-header--hero-visible .mh-header__nav a,
.mh-header--hero-visible .mh-header__logo-text,
.mh-header--hero-visible .mh-header__icon,
.mh-header--hero-visible .mh-header__search-btn,
.mh-header--hero-visible .mh-header__hamburger span {
    color: var(--mh-white);
}

.mh-header--hero-visible .mh-header__hamburger span {
    background: var(--mh-white);
}

.mh-header__inner {
    max-width: none;
    margin: 0;
    padding: 0 var(--mh-container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.mh-header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
    cursor: pointer;
}

.mh-header__hamburger span {
    display: block;
    height: 1.5px;
    background: var(--mh-black);
    border-radius: 1px;
    transition: transform 0.4s var(--mh-ease-out), opacity 0.3s, width 0.4s var(--mh-ease-out), background 0.3s;
    transform-origin: center;
}

.mh-header__hamburger span:nth-child(1) { width: 100%; }
.mh-header__hamburger span:nth-child(2) { width: 60%; }

.mh-header__hamburger:hover span:nth-child(2) { width: 100%; }

.mh-header__hamburger.mh-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mh-header__hamburger.mh-active span:nth-child(2) { opacity: 0; width: 0; }
.mh-header__hamburger.mh-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mh-header__nav {
    display: flex;
    gap: 28px;
}

.mh-header__nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    padding: 4px 0;
    color: var(--mh-black);
    transition: color var(--mh-duration-fast);
}

.mh-header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--mh-ease-out);
}

.mh-header__nav a:hover::after { width: 100%; }

/* Logo */
.mh-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: color var(--mh-duration-fast);
}

.mh-header__logo-text {
    font-family: var(--mh-font-sans);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--mh-black);
    transition: color 0.3s;
}

.mh-header__logo img,
img.custom-logo {
    width: 230px;
    height: auto;
}

/* Right Actions */
.mh-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

/* Inline Search (BoConcept style) */
.mh-header__search {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    max-width: 280px;
    flex: 1;
    transition: border-color 0.3s;
}

.mh-header__search:focus-within {
    border-color: var(--mh-white);
}

.mh-header__search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    font-family: var(--mh-font-sans);
    padding: 6px 0;
    color: var(--mh-black);
    min-width: 0;
}

.mh-header__search-input::placeholder {
    color: var(--mh-gray-500);
    font-weight: 400;
}

.mh-header--hero-visible .mh-header__search-input {
    color: var(--mh-white);
}

.mh-header--hero-visible .mh-header__search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.mh-header--scrolled .mh-header__search {
    border-color: var(--mh-gray-300);
}

.mh-header--scrolled .mh-header__search:focus-within {
    border-color: var(--mh-black);
}

.mh-header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    color: inherit;
    transition: opacity 0.2s;
}

.mh-header__search-btn:hover {
    opacity: 0.7;
}

/* ---- Inner pages (non-homepage) header overrides ---- */
body:not(.home):not(.single-fc_collection) .mh-header__logo img,
body:not(.home):not(.single-fc_collection) img.custom-logo {
    filter: invert(1);
}

body:not(.home):not(.single-fc_collection) .mh-topbar {
    background: #fff;
    color: #000;
}

body:not(.home):not(.single-fc_collection) .mh-topbar__inner {
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

body:not(.home):not(.single-fc_collection) .mh-topbar__store,
body:not(.home):not(.single-fc_collection) .mh-topbar__phone {
    color: rgba(0,0,0,0.8);
}

body:not(.home):not(.single-fc_collection) .mh-topbar__store:hover,
body:not(.home):not(.single-fc_collection) .mh-topbar__phone:hover {
    color: #000;
}

body:not(.home):not(.single-fc_collection) .mh-header__search {
    border-bottom-color: rgba(0,0,0,0.4);
}

body:not(.home) .mh-header__search:focus-within {
    border-color: var(--mh-black);
}

/* Header Icons (profile, cart) */
.mh-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background var(--mh-duration-fast), color 0.3s;
}

.mh-header__icon:hover {
    background: var(--mh-gray-100);
}

.mh-header--hero-visible .mh-header__icon:hover {
    background: rgba(255,255,255,0.15);
}

.mh-header__cart {
    position: relative;
}

.mh-header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--mh-black);
    color: var(--mh-white);
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================
   OFF-CANVAS MENU
   ============================================ */
.mh-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--mh-ease);
}

.mh-offcanvas-overlay.mh-active {
    opacity: 1;
    pointer-events: all;
}

.mh-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--mh-white);
    z-index: 1101;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.5s var(--mh-ease-out), visibility 0s 0.5s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mh-offcanvas.mh-active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.5s var(--mh-ease-out), visibility 0s;
}

.mh-offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--mh-gray-200);
    flex-shrink: 0;
}

.mh-offcanvas__title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mh-offcanvas__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--mh-duration-fast);
}

.mh-offcanvas__close:hover { background: var(--mh-gray-100); }

.mh-offcanvas__body {
    flex: 1;
    padding: 24px 28px;
    overflow-y: auto;
}

.mh-offcanvas__section {
    margin-bottom: 32px;
}

.mh-offcanvas__section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mh-gray-500);
    margin-bottom: 16px;
}

/* Room Cards */
.mh-offcanvas__rooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mh-offcanvas__room-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--mh-duration-fast) var(--mh-ease);
}

.mh-offcanvas__room-card:hover {
    transform: translateY(-2px);
}

.mh-offcanvas__room-img {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.mh-offcanvas__room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--mh-ease-out);
}

.mh-offcanvas__room-card:hover .mh-offcanvas__room-img img {
    transform: scale(1.05);
}

.mh-offcanvas__room-card span {
    font-size: 14px;
    font-weight: 500;
}

/* Category Links */
.mh-offcanvas__categories a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--mh-gray-100);
    transition: padding-left var(--mh-duration-fast) var(--mh-ease);
}

.mh-offcanvas__categories a:hover {
    padding-left: 4px;
}

.mh-offcanvas__categories a span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.mh-offcanvas__arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--mh-duration-fast), transform var(--mh-duration-fast) var(--mh-ease);
}

.mh-offcanvas__categories a:hover .mh-offcanvas__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile nav links (shown in offcanvas) */
.mh-offcanvas__section--mobile-nav {
    display: none;
}

.mh-offcanvas__nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--mh-gray-100);
}


/* ============================================
   BUTTONS & LINKS
   ============================================ */
.mh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 0;
    transition: all 0.3s var(--mh-ease);
    white-space: nowrap;
}

.mh-btn--outline-white {
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--mh-white);
    background: transparent;
}

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

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

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

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

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

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

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

.mh-btn--center {
    margin: 32px auto 0;
    display: flex;
    width: fit-content;
}

.mh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.3s var(--mh-ease);
}

.mh-link-arrow:hover { gap: 12px; }

.mh-link-arrow--dark { color: var(--mh-black); }

.mh-link-arrow--small {
    font-size: 13px;
}


/* ============================================
   SECTION 1: HERO
   ============================================ */
.mh-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    margin-top: calc(-1 * (var(--mh-topbar-height) + var(--mh-header-height)));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

.mh-hero__media {
    position: absolute;
    inset: 0;
}

.mh-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: mhKenBurns 12s ease-in-out infinite alternate;
}

@keyframes mhKenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-1.5%, -1%); }
}

.mh-hero__image.mh-paused {
    animation-play-state: paused;
}

.mh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.55) 100%
    );
}

.mh-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--mh-container-padding) 100px;
    max-width: 700px;
    margin-left: auto;
    margin-right: 80px;
    text-align: left;
    color: var(--mh-white);
}

.mh-hero__subtitle {
    font-family: var(--mh-font-heading);

    font-weight: 300;
    font-size: 18px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.mh-hero__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
}

.mh-hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}

.mh-hero__scroll-line {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    animation: mhScrollLine 2s var(--mh-ease) infinite;
}

@keyframes mhScrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.mh-hero__pause {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: color var(--mh-duration-fast);
}

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


/* ============================================
   SECTION 2: CATEGORIES CAROUSEL
   ============================================ */
.mh-categories {
    padding: 80px 0 60px;
}

.mh-categories__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    text-align: center;
    margin-bottom: 40px;
}

.mh-categories__carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--mh-container-padding);
    scrollbar-width: none;
}

.mh-categories__carousel::-webkit-scrollbar { display: none; }

.mh-categories__card {
    flex: 0 0 auto;
    width: calc((100% - 80px) / 6);
    min-width: 180px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mh-categories__card-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
}

.mh-categories__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-categories__card:hover .mh-categories__card-img img {
    transform: scale(1.06);
}

.mh-categories__card-name {
    font-size: 15px;
    font-weight: 500;
}

.mh-categories__progress {
    max-width: 600px;
    margin: 24px auto 0;
    height: 2px;
    background: var(--mh-gray-200);
    border-radius: 1px;
    overflow: hidden;
}

.mh-categories__progress-bar {
    height: 100%;
    background: var(--mh-black);
    width: 30%;
    transition: width 0.3s var(--mh-ease);
}


/* ============================================
   SECTION 3: SHOP THE LOOK
   ============================================ */
.mh-shopthelook {
    padding: 80px 0 0 0;
}

.mh-shopthelook__header {
    margin-bottom: 32px;
}

.mh-shopthelook__eyebrow {
    font-family: var(--mh-font-heading);

    font-size: 16px;
    color: var(--mh-gray-500);
    margin-bottom: 4px;
}

.mh-shopthelook__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 16px;
    line-height: 1.2;
}

.mh-shopthelook__image-wrap {
    position: relative;
    overflow: hidden;
}

.mh-shopthelook__image {
    width: 100%;
    display: block;
    transition: transform 0.8s var(--mh-ease-out);
}

/* Hotspot dots */
.mh-hotspot {
    position: absolute;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.mh-hotspot__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mh-white);
    border: 2px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s var(--mh-ease-spring);
}

.mh-hotspot:hover .mh-hotspot__dot {
    transform: scale(1.3);
}

.mh-hotspot__dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    animation: mhHotspotPulse 2.5s ease-out infinite;
}

@keyframes mhHotspotPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.mh-hotspot__tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--mh-white);
    padding: 10px 16px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--mh-ease), transform 0.3s var(--mh-ease);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mh-hotspot:hover .mh-hotspot__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mh-hotspot__tooltip strong {
    font-size: 13px;
    font-weight: 600;
}

.mh-hotspot__tooltip span {
    font-size: 12px;
    color: var(--mh-gray-500);
}


/* ============================================
   SECTION 4 & 6: PRODUCT CAROUSELS
   ============================================ */
.mh-product-carousel {
    padding: 80px 0 60px;
}

.mh-product-carousel--sets {
    background: var(--mh-gray-50);
}

.mh-product-carousel__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    text-align: center;
    margin-bottom: 40px;
}

.mh-product-carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--mh-container-padding) 16px;
    scrollbar-width: none;
}

.mh-product-carousel__track::-webkit-scrollbar { display: none; }

/* Product Card */
.mh-product-card {
    flex: 0 0 auto;
    width: calc((100% - 100px) / 5);
    min-width: 240px;
    scroll-snap-align: start;
    cursor: pointer;
    text-decoration: none;
}

.mh-product-card__image {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--mh-gray-100);
    margin-bottom: 14px;
}

.mh-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-product-card:hover .mh-product-card__image img {
    transform: scale(1.05);
}

.mh-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(39, 80, 57, 0.9);
    color: var(--mh-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    letter-spacing: 0.5px;
}

.mh-product-card__3d {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.mh-product-card:hover .mh-product-card__3d { opacity: 1; }

.mh-product-card__info {
    padding: 0 4px;
}

.mh-product-card__name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.mh-product-card__material {
    font-size: 13px;
    color: var(--mh-gray-500);
    margin-bottom: 8px;
}

.mh-product-card__colors {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.mh-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--mh-gray-200);
}

.mh-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
}

.mh-product-card__price-old {
    font-size: 13px;
    color: var(--mh-gray-400);
    text-decoration: line-through;
}

.mh-product-card__price-from {
    font-weight: 500;
}

/* Carousel scrollbar */
.mh-product-carousel__nav {
    padding: 20px var(--mh-container-padding);
    max-width: 600px;
    margin: 0 auto;
}

.mh-product-carousel__scrollbar {
    height: 2px;
    background: var(--mh-gray-200);
    border-radius: 1px;
    position: relative;
}

.mh-product-carousel__scrollbar-thumb {
    height: 100%;
    width: 30%;
    background: var(--mh-black);
    border-radius: 1px;
    transition: width 0.3s, left 0.3s;
}


/* ============================================
   SECTION 5: CUSTOMIZATION CTA
   ============================================ */
.mh-customization {
    padding: 100px 0;
    background: var(--mh-warm-bg);
}

.mh-customization .mh-container {
    text-align: center;
}

.mh-customization__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 4vw, 48px);

    font-weight: 700;
    line-height: 0.7 !important;
    margin-bottom: 40px;
}

.mh-customization__text {
    max-width: 680px;
    margin: 0 auto 28px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--mh-gray-700);
}

.mh-customization__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.mh-customization__visual {
    max-width: 1100px;
    margin: 0 auto;
}

.mh-customization__visual img,
.mh-customization__visual video {
    width: 100%;
    border-radius: 2px;
}


/* ============================================
   SECTION 7: STORE CTA BANNER
   ============================================ */
.mh-store-cta {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mh-store-cta__bg {
    position: absolute;
    inset: -20px;
}

.mh-store-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s linear;
}

.mh-store-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.mh-store-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--mh-white);
}

.mh-store-cta__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 28px;
    font-weight: 700;
}


/* ============================================
   SECTION 8: REAL HOMES GALLERY
   ============================================ */
.mh-homes {
    padding: 80px 0;
}

.mh-homes__header {
    text-align: center;
    margin-bottom: 48px;
}

.mh-homes__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3.5vw, 40px);
    line-height: 1.2;
    margin-bottom: 12px;
}

.mh-homes__subtitle {
    font-size: 15px;
    color: var(--mh-gray-500);
    max-width: 520px;
    margin: 0 auto;
}

.mh-homes__carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 var(--mh-container-padding);
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--mh-container-padding);
    scrollbar-width: none;
}

.mh-homes__carousel::-webkit-scrollbar { display: none; }

.mh-homes__card {
    flex: 0 0 auto;
    width: calc((100% - 48px) / 3);
    min-width: 340px;
    scroll-snap-align: start;
}

.mh-homes__card-img {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 0;
}

.mh-homes__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-homes__card:hover .mh-homes__card-img img {
    transform: scale(1.05);
}

/* Homes Scrollbar — Apple style */
.mh-homes__scrollbar {
    max-width: 240px;
    height: 2px;
    background: var(--mh-gray-200);
    border-radius: 2px;
    margin: 32px auto 0;
    position: relative;
    overflow: hidden;
}

.mh-homes__scrollbar-thumb {
    height: 100%;
    background: var(--mh-black);
    border-radius: 2px;
    width: 40px;
    transition: margin-left 0.15s ease-out, height 0.2s, transform 0.2s;
    cursor: grab;
}

.mh-homes__scrollbar:hover {
    height: 4px;
}

.mh-homes__scrollbar:hover .mh-homes__scrollbar-thumb,
.mh-scrollbar--dragging .mh-homes__scrollbar-thumb {
    cursor: grabbing;
}

.mh-scrollbar--dragging {
    height: 4px;
}


/* ============================================
   SECTION 9: CRAFTSMANSHIP (ASYMMETRIC)
   ============================================ */
.mh-craftsmanship {
    padding: 100px 0;
}

.mh-craftsmanship__header {
    text-align: center;
    margin-bottom: 60px;
}

.mh-craftsmanship__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.mh-craftsmanship__text {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--mh-gray-700);
}

.mh-craftsmanship__grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 0 var(--mh-container-padding);
    max-width: var(--mh-container);
    margin: 0 auto;
}

.mh-craftsmanship__item {
    overflow: hidden;
    border-radius: 2px;
}

.mh-craftsmanship__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-craftsmanship__item:hover img {
    transform: scale(1.04);
}

.mh-craftsmanship__item--a {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.mh-craftsmanship__item--b {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    aspect-ratio: 3/4;
}

.mh-craftsmanship__item--c {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.mh-craftsmanship__item--d {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    aspect-ratio: 16/10;
}

.mh-craftsmanship__item--e {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
}

.mh-craftsmanship__item--f {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

/* Stagger children animation */
[data-animate="stagger"].mh-visible > *:nth-child(1) { transition-delay: 0s; }
[data-animate="stagger"].mh-visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-animate="stagger"].mh-visible > *:nth-child(3) { transition-delay: 0.2s; }
[data-animate="stagger"].mh-visible > *:nth-child(4) { transition-delay: 0.3s; }
[data-animate="stagger"].mh-visible > *:nth-child(5) { transition-delay: 0.4s; }
[data-animate="stagger"].mh-visible > *:nth-child(6) { transition-delay: 0.5s; }


/* ============================================
   SECTION 10: BLOG
   ============================================ */
.mh-blog {
    padding: 80px 0;
    background: var(--mh-white);
}

.mh-blog__header {
    text-align: center;
    margin-bottom: 48px;
}

.mh-blog__tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.mh-blog__tab {
    font-family: var(--mh-font-heading);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
    color: var(--mh-gray-300);
    padding: 4px 0;
    position: relative;
    transition: color 0.3s var(--mh-ease);
}

.mh-blog__tab--active,
.mh-blog__tab:hover {
    color: var(--mh-black);
}

.mh-blog__subtitle {
    font-size: 14px;
    color: var(--mh-gray-500);
    max-width: 460px;
    margin: 0 auto 16px;
}

.mh-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mh-blog-card {
    display: flex;
    flex-direction: column;
}

.mh-blog-card__image {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 20px;
}

.mh-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-blog-card:hover .mh-blog-card__image img {
    transform: scale(1.04);
}

.mh-blog-card__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mh-blog-card__title a:hover {
    opacity: 0.7;
}

.mh-blog-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mh-gray-700);
    margin-bottom: 14px;
    flex: 1;
}


/* ============================================
   SINGLE BLOG POST
   ============================================ */

/* Header */
.mh-article__header {
    padding: 0 0 48px;
    text-align: center;
}

.mh-article__header-inner {
    max-width: 720px;
    margin: 0 auto;
}

.mh-article__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mh-gray-500);
    margin-bottom: 16px;
    transition: color 0.2s;
}

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

.mh-article__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mh-article__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--mh-gray-500);
    flex-wrap: wrap;
}

.mh-article__author {
    font-weight: 600;
    color: var(--mh-black);
}

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

/* Hero Image */
.mh-article__hero {
    margin-bottom: 48px;
}

.mh-article__hero img {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: block;
    border-radius: 2px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Body Layout */
.mh-article__layout {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 40px;
    max-width: 760px;
    margin: 0 auto;
}

/* Sticky Share Sidebar */
.mh-article__share {
    position: relative;
}

.mh-article__share-sticky {
    position: sticky;
    top: calc(var(--mh-header-height) + 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mh-article__share-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mh-gray-500);
    writing-mode: vertical-rl;
    margin-bottom: 4px;
}

.mh-article__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--mh-gray-200);
    background: var(--mh-white);
    color: var(--mh-gray-700);
    transition: all 0.2s var(--mh-ease);
    cursor: pointer;
}

.mh-article__share-btn:hover {
    border-color: var(--mh-black);
    color: var(--mh-black);
    transform: translateY(-2px);
}

.mh-article__share-copy.mh-copied {
    border-color: #00a32a;
    color: #00a32a;
}

/* Article Content — typography */
.mh-article__content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--mh-dark);
}

.mh-article__content > * + * {
    margin-top: 1.5em;
}

.mh-article__content h2 {
    font-family: var(--mh-font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--mh-black);
    margin-top: 2.5em;
}

.mh-article__content h3 {
    font-family: var(--mh-font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--mh-black);
    margin-top: 2em;
}

.mh-article__content h4 {
    font-family: var(--mh-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--mh-black);
    margin-top: 1.8em;
}

.mh-article__content p {
    color: var(--mh-gray-700);
}

.mh-article__content a {
    color: var(--mh-black);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--mh-gray-300);
    transition: text-decoration-color 0.2s;
}

.mh-article__content a:hover {
    text-decoration-color: var(--mh-black);
}

.mh-article__content img {
    border-radius: 2px;
    margin: 2em 0;
}

.mh-article__content figure {
    margin: 2em 0;
}

.mh-article__content figcaption {
    font-size: 13px;
    color: var(--mh-gray-500);
    text-align: center;
    margin-top: 8px;
}

.mh-article__content blockquote {
    border-left: 3px solid var(--mh-black);
    padding: 4px 0 4px 24px;
    margin: 2em 0;
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    color: var(--mh-black);
}

.mh-article__content blockquote p {
    color: inherit;
}

.mh-article__content ul,
.mh-article__content ol {
    padding-left: 1.5em;
}

.mh-article__content li {
    margin-bottom: 0.5em;
    color: var(--mh-gray-700);
}

.mh-article__content pre {
    background: var(--mh-gray-50);
    border: 1px solid var(--mh-gray-200);
    border-radius: 4px;
    padding: 20px 24px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
}

.mh-article__content hr {
    border: none;
    border-top: 1px solid var(--mh-gray-200);
    margin: 3em 0;
}

/* Tags */
.mh-article__tags {
    padding: 32px 0;
    border-top: 1px solid var(--mh-gray-200);
}

.mh-article__tags-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 720px;
    margin: 0 auto;
}

.mh-article__tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    background: var(--mh-gray-100);
    border-radius: 100px;
    color: var(--mh-gray-700);
    transition: background 0.2s, color 0.2s;
}

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

/* Bottom Share */
.mh-article__share-bottom {
    padding: 32px 0;
    border-top: 1px solid var(--mh-gray-200);
}

.mh-article__share-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mh-gray-700);
}

.mh-article__share-bottom-btns {
    display: flex;
    gap: 8px;
}

/* Post Navigation */
.mh-article__nav {
    padding: 48px 0;
    border-top: 1px solid var(--mh-gray-200);
}

.mh-article__nav-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mh-article__nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border: 1px solid var(--mh-gray-200);
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
}

.mh-article__nav-link:hover {
    border-color: var(--mh-black);
    background: var(--mh-gray-50);
}

.mh-article__nav-link--next {
    text-align: right;
}

.mh-article__nav-dir {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mh-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mh-article__nav-link--next .mh-article__nav-dir {
    justify-content: flex-end;
}

.mh-article__nav-title {
    font-family: var(--mh-font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--mh-black);
}

/* Related Posts */
.mh-article__related {
    padding: 80px 0;
    background: var(--mh-gray-50);
}

.mh-article__related-title {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    text-align: center;
    margin-bottom: 48px;
}

/* Responsive */
@media (max-width: 768px) {
    .mh-article__layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mh-article__share {
        display: none;
    }

    .mh-article__hero img {
        border-radius: 0;
        aspect-ratio: 3/2;
    }

    .mh-article__nav-inner {
        grid-template-columns: 1fr;
    }

    .mh-article__nav-link--next {
        text-align: left;
    }

    .mh-article__nav-link--next .mh-article__nav-dir {
        justify-content: flex-start;
    }

    .mh-article__content {
        font-size: 16px;
    }
}


/* ============================================
   SECTION 11: FAQ
   ============================================ */
.mh-faq {
    padding: 80px 0;
    background: var(--mh-gray-50);
}

.mh-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.mh-faq__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.3;
    margin-bottom: 16px;
}

.mh-faq__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mh-gray-700);
}

.mh-faq__item {
    border-bottom: 1px solid var(--mh-gray-200);
}

.mh-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    transition: opacity var(--mh-duration-fast);
}

.mh-faq__question:hover { opacity: 0.7; }

.mh-faq__question svg {
    flex-shrink: 0;
    transition: transform 0.4s var(--mh-ease-out);
}

.mh-faq__item--open .mh-faq__question svg {
    transform: rotate(180deg);
}

.mh-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--mh-ease-out);
}

.mh-faq__answer p {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--mh-gray-700);
}


/* ============================================
   SECTION 12: FOOTER
   ============================================ */

/* Footer CTA banner — right-aligned gray box with two cards */
.mh-footer__ctas {
    position: relative;
    z-index: 2;
    margin-top: -80px;
    margin-bottom: -100px;
}

.mh-footer__ctas-inner {
    max-width: none;
    margin: 0;
    padding: 0 var(--mh-container-padding);
    display: flex;
    justify-content: flex-end;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.mh-footer__cta-box {
    background: var(--mh-gray-50);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 66%;
}

.mh-footer__cta-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s var(--mh-ease);
}

.mh-footer__cta-card:hover {
    transform: translateY(-3px);
}

.mh-footer__cta-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 2px;
}

.mh-footer__cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-footer__cta-card:hover .mh-footer__cta-img img {
    transform: scale(1.04);
}

.mh-footer__cta-label {
    padding: 14px 0 0;
    font-size: 15px;
    font-weight: 600;
}

/* Footer Main — links left, newsletter right */
.mh-footer__main {
    padding: 150px 0 60px 0;
    border-top: 1px solid #efefef;
}


.mh-footer__main .mh-container,
.mh-footer__bottom .mh-container {
    max-width: none;
}

.mh-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.mh-footer__links a {
    font-size: 15px;
    transition: opacity var(--mh-duration-fast);
}

.mh-footer__links a:hover { opacity: 0.6; }

/* Newsletter — heading + text + standalone button */
.mh-footer__newsletter-title {
    font-family: var(--mh-font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mh-footer__newsletter-text {
    font-size: 14px;
    color: var(--mh-gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 380px;
}

.mh-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    background: var(--mh-black);
    color: var(--mh-white);
    border: 1px solid var(--mh-black);
    cursor: pointer;
    transition: background 0.3s var(--mh-ease), color 0.3s var(--mh-ease);
    font-family: var(--mh-font-sans);
}

.mh-footer__newsletter-btn:hover {
    background: var(--mh-dark);
}

/* Social */
.mh-footer__social {
    margin-top: 36px;
}

.mh-footer__social-label {
    display: block;
    font-size: 13px;
    color: var(--mh-gray-500);
    margin-bottom: 14px;
}

.mh-footer__social-icons {
    display: flex;
    gap: 10px;
}

.mh-footer__social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--mh-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s var(--mh-ease), border-color 0.3s var(--mh-ease), color 0.3s;
}

.mh-footer__social-icons a:hover {
    background: var(--mh-black);
    color: var(--mh-white);
}

.mh-footer__social-icons a svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.mh-footer__bottom {
    border-top: 1px solid var(--mh-gray-200);
    padding: 20px 0;
}

.mh-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.mh-footer__copyright {
    font-size: 12px;
    color: var(--mh-gray-500);
    flex: 1;
}

.mh-footer__legal {
    display: flex;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.mh-footer__legal a {
    font-size: 12px;
    color: var(--mh-gray-500);
    transition: color var(--mh-duration-fast);
}

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

.mh-footer__payments {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.mh-footer__payments svg {
    border: 1px solid var(--mh-gray-200);
    border-radius: 4px;
}


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

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --mh-container-padding: 24px;
    }

    .mh-header__nav { display: none; }
    .mh-offcanvas__section--mobile-nav { display: block; }

    .mh-categories__card {
        width: calc((100% - 40px) / 3);
        min-width: 160px;
    }

    .mh-product-card {
        width: calc((100% - 60px) / 3);
        min-width: 220px;
    }

    .mh-homes__card {
        width: calc((100% - 24px) / 2);
        min-width: 280px;
    }

    .mh-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mh-blog-card:last-child { display: none; }

    .mh-faq__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mh-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mh-footer__cta-box {
        width: 100%;
    }

    .mh-craftsmanship__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .mh-craftsmanship__item--a { grid-column: 1 / 3; grid-row: auto; }
    .mh-craftsmanship__item--b { grid-column: 1 / 2; grid-row: auto; }
    .mh-craftsmanship__item--c { grid-column: 2 / 3; grid-row: auto; }
    .mh-craftsmanship__item--d { grid-column: 1 / 3; grid-row: auto; }
    .mh-craftsmanship__item--e { grid-column: 1 / 2; grid-row: auto; }
    .mh-craftsmanship__item--f { grid-column: 2 / 3; grid-row: auto; }

    .mh-craftsmanship__item {
        aspect-ratio: 4/3;
    }

    .mh-hero__content {
        margin-right: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --mh-container-padding: 16px;
        --mh-header-height: 56px;
    }

    .mh-topbar__phone { display: none; }
    .mh-header__search { display: none; }

    .mh-header__logo img,
    img.custom-logo {
        width: 160px;
        height: auto;
    }

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

    .mh-hero__content {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px 80px;
        max-width: 100%;
    }

    .mh-hero__subtitle { font-size: 15px; }
    .mh-hero__title { font-size: 32px; }

    .mh-categories { padding: 48px 0 40px; }
    .mh-categories__card { min-width: 140px; }

    .mh-shopthelook { padding: 48px 0; }
    .mh-product-carousel { padding: 48px 0 40px; }

    .mh-product-card {
        min-width: 200px;
    }

    .mh-customization { padding: 60px 0; }
    .mh-customization__actions { gap: 16px; flex-direction: column; }

    .mh-store-cta { height: 400px; }

    .mh-homes { padding: 48px 0; }
    .mh-homes__card { min-width: 260px; }

    .mh-craftsmanship { padding: 60px 0; }
    .mh-craftsmanship__grid {
        grid-template-columns: 1fr;
    }
    .mh-craftsmanship__item--a,
    .mh-craftsmanship__item--d { grid-column: 1; }
    .mh-craftsmanship__item--b,
    .mh-craftsmanship__item--c { grid-column: 1; }
    .mh-craftsmanship__item--e,
    .mh-craftsmanship__item--f { grid-column: 1; }

    .mh-blog { padding: 48px 0; }
    .mh-blog__grid {
        grid-template-columns: 1fr;
    }
    .mh-blog-card:last-child { display: flex; }
    .mh-blog-card__image { aspect-ratio: 16/9; }

    .mh-blog__tab {
        font-size: 20px;
    }

    .mh-faq { padding: 48px 0; }

    .mh-footer__cta-box {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .mh-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mh-offcanvas__rooms {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .mh-hotspot__tooltip { display: none; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .mh-hero { min-height: 500px; }
    .mh-hero__title { font-size: 28px; }

    .mh-categories__card {
        min-width: 120px;
    }

    .mh-product-card {
        min-width: 170px;
    }

    .mh-store-cta { height: 320px; }
    .mh-store-cta__title { font-size: 28px; }

    .mh-footer__newsletter-field {
        flex-direction: column;
    }

    .mh-footer__newsletter-field input {
        border-right: 1px solid var(--mh-gray-300);
    }

    .mh-footer__newsletter-field .mh-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
   DEFAULT PAGE + WOOCOMMERCE CART & CHECKOUT
   ============================================ */

/* Default Page */
.mh-page {
    padding: 48px 0 80px;
}

.mh-page__header {
    text-align: center;
    margin-bottom: 48px;
}

.mh-page__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
}

/* ---- WooCommerce Global ---- */
.woocommerce .mh-page__content {
    max-width: 1100px;
    margin: 0 auto;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce-message {
    background: var(--mh-gray-50);
    border: 1px solid var(--mh-gray-200);
    color: var(--mh-black);
}

.woocommerce-info {
    background: #f0f6fc;
    border: 1px solid #c3daf5;
    color: #1d4ed8;
}

.woocommerce-error {
    background: #fef0f0;
    border: 1px solid #fecaca;
    color: #dc2626;
    list-style: none;
    padding-left: 20px;
}

.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

.woocommerce-message .button,
.woocommerce-info .button {
    margin-left: auto;
    flex-shrink: 0;
}

/* WC Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--mh-font-sans);
    border: 1px solid var(--mh-black);
    background: var(--mh-white);
    color: var(--mh-black);
    cursor: pointer;
    transition: background 0.25s var(--mh-ease), color 0.25s var(--mh-ease);
    border-radius: 0;
    text-decoration: none;
    line-height: 1;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
    background: var(--mh-black);
    color: var(--mh-white);
}

.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt {
    background: var(--mh-black);
    color: var(--mh-white);
    border-color: var(--mh-black);
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: var(--mh-dark);
}

.woocommerce .button:disabled,
.woocommerce button.button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* WC Form Fields */
.woocommerce form .form-row {
    margin-bottom: 16px;
}

.woocommerce form .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--mh-black);
}

.woocommerce form .form-row .required {
    color: #dc2626;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--mh-font-sans);
    border: 1px solid var(--mh-gray-300);
    border-radius: 2px;
    background: var(--mh-white);
    color: var(--mh-black);
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--mh-black);
}

.woocommerce .select2-container--default .select2-selection--single {
    height: auto;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 1;
    color: var(--mh-black);
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* ---- CART PAGE ---- */
.mh-wc-cart .woocommerce {
    padding-top: 24px;
}

/* Cart Header */
.mh-wc-cart::before {
    content: 'Количка';
    display: block;
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}

/* Cart Table */
.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 32px;
}

.woocommerce table.shop_table thead {
    border-bottom: 2px solid var(--mh-black);
}

.woocommerce table.shop_table th {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mh-gray-500);
    padding: 12px 16px;
    text-align: left;
    border: none;
}

.woocommerce table.shop_table td {
    padding: 20px 16px;
    border: none;
    border-bottom: 1px solid var(--mh-gray-200);
    vertical-align: middle;
    font-size: 14px;
    color: var(--mh-black);
}

.woocommerce table.shop_table td.product-remove {
    width: 40px;
    text-align: center;
}

.woocommerce table.shop_table td.product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--mh-gray-200);
    color: var(--mh-gray-500);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s;
}

.woocommerce table.shop_table td.product-remove a:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef0f0;
}

.woocommerce table.shop_table td.product-thumbnail {
    width: 100px;
    padding-right: 0;
}

.woocommerce table.shop_table td.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
}

.woocommerce table.shop_table td.product-name a {
    font-weight: 600;
    color: var(--mh-black);
    text-decoration: none;
}

.woocommerce table.shop_table td.product-name a:hover {
    opacity: 0.7;
}

.woocommerce table.shop_table td.product-name .variation {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--mh-gray-500);
}

.woocommerce table.shop_table td.product-name dl.variation dt,
.woocommerce table.shop_table td.product-name dl.variation dd {
    display: inline;
    font-size: 12px;
    margin: 0;
}

.woocommerce table.shop_table td.product-name dl.variation dd p {
    display: inline;
}

.woocommerce table.shop_table td.product-quantity .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--mh-gray-300);
    border-radius: 2px;
    overflow: hidden;
}

.woocommerce table.shop_table td.product-quantity .quantity input {
    width: 48px;
    text-align: center;
    border: none;
    padding: 8px 4px;
    font-size: 14px;
    font-family: var(--mh-font-sans);
    -moz-appearance: textfield;
    outline: none;
}

.woocommerce table.shop_table td.product-quantity .quantity input::-webkit-inner-spin-button,
.woocommerce table.shop_table td.product-quantity .quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.woocommerce table.shop_table td.product-subtotal {
    font-weight: 600;
}

/* Cart actions row */
.woocommerce table.shop_table td.actions {
    padding: 24px 16px;
    border-bottom: none;
}

.woocommerce table.shop_table td.actions .coupon {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.woocommerce table.shop_table td.actions .coupon input {
    padding: 12px 14px;
    border: 1px solid var(--mh-gray-300);
    border-radius: 2px;
    font-size: 14px;
    font-family: var(--mh-font-sans);
    min-width: 200px;
    outline: none;
}

.woocommerce table.shop_table td.actions .coupon input:focus {
    border-color: var(--mh-black);
}

.woocommerce table.shop_table td.actions > .button {
    float: right;
}

/* Cart Totals */
.woocommerce .cart-collaterals {
    margin-top: 32px;
}

.woocommerce .cart_totals {
    float: right;
    width: 420px;
    max-width: 100%;
}

.woocommerce .cart_totals h2 {
    font-family: var(--mh-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mh-black);
}

.woocommerce .cart_totals table {
    border: none;
    width: 100%;
}

.woocommerce .cart_totals table th {
    font-size: 14px;
    font-weight: 500;
    color: var(--mh-gray-700);
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--mh-gray-200);
    text-align: left;
    width: 40%;
}

.woocommerce .cart_totals table td {
    font-size: 14px;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--mh-gray-200);
    text-align: right;
}

.woocommerce .cart_totals table tr.order-total th,
.woocommerce .cart_totals table tr.order-total td {
    font-size: 18px;
    font-weight: 700;
    color: var(--mh-black);
    border-bottom: none;
    padding-top: 20px;
}

.woocommerce .cart_totals .wc-proceed-to-checkout {
    padding-top: 20px;
}

.woocommerce .cart_totals .wc-proceed-to-checkout a.button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
}

/* Empty Cart */
.woocommerce .cart-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: var(--mh-gray-500);
}

.woocommerce .return-to-shop {
    text-align: center;
    margin-top: 24px;
}

/* ---- CHECKOUT PAGE ---- */
.mh-wc-checkout .woocommerce {
    padding-top: 24px;
}

.mh-wc-checkout::before {
    content: 'Поръчка';
    display: block;
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}

/* Checkout Layout: 2-column */
.woocommerce form.checkout,
.woocommerce form.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Make coupon + notices span full width */
.woocommerce form.checkout > .woocommerce-notices-wrapper,
.woocommerce form.checkout > .woocommerce-form-coupon-toggle,
.woocommerce form.checkout > .checkout_coupon {
    grid-column: 1 / -1;
}

/* Billing/Shipping forms */
.woocommerce .col2-set {
    grid-column: 1 / 2;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    float: none;
    width: 100%;
    margin-bottom: 32px;
}

.woocommerce form.checkout h3,
.woocommerce #order_review_heading {
    font-family: var(--mh-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mh-black);
}

.woocommerce #order_review_heading {
    display: none;
}

/* Order Review (right column) */
.woocommerce #order_review,
.woocommerce .woocommerce-checkout-review-order {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    position: sticky;
    top: calc(var(--mh-header-height) + 24px);
    background: var(--mh-gray-50);
    padding: 32px;
    border-radius: 2px;
}

.woocommerce #order_review::before {
    content: 'Вашата поръчка';
    display: block;
    font-family: var(--mh-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mh-black);
}

/* Order Review Table */
.woocommerce .woocommerce-checkout-review-order-table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce .woocommerce-checkout-review-order-table thead th {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mh-gray-500);
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid var(--mh-gray-200);
}

.woocommerce .woocommerce-checkout-review-order-table td,
.woocommerce .woocommerce-checkout-review-order-table th {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--mh-gray-200);
    font-size: 14px;
}

.woocommerce .woocommerce-checkout-review-order-table .cart_item td.product-name {
    font-weight: 500;
}

.woocommerce .woocommerce-checkout-review-order-table .cart_item td.product-total {
    text-align: right;
    font-weight: 600;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot th {
    text-align: left;
    font-weight: 500;
    color: var(--mh-gray-700);
}

.woocommerce .woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce .woocommerce-checkout-review-order-table tfoot .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: var(--mh-black);
    padding-top: 20px;
    border-bottom: none;
}

/* Payment Methods */
.woocommerce #payment {
    background: none;
    border-radius: 0;
    padding: 0;
}

.woocommerce #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border: none;
}

.woocommerce #payment ul.payment_methods li {
    padding: 16px 0;
    border-bottom: 1px solid var(--mh-gray-200);
}

.woocommerce #payment ul.payment_methods li:last-child {
    border-bottom: none;
}

.woocommerce #payment ul.payment_methods li label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mh-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.woocommerce #payment ul.payment_methods li .payment_box {
    padding: 12px 0 0 26px;
    font-size: 13px;
    color: var(--mh-gray-700);
    line-height: 1.6;
    background: none;
}

.woocommerce #payment ul.payment_methods li .payment_box::before {
    display: none;
}

/* Place Order */
.woocommerce #payment .place-order {
    padding: 20px 0 0;
}

.woocommerce #payment #place_order {
    width: 100%;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
}

/* Privacy text */
.woocommerce .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 16px;
}

.woocommerce .woocommerce-privacy-policy-text p {
    font-size: 12px;
    color: var(--mh-gray-500);
    line-height: 1.6;
}

/* Coupon toggle */
.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
    background: var(--mh-gray-50);
    border-color: var(--mh-gray-200);
    color: var(--mh-gray-700);
}

.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a {
    color: var(--mh-black);
    font-weight: 600;
}

.woocommerce form.checkout_coupon {
    padding: 20px;
    background: var(--mh-gray-50);
    border: 1px solid var(--mh-gray-200);
    border-radius: 2px;
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.woocommerce form.checkout_coupon p:first-child {
    display: none;
}

.woocommerce form.checkout_coupon .form-row-first {
    flex: 1;
}

.woocommerce form.checkout_coupon .form-row-last {
    flex-shrink: 0;
}

/* Login form */
.woocommerce form.login {
    padding: 24px;
    background: var(--mh-gray-50);
    border: 1px solid var(--mh-gray-200);
    border-radius: 2px;
    margin-bottom: 24px;
}

/* ---- ORDER RECEIVED (Thank You) ---- */
.woocommerce-order-received .mh-wc-checkout::before {
    content: none;
}

.woocommerce .woocommerce-order {
    text-align: center;
}

.woocommerce .woocommerce-thankyou-order-received {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
}

.woocommerce .woocommerce-order-overview {
    list-style: none;
    padding: 24px;
    background: var(--mh-gray-50);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    text-align: center;
}

.woocommerce .woocommerce-order-overview li {
    font-size: 14px;
    color: var(--mh-gray-500);
}

.woocommerce .woocommerce-order-overview li strong {
    display: block;
    font-size: 16px;
    color: var(--mh-black);
    margin-top: 4px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .woocommerce form.checkout,
    .woocommerce form.woocommerce-checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce .col2-set {
        grid-column: 1;
    }

    .woocommerce #order_review,
    .woocommerce .woocommerce-checkout-review-order {
        grid-column: 1;
        grid-row: auto;
        position: static;
    }

    .woocommerce .cart_totals {
        float: none;
        width: 100%;
    }

    .woocommerce table.shop_table,
    .woocommerce table.shop_table thead,
    .woocommerce table.shop_table tbody,
    .woocommerce table.shop_table tr,
    .woocommerce table.shop_table td {
        display: block;
    }

    .woocommerce table.shop_table thead {
        display: none;
    }

    .woocommerce table.shop_table tr {
        padding: 16px 0;
        border-bottom: 1px solid var(--mh-gray-200);
        display: grid;
        grid-template-columns: auto 80px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 12px;
        align-items: center;
    }

    .woocommerce table.shop_table td {
        padding: 0;
        border: none;
    }

    .woocommerce table.shop_table td.product-remove {
        grid-row: 1 / 3;
        grid-column: 1;
        width: auto;
    }

    .woocommerce table.shop_table td.product-thumbnail {
        grid-row: 1 / 3;
        grid-column: 2;
        width: auto;
    }

    .woocommerce table.shop_table td.product-name {
        grid-column: 3;
        grid-row: 1;
    }

    .woocommerce table.shop_table td.product-price {
        display: none;
    }

    .woocommerce table.shop_table td.product-quantity {
        grid-column: 3;
        grid-row: 2;
    }

    .woocommerce table.shop_table td.product-subtotal {
        grid-column: 3;
        grid-row: 2;
        text-align: right;
    }

    .woocommerce table.shop_table td.actions {
        grid-column: 1 / -1;
        padding-top: 16px;
    }

    .woocommerce table.shop_table td.actions .coupon {
        flex-direction: column;
        width: 100%;
    }

    .woocommerce table.shop_table td.actions .coupon input {
        min-width: 0;
        width: 100%;
    }

    .woocommerce table.shop_table td.actions > .button {
        float: none;
        width: 100%;
        margin-top: 8px;
    }

    .woocommerce form.checkout_coupon {
        flex-direction: column;
    }
}


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

/* Hero */
.mh-about__hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: calc(-1 * (var(--mh-topbar-height) + var(--mh-header-height)));
}

.mh-about__hero-bg {
    position: absolute;
    inset: 0;
}

.mh-about__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh-about__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.3) 100%);
}

.mh-about__hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--mh-container-padding) 60px;
    max-width: var(--mh-container);
    margin: 0 auto;
    width: 100%;
    color: var(--mh-white);
}

.mh-about__hero-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 12px;
}

.mh-about__hero-title {
    font-family: var(--mh-font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
}

/* Text Sections */
.mh-about__section {
    padding: 80px 0;
}

.mh-about__section--warm {
    background: var(--mh-warm-bg);
}

.mh-about__intro,
.mh-about__text-block {
    max-width: 720px;
    margin: 0 auto;
}

.mh-about__intro h2,
.mh-about__text-block h2 {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.mh-about__intro p,
.mh-about__text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--mh-gray-700);
    margin-bottom: 20px;
}

.mh-about__intro p:last-child,
.mh-about__text-block p:last-child {
    margin-bottom: 0;
}

/* Image Break — 2 images side by side */
.mh-about__image-break {
    padding: 0;
}

.mh-about__image-break-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 var(--mh-container-padding);
    max-width: var(--mh-container);
    margin: 0 auto;
}

.mh-about__image-break-item {
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 3/2;
}

.mh-about__image-break-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-about__image-break-item:hover img {
    transform: scale(1.04);
}

/* Full Width Image */
.mh-about__full-image {
    padding: 0 var(--mh-container-padding);
    max-width: var(--mh-container);
    margin: 0 auto;
}

.mh-about__full-image img {
    width: 100%;
    border-radius: 2px;
    aspect-ratio: 21/9;
    object-fit: cover;
}

/* Craftsmanship grid spacing */
.mh-about__craft {
    padding-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mh-about__hero {
        height: 45vh;
        min-height: 320px;
    }

    .mh-about__hero-title {
        font-size: 28px;
    }

    .mh-about__section {
        padding: 48px 0;
    }

    .mh-about__image-break-grid {
        grid-template-columns: 1fr;
    }

    .mh-about__intro p,
    .mh-about__text-block p {
        font-size: 16px;
    }
}


/* ============================================
   STORE PAGE
   ============================================ */

/* Hero */
.mh-store-page__hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: calc(-1 * (var(--mh-topbar-height) + var(--mh-header-height)));
}

.mh-store-page__hero-bg {
    position: absolute;
    inset: 0;
}

.mh-store-page__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh-store-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.3) 100%);
}

.mh-store-page__hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--mh-container-padding) 60px;
    max-width: var(--mh-container);
    margin: 0 auto;
    width: 100%;
    color: var(--mh-white);
}

.mh-store-page__hero-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 12px;
}

.mh-store-page__hero-title {
    font-family: var(--mh-font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
}

.mh-store-page__hero-address {
    font-size: 18px;
    opacity: 0.85;
}

/* Info + Map */
.mh-store-page__info {
    padding: 80px 0;
}

.mh-store-page__info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.mh-store-page__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mh-store-page__detail-block h2 {
    font-family: var(--mh-font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mh-gray-500);
    margin-bottom: 12px;
}

.mh-store-page__detail-block p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--mh-black);
}

.mh-store-page__hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-store-page__hours-row {
    display: flex;
    justify-content: space-between;
    max-width: 320px;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--mh-gray-200);
}

.mh-store-page__hours-row--closed {
    color: var(--mh-gray-500);
}

.mh-store-page__map {
    border-radius: 2px;
    overflow: hidden;
    min-height: 400px;
}

.mh-store-page__map iframe {
    display: block;
}

/* Gallery spacing */
.mh-store-page__gallery {
    padding-top: 0;
}

/* FAQ spacing */
.mh-store-page__faq {
    border-top: 1px solid var(--mh-gray-200);
}

/* Responsive */
@media (max-width: 768px) {
    .mh-store-page__hero {
        height: 45vh;
        min-height: 320px;
    }

    .mh-store-page__hero-title {
        font-size: 28px;
    }

    .mh-store-page__info-grid {
        grid-template-columns: 1fr;
    }

    .mh-store-page__map {
        min-height: 300px;
    }
}


/* ============================================
   CATALOG LANDING PAGE
   ============================================ */

/* Hero */
.mh-catalog-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: calc(-1 * (var(--mh-topbar-height) + var(--mh-header-height)));
}

.mh-catalog-hero__bg {
    position: absolute;
    inset: 0;
}

.mh-catalog-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh-catalog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.3) 100%);
}

.mh-catalog-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--mh-container-padding) 60px;
    max-width: var(--mh-container);
    margin: 0 auto;
    width: 100%;
    color: var(--mh-white);
}

.mh-catalog-hero__eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 12px;
}

.mh-catalog-hero__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.mh-catalog-hero__text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 520px;
}

/* Category count label (catalog-specific addition to homepage categories) */
.mh-catalog-cats__count {
    display: block;
    font-size: 13px;
    color: var(--mh-gray-500);
    margin-top: -8px;
}

/* Filter pills */
.mh-catalog-grid__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.mh-catalog-filter {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--mh-font-sans);
    background: var(--mh-gray-100);
    color: var(--mh-gray-700);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--mh-ease);
}

.mh-catalog-filter:hover {
    background: var(--mh-gray-200);
}

.mh-catalog-filter--active {
    background: var(--mh-black);
    color: var(--mh-white);
}

/* Product Grid (inside carousel wrapper) */
.mh-catalog-grid__products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 0 var(--mh-container-padding);
    max-width: var(--mh-container);
    margin: 0 auto;
}

.mh-catalog-grid__products .fc-product-card {
    overflow: hidden;
    transition: transform 0.3s var(--mh-ease);
}

.mh-catalog-grid__products .fc-product-card:hover {
    transform: translateY(-4px);
}

.mh-catalog-grid__products .fc-product-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--mh-gray-100);
}

.mh-catalog-grid__products .fc-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-catalog-grid__products .fc-product-card:hover .fc-product-card__image img {
    transform: scale(1.05);
}

.mh-catalog-grid__products .fc-product-card__content {
    padding: 14px 4px 0;
}

.mh-catalog-grid__products .fc-product-card__title a {
    font-size: 15px;
    font-weight: 500;
    color: var(--mh-black);
}

.mh-catalog-grid__products .fc-product-card__collection a {
    font-size: 12px;
    color: var(--mh-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mh-catalog-grid__products .fc-product-card__price {
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    color: var(--mh-dark);
}

.mh-catalog-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--mh-gray-500);
    font-size: 16px;
}

/* Collections */
.mh-catalog-collections {
    padding: 100px 0;
    background: var(--mh-warm-bg);
}

.mh-catalog-collections__header {
    text-align: center;
    margin-bottom: 48px;
}

.mh-catalog-collections__eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--mh-gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.mh-catalog-collections__header h2 {
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.mh-catalog-collections__subtitle {
    font-size: 15px;
    color: var(--mh-gray-700);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.mh-catalog-collections__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 12px;
}

.mh-catalog-collections__card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: block;
    border-radius: 2px;
}

.mh-catalog-collections__img {
    position: absolute;
    inset: 0;
}

.mh-catalog-collections__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-catalog-collections__card:hover .mh-catalog-collections__img img {
    transform: scale(1.05);
}

.mh-catalog-collections__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.mh-catalog-collections__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    color: var(--mh-white);
    z-index: 2;
}

.mh-catalog-collections__info h3 {
    font-family: var(--mh-font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mh-catalog-collections__info .mh-link-arrow {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

/* Bundles subtitle (catalog-specific) */
.mh-catalog-bundles__subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--mh-gray-700);
    max-width: 500px;
    margin: -24px auto 40px;
    line-height: 1.7;
}

/* Catalog Landing Responsive */
@media (max-width: 768px) {
    .mh-catalog-hero { height: 45vh; min-height: 320px; }
    .mh-catalog-hero__title { font-size: 28px; }
    .mh-catalog-hero__content { padding-bottom: 40px; }

    .mh-catalog-grid__products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .mh-catalog-collections__grid {
        grid-template-columns: 1fr;
    }

    .mh-catalog-grid__filters {
        justify-content: flex-start;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .mh-catalog-grid__products {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SINGLE PRODUCT PAGE — Full Redesign
   ============================================ */

/* Page wrapper */
.mh-single-product {
    padding-top: calc(var(--mh-topbar-height) + var(--mh-header-height));
    background: var(--mh-white);
}

/* ---- Product Page Entrance Animations (Apple-style) ---- */
.mh-sp-hero .fc-product-gallery__grid-item {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mh-sp-hero.mh-sp-entered .fc-product-gallery__grid-item {
    opacity: 1;
    transform: scale(1);
}

.mh-sp-hero .fc-product-gallery__grid-item:nth-child(1) { transition-delay: 0s; }
.mh-sp-hero .fc-product-gallery__grid-item:nth-child(2) { transition-delay: 0.12s; }
.mh-sp-hero .fc-product-gallery__grid-item:nth-child(3) { transition-delay: 0.22s; }
.mh-sp-hero .fc-product-gallery__grid-item:nth-child(4) { transition-delay: 0.30s; }
.mh-sp-hero .fc-product-gallery__grid-item:nth-child(5) { transition-delay: 0.36s; }
.mh-sp-hero .fc-product-gallery__grid-item:nth-child(6) { transition-delay: 0.40s; }

/* Details panel children stagger */
.mh-sp-details > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mh-sp-hero.mh-sp-entered .mh-sp-details > * {
    opacity: 1;
    transform: translateY(0);
}

.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(1) { transition-delay: 0.2s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(2) { transition-delay: 0.3s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(3) { transition-delay: 0.4s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(4) { transition-delay: 0.45s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(5) { transition-delay: 0.5s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(6) { transition-delay: 0.55s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(7) { transition-delay: 0.6s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(8) { transition-delay: 0.65s; }
.mh-sp-hero.mh-sp-entered .mh-sp-details > *:nth-child(9) { transition-delay: 0.7s; }

/* Bundle section cards stagger */
.mh-sp-details .fc-bundle-section-card {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mh-sp-hero.mh-sp-entered .mh-sp-details .fc-bundle-section-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mh-sp-hero.mh-sp-entered .fc-bundle-section-card:nth-child(1) { transition-delay: 0.55s; }
.mh-sp-hero.mh-sp-entered .fc-bundle-section-card:nth-child(2) { transition-delay: 0.65s; }
.mh-sp-hero.mh-sp-entered .fc-bundle-section-card:nth-child(3) { transition-delay: 0.75s; }
.mh-sp-hero.mh-sp-entered .fc-bundle-section-card:nth-child(4) { transition-delay: 0.85s; }

/* Configurator attributes stagger */
.mh-sp-details .fc-attribute-configurator {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mh-sp-hero.mh-sp-entered .mh-sp-details .fc-attribute-configurator {
    opacity: 1;
    transform: translateY(0);
}

.mh-sp-hero.mh-sp-entered .fc-attribute-configurator:nth-child(1) { transition-delay: 0.5s; }
.mh-sp-hero.mh-sp-entered .fc-attribute-configurator:nth-child(2) { transition-delay: 0.58s; }
.mh-sp-hero.mh-sp-entered .fc-attribute-configurator:nth-child(3) { transition-delay: 0.66s; }
.mh-sp-hero.mh-sp-entered .fc-attribute-configurator:nth-child(4) { transition-delay: 0.74s; }

/* Add to cart button special entrance */
.mh-sp-details .fc-product-actions {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mh-sp-hero.mh-sp-entered .mh-sp-details .fc-product-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Delivery info */
.mh-sp-details .fc-delivery-info {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mh-sp-hero.mh-sp-entered .mh-sp-details .fc-delivery-info {
    opacity: 1;
    transition-delay: 0.8s;
}

/* Mobile carousel entrance */
.mh-sp-hero .fc-product-gallery__carousel {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mh-sp-hero.mh-sp-entered .fc-product-gallery__carousel {
    opacity: 1;
    transform: translateX(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .mh-sp-hero .fc-product-gallery__grid-item,
    .mh-sp-details > *,
    .mh-sp-details .fc-bundle-section-card,
    .mh-sp-details .fc-attribute-configurator,
    .mh-sp-details .fc-product-actions,
    .mh-sp-details .fc-delivery-info,
    .mh-sp-hero .fc-product-gallery__carousel {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* No container constraints on product page */

/* ====== HERO: full-width gallery left + sticky details right ====== */
.mh-sp-hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: start;
    min-height: 60vh;
}

/* Gallery — full bleed left, no padding */
.mh-sp-gallery {
    position: relative;
}

.mh-sp-gallery .fc-product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    max-height: none;
    overflow: visible;
}

.mh-sp-gallery .fc-product-gallery__grid-item:first-child {
    grid-column: 1 / -1;
}

.mh-sp-gallery .fc-product-gallery__grid-item {
    overflow: hidden;
    cursor: pointer;
    background: #eae6e1;
}

.mh-sp-gallery .fc-product-gallery__grid-item img,
.mh-sp-gallery .fc-product-gallery__grid-item video {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s var(--mh-ease);
}

.mh-sp-gallery .fc-product-gallery__grid-item:first-child img {
    aspect-ratio: 16 / 10;
}

.mh-sp-gallery .fc-product-gallery__grid-item:not(:first-child) img {
    aspect-ratio: 1 / 1;
}

.mh-sp-gallery .fc-product-gallery__grid-item:hover img {
    transform: scale(1.03);
}

.mh-sp-gallery .fc-gallery-show-all {
    display: none !important;
}

/* Details — styled in plugin frontend.css */

/* Collection badge */
.mh-sp-details .fc-product-collection-badge {
    margin-bottom: 10px;
}

.mh-sp-details .fc-product-collection-badge a {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mh-gray-500);
    background: transparent;
    border: none;
    padding: 0;
    transition: color var(--mh-duration-fast);
}

.mh-sp-details .fc-product-collection-badge a:hover {
    color: var(--mh-black);
    background: transparent;
}

/* Title */
.mh-sp-details .fc-product-title {
    font-family: var(--mh-font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}

.mh-sp-details .fc-product-excerpt {
    font-size: 14px;
    color: var(--mh-gray-700);
    line-height: 1.6;
    margin: 0 0 12px;
}

/* Tags */
.mh-sp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.mh-sp-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--mh-gray-700);
}

.mh-sp-tag--bundle {
    background: var(--mh-black);
    color: var(--mh-white);
    border-color: var(--mh-black);
}

/* Price */
.mh-sp-details .fc-price-block {
    padding-top: 14px;
    margin-bottom: 6px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.mh-sp-details .fc-price-block__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mh-gray-500);
    margin-bottom: 4px;
}

.mh-sp-details .fc-product-price {
    font-family: var(--mh-font-heading);
    font-size: 26px;
    font-weight: 700;
}

.mh-sp-details .fc-price-block__from {
    font-size: 13px;
    color: var(--mh-gray-500);
}

/* Configurator */
.mh-sp-details .fc-product-configurator {
    margin-top: 8px;
}

.mh-sp-details .fc-configurator-heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 20px 0 16px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    color: var(--mh-gray-700);
}

.mh-sp-details .fc-attribute-configurator {
    margin-bottom: 18px;
}

.mh-sp-details .fc-attribute-configurator__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mh-dark);
    margin-bottom: 10px;
    display: block;
}

.mh-sp-details .fc-attribute-select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    background: var(--mh-white);
    color: var(--mh-black);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41.59 6 5.17 10.59.59 12 2 6 8 0 2z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color var(--mh-duration-fast);
}

.mh-sp-details .fc-attribute-select:focus {
    outline: none;
    border-color: var(--mh-black);
}

.mh-sp-details .fc-button-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mh-sp-details .fc-button-option {
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 14px;
    padding: 10px 18px;
    transition: all var(--mh-duration-fast);
}

.mh-sp-details .fc-button-option:hover { border-color: var(--mh-gray-400); }

.mh-sp-details .fc-button-option.fc-selected {
    border-color: var(--mh-black);
    background: var(--mh-black);
    color: var(--mh-white);
}

.mh-sp-details .fc-swatch-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mh-sp-details .fc-swatch-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all var(--mh-duration-fast);
}

.mh-sp-details .fc-swatch-option:hover { transform: scale(1.1); }

.mh-sp-details .fc-swatch-option.fc-selected {
    box-shadow: 0 0 0 2px var(--mh-white), 0 0 0 3px var(--mh-black);
}

.mh-sp-details .fc-image-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mh-sp-details .fc-image-option {
    padding: 6px;
    border: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    transition: border-color var(--mh-duration-fast);
}

.mh-sp-details .fc-image-option:hover { border-color: var(--mh-gray-400); }
.mh-sp-details .fc-image-option.fc-selected { border-color: var(--mh-black); }

/* Add to cart */
.mh-sp-details .fc-product-actions { margin-top: 20px; }

.mh-sp-details .fc-add-to-cart,
.mh-sp-details .fc-bundle-add-to-cart {
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all var(--mh-duration);
}

.mh-sp-details .fc-add-to-cart:hover:not(:disabled),
.mh-sp-details .fc-bundle-add-to-cart:hover:not(:disabled) {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Delivery */
.mh-sp-details .fc-delivery-info {
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 14px;
    padding-top: 12px;
    font-size: 13px;
    color: var(--mh-gray-700);
}

/* Info buttons */
.mh-sp-details .fc-info-btn {
    border-bottom-color: rgba(0,0,0,0.06);
    transition: color var(--mh-duration-fast);
}

.mh-sp-details .fc-info-btn:hover { color: var(--mh-black); }

.mh-sp-details .fc-info-btn__arrow { transition: transform var(--mh-duration-fast); }
.mh-sp-details .fc-info-btn:hover .fc-info-btn__arrow { transform: translateX(3px); }

/* Bundle cards */
.mh-sp-details .fc-bundle-section-card {
    border-color: rgba(0,0,0,0.08);
    border-radius: 4px;
}

/* Mobile header */
.mh-sp-details .fc-mobile-product-header {
    padding: 0 0 8px;
}

/* ====================================================================
   SECTIONS BELOW HERO
   ==================================================================== */

/* --- About this product (FAQ accordion) --- */
.mh-sp-about {
    padding: 80px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.mh-sp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.mh-sp-about__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.mh-sp-about__intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mh-gray-700);
    margin-bottom: 32px;
}

.mh-sp-about__image {
    overflow: hidden;
    border-radius: 2px;
}

.mh-sp-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    display: block;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-sp-about__image:hover img {
    transform: scale(1.03);
}

.mh-sp-about__accordions {}

.mh-sp-accordion {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mh-sp-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--mh-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--mh-black);
    text-align: left;
    transition: color var(--mh-duration-fast);
}

.mh-sp-accordion__trigger:hover { color: var(--mh-gray-700); }

.mh-sp-accordion__trigger svg {
    flex-shrink: 0;
    transition: transform 0.3s var(--mh-ease);
    color: var(--mh-gray-500);
}

.mh-sp-accordion.is-open .mh-sp-accordion__trigger svg {
    transform: rotate(180deg);
}

.mh-sp-accordion__content {
    display: none;
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--mh-gray-700);
}

.mh-sp-accordion__content p { margin-bottom: 12px; }
.mh-sp-accordion__content p:last-child { margin-bottom: 0; }

.mh-sp-accordion.is-open .mh-sp-accordion__content {
    display: block;
}

/* Dimensions image gallery */
.mh-sp-dim-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.mh-sp-dim-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    cursor: zoom-in;
}

.mh-sp-dim-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.mh-sp-dim-gallery__item:hover img {
    transform: scale(1.03);
}

.mh-sp-dim-gallery__zoom {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--mh-black);
}

.mh-sp-dim-gallery__item:hover .mh-sp-dim-gallery__zoom {
    opacity: 1;
}

/* Lightbox */
.mh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mh-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.mh-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.mh-lightbox.is-active .mh-lightbox__img {
    transform: scale(1);
}

.mh-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.mh-lightbox__close:hover {
    opacity: 0.7;
}

.mh-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mh-lightbox__nav:hover {
    background: rgba(255,255,255,0.2);
}

.mh-lightbox__nav--prev { left: 20px; }
.mh-lightbox__nav--next { right: 20px; }

.mh-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* --- Product carousels on single product page --- */
.mh-sp-collection-carousel,
.mh-sp-interested-carousel,
.mh-sp-bundles-carousel {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.mh-sp-collection-carousel .mh-product-carousel__track .fc-product-card,
.mh-sp-interested-carousel .mh-product-carousel__track .fc-product-card,
.mh-sp-bundles-carousel .mh-product-carousel__track .fc-product-card {
    flex: 0 0 auto;
    width: calc((100% - 80px) / 5);
    min-width: 240px;
    scroll-snap-align: start;
}

/* Store section on product page reuses .mh-craftsmanship classes from homepage */
.mh-sp-store-section {
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* --- USP Strip --- */
.mh-sp-usp {
    padding: 48px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.mh-sp-usp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mh-sp-usp__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mh-sp-usp__item svg {
    flex-shrink: 0;
    color: var(--mh-gray-700);
    margin-top: 2px;
}

.mh-sp-usp__item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.mh-sp-usp__item span {
    font-size: 13px;
    color: var(--mh-gray-500);
    line-height: 1.4;
}

/* --- Help CTA --- */
.mh-sp-help {
    padding: 64px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.mh-sp-help__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.mh-sp-help__text h2 {
    font-family: var(--mh-font-heading);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    margin-bottom: 8px;
}

.mh-sp-help__text p {
    font-size: 15px;
    color: var(--mh-gray-700);
    max-width: 480px;
    line-height: 1.6;
}

.mh-sp-help__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* --- Buttons --- */
.mh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    transition: all var(--mh-duration);
    letter-spacing: 0.3px;
}

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

.mh-btn--dark:hover {
    background: var(--mh-dark);
    border-color: var(--mh-dark);
}

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

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

/* ====== Responsive ====== */
@media (max-width: 1100px) {
    .mh-sp-hero {
        grid-template-columns: 1fr 380px;
    }

}

@media (max-width: 900px) {
    .mh-sp-hero {
        grid-template-columns: 1fr;
    }

    .mh-sp-gallery .fc-product-gallery__grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .mh-sp-gallery .fc-product-gallery__grid-item:first-child img,
    .mh-sp-gallery .fc-product-gallery__grid-item:not(:first-child) img {
        aspect-ratio: 4 / 3;
    }


    .mh-sp-about {
        padding: 48px 0;
    }

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

    .mh-sp-about__image {
        max-height: 400px;
    }

    .mh-sp-collection-carousel .mh-product-carousel__track .fc-product-card,
    .mh-sp-interested-carousel .mh-product-carousel__track .fc-product-card,
    .mh-sp-bundles-carousel .mh-product-carousel__track .fc-product-card {
        width: auto;
        min-width: 200px;
        flex: 0 0 220px;
    }


    .mh-sp-usp__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .mh-sp-help__inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .mh-sp-help__actions {
        flex-direction: column;
        width: 100%;
    }

    .mh-sp-help__actions .mh-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mh-sp-usp__grid { grid-template-columns: 1fr; }

    .mh-sp-collection-carousel .mh-product-carousel__track .fc-product-card,
    .mh-sp-interested-carousel .mh-product-carousel__track .fc-product-card,
    .mh-sp-bundles-carousel .mh-product-carousel__track .fc-product-card {
        flex: 0 0 180px;
        min-width: 180px;
    }

}

/* ============================================
   UTILITY / MISC
   ============================================ */

/* Smooth placeholder shimmer for loading states */
.mh-product-card--placeholder .mh-product-card__image {
    background: linear-gradient(90deg, var(--mh-gray-100) 25%, var(--mh-gray-50) 50%, var(--mh-gray-100) 75%);
    background-size: 200% 100%;
    animation: mhShimmer 1.5s infinite;
}

@keyframes mhShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Generic article styles (index.php fallback) */
.mh-article {
    padding: 80px 0;
}

.mh-article h1 {
    font-family: var(--mh-font-heading);
    font-size: 36px;
    margin-bottom: 24px;
}

.mh-content {
    font-size: 16px;
    line-height: 1.8;
    max-width: 720px;
}

.mh-content p { margin-bottom: 16px; }
.mh-content h2, .mh-content h3 { margin: 32px 0 16px; }
.mh-content img { border-radius: 4px; margin: 24px 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.mh-contact__header {
    padding: 120px 0 48px;
    text-align: center;
}

.mh-contact__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-gray-500);
    margin-bottom: 16px;
}

.mh-contact__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.15;
}

.mh-contact__subtitle {
    font-size: 16px;
    color: var(--mh-gray-600);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards */
.mh-contact__cards {
    padding-bottom: 80px;
}

.mh-contact__cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mh-contact__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px 32px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all var(--mh-duration);
    text-decoration: none;
    color: inherit;
}

.mh-contact__card:hover {
    border-color: var(--mh-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.mh-contact__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--mh-black);
}

.mh-contact__card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mh-gray-500);
    margin-bottom: 8px;
}

.mh-contact__card-value {
    font-family: var(--mh-font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.mh-contact__card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mh-gray-500);
    transition: color var(--mh-duration-fast);
}

.mh-contact__card:hover .mh-contact__card-action {
    color: var(--mh-black);
}

.mh-contact__card-action svg {
    transition: transform var(--mh-duration-fast);
}

.mh-contact__card:hover .mh-contact__card-action svg {
    transform: translateX(3px);
}

/* Details: Hours + Map */
.mh-contact__details {
    padding: 80px 0;
    background: var(--mh-gray-50);
}

.mh-contact__details-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.mh-contact__hours h2 {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 600;
    margin-bottom: 8px;
}

.mh-contact__hours-location {
    font-size: 14px;
    color: var(--mh-gray-500);
    margin-bottom: 24px;
}

.mh-contact__hours-table {
    margin-bottom: 32px;
}

.mh-contact__hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
}

.mh-contact__hours-row:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
}

.mh-contact__hours-row--closed span:last-child {
    color: var(--mh-gray-400);
    font-weight: 600;
}

.mh-contact__quick-links {
    display: flex;
    gap: 12px;
}

.mh-contact__map {
    border-radius: 2px;
    overflow: hidden;
    min-height: 420px;
}

.mh-contact__map iframe {
    display: block;
    border-radius: 2px;
}

/* Contact responsive */
@media (max-width: 768px) {
    .mh-contact__header {
        padding: 80px 0 32px;
    }

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

    .mh-contact__card {
        padding: 28px 20px 24px;
    }

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

    .mh-contact__map {
        min-height: 300px;
    }

    .mh-contact__quick-links {
        flex-direction: column;
    }

    .mh-contact__quick-links .mh-btn {
        justify-content: center;
        width: 100%;
    }
}

/* WordPress admin bar fix */
body.admin-bar .mh-header {
    top: 32px;
}

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


/* ============================================
   Collection Landing Page
   ============================================ */

/* --- S1: Hero --- */
.mh-collection-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    margin-top: calc(-1 * (var(--mh-topbar-height) + var(--mh-header-height)));
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.mh-collection-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mh-collection-hero__bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mh-collection-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

/* Hero Slider / Ken Burns */
.mh-collection-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    overflow: hidden;
    transition: opacity 1.4s ease-in-out;
}

.mh-collection-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
}

.mh-collection-hero__slide.is-prev {
    opacity: 1;
    z-index: 1;
}

.mh-collection-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    animation: none;
}

.mh-collection-hero__slide.is-active img,
.mh-collection-hero__slide.is-prev img {
    animation: mh-ken-burns 7s ease-in-out forwards;
}

.mh-collection-hero__slide.is-active:nth-child(odd) img,
.mh-collection-hero__slide.is-prev:nth-child(odd) img {
    animation-name: mh-ken-burns-alt;
}

@keyframes mh-ken-burns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.12); }
}

@keyframes mh-ken-burns-alt {
    0%   { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.mh-collection-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.3) 100%);
}

.mh-collection-hero__info {
    position: relative;
    z-index: 2;
    padding: 60px var(--mh-container-padding) 80px;
    max-width: 680px;
    color: var(--mh-white);
}

.mh-collection-hero__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 12px;
}

.mh-collection-hero__subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.5;
}

.mh-collection-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

.mh-collection-hero__sep {
    font-size: 1.2em;
}

.mh-collection-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mh-white);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity var(--mh-duration) var(--mh-ease);
}

.mh-collection-hero__scroll:hover {
    opacity: 1;
}

.mh-collection-hero__scroll svg {
    animation: mh-bounce-down 2s ease-in-out infinite;
}

@keyframes mh-bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Hero split variant */
.mh-collection-hero--split {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.mh-collection-hero--split .mh-collection-hero__media {
    position: relative;
    min-height: 500px;
}

.mh-collection-hero--split .mh-collection-hero__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px var(--mh-container-padding);
    color: var(--mh-black);
    max-width: none;
}

.mh-collection-hero--split .mh-collection-hero__overlay {
    display: none;
}

.mh-collection-hero--split .mh-collection-hero__scroll {
    color: var(--mh-black);
}


/* --- S2: Introduction --- */
.mh-collection-intro {
    padding: 100px 0;
}

.mh-collection-intro__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.mh-collection-intro__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--mh-gray-700);
}

.mh-collection-intro__text p {
    margin-bottom: 1em;
}

.mh-collection-intro__quote {
    font-family: var(--mh-font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--mh-black);
    border-left: 3px solid var(--mh-black);
    padding-left: 24px;
    margin: 0;
}


/* --- S3: Stats Bar --- */
.mh-collection-stats {
    background: var(--mh-warm-bg);
    padding: 70px 0;
}

.mh-collection-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
}

.mh-collection-stats__value {
    display: block;
    font-family: var(--mh-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--mh-black);
    line-height: 1.2;
    margin-bottom: 6px;
}

.mh-collection-stats__label {
    display: block;
    font-size: 0.875rem;
    color: var(--mh-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* --- S4: Products (inherits mh-product-carousel) --- */
.mh-collection-products {
    padding-top: 40px;
}

.mh-collection-products .mh-product-carousel__track {
    /* Make fc-product-card work inside carousel track */
}

.mh-collection-products .fc-product-card {
    flex: 0 0 300px;
    min-width: 0;
}


/* --- S5: USP Features --- */
.mh-collection-features {
    padding: 100px 0;
    background: var(--mh-white);
}

.mh-collection-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.mh-collection-features__item {
    text-align: center;
    padding: 32px 20px;
}

.mh-collection-features__icon {
    margin-bottom: 20px;
    color: var(--mh-black);
}

.mh-collection-features__icon svg {
    width: 32px;
    height: 32px;
}

.mh-collection-features__title {
    font-family: var(--mh-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--mh-black);
}

.mh-collection-features__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--mh-gray-700);
}


/* --- Carousel Row (image + title + carousel in one row) --- */

.mh-carousel-row {
    display: flex;
    align-items: stretch;
    min-height: 340px;
    overflow: hidden;
    padding: 40px 0;
}

.mh-carousel-row--right {
    flex-direction: row-reverse;
}

.mh-carousel-row__image {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    overflow: hidden;
}

.mh-carousel-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-carousel-row:hover .mh-carousel-row__image img {
    transform: scale(1.04);
}

.mh-carousel-row__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.mh-carousel-row__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--mh-black);
    padding: 0 var(--mh-container-padding);
    margin-bottom: 24px;
}

.mh-carousel-row__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--mh-container-padding) 16px;
    scrollbar-width: none;
}

.mh-carousel-row__track::-webkit-scrollbar { display: none; }

.mh-carousel-row__track .fc-product-card {
    flex: 0 0 260px;
    min-width: 0;
    scroll-snap-align: start;
}

@media (max-width: 900px) {
    .mh-carousel-row {
        flex-direction: column;
        min-height: auto;
    }

    .mh-carousel-row--right {
        flex-direction: column;
    }

    .mh-carousel-row__image {
        flex: none;
        max-width: 100%;
        height: 250px;
    }

    .mh-carousel-row__track .fc-product-card {
        flex: 0 0 220px;
    }
}

/* --- S6: Gallery (reuses mh-craftsmanship__grid) --- */
.mh-collection-gallery {
    padding: 80px 0;
}


/* --- S7: Related Collections --- */
.mh-collection-related {
    padding: 100px 0 60px;
}

.mh-collection-related__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 40px;
}

.mh-collection-related__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--mh-container-padding) 20px;
    scrollbar-width: none;
}

.mh-collection-related__track::-webkit-scrollbar {
    display: none;
}

.mh-collection-related__card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    text-decoration: none;
    color: var(--mh-black);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--mh-duration) var(--mh-ease);
}

.mh-collection-related__card:hover {
    transform: translateY(-4px);
}

.mh-collection-related__card-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.mh-collection-related__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--mh-duration-slow) var(--mh-ease);
}

.mh-collection-related__card:hover .mh-collection-related__card-img img {
    transform: scale(1.05);
}

.mh-collection-related__card-info {
    padding: 16px 4px;
}

.mh-collection-related__card-info h3 {
    font-family: var(--mh-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.mh-collection-related__card-info span {
    font-size: 0.8125rem;
    color: var(--mh-gray-500);
}

.mh-collection-related__scrollbar {
    max-width: 200px;
    height: 3px;
    background: var(--mh-gray-200);
    margin: 16px auto 0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.mh-collection-related__scrollbar-thumb {
    height: 100%;
    background: var(--mh-black);
    border-radius: 3px;
    width: 40px;
    transition: margin-left 0.1s ease;
}


/* --- S8: CTA (reuses mh-store-cta) --- */
.mh-collection-cta {
    margin-top: 0;
}


/* ============================================
   Collection Archive Page
   ============================================ */

.mh-collections-archive__hero {
    padding: calc(var(--mh-header-height) + var(--mh-topbar-height) + 80px) 0 60px;
    background: var(--mh-warm-bg);
    text-align: center;
}

.mh-collections-archive__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mh-gray-500);
    margin-bottom: 12px;
}

.mh-collections-archive__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--mh-black);
    margin-bottom: 16px;
}

.mh-collections-archive__subtitle {
    font-size: 1.0625rem;
    color: var(--mh-gray-700);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Intro + Filters --- */

.mh-collections-archive__intro {
    padding: 40px 0 0;
    border-bottom: 1px solid var(--mh-gray-200);
}

.mh-collections-archive__filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 24px;
}

.mh-collections-archive__color-filter {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mh-collections-archive__filter-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mh-gray-500);
    font-weight: 500;
    white-space: nowrap;
}

.mh-collections-archive__colors {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Color circle buttons */

.mh-color-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    transition: transform var(--mh-duration-fast) var(--mh-ease);
}

.mh-color-circle:hover {
    transform: translateY(-2px);
}

.mh-color-circle__swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
    transition: border-color var(--mh-duration-fast) var(--mh-ease),
                box-shadow var(--mh-duration-fast) var(--mh-ease);
}

.mh-color-circle__swatch--all {
    background: conic-gradient(
        #d4a373 0deg, #8b6f47 60deg, #f5f5dc 120deg,
        #e8e8e8 180deg, #2c2c2c 240deg, #a0522d 300deg, #d4a373 360deg
    );
}

.mh-color-circle--active .mh-color-circle__swatch {
    border-color: var(--mh-black);
    box-shadow: 0 0 0 2px var(--mh-white), 0 0 0 4px var(--mh-black);
}

.mh-color-circle__label {
    font-size: 0.625rem;
    color: var(--mh-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color var(--mh-duration-fast) var(--mh-ease);
}

.mh-color-circle--active .mh-color-circle__label {
    color: var(--mh-black);
    font-weight: 600;
}

/* Type filter pills */

.mh-collections-archive__type-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mh-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mh-gray-600);
    background: var(--mh-white);
    border: 1px solid var(--mh-gray-200);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--mh-duration-fast) var(--mh-ease);
    white-space: nowrap;
}

.mh-filter-pill:hover {
    border-color: var(--mh-gray-400);
    color: var(--mh-black);
}

.mh-filter-pill--active {
    background: var(--mh-black);
    color: var(--mh-white);
    border-color: var(--mh-black);
}

.mh-filter-pill--active:hover {
    background: var(--mh-dark);
    color: var(--mh-white);
}

.mh-filter-pill svg {
    flex-shrink: 0;
}

/* --- Grid Section --- */

.mh-collections-archive__grid-section {
    padding: 60px 0 80px;
}

.mh-collections-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mh-collection-card-wrap {
    transition: opacity var(--mh-duration) var(--mh-ease);
}

.mh-collection-card-wrap[style*="display: none"] {
    opacity: 0;
}

/* --- Collection Card --- */

.mh-collection-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--mh-white);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.mh-collection-card__image {
    position: absolute;
    inset: 0;
}

.mh-collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--mh-duration-slow) var(--mh-ease);
}

.mh-collection-card:hover .mh-collection-card__image img {
    transform: scale(1.06);
}

.mh-collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    transition: background var(--mh-duration) var(--mh-ease);
}

.mh-collection-card:hover .mh-collection-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%);
}

.mh-collection-card__title {
    font-family: var(--mh-font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 6px;
}

.mh-collection-card__subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 12px;
    line-height: 1.5;
}

.mh-collection-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.mh-collection-card__count {
    font-size: 0.8125rem;
    opacity: 0.7;
}

.mh-collection-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all var(--mh-duration) var(--mh-ease);
}

.mh-collection-card:hover .mh-collection-card__arrow {
    background: var(--mh-white);
    color: var(--mh-black);
    border-color: var(--mh-white);
    transform: translateX(4px);
}

/* --- Color dots under cards --- */

.mh-collection-card__colors {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 4px 0;
}

.mh-collection-card__color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    transition: transform var(--mh-duration-fast) var(--mh-ease);
}

.mh-collection-card__color-dot:hover {
    transform: scale(1.2);
}

/* --- No results / Empty --- */

.mh-collections-archive__no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--mh-gray-500);
    font-size: 1rem;
}

.mh-collections-archive__empty {
    padding: 100px 0;
    text-align: center;
    color: var(--mh-gray-500);
}


/* ============================================
   Collection Responsive
   ============================================ */

@media (max-width: 1024px) {
    .mh-collection-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .mh-collection-hero--split {
        grid-template-columns: 1fr;
    }

    .mh-collection-hero--split .mh-collection-hero__media {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .mh-collection-hero {
        min-height: 500px;
    }

    .mh-collection-hero__info {
        padding: 40px 20px 60px;
    }

    .mh-collection-intro {
        padding: 60px 0;
    }

    .mh-collection-stats {
        padding: 50px 0;
    }

    .mh-collection-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .mh-collection-features {
        padding: 60px 0;
    }

    .mh-collection-related {
        padding: 60px 0 40px;
    }

    .mh-collection-related__card {
        flex: 0 0 280px;
    }

    .mh-collections-archive__grid {
        grid-template-columns: 1fr;
    }

    .mh-collections-archive__hero {
        padding: calc(var(--mh-header-height) + var(--mh-topbar-height) + 40px) 0 40px;
    }

    .mh-collections-archive__filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .mh-collections-archive__color-filter {
        flex-wrap: wrap;
        gap: 10px;
    }

    .mh-collections-archive__type-filter {
        width: 100%;
    }

    .mh-filter-pill {
        flex: 1;
        justify-content: center;
    }

    .mh-collection-card {
        aspect-ratio: 4 / 3;
    }

    .mh-collection-card__overlay {
        padding: 24px;
    }

    .mh-collection-hero--split .mh-collection-hero__media {
        min-height: 300px;
    }

    .mh-collection-hero--split .mh-collection-hero__info {
        padding: 40px 20px;
    }
}

/* ============================================
   Collection Bundles with Color Filter
   ============================================ */

.mh-collection-bundles {
    padding: 80px 0;
    background: var(--mh-warm-bg);
}

.mh-collection-bundles__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--mh-black);
}

/* Color Filter */
.mh-bundle-color-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.mh-bundle-color-filter__label {
    font-size: 14px;
    color: var(--mh-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mh-bundle-color-filter__swatches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.mh-bundle-color-filter__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--mh-white);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s var(--mh-ease);
    font-family: inherit;
    font-size: 13px;
}

.mh-bundle-color-filter__btn:hover {
    border-color: var(--mh-gray-300);
    transform: translateY(-2px);
}

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

.mh-bundle-color-filter__btn.is-active .mh-bundle-color-filter__name {
    color: var(--mh-white);
}

.mh-bundle-color-filter__all {
    font-weight: 500;
}

.mh-bundle-color-filter__circle {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
}

.mh-bundle-color-filter__btn img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,0,0,0.1);
}

.mh-bundle-color-filter__name {
    color: var(--mh-gray-700);
    font-weight: 500;
}

/* Bundles Grid (1/4 = 4 columns) */
.mh-bundles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mh-bundle-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mh-bundle-card.is-hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
}

/* Bundle card enhancements */
.mh-bundle-card .fc-product-card {
    background: var(--mh-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.mh-bundle-card .fc-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.mh-bundle-card .fc-product-card__image {
    aspect-ratio: 1;
    margin: 0;
    background: var(--mh-gray-100);
}

.mh-bundle-card .fc-product-card__content {
    padding: 20px;
}

.mh-bundle-card .fc-product-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mh-bundle-card .fc-product-card__price {
    font-size: 15px;
    color: var(--mh-gray-500);
}

.mh-bundle-card .fc-product-card__savings {
    color: #27ae60;
    font-size: 13px;
    margin-top: 4px;
}

.mh-bundle-card .fc-product-card__colors {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--mh-gray-200);
}

.mh-bundle-card .fc-product-card__color-swatches {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mh-bundle-card .fc-product-card__color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.mh-bundle-card .fc-product-card__color-swatch img,
.mh-bundle-card .fc-product-card__color-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh-bundle-card .fc-product-card__color-circle {
    border-radius: 50%;
}

.mh-bundle-card .fc-product-card__color-more {
    font-size: 11px;
    color: var(--mh-gray-500);
}

.mh-bundle-card .fc-product-card__color-label {
    font-size: 12px;
    color: var(--mh-gray-500);
    margin-top: 6px;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .mh-bundles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .mh-collection-bundles {
        padding: 60px 0;
    }
    
    .mh-bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mh-bundle-color-filter__swatches {
        gap: 8px;
    }
    
    .mh-bundle-color-filter__btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .mh-collection-bundles {
        padding: 40px 0;
    }
    
    .mh-bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .mh-bundle-color-filter {
        align-items: flex-start;
    }
    
    .mh-bundle-color-filter__swatches {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .mh-bundle-color-filter__btn {
        flex-shrink: 0;
    }
}

/* ============================================
   Collection Intro - Split Layout
   ============================================ */

.mh-collection-intro {
    padding: 100px 0;
    background: var(--mh-white);
}

.mh-collection-intro__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left: Image */
.mh-collection-intro__media {
    position: relative;
}

.mh-collection-intro__image-wrapper {
    position: relative;
    overflow: hidden;
    height: calc(100% + 200px);
    margin: -100px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mh-collection-intro__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--mh-ease-out);
}

.mh-collection-intro__image-wrapper:hover img {
    transform: scale(1.03);
}

.mh-collection-intro__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Right: Content */
.mh-collection-intro__content {
    padding: 20px 0;
}

.mh-collection-intro__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mh-gray-500);
    margin-bottom: 16px;
}

.mh-collection-intro__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--mh-gray-700);
    margin-bottom: 32px;
}

.mh-collection-intro__text p {
    margin-bottom: 16px;
}

.mh-collection-intro__text p:last-child {
    margin-bottom: 0;
}

.mh-collection-intro__quote {
    position: relative;
    padding: 24px 24px 24px 60px;
    background: var(--mh-warm-bg);
    border-radius: 12px;
    font-size: 18px;
    font-style: italic;
    color: var(--mh-dark);
    line-height: 1.6;
    border-left: 3px solid var(--mh-black);
}

.mh-collection-intro__quote svg {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--mh-gray-400);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
    .mh-collection-intro {
        padding: 60px 0;
    }
    
    .mh-collection-intro__split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mh-collection-intro__image-wrapper {
        height: auto;
        margin: 0;
        aspect-ratio: 16 / 9;
    }
    
    .mh-collection-intro__text {
        font-size: 16px;
    }
    
    .mh-collection-intro__quote {
        font-size: 16px;
        padding: 20px 20px 20px 50px;
    }
    
    .mh-collection-intro__quote svg {
        width: 24px;
        height: 24px;
        top: 16px;
        left: 16px;
    }
}

@media (max-width: 600px) {
    .mh-collection-intro__split {
        gap: 32px;
    }
    
    .mh-collection-intro__image-wrapper {
        height: auto;
        margin: 0;
    }
    
    .mh-collection-intro__quote {
        padding: 16px 16px 16px 44px;
    }
}

/* ============================================
   Collection Color Palette
   ============================================ */

.mh-collection-palette {
    padding: 60px 0;
    background: var(--mh-warm-bg);
}

.mh-collection-palette__inner {
    text-align: center;
}

.mh-collection-palette__title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mh-gray-500);
    margin-bottom: 32px;
}

.mh-collection-palette__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
}

.mh-color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mh-color-item__swatch {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-color-item:hover .mh-color-item__swatch {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.mh-color-item__circle {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.mh-color-item__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--mh-gray-700);
}

/* Responsive */
@media (max-width: 768px) {
    .mh-collection-palette {
        padding: 40px 0;
    }
    
    .mh-collection-palette__grid {
        gap: 24px 32px;
    }
    
    .mh-color-item__swatch {
        width: 56px;
        height: 56px;
    }
    
    .mh-color-item__name {
        font-size: 12px;
    }
}
