/* ==========================================================================
   MYMALLBEAUTY THEME - CSS VARIABLES & BASE
   ========================================================================== */
:root {
    /* Brand Colors */
    --mmb-primary: #23bac5;
    --mmb-primary-light: #4dd4de;
    --mmb-primary-dark: #1a9ba5;
    --mmb-primary-50: #eefbfc;
    --mmb-primary-100: #d5f4f7;
    --mmb-primary-rgb: 35, 186, 197;

    /* Neutrals */
    --mmb-white: #ffffff;
    --mmb-black: #1a1a1a;
    --mmb-bg: #ffffff;
    --mmb-bg-light: #f8fafc;
    --mmb-text: #333333;
    --mmb-text-muted: #6b7280;
    --mmb-text-light: #9ca3af;
    --mmb-border: #e5e7eb;
    --mmb-border-light: #f3f4f6;

    /* Typography */
    --mmb-font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --mmb-text-xs: 0.75rem;
    --mmb-text-sm: 0.875rem;
    --mmb-text-base: 1rem;
    --mmb-text-lg: 1.125rem;
    --mmb-text-xl: 1.25rem;
    --mmb-text-2xl: 1.5rem;

    /* Spacing */
    --mmb-radius-sm: 4px;
    --mmb-radius: 8px;
    --mmb-radius-lg: 12px;
    --mmb-radius-full: 9999px;

    /* Shadows */
    --mmb-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --mmb-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --mmb-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --mmb-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --mmb-shadow-primary: 0 4px 14px rgba(var(--mmb-primary-rgb), 0.25);

    /* Transitions */
    --mmb-transition: 0.2s ease;
    --mmb-transition-slow: 0.3s ease;

    /* Layout */
    --mmb-container: 1400px;
    --mmb-header-height: 140px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--mmb-font);
    color: var(--mmb-text);
    background: var(--mmb-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================================================
   CONTAINER
   ========================================================================== */
.mmb-container {
    width: 100%;
    max-width: var(--mmb-container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .mmb-container {
        padding: 0 32px;
    }
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.mmb-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 40;
    width: 44px;
    height: 44px;
    background: var(--mmb-primary);
    color: var(--mmb-white);
    border: none;
    border-radius: var(--mmb-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--mmb-transition-slow);
    box-shadow: var(--mmb-shadow-primary);
}

.mmb-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mmb-scroll-top:hover {
    background: var(--mmb-primary-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   BODY PREVENT SCROLL (menu open)
   ========================================================================== */
body.mmb-menu-open {
    overflow: hidden;
}
