/* ===== CurvCraft — Global Brand Styles =====
   Fonts: Cormorant Garamond (headings) + Helvetica Now / Helvetica Neue (body)
   Color palette from brand guide */

/* Google Fonts — Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
	/* ---- Color palette: Primary ---- */
	--cc-beige:       #f6f1eb;
	--cc-warm-white:  #fffcf9;
	--cc-sand:        #edc9af;
	--cc-beige-deep:  #f5f0dc;
	--cc-charcoal:    #161e22;

	/* ---- Color palette: Accent ---- */
	--cc-accent-gold:  #ffd495;
	--cc-bronze:       #c7b6a3;

	/* ---- Semantic aliases ---- */
	--cc-ink:         #161e22;
	--cc-ink-soft:    #393f45;
	--cc-paper:       #fffcf9;
	--cc-ivory:       #f6f1eb;
	--cc-ivory-deep:  #f5f0dc;
	--cc-muted:       #6f757a;
	--cc-line:        #e4ddd6;

	/* ---- Typography ---- */
	--cc-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--cc-sans:  'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---- Global heading reset ---- */
body {
	font-family: var(--cc-sans);
	color: var(--cc-ink);
	background: var(--cc-paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--cc-serif);
	font-weight: 400;
	color: var(--cc-ink);
	line-height: 1.15;
}

/* ---- Links ---- */
a { color: var(--cc-ink); }

/* ---- Buttons ---- */
button, input[type="submit"], .button, .button.alt {
	font-family: var(--cc-sans);
}

/* ---- WooCommerce overrides for all pages ---- */
.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce h4,
.woocommerce h5,
.woocommerce h6 {
	font-family: var(--cc-serif);
}

.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product h3 a {
	font-family: var(--cc-serif);
}

.woocommerce .product_title {
	font-family: var(--cc-serif);
}

.woocommerce-page .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-result-count {
	font-family: var(--cc-sans);
}
