/* ==========================================================================
   Naughty Butter — Design Tokens
   所有变量统一 --nb-* 前缀，避免与父主题 / WordPress / 插件冲突。
   ========================================================================== */

.nb-theme {
	/* Colors */
	--nb-brand-cream:     #FAF6F1;
	--nb-brand-butter:    #F5E6C8;
	--nb-brand-warm:      #E8C9A0;
	--nb-brand-cocoa:     #6B4E3D;
	--nb-brand-espresso:  #3D2B1F;
	--nb-neutral-white:   #FFFFFF;
	--nb-neutral-soft:    #F0EDE8;
	--nb-neutral-grey:    #A29B93;
	--nb-accent-blush:    #E8B4A2;
	--nb-accent-sage:     #C5D1C0;
	--nb-status-success:  #8DB48E;
	--nb-status-error:    #D4756A;
	--nb-border-light:    #E8E3DC;

	/* Typography */
	--nb-font-feature: 'Cherry Bomb One', cursive;
	--nb-font-sans:    'Inter', 'Noto Sans SC', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

	/* Spacing */
	--nb-space-xs:  4px;
	--nb-space-sm:  8px;
	--nb-space-md:  16px;
	--nb-space-lg:  24px;
	--nb-space-xl:  40px;
	--nb-space-2xl: 64px;

	/* Radius */
	--nb-radius-sm:   6px;
	--nb-radius-md:   12px;
	--nb-radius-lg:   20px;
	--nb-radius-full: 999px;

	/* Shadow */
	--nb-shadow-soft:   0 2px 8px rgba(107, 78, 61, 0.06);
	--nb-shadow-medium: 0 4px 16px rgba(107, 78, 61, 0.10);

	/* Motion */
	--nb-duration-fast:   150ms;
	--nb-duration-normal: 250ms;
	--nb-duration-slow:   400ms;
	--nb-easing-default:  cubic-bezier(0.25, 0.1, 0.25, 1);
	--nb-easing-gentle:   cubic-bezier(0.4, 0, 0.2, 1);
}
