/**
 * Banooyi design tokens.
 *
 * Feminine, elegant brand feel: soft, warm, minimal, rounded, gentle shadows.
 * These CSS custom properties are the single source of truth for the palette
 * and are consumed by the theme and by plugin-rendered panels/widgets.
 */

:root {
	/* Palette */
	--bg: #FBF7F4;            /* warm cream, page background */
	--surface: #FFFFFF;       /* cards */
	--primary: #C99CA0;       /* dusty rose */
	--primary-deep: #9E6B70;  /* buttons / hover */
	--accent: #D4AF7A;        /* soft gold */
	--text: #3D2E33;          /* soft black (deep plum) */
	--text-soft: #8A7479;     /* secondary text */
	--border: #EFE4E1;
	--success: #8BA888;       /* sage green */
	--danger: #C77B8B;        /* soft red / sale */

	/* Shape & depth */
	--radius: 16px;
	--radius-sm: 10px;
	--radius-pill: 999px;
	--shadow: 0 8px 30px rgba(61, 46, 51, .08);
	--shadow-sm: 0 2px 10px rgba(61, 46, 51, .06);

	/* Typography */
	--font-body: "Vazirmatn", "Tahoma", system-ui, sans-serif;
	--font-head: "Estedad", "Vazirmatn", "Tahoma", sans-serif;

	/* Spacing scale */
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 24px;
	--space-6: 32px;
	--space-8: 48px;

	/* Layout */
	--container: 1120px;
}
