:root {
    --primary-color: #121e31;
    --secondary-color: #ff6600;
    --background-color: #f8f9fa;
    --text-color: #333333;
}

body { background: var(--background-color); color: var(--text-color); }
.btn { background: var(--primary-color); }
.btn:hover { background: var(--secondary-color); }
.header { background: var(--background-color); }
.product-card { background: white; }