/* ==========================================================================
   Wiilove v2 — Shared base layer (single source of truth).

   Loaded on every v2 page (home / about / contact / oem / material).
   Page-specific styles live in:
     - home-v2.css     (hero landing, distinct design system)
     - about-v2.css    (about page)
     - contact-v2.css  (contact page)
     - oem-v2.css      (oem-odm page)
     - pvc-v2.css      (tpe + pvc product categories)

   Sections in this file:
     1. Body-class full-bleed overrides (all 5 pages)
     2. Design tokens (unified for 4 v2 pages; home overrides)
     3. Reset & globals
     4. Layout helpers (section padding, .v2-wrap)
     5. Section heading (kicker, h2, p) — shared by 4 v2 pages
     6. Buttons (unified, scoped per page prefix)
     7. CTA band (unified, scoped per page prefix)
     8. Reveal animation

   Selector convention: when a rule applies to a single class on each
   page (e.g. `.av2-kicker`, `.cv2-kicker`, etc.), we list all 5 in
   a single rule so the design system is centralised here.
   ========================================================================== */


/* ==========================================================================
   1. Body-class full-bleed overrides
   Break out of GeneratePress 1100px .grid-container so v2 content
   spans the viewport, while keeping the header at 1200px max-width.
   ========================================================================== */

.home-v2-page #page.site.grid-container,
.about-v2-page #page.site.grid-container,
.contact-v2-page #page.site.grid-container,
.oem-v2-page #page.site.grid-container,
.pvc-v2-page #page.site.grid-container,
.single-product-v2-page #page.site.grid-container,
.home-v2-page .site-content,
.about-v2-page .site-content,
.contact-v2-page .site-content,
.oem-v2-page .site-content,
.pvc-v2-page .site-content,
.single-product-v2-page .site-content,
.home-v2-page .content-area,
.about-v2-page .content-area,
.contact-v2-page .content-area,
.oem-v2-page .content-area,
.pvc-v2-page .content-area,
.single-product-v2-page .content-area {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.home-v2-page .site-header .inside-header,
.about-v2-page .site-header .inside-header,
.contact-v2-page .site-header .inside-header,
.oem-v2-page .site-header .inside-header,
.pvc-v2-page .site-header .inside-header,
.single-product-v2-page .site-header .inside-header,
.home-v2-page .site-header .inside-navigation,
.about-v2-page .site-header .inside-navigation,
.contact-v2-page .site-header .inside-navigation,
.oem-v2-page .site-header .inside-navigation,
.pvc-v2-page .site-header .inside-navigation,
.single-product-v2-page .site-header .inside-navigation {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.home-v2-page .site-footer,
.about-v2-page .site-footer,
.contact-v2-page .site-footer,
.oem-v2-page .site-footer,
.pvc-v2-page .site-footer,
.single-product-v2-page .site-footer { border: 0; }


/* ==========================================================================
   2. Design tokens — unified for about / contact / oem / material
   Home keeps its own design system (--primary, --gradient-*).
   ========================================================================== */

.about-v2,
.contact-v2,
.oem-v2,
.mat-v2 {
	--ink:        #161616;
	--ink-2:      #0a0a0a;
	--ink-3:      #1a1a1a;
	--paper:      #efefef;
	--card:       #ffffff;
	--line:       #e5e5ea;
	--line-2:     #eeeeee;
	--line-dark:  rgba(255, 255, 255, .08);
	--muted:      #6b6b74;
	--muted-2:    #9a9aa3;
	--accent:     #c42f2f;
	--accent-2:   #e04848;
	--tile:       #fafafa;
	--radius:     12px;
	--max:        1200px;
	width: 100%;
}


/* ==========================================================================
   3. Reset & globals
   ========================================================================== */

.about-v2 *,
.about-v2 *::before,
.about-v2 *::after,
.contact-v2 *,
.contact-v2 *::before,
.contact-v2 *::after,
.oem-v2 *,
.oem-v2 *::before,
.oem-v2 *::after,
.mat-v2 *,
.mat-v2 *::before,
.mat-v2 *::after { box-sizing: border-box; }

.about-v2 img,
.contact-v2 img,
.oem-v2 img,
.mat-v2 img { max-width: 100%; display: block; }


/* ==========================================================================
   4. Layout helpers
   ========================================================================== */

.about-v2 section,
.contact-v2 section,
.oem-v2 section,
.mat-v2 section { padding: 80px 0; }

.about-v2 .av2-wrap,
.contact-v2 .cv2-wrap,
.oem-v2 .ov2-wrap,
.mat-v2 .mv2-wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}


/* ==========================================================================
   5. Section heading (kicker, h2, p)
   ========================================================================== */

.about-v2 .av2-section-head,
.contact-v2 .cv2-section-head,
.oem-v2 .ov2-section-head { max-width: 820px; margin-bottom: 60px; }

.about-v2 .av2-kicker,
.contact-v2 .cv2-kicker,
.oem-v2 .ov2-kicker,
.mat-v2 .mv2-kicker {
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-v2 .av2-kicker::before,
.contact-v2 .cv2-kicker::before,
.oem-v2 .ov2-kicker::before,
.mat-v2 .mv2-kicker::before {
	content: "";
	width: 36px;
	height: 1px;
	background: var(--accent);
	display: block;
	flex: 0 0 36px;
}

.about-v2 .av2-section-head h2,
.contact-v2 .cv2-section-head h2,
.oem-v2 .ov2-section-head h2,
.mat-v2 .mv2-section-head h2 {
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 250;
	line-height: 1.1;
	letter-spacing: -.015em;
	color: var(--ink);
	margin-bottom: 22px;
}

.about-v2 .av2-section-head p,
.contact-v2 .cv2-section-head p,
.oem-v2 .ov2-section-head p,
.mat-v2 .mv2-section-head p {
	color: var(--muted);
	font-size: 16px;
	max-width: 640px;
	font-weight: 300;
}


/* ==========================================================================
   6. Buttons (unified, scoped per page prefix)
   Spec: padding 20 / 28, min-width 280, radius 4, font 15, weight 400
   ========================================================================== */

.about-v2 .av2-btn,
.about-v2 .av2-btn-primary,
.about-v2 .av2-btn-ghost,
.contact-v2 .cv2-btn,
.contact-v2 .cv2-btn-primary,
.contact-v2 .cv2-btn-ghost,
.oem-v2 .ov2-btn,
.oem-v2 .ov2-btn-primary,
.oem-v2 .ov2-btn-ghost,
.mat-v2 .mv2-btn,
.mat-v2 .mv2-btn-primary,
.mat-v2 .mv2-btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 20px 28px;
	min-width: 280px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .01em;
	transition: all .25s;
	border: 1px solid transparent;
	text-decoration: none;
	cursor: pointer;
}

.about-v2 .av2-btn-primary,
.contact-v2 .cv2-btn-primary,
.oem-v2 .ov2-btn-primary,
.mat-v2 .mv2-btn-primary {
	background: var(--accent);
	color: #fff;
}
.about-v2 .av2-btn-primary:hover,
.contact-v2 .cv2-btn-primary:hover,
.oem-v2 .ov2-btn-primary:hover,
.mat-v2 .mv2-btn-primary:hover {
	background: var(--accent-2);
	transform: translateY(-2px);
	color: #fff;
}

.about-v2 .av2-btn-ghost,
.contact-v2 .cv2-btn-ghost,
.oem-v2 .ov2-btn-ghost,
.mat-v2 .mv2-btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .25);
}
.about-v2 .av2-btn-ghost:hover,
.contact-v2 .cv2-btn-ghost:hover,
.oem-v2 .ov2-btn-ghost:hover,
.mat-v2 .mv2-btn-ghost:hover {
	background: #fff;
	color: var(--ink);
	border-color: #fff;
}

.about-v2 .av2-arrow,
.contact-v2 .cv2-arrow,
.oem-v2 .ov2-arrow,
.mat-v2 .mv2-arrow {
	font-size: 18px;
	transition: transform .25s;
}
.about-v2 .av2-btn:hover .av2-arrow,
.about-v2 .av2-btn-ghost:hover .av2-arrow,
.contact-v2 .cv2-btn:hover .cv2-arrow,
.contact-v2 .cv2-btn-ghost:hover .cv2-arrow,
.oem-v2 .ov2-btn:hover .ov2-arrow,
.oem-v2 .ov2-btn-ghost:hover .ov2-arrow,
.mat-v2 .mv2-btn:hover .mv2-arrow,
.mat-v2 .mv2-btn-ghost:hover .mv2-arrow { transform: translateX(4px); }


/* ==========================================================================
   7. CTA band (unified, scoped per page prefix)
   Spec: dark band 88px, red gradient 15% 50% alpha .18, h2 28-44px,
   p 15.5 / .65, gap 12
   ========================================================================== */

.about-v2 .av2-cta-band,
.contact-v2 .cv2-cta-band,
.oem-v2 .ov2-cta-band,
.mat-v2 .mv2-cta-band {
	background: var(--ink-2);
	color: #fff;
	padding: 88px 0;
	position: relative;
	overflow: hidden;
}

.about-v2 .av2-cta-band::before,
.contact-v2 .cv2-cta-band::before,
.oem-v2 .ov2-cta-band::before,
.mat-v2 .mv2-cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 50%, rgba(196, 47, 47, .18), transparent 60%);
}

.about-v2 .av2-cta-inner,
.contact-v2 .cv2-cta-inner,
.oem-v2 .ov2-cta-inner,
.mat-v2 .mv2-cta-inner {
	position: relative;
	z-index: 1;
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 0 24px;
}

.about-v2 .av2-cta-band .av2-kicker,
.contact-v2 .cv2-cta-band .cv2-kicker,
.oem-v2 .ov2-cta-band .ov2-kicker,
.mat-v2 .mv2-cta-band .mv2-kicker {
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--accent-2);
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.about-v2 .av2-cta-band .av2-kicker::before,
.contact-v2 .cv2-cta-band .cv2-kicker::before,
.oem-v2 .ov2-cta-band .ov2-kicker::before,
.mat-v2 .mv2-cta-band .mv2-kicker::before {
	content: "";
	width: 36px;
	height: 1px;
	background: var(--accent-2);
	flex: 0 0 36px;
}

.about-v2 .av2-cta-band h2,
.contact-v2 .cv2-cta-band h2,
.oem-v2 .ov2-cta-band h2,
.mat-v2 .mv2-cta-band h2 {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 250;
	line-height: 1.2;
	letter-spacing: -.015em;
	margin-bottom: 16px;
	color: #fff;
}
.about-v2 .av2-cta-band h2 em,
.contact-v2 .cv2-cta-band h2 em,
.oem-v2 .ov2-cta-band h2 em,
.mat-v2 .mv2-cta-band h2 em {
	font-style: normal;
	color: var(--accent-2);
	font-weight: 300;
}
.about-v2 .av2-cta-band p,
.contact-v2 .cv2-cta-band p,
.oem-v2 .ov2-cta-band p,
.mat-v2 .mv2-cta-band p {
	color: rgba(255, 255, 255, .65);
	font-size: 15.5px;
	max-width: 520px;
	font-weight: 300;
}
.about-v2 .av2-cta-actions,
.contact-v2 .cv2-cta-actions,
.oem-v2 .ov2-cta-actions,
.mat-v2 .mv2-cta-actions {
	justify-self: end;
	display: flex;
	flex-direction: column;
	gap: 12px;
}


/* ==========================================================================
   8. Reveal animation — single observer, drives all 4 v2 pages
   Each page's JS adds `.xxx-in` to `.xxx-reveal` when the element
   enters the viewport. Base styles below set the hidden state and
   the transition.
   ========================================================================== */

.about-v2 .av2-reveal,
.contact-v2 .cv2-reveal,
.oem-v2 .ov2-reveal,
.mat-v2 .mv2-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s ease, transform .7s ease;
}
.about-v2 .av2-in,
.contact-v2 .cv2-in,
.oem-v2 .ov2-in,
.mat-v2 .mv2-in {
	opacity: 1;
	transform: none;
}
