/* =====================================================
   Cod Center LLC — premium agency styles
   Brand palette inspired by uploaded portfolio deck
   ===================================================== */

:root {
	--cc-navy: #2C3E55;
	--cc-navy-deep: #1F2C3F;
	--cc-navy-soft: #4A607D;
	--cc-ink: #0E1A2B;
	--cc-mist: #F4F6FA;
	--cc-line: #E3E8EF;
	--cc-accent: #F59E0B;
	--cc-accent-hot: #EF4444;
	--cc-success: #10B981;
	--cc-text: #1F2937;
	--cc-text-soft: #5B6B82;
	--cc-radius: 14px;
	--cc-radius-lg: 22px;
	--cc-shadow-sm: 0 2px 12px rgba(31, 44, 63, 0.06);
	--cc-shadow: 0 14px 40px rgba(31, 44, 63, 0.10);
	--cc-shadow-lg: 0 30px 80px rgba(31, 44, 63, 0.14);
	--cc-font-display: 'Sora', 'Inter', system-ui, -apple-system, sans-serif;
	--cc-font: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
	font-family: var(--cc-font);
	color: var(--cc-text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

.entry-content > p:empty,
.wp-block-group > p:empty { display: none; }

/* ----- Headings ----- */
h1, h2, h3, h4 {
	font-family: var(--cc-font-display);
	color: var(--cc-ink);
	letter-spacing: -0.02em;
	line-height: 1.12;
}

/* ----- Buttons ----- */
.cc-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	cursor: pointer;
	border: none;
}
.cc-btn-primary {
	background: var(--cc-navy);
	color: #fff;
	box-shadow: 0 8px 24px rgba(44, 62, 85, 0.25);
}
.cc-btn-primary:hover {
	background: var(--cc-navy-deep);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(44, 62, 85, 0.32);
	color: #fff;
}
.cc-btn-ghost {
	color: var(--cc-navy);
	background: transparent;
	border: 1px solid var(--cc-line);
}
.cc-btn-ghost:hover {
	background: var(--cc-mist);
	color: var(--cc-navy);
}
.cc-btn-lg { padding: 18px 34px; font-size: 16px; }

/* ----- Section heads ----- */
.cc-eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--cc-navy-soft);
	background: var(--cc-mist);
	padding: 6px 12px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.cc-section-head {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}
.cc-section-head h2 {
	font-size: clamp(28px, 3.4vw, 44px);
	margin: 0 0 14px;
}
.cc-section-head p {
	color: var(--cc-text-soft);
	font-size: 17px;
	line-height: 1.6;
}

/* ===== Hero ===== */
.cc-hero {
	position: relative;
	padding: 110px 24px 100px;
	background:
		radial-gradient(1100px 600px at 18% -10%, rgba(74, 96, 125, 0.12), transparent 60%),
		radial-gradient(900px 500px at 110% 10%, rgba(245, 158, 11, 0.08), transparent 60%),
		linear-gradient(180deg, #FAFBFD 0%, #fff 100%);
	overflow: hidden;
}
.cc-hero-inner {
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	text-align: center;
}
.cc-hero-eyebrow {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--cc-navy);
	background: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--cc-line);
	box-shadow: var(--cc-shadow-sm);
	margin-bottom: 22px;
}
.cc-hero-title {
	font-size: clamp(36px, 6vw, 72px);
	margin: 0 auto 22px;
	max-width: 920px;
}
.cc-hero-sub {
	max-width: 720px;
	margin: 0 auto 36px;
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.6;
	color: var(--cc-text-soft);
}
.cc-hero-ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 70px;
}
.cc-hero-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 720px;
	margin: 0 auto;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--cc-line);
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow);
}
.cc-trust-item strong {
	display: block;
	font-family: var(--cc-font-display);
	font-size: clamp(22px, 2.4vw, 28px);
	color: var(--cc-ink);
}
.cc-trust-item span {
	display: block;
	font-size: 13px;
	color: var(--cc-text-soft);
	margin-top: 4px;
}
.cc-hero-deco {
	position: absolute;
	top: 12%;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cc-navy), var(--cc-navy-soft));
	opacity: 0.06;
	z-index: 1;
}
@media (max-width: 640px) {
	.cc-hero-trust { grid-template-columns: 1fr; }
}

/* ===== Logos strip ===== */
.cc-logos {
	padding: 60px 24px;
	background: #fff;
	border-top: 1px solid var(--cc-line);
	border-bottom: 1px solid var(--cc-line);
	overflow: hidden;
}
.cc-logos-label {
	text-align: center;
	font-size: 13px;
	color: var(--cc-text-soft);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 24px;
}
.cc-logos-track {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 1180px;
	margin: 0 auto;
}
.cc-logo-pill {
	font-family: var(--cc-font-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.04em;
	color: var(--cc-navy);
	padding: 10px 18px;
	background: var(--cc-mist);
	border-radius: 999px;
	border: 1px solid var(--cc-line);
}

/* ===== Services ===== */
.cc-services {
	padding: 100px 24px;
	background: var(--cc-mist);
}
.cc-section-head .cc-eyebrow { background: #fff; }
.cc-service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
}
.cc-service-card {
	background: #fff;
	padding: 36px 32px;
	border-radius: var(--cc-radius-lg);
	border: 1px solid var(--cc-line);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	display: flex;
	flex-direction: column;
}
.cc-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--cc-shadow-lg);
	border-color: transparent;
}
.cc-service-icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--cc-navy), var(--cc-navy-soft));
	color: #fff;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 22px;
}
.cc-service-card h3 {
	font-size: 22px;
	margin: 0 0 12px;
}
.cc-service-desc {
	color: var(--cc-text-soft);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 24px;
	flex: 1;
}
.cc-service-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px dashed var(--cc-line);
}
.cc-price {
	font-weight: 600;
	color: var(--cc-ink);
	font-size: 14px;
}
.cc-price .woocommerce-Price-amount { font-weight: 700; }
.cc-link-arrow {
	color: var(--cc-navy);
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
}
.cc-link-arrow:hover { color: var(--cc-accent); }

/* ===== Portfolio ===== */
.cc-portfolio {
	padding: 100px 24px;
	background: #fff;
}
.cc-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	max-width: 1180px;
	margin: 0 auto;
}
.cc-portfolio-card {
	display: block;
	background: #fff;
	border: 1px solid var(--cc-line);
	border-radius: var(--cc-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .25s, box-shadow .25s, border-color .25s;
}
.cc-portfolio-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--cc-shadow-lg);
	border-color: transparent;
	color: inherit;
}
.cc-portfolio-thumb {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cc-mist), #fff);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cc-portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cc-portfolio-card:hover .cc-portfolio-thumb img { transform: scale(1.04); }
.cc-thumb-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--cc-navy), var(--cc-navy-soft));
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -0.04em;
}
.cc-portfolio-meta {
	padding: 24px 26px 28px;
}
.cc-portfolio-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--cc-navy-soft);
	margin-bottom: 12px;
}
.cc-portfolio-meta h3 {
	font-size: 20px;
	margin: 0 0 8px;
}
.cc-portfolio-meta p {
	color: var(--cc-text-soft);
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 16px;
}
.cc-palette-row {
	display: flex;
	gap: 6px;
}
.cc-swatch {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	border: 1px solid rgba(0,0,0,0.08);
}

/* ===== Founder ===== */
.cc-founder {
	padding: 100px 24px;
	background: linear-gradient(180deg, #fff 0%, var(--cc-mist) 100%);
}
.cc-founder-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 48px;
	max-width: 1180px;
	margin: 0 auto;
	align-items: stretch;
}
.cc-founder-card h2 {
	font-size: clamp(28px, 3vw, 40px);
	margin: 8px 0 6px;
}
.cc-founder-role {
	color: var(--cc-navy-soft);
	font-weight: 600;
	margin: 0 0 20px;
}
.cc-founder-card p {
	color: var(--cc-text-soft);
	line-height: 1.7;
	margin: 0 0 18px;
	font-size: 16px;
}
.cc-founder-highlights {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
}
.cc-founder-highlights li {
	padding: 12px 0;
	border-top: 1px solid var(--cc-line);
	font-size: 14px;
	color: var(--cc-text);
}
.cc-founder-highlights li strong { color: var(--cc-ink); }
.cc-founder-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-content: start;
}
.cc-stat {
	background: #fff;
	border: 1px solid var(--cc-line);
	border-radius: var(--cc-radius-lg);
	padding: 28px 22px;
	text-align: center;
	box-shadow: var(--cc-shadow-sm);
}
.cc-stat strong {
	display: block;
	font-family: var(--cc-font-display);
	font-size: 32px;
	color: var(--cc-ink);
}
.cc-stat span {
	display: block;
	font-size: 13px;
	color: var(--cc-text-soft);
	margin-top: 6px;
}
@media (max-width: 880px) {
	.cc-founder-grid { grid-template-columns: 1fr; }
}

/* ===== Process ===== */
.cc-process {
	padding: 100px 24px;
	background: var(--cc-ink);
	color: #fff;
}
.cc-process .cc-section-head h2,
.cc-process .cc-section-head p { color: #fff; }
.cc-process .cc-section-head p { color: rgba(255,255,255,0.65); }
.cc-process .cc-eyebrow { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.cc-process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
	max-width: 1180px;
	margin: 0 auto;
}
.cc-process-step {
	background: rgba(255,255,255,0.04);
	padding: 30px 26px;
	border-radius: var(--cc-radius-lg);
	border: 1px solid rgba(255,255,255,0.08);
}
.cc-step-num {
	display: inline-block;
	font-family: var(--cc-font-display);
	font-size: 22px;
	color: var(--cc-accent);
	font-weight: 800;
	margin-bottom: 16px;
}
.cc-process-step h3 {
	color: #fff;
	font-size: 20px;
	margin: 0 0 10px;
}
.cc-process-step p {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* ===== CTA Band ===== */
.cc-cta-band {
	padding: 80px 24px;
	background: linear-gradient(135deg, var(--cc-navy), var(--cc-navy-deep));
	color: #fff;
	text-align: center;
}
.cc-cta-inner {
	max-width: 720px;
	margin: 0 auto;
}
.cc-cta-band h2 {
	color: #fff;
	font-size: clamp(28px, 3.4vw, 44px);
	margin: 0 0 14px;
}
.cc-cta-band p {
	color: rgba(255,255,255,0.75);
	font-size: 17px;
	margin: 0 0 30px;
}
.cc-cta-band .cc-btn-primary {
	background: var(--cc-accent);
	color: var(--cc-ink);
	box-shadow: 0 14px 40px rgba(245, 158, 11, 0.35);
}
.cc-cta-band .cc-btn-primary:hover {
	background: #fff;
}

/* ===== Contact ===== */
.cc-contact {
	padding: 100px 24px;
	background: var(--cc-mist);
}
.cc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	max-width: 1180px;
	margin: 0 auto;
}
.cc-contact-info h2 {
	font-size: clamp(28px, 3vw, 40px);
	margin: 8px 0 18px;
}
.cc-contact-info p {
	color: var(--cc-text-soft);
	line-height: 1.7;
	margin: 0 0 26px;
}
.cc-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.cc-contact-list li {
	padding: 16px 0;
	border-top: 1px solid var(--cc-line);
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: start;
	gap: 16px;
}
.cc-contact-list li strong {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cc-navy-soft);
	font-weight: 700;
}
.cc-contact-list li a,
.cc-contact-list li span {
	color: var(--cc-ink);
	text-decoration: none;
	font-weight: 500;
	line-height: 1.5;
}
.cc-contact-list li a:hover { color: var(--cc-accent); }
.cc-contact-form-wrap {
	background: #fff;
	padding: 36px;
	border-radius: var(--cc-radius-lg);
	border: 1px solid var(--cc-line);
	box-shadow: var(--cc-shadow);
}
.cc-contact-form-wrap h3 {
	font-size: 22px;
	margin: 0 0 22px;
}
.cc-contact-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--cc-text);
	margin-bottom: 16px;
}
.cc-contact-form input,
.cc-contact-form select,
.cc-contact-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	border: 1px solid var(--cc-line);
	border-radius: 10px;
	font: inherit;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.cc-contact-form input:focus,
.cc-contact-form select:focus,
.cc-contact-form textarea:focus {
	outline: none;
	border-color: var(--cc-navy);
	box-shadow: 0 0 0 4px rgba(44, 62, 85, 0.10);
}
.cc-contact-form button { margin-top: 8px; width: 100%; justify-content: center; }
@media (max-width: 880px) { .cc-contact-grid { grid-template-columns: 1fr; } }

/* ===== Single project layout ===== */
.cc-project-hero {
	padding: 80px 24px 40px;
	background: var(--cc-mist);
	text-align: center;
}
.cc-project-hero .cc-eyebrow { background: #fff; }
.cc-project-hero h1 {
	font-size: clamp(34px, 4vw, 56px);
	margin: 12px 0 16px;
}
.cc-project-hero .cc-project-tagline { color: var(--cc-text-soft); max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.6; }
.cc-project-body {
	max-width: 920px;
	margin: 0 auto;
	padding: 60px 24px;
}
.cc-project-body p { line-height: 1.75; color: var(--cc-text); font-size: 17px; }
.cc-project-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
	margin: 30px 0 50px;
}
.cc-meta-card {
	background: var(--cc-mist);
	padding: 18px 20px;
	border-radius: var(--cc-radius);
	border: 1px solid var(--cc-line);
}
.cc-meta-card span {
	display: block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cc-navy-soft);
	font-weight: 700;
	margin-bottom: 6px;
}
.cc-meta-card strong {
	display: block;
	color: var(--cc-ink);
	font-size: 15px;
	font-weight: 600;
}
.cc-project-section { margin: 36px 0; }
.cc-project-section h2 {
	font-size: 22px;
	margin: 0 0 14px;
	color: var(--cc-ink);
}
.cc-project-palette {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.cc-project-palette .cc-swatch-lg {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.08);
	display: flex;
	align-items: flex-end;
	padding: 6px;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* ===== WooCommerce overrides ===== */
.woocommerce ul.products li.product .button,
.woocommerce a.button {
	background: var(--cc-navy) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 12px 22px !important;
	font-weight: 600 !important;
	transition: background .2s, transform .2s !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover {
	background: var(--cc-navy-deep) !important;
	transform: translateY(-2px);
}
.woocommerce-store-notice,
.woocommerce-store-notice__dismiss-link { display: none !important; }
.woocommerce span.onsale {
	background: var(--cc-accent);
	color: var(--cc-ink);
	border-radius: 999px;
	font-weight: 700;
}

/* ===== Footer ===== */
.cc-footer {
	background: var(--cc-ink);
	color: rgba(255,255,255,0.7);
	padding: 64px 24px 30px;
}
.cc-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 36px;
	max-width: 1180px;
	margin: 0 auto 42px;
}
.cc-footer h4 {
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.cc-footer ul { list-style: none; padding: 0; margin: 0; }
.cc-footer ul li { margin-bottom: 10px; }
.cc-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.cc-footer a:hover { color: var(--cc-accent); }
.cc-footer-brand strong {
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: 22px;
	letter-spacing: -0.02em;
	display: block;
	margin-bottom: 10px;
}
.cc-footer-brand p { font-size: 14px; line-height: 1.6; }
.cc-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 22px;
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: rgba(255,255,255,0.45);
	flex-wrap: wrap;
	gap: 12px;
}
@media (max-width: 880px) {
	.cc-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Theme header / nav ===== */
.cc-site-header {
	background: rgba(255,255,255,0.92);
	backdrop-filter: saturate(150%) blur(10px);
	border-bottom: 1px solid var(--cc-line);
	position: sticky;
	top: 0;
	z-index: 100;
}
.cc-site-header-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	gap: 32px;
}
.cc-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--cc-ink);
}
.cc-brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: linear-gradient(135deg, var(--cc-navy), var(--cc-navy-deep));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: 18px;
	letter-spacing: -0.04em;
}
.cc-brand-name {
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -0.02em;
	color: var(--cc-ink);
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}
.cc-brand-name small {
	font-size: 10px;
	font-weight: 500;
	color: var(--cc-text-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 2px;
}
.cc-nav { flex: 1; }
.cc-nav-list {
	display: flex;
	gap: 28px;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
}
.cc-nav-list a {
	color: var(--cc-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: color .15s;
	padding: 6px 0;
}
.cc-nav-list a:hover,
.cc-nav-list .current-menu-item a { color: var(--cc-navy); }
.cc-header-cta { flex-shrink: 0; }
.cc-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	color: var(--cc-ink);
	cursor: pointer;
}
@media (max-width: 880px) {
	.cc-nav { display: none; }
	.cc-header-cta { display: none; }
	.cc-mobile-toggle { display: inline-flex; margin-left: auto; }
}

/* ===== Page heading + body ===== */
.cc-page-head {
	background: var(--cc-mist);
	padding: 70px 24px 40px;
	text-align: center;
}
.cc-page-head-inner { max-width: 800px; margin: 0 auto; }
.cc-page-head h1 {
	font-size: clamp(34px, 4vw, 54px);
	margin: 0;
}
.cc-page-body { padding: 0; }
.cc-page-body > * { margin-bottom: 0; }

/* ===== Archive banner ===== */
.cc-archive-banner {
	padding: 90px 24px 60px;
	background: linear-gradient(180deg, var(--cc-mist) 0%, #fff 100%);
	text-align: center;
}
.cc-archive-banner-inner { max-width: 760px; margin: 0 auto; }
.cc-archive-banner h1 {
	font-size: clamp(34px, 4.5vw, 56px);
	margin: 14px 0 16px;
}
.cc-archive-banner p {
	color: var(--cc-text-soft);
	font-size: 17px;
	line-height: 1.6;
}

/* ===== Project figure ===== */
.cc-project-figure {
	margin: 0 0 40px;
	border-radius: var(--cc-radius-lg);
	overflow: hidden;
	border: 1px solid var(--cc-line);
}
.cc-project-figure img { width: 100%; display: block; }

/* ===== Site main resets ===== */
.cc-site-main { display: block; }
.cc-site-main > .cc-page > .cc-page-body > * { /* let shortcodes handle their own widths */ }

/* About extra section spacing */
.cc-about-extra h2 { font-size: 28px; margin: 28px 0 14px; }
.cc-about-extra h3 { font-size: 20px; margin: 28px 0 12px; }
.cc-about-extra p, .cc-about-extra li { color: var(--cc-text); line-height: 1.7; }
.cc-about-extra ul { padding-left: 1.2em; }
.cc-about-extra ul li { margin-bottom: 8px; }

/* WooCommerce single product polish */
.single-product .cc-page-body { padding: 60px 24px; max-width: 1180px; margin: 0 auto; }
.woocommerce div.product .product_title { font-family: var(--cc-font-display); font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--cc-ink) !important;
	font-family: var(--cc-font-display);
	font-size: 28px;
	font-weight: 700;
}
.woocommerce-tabs { margin-top: 40px; }

/* WooCommerce shop archive */
.post-type-archive-product .cc-page-body,
.tax-product_cat .cc-page-body { padding: 40px 24px; max-width: 1180px; margin: 0 auto; }

/* ===== WhatsApp CTAs ===== */
:root {
	--cc-wa: #25D366;
	--cc-wa-dark: #128C7E;
	--cc-wa-deep: #075E54;
}
.cc-wa-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.cc-btn-wa {
	background: var(--cc-wa) !important;
	color: #fff !important;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32) !important;
}
.cc-btn-wa:hover {
	background: var(--cc-wa-dark) !important;
	color: #fff !important;
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42) !important;
}
.cc-btn-header {
	padding: 10px 18px;
	font-size: 14px;
}
.cc-btn-header .cc-wa-icon { width: 16px; height: 16px; }

/* Service card WA button */
.cc-service-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(37, 211, 102, 0.1);
	color: var(--cc-wa-dark);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: background .15s, color .15s, transform .15s;
	align-self: flex-start;
}
.cc-service-wa:hover {
	background: var(--cc-wa);
	color: #fff;
	transform: translateY(-2px);
}

/* Single-product WA call-out */
.cc-product-cta {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02));
	border: 1px solid rgba(37, 211, 102, 0.2);
	padding: 28px 26px;
	border-radius: var(--cc-radius-lg);
	margin: 28px 0;
}
.cc-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	background: var(--cc-wa);
	color: #fff !important;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: background .2s, transform .2s, box-shadow .2s;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}
.cc-wa-btn:hover {
	background: var(--cc-wa-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
	color: #fff !important;
}
.cc-wa-btn-lg { padding: 18px 32px; font-size: 16px; }
.cc-wa-btn .cc-wa-icon { width: 20px; height: 20px; }
.cc-product-cta-note {
	margin: 14px 0 0 !important;
	font-size: 13px;
	color: var(--cc-text-soft);
	line-height: 1.5;
}

/* Loop / archive WA button (overrides Woo button styles) */
.woocommerce ul.products li.product .cc-wa-btn,
.woocommerce ul.products li.product a.cc-wa-btn,
a.button.cc-wa-btn {
	background: var(--cc-wa) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 12px 22px !important;
	font-weight: 600 !important;
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
}
.woocommerce ul.products li.product .cc-wa-btn:hover,
.woocommerce ul.products li.product a.cc-wa-btn:hover,
a.button.cc-wa-btn:hover {
	background: var(--cc-wa-dark) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

/* CTA band with WA button */
.cc-cta-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.cc-btn-ghost-light {
	color: rgba(255, 255, 255, 0.85) !important;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: transparent !important;
}
.cc-btn-ghost-light:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
}
.cc-cta-band .cc-btn-wa {
	background: var(--cc-wa) !important;
	color: #fff !important;
	box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45) !important;
}
.cc-cta-band .cc-btn-wa:hover { background: var(--cc-wa-dark) !important; }
.cc-cta-phone {
	margin: 0 !important;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55) !important;
	letter-spacing: 0.04em;
}
.cc-cta-phone strong { color: #fff; letter-spacing: 0.06em; }

/* Hero WA button */
.cc-hero-ctas .cc-btn-wa {
	background: var(--cc-wa) !important;
	color: #fff !important;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35) !important;
}
.cc-hero-ctas .cc-btn-wa:hover {
	background: var(--cc-wa-dark) !important;
}

/* Contact section WA button */
.cc-contact-wa {
	margin: 4px 0 30px;
}
.cc-contact-list li a[href*="wa.me"],
.cc-footer-wa {
	color: var(--cc-wa-dark) !important;
	font-weight: 600;
}
.cc-footer-wa {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--cc-wa) !important;
}
.cc-footer-wa:hover { color: #fff !important; }
.cc-footer-wa .cc-wa-icon { width: 14px; height: 14px; }

/* Floating WhatsApp bubble */
.cc-wa-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px 14px 18px;
	background: var(--cc-wa);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
	font-weight: 600;
	text-decoration: none;
	font-size: 15px;
	transition: transform .2s, background .2s, box-shadow .2s;
}
.cc-wa-float svg {
	width: 22px;
	height: 22px;
}
.cc-wa-float:hover {
	transform: translateY(-3px) scale(1.02);
	background: var(--cc-wa-dark);
	color: #fff;
	box-shadow: 0 18px 50px rgba(37, 211, 102, 0.55);
}
.cc-wa-float-label { display: inline; }
@media (max-width: 640px) {
	.cc-wa-float { padding: 14px; }
	.cc-wa-float-label { display: none; }
}

/* Pulse animation on first paint to draw the eye */
@keyframes cc-wa-pulse {
	0%, 100% { box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
	50%      { box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}
.cc-wa-float { animation: cc-wa-pulse 2.4s ease-out 1.5s 3; }
