:root {
    --white: #f4f2f0;
    --light: #e8e5e2;
    --primary: #ff6f61;
    --font-family: 'Inter', sans-serif;
    --font-weight: 400;
    --line-height: 1.5;
    --font-size: 17px;
}

/* -- ZCMS GENERATED -- */

body {
    font-family: var(--font-family) !important;
    font-weight: var(--font-weight) !important;
    font-size: var(--font-size) !important;
    line-height: var(--line-height) !important;
}

/* -- white -- */
.text-white { color: var(--white) !important; }
.bg-white { background-color: var(--white) !important; }

/* -- light -- */
.text-light { color: var(--light) !important; }
.bg-light { background-color: var(--light) !important; }

/* -- primary -- */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }

