/* ============================================================
   MZH THEME — الهوية البصرية: ذهبي × فضي فاخر
   ============================================================ */

:root {
    --mzh-black: #0a0906;
    --mzh-black-soft: #131210;
    --mzh-charcoal: #1c1a16;
    --mzh-charcoal-light: #26231d;

    --mzh-gold: #d4af37;
    --mzh-gold-light: #f4e5a1;
    --mzh-gold-deep: #a67c1c;
    --mzh-gold-glow: rgba(212, 175, 55, 0.35);

    --mzh-silver: #c8c8ce;
    --mzh-silver-light: #eceef0;
    --mzh-silver-deep: #8a8a92;

    --mzh-cream: #f7f3ea;
    --mzh-text-muted: #b8b3a6;

    --mzh-gradient-gold: linear-gradient(135deg, #a67c1c 0%, #d4af37 35%, #f4e5a1 55%, #d4af37 75%, #a67c1c 100%);
    --mzh-gradient-silver: linear-gradient(135deg, #8a8a92 0%, #c8c8ce 40%, #eceef0 55%, #c8c8ce 70%, #8a8a92 100%);
    --mzh-gradient-dark: linear-gradient(180deg, #0a0906 0%, #131210 100%);

    --mzh-font-ar: 'Cairo', 'Tajawal', sans-serif;
    --mzh-font-en: 'Montserrat', sans-serif;
    --mzh-font-display: 'Marcellus', serif;

    --mzh-radius: 14px;
    --mzh-radius-lg: 24px;
    --mzh-transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --mzh-container: 1280px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--mzh-black);
    color: var(--mzh-cream);
    font-family: var(--mzh-font-ar);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}
body.lang-en { font-family: var(--mzh-font-en); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; }

.mzh-container {
    max-width: var(--mzh-container);
    margin: 0 auto;
    padding: 0 24px;
}

::selection { background: var(--mzh-gold); color: var(--mzh-black); }

:focus-visible {
    outline: 2px solid var(--mzh-gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   خلفية الشهب الذهبية المتحركة (Signature Element)
============================================================ */
.mzh-stars-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% -10%, #1a1710 0%, var(--mzh-black) 60%);
}

#mzh-meteor-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mzh-stars-layer {
    position: absolute;
    inset: 0;
    background-repeat: repeat;
}
.mzh-stars-small {
    background-image: radial-gradient(1px 1px at 20px 30px, rgba(212,175,55,.5), transparent),
                       radial-gradient(1px 1px at 120px 80px, rgba(200,200,206,.4), transparent),
                       radial-gradient(1.5px 1.5px at 250px 150px, rgba(212,175,55,.4), transparent),
                       radial-gradient(1px 1px at 320px 40px, rgba(200,200,206,.3), transparent);
    background-size: 400px 400px;
    animation: mzh-twinkle 6s ease-in-out infinite alternate;
}
.mzh-stars-medium {
    background-image: radial-gradient(2px 2px at 60px 200px, rgba(244,229,161,.4), transparent),
                       radial-gradient(1.5px 1.5px at 300px 300px, rgba(212,175,55,.3), transparent);
    background-size: 500px 500px;
    animation: mzh-twinkle 8s ease-in-out infinite alternate-reverse;
}
@keyframes mzh-twinkle {
    0% { opacity: .4; }
    100% { opacity: 1; }
}

#page { position: relative; z-index: 1; }

/* ============================================================
   TOPBAR
============================================================ */
.mzh-topbar {
    background: var(--mzh-black-soft);
    border-bottom: 1px solid rgba(212,175,55,.15);
    font-size: 13px;
    color: var(--mzh-text-muted);
}
.mzh-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    flex-wrap: wrap;
    gap: 8px;
}
.mzh-topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.mzh-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--mzh-transition);
}
.mzh-topbar-item:hover { color: var(--mzh-gold); }
.mzh-icon-sm { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

.mzh-topbar-right { display: flex; align-items: center; gap: 18px; }
.mzh-social-icons { display: flex; gap: 10px; }
.mzh-social-icon {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.25);
    color: var(--mzh-silver);
    transition: all var(--mzh-transition);
}
.mzh-social-icon:hover {
    background: var(--mzh-gradient-gold);
    color: var(--mzh-black);
    border-color: transparent;
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 6px 16px var(--mzh-gold-glow);
}

.mzh-lang-switch { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.mzh-lang-btn { color: var(--mzh-text-muted); padding: 3px 6px; border-radius: 6px; transition: all var(--mzh-transition); }
.mzh-lang-btn.active, .mzh-lang-btn:hover { color: var(--mzh-gold); }
.mzh-lang-divider { color: rgba(212,175,55,.3); }

/* ============================================================
   HEADER
============================================================ */
.mzh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 9, 6, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212,175,55,.15);
}
.mzh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
}
.mzh-branding { flex-shrink: 0; }
.mzh-logo-link { display: flex; align-items: center; gap: 12px; }
.mzh-logo-wrap img { max-height: 56px; width: auto; filter: drop-shadow(0 0 12px var(--mzh-gold-glow)); }
.mzh-logo-text {
    font-family: var(--mzh-font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--mzh-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mzh-logo-text-hero { font-size: 64px; }
.mzh-company-tagline {
    display: none;
    font-size: 13px;
    color: var(--mzh-silver);
    font-weight: 600;
    letter-spacing: .5px;
}
@media (min-width: 992px) { .mzh-company-tagline { display: block; } }

.mzh-main-nav { flex: 1; display: none; justify-content: center; }
@media (min-width: 992px) { .mzh-main-nav { display: flex; } }
.mzh-nav-menu { display: flex; gap: 6px; align-items: center; }
.mzh-nav-menu > li { position: relative; }
.mzh-nav-menu > li > a {
    display: block;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 15px;
    color: var(--mzh-cream);
    border-radius: 8px;
    transition: all var(--mzh-transition);
    position: relative;
}
.mzh-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    inset-inline-start: 16px;
    inset-inline-end: 16px;
    height: 2px;
    background: var(--mzh-gradient-gold);
    transform: scaleX(0);
    transition: transform var(--mzh-transition);
}
.mzh-nav-menu > li > a:hover { color: var(--mzh-gold); }
.mzh-nav-menu > li > a:hover::after { transform: scaleX(1); }

/* dropdown for sub-menus if user adds them */
.mzh-nav-menu ul {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    background: var(--mzh-charcoal);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: var(--mzh-radius);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--mzh-transition);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.mzh-nav-menu li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.mzh-nav-menu ul li a { padding: 10px 14px; border-radius: 6px; }
.mzh-nav-menu ul li a:hover { background: rgba(212,175,55,.1); }

.mzh-header-actions { display: flex; align-items: center; gap: 12px; }
.mzh-btn-whatsapp-header {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--mzh-gradient-gold);
    color: var(--mzh-black);
    font-weight: 800;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 14px;
    transition: all var(--mzh-transition);
    box-shadow: 0 6px 20px var(--mzh-gold-glow);
}
@media (min-width: 768px) { .mzh-btn-whatsapp-header { display: inline-flex; } }
.mzh-btn-whatsapp-header:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 28px var(--mzh-gold-glow); }
.mzh-btn-whatsapp-header .mzh-icon { width: 18px; height: 18px; fill: currentColor; }

.mzh-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
}
@media (min-width: 992px) { .mzh-mobile-toggle { display: none; } }
.mzh-mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--mzh-gold);
    border-radius: 2px;
    transition: all var(--mzh-transition);
}
.mzh-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mzh-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mzh-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mzh-mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: var(--mzh-charcoal);
    transition: max-height 0.4s ease;
}
.mzh-mobile-menu.open { max-height: 600px; }
.mzh-mobile-nav-menu { padding: 10px 24px; }
.mzh-mobile-nav-menu li a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(212,175,55,.1); font-weight: 700; }
.mzh-mobile-lang { padding: 16px 24px; }

/* ============================================================
   BUTTONS
============================================================ */
.mzh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .3px;
    transition: all var(--mzh-transition);
    position: relative;
    overflow: hidden;
}
.mzh-btn-gold {
    background: var(--mzh-gradient-gold);
    background-size: 200% auto;
    color: var(--mzh-black);
    box-shadow: 0 8px 24px var(--mzh-gold-glow);
}
.mzh-btn-gold:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 14px 32px var(--mzh-gold-glow); }

.mzh-btn-outline {
    border: 1.5px solid var(--mzh-gold);
    color: var(--mzh-gold);
    background: transparent;
}
.mzh-btn-outline:hover { background: var(--mzh-gold); color: var(--mzh-black); transform: translateY(-3px); }

.mzh-btn-gold-outline {
    border: 1.5px solid var(--mzh-gold-deep);
    color: var(--mzh-gold);
    background: rgba(212,175,55,.06);
}
.mzh-btn-gold-outline:hover { background: var(--mzh-gradient-gold); color: var(--mzh-black); border-color: transparent; }

.mzh-btn-whatsapp-large {
    background: linear-gradient(135deg, #1a9c4f, #25D366);
    color: #fff;
    width: 100%;
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.mzh-btn-whatsapp-large:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,211,102,.4); }
.mzh-btn-whatsapp-large svg { width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   HERO
============================================================ */
.mzh-hero {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}
.mzh-hero-glow {
    position: absolute;
    top: -20%;
    inset-inline-end: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--mzh-gold-glow) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.mzh-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}
@media (min-width: 992px) { .mzh-hero-inner { grid-template-columns: 1.2fr 0.8fr; } }

.mzh-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--mzh-gold);
    letter-spacing: 1px;
    margin-bottom: 24px;
    background: rgba(212,175,55,.06);
}
.mzh-hero-title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.3;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--mzh-cream) 30%, var(--mzh-gold-light) 60%, var(--mzh-gold) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mzh-hero-desc {
    font-size: 17px;
    color: var(--mzh-text-muted);
    max-width: 560px;
    margin-bottom: 36px;
}
.mzh-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.mzh-hero-logo-showcase { display: flex; justify-content: center; }
.mzh-hero-logo-ring {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
}
.mzh-hero-logo-ring::before,
.mzh-hero-logo-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.25);
}
.mzh-hero-logo-ring::after { inset: 24px; border-color: rgba(200,200,206,.2); animation: mzh-spin-slow 30s linear infinite reverse; }
.mzh-hero-logo-ring::before { animation: mzh-spin-slow 40s linear infinite; }
@keyframes mzh-spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.mzh-hero-logo-ring img { max-height: 200px; filter: drop-shadow(0 0 30px var(--mzh-gold-glow)); }

.mzh-hero-scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.mzh-hero-scroll-hint span {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(212,175,55,.4);
    border-radius: 14px;
    position: relative;
}
.mzh-hero-scroll-hint span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--mzh-gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: mzh-scroll-dot 1.8s ease infinite;
}
@keyframes mzh-scroll-dot {
    0% { top: 8px; opacity: 1; }
    70% { top: 22px; opacity: 0; }
    100% { top: 8px; opacity: 0; }
}

/* ============================================================
   SECTIONS COMMON
============================================================ */
.mzh-section { padding: 80px 0; }
.mzh-section-header { text-align: center; margin-bottom: 48px; }
.mzh-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mzh-gold);
    margin-bottom: 12px;
}
.mzh-section-title {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--mzh-cream);
}

/* ============================================================
   CATEGORIES GRID
============================================================ */
.mzh-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}
.mzh-category-card {
    position: relative;
    background: linear-gradient(160deg, var(--mzh-charcoal) 0%, var(--mzh-black-soft) 100%);
    border: 1px solid rgba(212,175,55,.15);
    border-radius: var(--mzh-radius-lg);
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: all var(--mzh-transition);
    overflow: hidden;
}
.mzh-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mzh-gradient-gold);
    opacity: 0;
    transition: opacity var(--mzh-transition);
    z-index: 0;
}
.mzh-category-card > * { position: relative; z-index: 1; }
.mzh-category-card:hover {
    transform: translateY(-8px);
    border-color: var(--mzh-gold);
    box-shadow: 0 20px 40px rgba(212,175,55,.15);
}
.mzh-category-card:hover .mzh-category-name { color: var(--mzh-black); }
.mzh-category-card:hover .mzh-category-sub-count { color: rgba(10,9,6,.7); }
.mzh-category-card:hover::before { opacity: 1; }
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-body,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-rim,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-lines,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-drop,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-neck,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-terminal,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-rays,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-wheel-big,
.mzh-category-card:hover .mzh-category-icon svg .mzh-icon-wheel-small { fill: var(--mzh-black); stroke: var(--mzh-black); }

.mzh-category-icon { width: 64px; height: 64px; }
.mzh-cat-icon-svg { width: 100%; height: 100%; }
.mzh-cat-icon-svg .mzh-icon-body,
.mzh-cat-icon-svg .mzh-icon-drop { fill: none; stroke: var(--mzh-gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: all var(--mzh-transition); }
.mzh-cat-icon-svg .mzh-icon-rim,
.mzh-cat-icon-svg .mzh-icon-wheel-big,
.mzh-cat-icon-svg .mzh-icon-wheel-small { fill: none; stroke: var(--mzh-silver); stroke-width: 2; transition: all var(--mzh-transition); }
.mzh-cat-icon-svg .mzh-icon-lines,
.mzh-cat-icon-svg .mzh-icon-rays { fill: none; stroke: var(--mzh-silver); stroke-width: 1.6; stroke-linecap: round; transition: all var(--mzh-transition); }
.mzh-cat-icon-svg .mzh-icon-shine { fill: var(--mzh-gold-light); opacity: .7; }
.mzh-cat-icon-svg .mzh-icon-terminal { fill: var(--mzh-silver); }
.mzh-cat-icon-svg .mzh-icon-neck { fill: none; stroke: var(--mzh-gold); stroke-width: 2.2; }
.mzh-icon-spin { animation: mzh-spin-slow 12s linear infinite; transform-origin: center; }
.mzh-category-card:hover .mzh-icon-spin { animation-duration: 3s; }

.mzh-category-name { font-size: 18px; font-weight: 800; color: var(--mzh-cream); transition: color var(--mzh-transition); }
.mzh-category-sub-count { font-size: 12px; color: var(--mzh-text-muted); transition: color var(--mzh-transition); }
.mzh-category-arrow {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.3);
    display: flex; align-items: center; justify-content: center;
    margin-top: 4px;
    transition: all var(--mzh-transition);
}
.mzh-category-arrow svg { width: 16px; height: 16px; fill: none; stroke: var(--mzh-gold); stroke-width: 2; }
body.lang-ar .mzh-category-arrow svg { transform: scaleX(-1); }
.mzh-category-card:hover .mzh-category-arrow { background: var(--mzh-black); border-color: var(--mzh-black); }
.mzh-category-card-sm { padding: 26px 18px; }

.mzh-no-content, .mzh-empty-state { text-align: center; color: var(--mzh-text-muted); padding: 40px; grid-column: 1/-1; }
.mzh-empty-state { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mzh-empty-icon { width: 60px; height: 60px; fill: none; stroke: var(--mzh-gold-deep); stroke-width: 1.5; opacity: .5; }

/* ============================================================
   WHY US
============================================================ */
.mzh-why-us-section { background: var(--mzh-black-soft); }
.mzh-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}
.mzh-why-card { text-align: center; padding: 20px; }
.mzh-why-icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.1), transparent);
    border: 1px solid rgba(212,175,55,.25);
    transition: all var(--mzh-transition);
}
.mzh-why-card:hover .mzh-why-icon { transform: rotate(-8deg) scale(1.08); box-shadow: 0 0 24px var(--mzh-gold-glow); }
.mzh-why-icon svg { width: 34px; height: 34px; fill: none; stroke: var(--mzh-gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mzh-why-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--mzh-cream); }
.mzh-why-card p { font-size: 14px; color: var(--mzh-text-muted); }

/* ============================================================
   ABOUT PREVIEW
============================================================ */
.mzh-about-preview-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
@media (min-width: 900px) { .mzh-about-preview-inner { grid-template-columns: 0.8fr 1.2fr; } }
.mzh-about-preview-visual { position: relative; display: flex; justify-content: center; }
.mzh-about-glow-circle {
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--mzh-gold-glow), transparent 70%);
    filter: blur(20px);
}
.mzh-about-preview-visual img { max-height: 220px; position: relative; filter: drop-shadow(0 0 20px var(--mzh-gold-glow)); }
.mzh-about-preview-content p { color: var(--mzh-text-muted); margin: 18px 0 28px; font-size: 16px; max-width: 560px; }

/* ============================================================
   PRODUCTS GRID
============================================================ */
.mzh-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.mzh-product-card {
    background: var(--mzh-charcoal);
    border: 1px solid rgba(212,175,55,.12);
    border-radius: var(--mzh-radius-lg);
    overflow: hidden;
    transition: all var(--mzh-transition);
}
.mzh-product-card:hover { transform: translateY(-6px); border-color: var(--mzh-gold); box-shadow: 0 18px 36px rgba(0,0,0,.4); }
.mzh-product-card-image { aspect-ratio: 1/1; overflow: hidden; background: var(--mzh-black-soft); }
.mzh-product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mzh-product-card:hover .mzh-product-card-image img { transform: scale(1.08); }
.mzh-product-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.mzh-product-placeholder svg { width: 40%; fill: none; stroke: rgba(212,175,55,.25); stroke-width: 1.5; }
.mzh-single-placeholder { aspect-ratio: 1/1; border-radius: var(--mzh-radius-lg); background: var(--mzh-black-soft); }

.mzh-product-card-body { padding: 18px 20px 20px; }
.mzh-product-cat-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--mzh-gold);
    background: rgba(212,175,55,.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.mzh-product-card-title { font-size: 16px; margin-bottom: 14px; line-height: 1.4; min-height: 44px; }
.mzh-product-card-title a:hover { color: var(--mzh-gold); }
.mzh-product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mzh-product-price { font-weight: 800; color: var(--mzh-silver-light); font-size: 14px; }
.mzh-product-order-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a9c4f, #25D366);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--mzh-transition);
}
.mzh-product-order-btn:hover { transform: scale(1.1) rotate(-8deg); box-shadow: 0 8px 20px rgba(37,211,102,.4); }
.mzh-product-order-btn svg { width: 18px; height: 18px; fill: #fff; }

.mzh-latest-products-section { background: var(--mzh-black-soft); }

/* ============================================================
   CTA
============================================================ */
.mzh-cta-section {
    position: relative;
    text-align: center;
    padding: 90px 0;
    background: linear-gradient(160deg, var(--mzh-charcoal), var(--mzh-black));
    overflow: hidden;
}
.mzh-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--mzh-gold-glow), transparent 70%);
    filter: blur(50px);
}
.mzh-cta-inner { position: relative; }
.mzh-cta-section h2 { font-size: clamp(26px,4vw,40px); margin-bottom: 16px; color: var(--mzh-cream); }
.mzh-cta-section p { color: var(--mzh-text-muted); max-width: 500px; margin: 0 auto 32px; }
.mzh-cta-section .mzh-hero-actions { justify-content: center; }

/* ============================================================
   BREADCRUMB
============================================================ */
.mzh-breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--mzh-text-muted);
    border-bottom: 1px solid rgba(212,175,55,.1);
}
.mzh-breadcrumb .mzh-container { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.mzh-breadcrumb a:hover { color: var(--mzh-gold); }
.mzh-breadcrumb-current { color: var(--mzh-gold); }

.mzh-archive-header { padding: 50px 0 30px; text-align: center; }
.mzh-archive-header-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mzh-archive-icon { width: 70px; height: 70px; }
.mzh-archive-title { font-size: clamp(26px,4vw,40px); }
.mzh-archive-desc { color: var(--mzh-text-muted); max-width: 600px; }

.mzh-subcategories-section { padding-top: 0; }

/* ============================================================
   SINGLE PRODUCT
============================================================ */
.mzh-single-product-section { padding: 60px 0 90px; }
.mzh-single-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 70px;
}
@media (min-width: 900px) { .mzh-single-product-grid { grid-template-columns: 1fr 1fr; } }
.mzh-single-product-image { border-radius: var(--mzh-radius-lg); width: 100%; aspect-ratio: 1/1; object-fit: cover; border: 1px solid rgba(212,175,55,.15); }
.mzh-single-product-title { font-size: clamp(24px,3vw,34px); margin: 14px 0; }
.mzh-single-sku { color: var(--mzh-text-muted); font-size: 13px; margin-bottom: 14px; }
.mzh-single-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 26px; padding: 16px 0; border-top: 1px solid rgba(212,175,55,.1); border-bottom: 1px solid rgba(212,175,55,.1); }
.mzh-single-price span { color: var(--mzh-text-muted); font-size: 14px; }
.mzh-single-price strong { font-size: 24px; color: var(--mzh-gold); }
.mzh-single-desc { margin-bottom: 30px; }
.mzh-single-desc h3 { font-size: 16px; margin-bottom: 10px; color: var(--mzh-silver-light); }
.mzh-single-desc div { color: var(--mzh-text-muted); }
.mzh-related-products { padding-top: 40px; border-top: 1px solid rgba(212,175,55,.1); }
.mzh-related-products .mzh-section-title { margin-bottom: 30px; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.mzh-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 900px) { .mzh-contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.mzh-contact-info-card, .mzh-contact-form-card {
    background: var(--mzh-charcoal);
    border: 1px solid rgba(212,175,55,.15);
    border-radius: var(--mzh-radius-lg);
    padding: 36px;
}
.mzh-contact-info-card h2, .mzh-contact-form-card h2 { font-size: 22px; margin-bottom: 26px; }
.mzh-contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.mzh-contact-info-item svg { width: 22px; height: 22px; fill: var(--mzh-gold); flex-shrink: 0; margin-top: 2px; }
.mzh-contact-info-item span { display: block; font-size: 12px; color: var(--mzh-text-muted); margin-bottom: 4px; }
.mzh-contact-info-item p { margin: 0; color: var(--mzh-cream); font-weight: 600; }

.mzh-form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .mzh-form-row { grid-template-columns: 1fr 1fr; } }
.mzh-form-group { margin-bottom: 18px; }
.mzh-form-group label { display: block; font-size: 13px; color: var(--mzh-silver-light); margin-bottom: 8px; font-weight: 700; }
.mzh-form-group input, .mzh-form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--mzh-black-soft);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 10px;
    color: var(--mzh-cream);
    font-family: inherit;
    font-size: 14px;
    transition: all var(--mzh-transition);
}
.mzh-form-group input:focus, .mzh-form-group textarea:focus { border-color: var(--mzh-gold); box-shadow: 0 0 0 3px var(--mzh-gold-glow); outline: none; }
.mzh-form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.mzh-form-actions .mzh-btn { flex: 1; min-width: 180px; }
.mzh-form-message { margin-top: 16px; padding: 12px 16px; border-radius: 10px; font-size: 14px; display: none; }
.mzh-form-message.success { display: block; background: rgba(37,211,102,.12); color: #4ade80; border: 1px solid rgba(37,211,102,.3); }
.mzh-form-message.error { display: block; background: rgba(239,68,68,.12); color: #f87171; border: 1px solid rgba(239,68,68,.3); }

/* ============================================================
   PAGE CONTENT (about, generic)
============================================================ */
.mzh-page-content { max-width: 820px; margin: 0 auto; color: var(--mzh-text-muted); font-size: 16px; }
.mzh-page-content h1, .mzh-page-content h2, .mzh-page-content h3 { color: var(--mzh-cream); margin: 30px 0 14px; }
.mzh-page-featured-img { border-radius: var(--mzh-radius-lg); overflow: hidden; margin-bottom: 30px; }
.mzh-page-content p { margin-bottom: 16px; }

/* ============================================================
   ABOUT US PAGE (صفحة من نحن المخصصة)
============================================================ */
.mzh-about-page-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 70px;
}
@media (min-width: 900px) { .mzh-about-page-inner { grid-template-columns: 0.75fr 1.25fr; } }

.mzh-about-page-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}
.mzh-about-page-visual .mzh-about-glow-circle {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--mzh-gold-glow), transparent 70%);
    filter: blur(30px);
}
.mzh-about-page-visual img,
.mzh-about-page-visual .mzh-logo-wrap img {
    position: relative;
    max-height: 260px;
    border-radius: var(--mzh-radius-lg);
    filter: drop-shadow(0 0 24px var(--mzh-gold-glow));
}
.mzh-about-page-img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }

.mzh-about-page-text { padding-top: 6px; }
.mzh-about-paragraph {
    color: var(--mzh-text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
}
.mzh-about-paragraph-lead {
    color: var(--mzh-cream);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.8;
    padding-inline-start: 20px;
    border-inline-start: 3px solid var(--mzh-gold);
}

.mzh-about-page-why { padding: 50px 0 20px; border-top: 1px solid rgba(212,175,55,.1); }
.mzh-about-page-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; padding-top: 30px; }

@media (max-width: 600px) {
    .mzh-about-page-visual { min-height: 180px; }
    .mzh-about-paragraph-lead { font-size: 17px; }
}

/* ============================================================
   PAGINATION
============================================================ */
.mzh-pagination { display: flex; justify-content: center; margin-top: 50px; }
.mzh-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 12px; margin: 0 4px;
    border-radius: 10px; border: 1px solid rgba(212,175,55,.2);
    color: var(--mzh-cream); font-weight: 700; transition: all var(--mzh-transition);
}
.mzh-pagination .page-numbers.current, .mzh-pagination .page-numbers:hover { background: var(--mzh-gradient-gold); color: var(--mzh-black); border-color: transparent; }

/* ============================================================
   404
============================================================ */
.mzh-404-inner { text-align: center; padding: 60px 0; }
.mzh-404-icon { width: 80px; margin: 0 auto 24px; }
.mzh-404-icon svg { fill: none; stroke: var(--mzh-gold-deep); stroke-width: 1.5; }
.mzh-404-section h1 { font-size: 80px; background: var(--mzh-gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mzh-404-section p { color: var(--mzh-text-muted); margin-bottom: 30px; font-size: 18px; }

/* ============================================================
   FOOTER
============================================================ */
.mzh-footer { background: var(--mzh-black-soft); border-top: 1px solid rgba(212,175,55,.15); margin-top: 40px; }
.mzh-footer-top { padding: 70px 0 40px; }
.mzh-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 700px) { .mzh-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .mzh-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.mzh-footer-logo img { max-height: 50px; margin-bottom: 16px; }
.mzh-footer-company-name { font-weight: 800; font-size: 18px; color: var(--mzh-gold); margin-bottom: 12px; }
.mzh-footer-desc { color: var(--mzh-text-muted); font-size: 14px; margin-bottom: 20px; max-width: 320px; }
.mzh-footer-social { margin-top: 10px; }
.mzh-footer-title { font-size: 16px; color: var(--mzh-cream); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.mzh-footer-title::after { content: ''; position: absolute; bottom: 0; inset-inline-start: 0; width: 34px; height: 2px; background: var(--mzh-gradient-gold); }
.mzh-footer-links li { margin-bottom: 12px; }
.mzh-footer-links a { color: var(--mzh-text-muted); font-size: 14px; transition: all var(--mzh-transition); }
.mzh-footer-links a:hover { color: var(--mzh-gold); padding-inline-start: 4px; }
.mzh-footer-contact-list li { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; color: var(--mzh-text-muted); font-size: 14px; }
.mzh-footer-contact-list svg { width: 16px; height: 16px; fill: var(--mzh-gold); flex-shrink: 0; margin-top: 3px; }
.mzh-footer-contact-list a:hover { color: var(--mzh-gold); }
.mzh-btn-whatsapp-footer {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #1a9c4f, #25D366);
    color: #fff; padding: 12px 24px; border-radius: 30px; font-weight: 700; font-size: 14px;
    margin-top: 10px; transition: all var(--mzh-transition);
}
.mzh-btn-whatsapp-footer:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.mzh-btn-whatsapp-footer svg { width: 18px; height: 18px; fill: currentColor; }

.mzh-footer-bottom { border-top: 1px solid rgba(212,175,55,.1); padding: 20px 0; }
.mzh-footer-bottom-inner { text-align: center; font-size: 13px; color: var(--mzh-text-muted); }

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.mzh-floating-whatsapp {
    position: fixed;
    bottom: 26px;
    inset-inline-end: 26px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a9c4f, #25D366);
    display: flex; align-items: center; justify-content: center;
    z-index: 200;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
    transition: transform var(--mzh-transition);
}
.mzh-floating-whatsapp:hover { transform: scale(1.1); }
.mzh-floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 2; }
.mzh-whatsapp-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: #25D366;
    animation: mzh-pulse 2s ease-out infinite;
}
@keyframes mzh-pulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.7); opacity: 0; }
}

.mzh-scroll-top {
    position: fixed;
    bottom: 26px;
    inset-inline-start: 26px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--mzh-charcoal);
    border: 1px solid rgba(212,175,55,.3);
    display: flex; align-items: center; justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--mzh-transition);
}
.mzh-scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mzh-scroll-top:hover { background: var(--mzh-gradient-gold); border-color: transparent; }
.mzh-scroll-top svg { width: 20px; height: 20px; fill: var(--mzh-gold); }
.mzh-scroll-top:hover svg { fill: var(--mzh-black); }

/* ============================================================
   REVEAL ON SCROLL
============================================================ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: all .7s cubic-bezier(.25,.8,.25,1); }
[data-aos].mzh-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE FINE-TUNES
============================================================ */
@media (max-width: 600px) {
    .mzh-hero { padding: 50px 0 60px; }
    .mzh-section { padding: 56px 0; }
    .mzh-hero-logo-ring { width: 220px; height: 220px; }
    .mzh-logo-text-hero { font-size: 44px; }
    .mzh-footer-top { padding: 50px 0 30px; }
}
