/* === CSS VARIABLES === */
:root {
    --primary-black: #252525;
    --primary-white: #ffffff;
    --primary-orange: #f07b26;
    --dark-orange: #bc570d;
    --light-gray: #f8f8f8;
    --text-light: #ddd;
    --text-muted: #aaa;
    --border-color: #ddd;
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}