:root {
    /* Fonts */
    --font-body: "Inter", sans-serif; /* Deafult Font Family */
    --font-headings: "Inter", sans-serif; /* Headings Font Family */
    --font-btns: "Inter", sans-serif; /* Buttons Font Family */
    --text-color: #171717; /* Default Font Color */
    --text-link: #2E362E; /* Text Link Color */
    --text-muted: #6c757d; /* Muted Text Color */
    --text-light: #f1f1f1; /* Light Text Color */
    --text-dark: #333; /* Dark Text Color */
    /* Brand Colors */
    --primary: #1c3331; /* Primary Color */
    --secondary: #d9d1c6; /* Secondary Color */
    --black: #000; /* Black Color */
    --white: #fff; /* White Color */
    --dark-gray: #6c757d; /* Dark Gray Color */
    --gray: #d1d1d1; /* Gray Color */
    --light-gray: #f1f1f1; /* Light Gray Color */
    --success: #28a745; /* Success Color */
    --warning: #ffc107; /* Warning Color */
    --error: #dc3545; /* Error Color */
    /* Navigation Colors */
    --top-nav: #171717; /* Top Nav Background Color */
    --top-nav-text: #ffffff; /* Top Nav Text Color */
    --main-nav: #1c3331; /* Main Nav Background Color */
    --main-nav-text: #d9d1c6; /* Main Nav Text Color */
    --main-nav-hover: #D9D1C6; /* Main Nav Hover Background Color */
    --main-nav-dropdown: var(--dark-gray); /* Dropdown Background Color */
    --main-nav-dropdown-text: var(--text-light); /* Dropdown Text Color */
    --main-nav-dropdown-hover: var(--black); /* Dropdown Hover Text Color */
    --cart-bubble-color: var(--secondary); /* Cart Qty Background Color */
    /* Footer Colors */
    --footer: #1C3331; /* Footer Background Color */
    --footer-text: #D9D1C6; /* Footer Text Color */
    --footer-hover: var(--text-light); /* Footer Text Hover */
    --bottom-footer: #171717; /* Bottom Footer Background */
    --bottom-footer-text: #ffffff; /* Bottom Footer Text */
    /* Button Colors */
    --primary-btn: #1C3331; /* Primary Button Color */
    --primary-btn-text: #D9D1C6; /* Primary Button Text Color */
    --primary-btn-hover: #D9D1C6; /* Primary Button Hover Color */
    --secondary-btn: #D9D1C6; /* Secondary Button Color */
    --secondary-btn-text: #1C3331; /* Secondary Button Text Color */
    --secondary-btn-hover: #c3b6a5; /* Secondary Button Hover Color */
}
