/* ═══════════════════════════════════════════════════════════════════════════
   THUMB TOE — Design System
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
	/* ── Brand (use sparingly — accents & CTAs only) ────────────────────── */
	--tt-green:       #1DA94E;
	--tt-green-deep:  #178A3F;
	--tt-green-light: #F0FAF4;
	--tt-pink:        #F48FAD;
	--tt-pink-deep:   #D9607E;

	/* ── Supporting (product colour labels, small chips) ────────────────── */
	--tt-yellow:      #FFD93D;
	--tt-teal:        #4ECDC4;
	--tt-mint:        #88D498;
	--tt-sky:         #74C0E8;
	--tt-navy:        #2855B8;
	--tt-lavender:    #9B8FD8;
	--tt-coral:       #E85040;

	/* ── Neutrals (primary palette for the UI) ──────────────────────────── */
	--tt-ink:         #111111;
	--tt-sub:         #555555;
	--tt-muted:       #999999;
	--tt-border:      rgba(0, 0, 0, 0.08);
	--tt-border-dark: rgba(0, 0, 0, 0.18);
	--tt-surface:     #F7F7F5;
	--tt-white:       #FFFFFF;

	/* ── Typography ─────────────────────────────────────────────────────── */
	--tt-font:        'DM Sans', 'Helvetica Neue', Arial, sans-serif;

	/* ── Layout ─────────────────────────────────────────────────────────── */
	--tt-shell:       1240px;
	--tt-section:     clamp(4rem, 8vw, 7rem);
	--tt-gap:         1.5rem;

	/* ── Radius ─────────────────────────────────────────────────────────── */
	--tt-radius-sm:   0.5rem;
	--tt-radius-md:   1rem;
	--tt-radius-lg:   1.75rem;
	--tt-radius-pill: 999px;

	/* ── Shadows ────────────────────────────────────────────────────────── */
	--tt-shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
	--tt-shadow-md:   0 4px 20px rgba(0,0,0,0.09);
	--tt-shadow-lg:   0 12px 40px rgba(0,0,0,0.12);

	/* ── Ease ───────────────────────────────────────────────────────────── */
	--tt-ease:        0.2s ease;
}

:root {
	--theme-font-family: var(--tt-font) !important;
	--theme-headings-font-family: var(--tt-font) !important;
	--theme-font: var(--tt-font) !important;
	--headings-font-family: var(--tt-font) !important;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.product__title,
.woocommerce-loop-product__title,
.wp-block-heading {
	font-family: var(--tt-font) !important;
}

body, button, input, select, textarea { font-family: var(--tt-font) !important; color: var(--tt-ink); background: var(--tt-white); }

/* ── Shell ───────────────────────────────────────────────────────────────── */
.tt-shell {
	width: min(calc(100% - 2.5rem), var(--tt-shell));
	margin-inline: auto;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */
.tt-eyebrow {
	display: inline-block;
	margin: 0 0 0.65rem;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--tt-muted);
}
.tt-eyebrow--accent { color: var(--tt-green); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.tt-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.78rem 1.6rem;
	border-radius: var(--tt-radius-pill);
	border: 1.5px solid transparent;
	font-family: var(--tt-font);
	font-size: 0.875rem;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: background var(--tt-ease), color var(--tt-ease), border-color var(--tt-ease), transform var(--tt-ease), box-shadow var(--tt-ease);
}
.tt-btn:hover { transform: translateY(-1px); }

.tt-btn--primary {
	background: var(--tt-green);
	color: #fff;
	box-shadow: 0 3px 12px rgba(29,169,78,0.28);
}
.tt-btn--primary:hover { background: var(--tt-green-deep); color: #fff; box-shadow: 0 5px 18px rgba(29,169,78,0.38); }

/* Shop Now — stands out above all other buttons */
.tt-btn--shop {
	background: var(--tt-green);
	color: #fff;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 4px 20px rgba(29,169,78,0.45);
}
.tt-btn--shop:hover {
	background: var(--tt-green-deep);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 32px rgba(29,169,78,0.55);
}

.tt-btn--dark {
	background: var(--tt-ink);
	color: #fff;
}
.tt-btn--dark:hover { background: #333; color: #fff; }

.tt-btn--outline {
	background: transparent;
	border-color: var(--tt-border-dark);
	color: var(--tt-ink);
}
.tt-btn--outline:hover { background: var(--tt-ink); color: #fff; border-color: var(--tt-ink); }

.tt-btn--ghost {
	background: transparent;
	color: var(--tt-ink);
	padding-inline: 0;
	border: none;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.tt-btn--ghost:hover { color: var(--tt-green); transform: none; }

.tt-btn--sm { padding: 0.52rem 1.1rem; font-size: 0.8rem; }
.tt-btn--lg { padding: 0.95rem 2rem; font-size: 0.95rem; }

/* ── Section spacing ─────────────────────────────────────────────────────── */
.tt-section { padding: var(--tt-section) 0; }
.tt-section--surface { background: var(--tt-surface); }
.tt-section--dark    { background: var(--tt-ink); color: #fff; }

/* ── Section header ──────────────────────────────────────────────────────── */
.tt-section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.tt-section-head--center { text-align: center; }

.tt-section-head h2 {
	font-size: clamp(1.9rem, 3.5vw, 2.8rem);
	font-weight: 900;
	line-height: 1.1;
	margin: 0 0 0.55rem;
	letter-spacing: -0.035em;
}

.tt-section-head p {
	font-size: 0.975rem;
	color: var(--tt-sub);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.65;
}

/* ── Stars ───────────────────────────────────────────────────────────────── */
.tt-stars { display: flex; gap: 0.05rem; color: #F4C542; font-size: 0.9rem; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
	.tt-shell { width: min(calc(100% - 1.5rem), var(--tt-shell)); }
}
