:root {
    /* Color Palette */
    --me-bg-primary: #FAF9F7;
    --me-bg-secondary: #F4F1EC;
    --me-bg-card: #F1EEE9;
    --me-bg-white: #FFFFFF;
    
    --me-text-primary: #1D1A17;
    --me-text-secondary: #6E6963;
    --me-text-muted: #A39E98;
    --me-text-white: #FFFFFF;
    
    --me-border-color: #E2DED8;
    --me-border-light: #ECEAE6;
    
    --me-btn-bg: #211D19;
    --me-btn-bg-hover: #3A3530;
    
    /* Accents */
    --me-accent-gold: #C79418;
    --me-accent-sale: #A4473F;
    --me-accent-success: #356B4E;
    --me-accent-soft: #B8A68F;
    --me-wishlist-red: #D32F2F;
    
    /* Typography */
    --me-font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --me-font-body: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    
    /* Spacing & Layout */
    --me-container-width: 1280px;
    --me-container-padding: 24px;
    --me-header-height-desktop: 135px;
    --me-header-height-sticky: 80px;
    --me-header-height-mobile: 70px;
    
    /* Transitions */
    --me-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --me-transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --me-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --me-radius-sm: 4px;
    --me-radius-md: 8px;
    --me-radius-lg: 12px;
    --me-radius-round: 50%;
    
    /* Shadows */
    --me-shadow-sm: 0 2px 4px rgba(29, 26, 23, 0.04);
    --me-shadow-md: 0 4px 12px rgba(29, 26, 23, 0.06);
    --me-shadow-lg: 0 8px 24px rgba(29, 26, 23, 0.08);
    
    /* Z-Index Scale */
    --me-zi-dropdown: 100;
    --me-zi-sticky: 500;
    --me-zi-mobile-menu: 1000;
    --me-zi-modal: 2000;
    --me-zi-toast: 3000;
}
