
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.luxury-shadow {
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}

/* Product card — uniform square images */
.product-card > div:first-child {
    aspect-ratio: 1 / 1;
    height: auto !important;
}

/* Hide blog pagination */
section > nav[aria-label="Pagination"] {
    display: none !important;
}

.gold-underline {
    position: relative;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gold-underline:hover::after {
    transform: scaleX(1);
}

.grid-blueprint {
    background-image: radial-gradient(#000000 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.05;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Recent Projects Slider */
.projects-slider-wrapper {
    overflow: hidden;
}

.projects-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.projects-slider .project-slide {
    flex-shrink: 0;
}

/* Reviews Slider */
.reviews-slider-wrapper {
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reviews-slider .review-slide {
    flex-shrink: 0;
}

/* Featured Products Slider */
.featured-slider-wrapper {
    overflow: hidden;
}

.featured-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
}

.featured-slider .featured-card {
    flex-shrink: 0;
}

.featured-card .overflow-hidden {
    height: 14rem;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .featured-card .overflow-hidden {
        height: 16rem;
    }
}

/* Slider Navigation Buttons */
.slider-btn {
    width: 56px;
    height: 56px;
    border: 1px solid #888888;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.slider-btn:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: transparent;
    color: inherit;
    border-color: #888888;
}

/* Scroll reveal animation — JS handles via inline styles */
/* noscript fallback: content visible if JS disabled */
@media (scripting: none) {
    section[data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Mobile hamburger menu */
.mobile-menu-logo {
    height: 28px;
    width: auto;
    margin-bottom: 12px;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: none;
}

.mobile-menu details summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.mobile-menu details > summary {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu details > div {
    padding-left: 16px;
}

.mobile-menu details summary::-webkit-details-marker {
    display: none;
}

.mobile-menu details summary::marker {
    display: none;
    content: '';
}

.hamburger-btn {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: none;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
}

/* ============================================
   DESKTOP DROPDOWN MENU
   ============================================ */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 6px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

.has-dropdown {
    position: relative;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    z-index: 99;
}

.has-dropdown:hover::after {
    display: block;
}

.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.has-sub::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 12px;
    height: 100%;
    z-index: 99;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    white-space: nowrap;
    flex: 1;
    border-radius: 10px;
    transition: all 0.15s ease;
}

.dropdown-link:hover {
    color: #000000;
}

.dropdown-link .material-symbols-outlined {
    font-size: 18px;
    color: #000000;
}

.dropdown-view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 4px;
    border-radius: 10px 10px 0 0;
    transition: background 0.15s ease;
}

.dropdown-view-all:hover {
    background: #000000;
    color: white;
}

.dropdown-view-all .material-symbols-outlined {
    font-size: 18px;
}

.dropdown-view-all:hover .material-symbols-outlined {
    color: white;
}

.dropdown-item .arrow {
    color: #aaaaaa;
    font-size: 16px;
    margin-right: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dropdown-item:hover > .arrow {
    color: #000000;
}

/* Sub menu (children) — opens RIGHT of parent item */
.submenu {
    position: absolute;
    left: calc(100% + 4px);
    top: -6px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 6px;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 101;
    scrollbar-width: thin;
    scrollbar-color: rgba(126,87,17,0.2) transparent;
}

.submenu::-webkit-scrollbar {
    width: 4px;
}

.submenu::-webkit-scrollbar-thumb {
    background: rgba(126,87,17,0.2);
    border-radius: 10px;
}

.has-sub:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Sub-sub menu (grandchildren) — opens RIGHT of parent item */
.sub-submenu {
    position: absolute;
    left: calc(100% + 4px);
    top: -6px;
    min-width: 200px;
}

.has-sub-sub {
    position: relative;
}

.has-sub-sub:hover > .sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.sub-link {
    font-size: 13px;
    padding: 9px 14px;
}

.sub-sub-link {
    font-size: 12.5px;
    padding: 8px 14px;
    color: #555555;
}

.sub-sub-link:hover {
    color: #000000;
}

/* Fallback classes not in compiled Tailwind */
.h-56 { height: 14rem; }
.object-cover { object-fit: cover; }
.aspect-\[3\/4\] { aspect-ratio: 3/4; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.rounded-\[20px\] { border-radius: 20px; }
.rounded-\[40px\] { border-radius: 40px; }

/* Missing Tailwind color/utility classes */
.bg-surface-container-low { background-color: #f5f5f5; }
.bg-primary-container { background-color: #1a1a1a; }
.bg-surface-dim { background-color: #e0e0e0; }
.text-on-surface-variant { color: #505050; }
.border-outline-variant\/20 { border-color: rgba(0,0,0,0.08); }
.border-outline-variant\/30 { border-color: rgba(0,0,0,0.1); }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.border-white\/40 { border-color: rgba(255,255,255,0.4); }
.border-on-tertiary\/20 { border-color: rgba(255,255,255,0.2); }
.text-on-tertiary\/50 { color: rgba(255,255,255,0.5); }
.text-on-tertiary\/70 { color: rgba(255,255,255,0.7); }
.text-on-tertiary\/80 { color: rgba(255,255,255,0.8); }
.border-secondary\/30 { border-color: rgba(30,30,30,0.3); }
.text-secondary\/25 { color: rgba(30,30,30,0.25); }
.bg-secondary\/25 { background-color: rgba(30,30,30,0.25); }
.border-on-tertiary-fixed-variant { border-color: rgba(255,255,255,0.08); }
.border-on-tertiary\/20 { border-color: rgba(255,255,255,0.2); }

/* Mobile margin fallback */
.px-margin-mobile { padding-left: 20px; padding-right: 20px; }

/* Ensure header is always visible above everything */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: #ffffff;
}/* Missing responsive utilities */
@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row !important; }
    .md\:justify-between { justify-content: space-between !important; }
    .md\:justify-center { justify-content: center !important; }
    .md\:justify-start { justify-content: flex-start !important; }
    .md\:items-end { align-items: flex-end !important; }
    .md\:items-center { align-items: center !important; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .md\:text-left { text-align: left !important; }
    .md\:hidden { display: none !important; }
    .md\:block { display: block !important; }
    .md\:rounded-\[20px\] { border-radius: 20px !important; }
    .md\:flex { display: flex !important; }
    .md\:col-span-1 { grid-column: span 1 / span 1 !important; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .lg\:text-headline-lg { font-size: 48px; line-height: 56px; font-weight: 700; }
    .lg\:h-\[520px\] { height: 520px !important; }
}

/* Featured slider dots */
#featured-dots button {
    border: none;
    cursor: pointer;
    padding: 0;
}

/* featured-card widths handled by JS moveFeatured() */

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

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .text-display-lg {
        font-size: 32px !important;
        line-height: 40px !important;
        letter-spacing: -0.01em !important;
    }

    .py-section-gap {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .mb-section-gap {
        margin-bottom: 60px !important;
    }

    .gap-section-gap {
        gap: 40px !important;
    }

    .featured-scroll .min-w-\\[400px\\] {
        min-width: 300px !important;
    }

    #hero {
        min-height: 100vh;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
    }

    .review-slide {
        min-width: 100% !important;
    }

    .project-slide {
        min-width: 100% !important;
    }

    .bg-surface-container.p-12 {
        padding: 32px !important;
    }

    .grid-cols-2 .bg-surface-container {
        padding: 16px !important;
    }

    .px-margin-desktop {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .flex.flex-wrap.gap-2 {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
    }

    .grid.grid-cols-1.md\\:grid-cols-2.xl\\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    .grid.grid-cols-1.md\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    .grid.grid-cols-1.md\\:grid-cols-4 {
        grid-template-columns: 1fr !important;
    }

    .flex.flex-col.md\\:flex-row.gap-gutter {
        flex-direction: column !important;
    }
}

@media (max-width: 1024px) {
    .text-display-lg {
        font-size: 48px !important;
        line-height: 56px !important;
    }

    .grid.grid-cols-1.md\:grid-cols-2.xl\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Hide scrollbar for horizontal scroll tabs */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category filter pill tabs */
.category-btn {
    background: #f4f4f5;
    color: #3f3f46;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.category-btn:hover {
    background: #e4e4e7;
    border-color: #d4d4d8;
}
.category-btn.active,
.category-btn.bg-primary {
    background: #000 !important;
    color: #fff !important;
    border-color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}





/* ============================================
   /* ============================================
   /* ============================================
   /* ============================================
   /* ============================================
   /* ============================================
   DESKTOP NAV — raw CSS, no Tailwind
   ============================================ */

.desktop-nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #505050;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}
.desktop-nav-link:hover { color: #1a1a1a; }
.desktop-nav-link--active { color: #c7a144; }

.desktop-cta-btn {
    display: inline-block;
    margin-left: auto;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    background: #c7a144;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(199,161,68,0.35);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.desktop-cta-btn:hover {
    background: #b08e33;
    box-shadow: 0 6px 28px rgba(199,161,68,0.5);
    transform: translateY(-1px);
}
.desktop-cta-btn:active { transform: translateY(0); }

/* ============================================
   MOBILE MENU — ACCORDION (LUXURY)
   ============================================ */

/* CSS Variables */
:root {
    --mm-bg: #ffffff;
    --mm-surface: rgba(255,255,255,0.95);
    --mm-border: rgba(0,0,0,0.05);
    --mm-border-strong: rgba(0,0,0,0.08);
    --mm-text: #1a1a1a;
    --mm-text-secondary: #4a4a4a;
    --mm-text-muted: #888;
    --mm-gold: #c7a144;
    --mm-gold-light: #e8d5a3;
    --mm-gold-dark: #b08e33;
    --mm-shadow: 0 8px 40px rgba(0,0,0,0.12);
    --mm-shadow-strong: 0 16px 60px rgba(0,0,0,0.18);
    --mm-radius: 16px;
    --mm-radius-sm: 12px;
    --mm-radius-xs: 8px;
    --mm-transition-fast: 150ms cubic-bezier(.22,1,.36,1);
    --mm-transition: 250ms cubic-bezier(.22,1,.36,1);
    --mm-transition-slow: 400ms cubic-bezier(.22,1,.36,1);
}

/* Mobile header bar */
.mobile-header-bar {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
    background: rgba(255,255,255,0.98); border-bottom: 1px solid rgba(0,0,0,0.06);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
@media (max-width: 767px) { .mobile-header-bar { display: block; } }

.mobile-header-spacer { display: none; height: 54px; }
@media (max-width: 767px) { .mobile-header-spacer { display: block; } }

.mobile-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 100%; height: 54px; padding: 0 24px;
    box-sizing: border-box;
}

.mobile-header-logo {
    display: flex; align-items: center;
    min-width: 0; flex: 1;
    text-decoration: none;
}
.mobile-header-logo-img {
    height: 34px; width: auto; max-width: 34px;
    flex-shrink: 0; object-fit: contain;
}

.mobile-menu-btn {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(199,161,68,0.12); border: 1.5px solid rgba(199,161,68,0.35);
    color: var(--mm-gold); cursor: pointer;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
    transition: all var(--mm-transition-fast);
    flex-shrink: 0;
}
.mobile-menu-btn:hover { background: rgba(199,161,68,0.18); border-color: rgba(199,161,68,0.45); }
.mobile-menu-btn:active { background: rgba(199,161,68,0.26); transform: scale(0.92); }
.mobile-menu-btn .material-symbols-outlined {
    font-size: 22px; font-variation-settings: 'FILL' 0, 'wght' 500;
}

/* Hide desktop navigation on mobile (fallback if Tailwind hidden class is missing) */
@media (max-width: 767px) {
    #top-nav { display: none !important; }
}


/* Hamburger (legacy fallback) */
.hamburger-btn {
    display: none; width: 48px; height: 48px;
    align-items: center; justify-content: center;
    cursor: pointer; border: none; background: transparent;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
    border-radius: var(--mm-radius-xs);
    transition: background var(--mm-transition-fast), transform var(--mm-transition-fast);
}
@media (max-width: 768px) { .hamburger-btn { display: flex; } }
.hamburger-btn:active { background: rgba(0,0,0,0.05); transform: scale(0.92); }
.hamburger-btn .material-symbols-outlined {
    font-size: 28px; color: var(--mm-text); font-variation-settings: 'FILL' 0, 'wght' 400;
}

/* Drawer — slides from RIGHT */
.mobile-menu {
    position: fixed; top: 0; right: 0;
    width: 100%; max-width: 400px;
    height: 100vh; height: 100dvh;
    background: var(--mm-bg);
    z-index: 1000;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 380ms cubic-bezier(.22,1,.36,1);
    box-shadow: var(--mm-shadow-strong);
    border-left: 1px solid var(--mm-border);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.mobile-menu.active { transform: translateX(0); }
@media (max-width: 420px) { .mobile-menu { max-width: 100%; } }

/* Header */
.m-header {
    display: flex; align-items: center; justify-content: center;
    padding: 20px 28px 16px;
    border-bottom: 1px solid var(--mm-border);
    flex-shrink: 0;
    background: var(--mm-bg);
    position: relative; z-index: 2;
}
.m-close {
    position: absolute;
    right: 20px;
}
.m-header-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.m-logo { height: 28px; width: auto; }
.m-brand-name {
    display: block; font-size: 14px; font-weight: 800;
    color: var(--mm-text); letter-spacing: 0.01em; line-height: 1.1;
}
.m-brand-tagline {
    display: block; font-size: 7px; font-weight: 500;
    color: var(--mm-text-muted); text-transform: uppercase;
    letter-spacing: 0.16em; line-height: 1.1;
}

.m-close {
    width: 42px; height: 42px; border-radius: var(--mm-radius-xs);
    background: rgba(0,0,0,0.04); border: 1px solid var(--mm-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--mm-text-secondary); cursor: pointer;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
    transition: all var(--mm-transition-fast);
}
.m-close:hover { background: rgba(0,0,0,0.08); }
.m-close:active { background: rgba(0,0,0,0.12); transform: rotate(90deg) scale(0.92); }
.m-close .material-symbols-outlined { font-size: 22px; font-variation-settings: 'FILL' 0, 'wght' 500; }

/* Body — scrollable */
.m-body {
    flex: 1; overflow-y: auto; overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    scrollbar-width: thin; scrollbar-color: var(--mm-border) transparent;
}
.m-body::-webkit-scrollbar { width: 4px; }
.m-body::-webkit-scrollbar-track { background: transparent; }
.m-body::-webkit-scrollbar-thumb { 
    background: linear-gradient(180deg, var(--mm-gold), var(--mm-gold-light)); 
    border-radius: 4px; border: none;
}
.m-body::-webkit-scrollbar-thumb:hover { background: var(--mm-gold); }

/* Clean text link — centered */
.m-link {
    display: block;
    width: 100%; padding: 14px 28px;
    font-size: 15px; font-weight: 600; color: var(--mm-text);
    text-decoration: none; border: none; border-bottom: 1px solid var(--mm-border);
    background: transparent; cursor: pointer; text-align: center !important;
    font-family: inherit; letter-spacing: .01em;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
    transition: all var(--mm-transition-fast);
    box-sizing: border-box;
}
.m-link:active { background: rgba(0,0,0,0.04); }

/* Active state */
.m-link--active {
    color: var(--mm-gold);
    font-weight: 700;
}
.m-link { position: relative; }

/* ============================================
   ACCORDION — m-group, m-trigger, m-drop
   ============================================ */

.m-group { position: relative; }

/* Trigger button — label centered, chevron on right */
.m-trigger {
    display: flex; align-items: center;
    width: 100%; padding: 14px 28px;
    font-size: 15px; font-weight: 600; color: var(--mm-text);
    border: none; border-bottom: 1px solid var(--mm-border);
    background: transparent; cursor: pointer; text-align: left;
    font-family: inherit; letter-spacing: .01em;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
    transition: all var(--mm-transition-fast);
    box-sizing: border-box;
    position: relative;
}
.m-trigger:active { background: rgba(0,0,0,0.04); }

.m-trigger-label { 
    flex: 1; text-align: center !important;
}

.m-chevron {
    color: var(--mm-text-muted); font-size: 20px; flex-shrink: 0;
    position: absolute; right: 28px;
    transition: transform var(--mm-transition), color var(--mm-transition);
    font-variation-settings: 'FILL' 0, 'wght' 400;
}
.m-group.open > .m-trigger .m-chevron { 
    transform: rotate(180deg); color: var(--mm-gold); 
}

/* Sub trigger (level 1) — same centered alignment, no extra indent */
.m-trigger--sub { 
    padding: 12px 28px; font-size: 13px; font-weight: 500;
    color: var(--mm-text-secondary);
}

/* Dropdown — CLOSED by default, opens with .open class */
.m-drop {
    max-height: 0; overflow: hidden;
    transition: max-height var(--mm-transition-slow), opacity var(--mm-transition-fast);
    opacity: 0; background: rgba(250,250,250,0.98);
    border-bottom: 1px solid var(--mm-border);
}
.m-group.open > .m-drop { max-height: 5000px; opacity: 1; }

/* Sub items — centered, same padding as main links */
.m-sub {
    display: block;
    width: 100%; padding: 11px 28px;
    font-size: 13px; font-weight: 500; color: var(--mm-text-secondary);
    text-decoration: none; border: none; border-bottom: 1px solid rgba(0,0,0,0.03);
    background: transparent; cursor: pointer; text-align: center !important;
    font-family: inherit; letter-spacing: .005em;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
    transition: all var(--mm-transition-fast);
    box-sizing: border-box;
}
.m-sub:last-child { border-bottom: none; }
.m-sub:active { background: rgba(0,0,0,0.04); color: var(--mm-text); }

/* View All link */
.m-sub--viewall {
    font-weight: 600; color: var(--mm-gold); text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.m-sub--viewall:active { color: var(--mm-gold-dark); }

/* Leaf subcategory — centered, no extra indent */
.m-sub--leaf {
    padding: 10px 28px; font-size: 12px; font-weight: 400; color: var(--mm-text-muted);
}
.m-sub--leaf:active { color: var(--mm-text); }

/* Dropdown — CLOSED by default, opens with .open class */
.m-drop {
    max-height: 0; overflow: hidden;
    transition: max-height var(--mm-transition-slow), opacity var(--mm-transition-fast);
    opacity: 0; background: rgba(250,250,250,0.98);
    border-top: 1px solid var(--mm-border);
    border-bottom: 1px solid var(--mm-border);
}
.m-group.open > .m-drop { max-height: 5000px; opacity: 1; }

/* CTA */
.m-cta { 
    padding: 20px 24px 24px;
    border-top: 1px solid var(--mm-border);
}
.m-cta-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 16px 24px;
    font-size: 15px; font-weight: 700; color: #fff;
    text-decoration: none; border: none; border-radius: 12px;
    background: linear-gradient(135deg, var(--mm-gold) 0%, var(--mm-gold-dark) 100%);
    cursor: pointer; font-family: inherit; letter-spacing: .06em; text-transform: uppercase;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
    transition: all var(--mm-transition);
    box-shadow: 0 4px 24px rgba(199,161,68,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.m-cta-btn:active { 
    transform: scale(0.96); 
    background: var(--mm-gold-dark); 
    box-shadow: 0 2px 8px rgba(199,161,68,0.3);
}

/* Overlay — frosted */
.mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: opacity var(--mm-transition), visibility var(--mm-transition),
                backdrop-filter var(--mm-transition);
    -webkit-backdrop-filter: blur(0); backdrop-filter: blur(0);
    cursor: pointer;
}
.mobile-menu-overlay.active { 
    opacity: 1; visibility: visible; 
    -webkit-backdrop-filter: saturate(180%) blur(8px); backdrop-filter: saturate(180%) blur(8px);
}

/* Prevent body scroll */
.menu-open { overflow: hidden !important; touch-action: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu, .mobile-menu-overlay, .m-drop, .m-link, .m-trigger, .m-sub, .m-close, .m-cta-btn {
        transition-duration: 0.01ms !important;
    }
}

/* High contrast */
@media (prefers-contrast: high) {
    .mobile-menu { border-left-width: 2px; }
    .m-link--active::before { width: 4px; }
    .m-cta-btn { border: 2px solid currentColor; }
}

@media (max-width: 767px) {
    .mobile-menu { max-width: 100%; }
}
@media (max-width: 360px) {
    .mobile-header-inner { padding: 0 16px; }
    .mobile-header-logo-img { height: 30px; max-width: 30px; }
    .mobile-menu-btn { width: 36px; height: 36px; }
}

/* ============================================
   CALL FLOAT (bottom-left pill)
   ============================================ */
.call-float-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 8px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    text-decoration: none;
    transition: all 0.3s ease;
}
.call-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(0,0,0,0.26);
}
.call-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.call-float-svg {
    font-size: 22px;
    color: #c7a144;
}
.call-float-number {
    color: #c7a144;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1;
}

/* ============================================
   WHATSAPP FLOAT (bottom-right circle)
   ============================================ */
.wa-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}
.wa-float-btn:hover { transform: translateY(-3px); }
.wa-float-btn:active { transform: scale(0.92); }
.wa-float-icon {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .call-float-btn {
        bottom: 16px;
        left: 16px;
        gap: 8px;
        padding: 6px 14px 6px 6px;
    }
    .call-float-icon {
        width: 38px;
        height: 38px;
    }
    .call-float-svg { font-size: 19px; }
    .call-float-number { font-size: 12px; }
    .wa-float-btn {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .wa-float-icon {
        width: 26px;
        height: 26px;
    }
}

