/* CSS Variables */
:root {
	/* Colors */
	--main-red: #ff6f6f;
	--text-black: #222;
	--text-gray: #333;
	--border-gray: #ccc;
	--bg-beige: #f1f0e8;
	--bg-gray: #f0f0f0;
	--bg-light: #f5f5f5;

	/* Layout */
	--max-width: 1600px;
	--content-width: 1200px;
	--sidebar-width: 260px;

	/* Transitions */
	--transition: 0.3s;
}