/*
Theme Name: Dream Clean
Theme URI: https://dreamclean.example
Author: Dream Clean
Description: Fresh, clean, motivating theme for the Dream Clean influence income store. MAKE MAGIC MOMENTS!!!
Version: 1.0.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: dream-clean
Tags: e-commerce, woocommerce
*/

:root {
	--dc-teal: #2e7396;
	--dc-teal-deep: #1d5470;
	--dc-teal-ink: #123a4f;
	--dc-aqua: #e8f4f8;
	--dc-aqua-2: #d4eaf2;
	--dc-foam: #f6fbfd;
	--dc-gold: #f2b705;
	--dc-gold-deep: #cf9a02;
	--dc-ink: #16303f;
	--dc-slate: #4f6b7c;
	--dc-white: #ffffff;
	--dc-radius: 18px;
	--dc-shadow: 0 10px 40px -12px rgba(29, 84, 112, 0.25);
	--dc-font-display: 'Space Grotesk', 'Outfit', system-ui, sans-serif;
	--dc-font-body: 'Nunito Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--dc-font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--dc-ink);
	background: var(--dc-foam);
}

h1, h2, h3, h4, h5 {
	font-family: var(--dc-font-display);
	color: var(--dc-teal-ink);
	line-height: 1.15;
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}

a { color: var(--dc-teal); }
a:hover { color: var(--dc-teal-deep); }

img { max-width: 100%; height: auto; }

.dc-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------ header */
.dc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--dc-aqua-2);
}
.dc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 10px 24px;
	max-width: 1240px;
	margin: 0 auto;
}
.dc-logo { display: flex; align-items: center; text-decoration: none; }
.dc-logo svg { height: 54px; width: auto; display: block; }

.dc-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; margin: 0; padding: 0; }
.dc-nav ul { display: contents; margin: 0; padding: 0; }
.dc-nav li { list-style: none; margin: 0; padding: 0; display: inline-flex; }
.dc-nav li::marker { content: none; }
.dc-nav a {
	font-family: var(--dc-font-display);
	font-weight: 600;
	font-size: 15px;
	color: var(--dc-teal-ink);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 999px;
	transition: background 0.15s ease;
}
.dc-nav a:hover { background: var(--dc-aqua); }
.dc-nav-cta {
	font-family: var(--dc-font-display);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--dc-gold);
	color: var(--dc-teal-ink);
	box-shadow: 0 4px 14px -4px rgba(242, 183, 5, 0.6);
	transition: background 0.15s ease, transform 0.15s ease;
}
.dc-nav-cta:hover { background: var(--dc-gold-deep); color: var(--dc-teal-ink); transform: translateY(-1px); }
.dc-nav .dc-nav-cart { background: var(--dc-teal); color: #fff; }
.dc-nav .dc-nav-cart:hover { background: var(--dc-teal-deep); color: #fff; }

/* -------------------------------------------------------------- hero */
.dc-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(1100px 500px at 85% -10%, var(--dc-aqua-2), transparent 60%),
		radial-gradient(900px 480px at -10% 110%, var(--dc-aqua-2), transparent 55%),
		linear-gradient(180deg, #ffffff 0%, var(--dc-foam) 100%);
	padding: 84px 0 96px;
	text-align: center;
}
.dc-hero h1 {
	font-size: clamp(2.4rem, 5.4vw, 4.2rem);
	font-weight: 800;
	margin-bottom: 18px;
}
.dc-hero h1 .dc-hl { color: var(--dc-teal); }
.dc-hero .dc-motto {
	display: inline-block;
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: clamp(1.1rem, 2.4vw, 1.5rem);
	letter-spacing: 0.14em;
	color: var(--dc-gold-deep);
	text-transform: uppercase;
	margin-bottom: 14px;
}
.dc-hero p.dc-sub {
	max-width: 640px;
	margin: 0 auto 34px;
	font-size: 1.15rem;
	color: var(--dc-slate);
}
.dc-bubble {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.9), rgba(46,115,150,0.16) 58%, rgba(46,115,150,0.32));
	animation: dc-float 9s ease-in-out infinite;
	pointer-events: none;
}
@keyframes dc-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-26px); }
}

/* ----------------------------------------------------------- buttons */
.dc-btn {
	display: inline-block;
	font-family: var(--dc-font-display);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 30px;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	background: var(--dc-teal);
	color: #fff !important;
	box-shadow: var(--dc-shadow);
	transition: transform 0.15s ease, background 0.15s ease;
}
.dc-btn:hover { background: var(--dc-teal-deep); transform: translateY(-2px); }
.dc-btn-gold { background: var(--dc-gold); color: var(--dc-teal-ink) !important; }
.dc-btn-gold:hover { background: var(--dc-gold-deep); }
.dc-btn-ghost { background: transparent; color: var(--dc-teal) !important; box-shadow: inset 0 0 0 2px var(--dc-teal); }
.dc-btn-ghost:hover { background: var(--dc-aqua); }
.dc-btn-lg { font-size: 18px; padding: 16px 40px; }
.dc-hero .dc-btn { margin: 0 8px 12px; }

/* ---------------------------------------------------------- sections */
.dc-section { padding: 86px 0; }
.dc-section-alt { background: #fff; }
.dc-section-teal {
	background: linear-gradient(160deg, var(--dc-teal-deep), var(--dc-teal));
	color: #eaf6fb;
}
.dc-section-teal h2, .dc-section-teal h3 { color: #fff; }
.dc-section-teal .dc-kicker { color: var(--dc-gold); }

.dc-kicker {
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--dc-gold-deep);
	margin-bottom: 10px;
	display: block;
}
.dc-section h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
.dc-lead { font-size: 1.16rem; color: var(--dc-slate); max-width: 720px; }
.dc-section-teal .dc-lead { color: #cfe7f2; }
.dc-center { text-align: center; }
.dc-center .dc-lead { margin-left: auto; margin-right: auto; }

.dc-cols { display: grid; gap: 28px; margin-top: 44px; }
.dc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.dc-cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .dc-cols-3, .dc-cols-2 { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- card */
.dc-card {
	background: #fff;
	border: 1px solid var(--dc-aqua-2);
	border-radius: var(--dc-radius);
	padding: 30px;
	box-shadow: 0 6px 24px -14px rgba(29, 84, 112, 0.18);
}
.dc-section-teal .dc-card {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	color: #eaf6fb;
}
.dc-card h3 { font-size: 1.3rem; }
.dc-card-icon {
	width: 58px; height: 58px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 16px;
	background: var(--dc-aqua);
	font-size: 26px;
	margin-bottom: 16px;
}

.dc-x-factor {
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	color: var(--dc-teal);
	letter-spacing: 0.02em;
}
.dc-quote {
	border-left: 5px solid var(--dc-gold);
	background: var(--dc-aqua);
	border-radius: 0 var(--dc-radius) var(--dc-radius) 0;
	padding: 22px 28px;
	font-size: 1.15rem;
	font-weight: 700;
	font-family: var(--dc-font-display);
	color: var(--dc-teal-ink);
	margin: 30px 0;
}

/* -------------------------------------------------------------- table */
.dc-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.dc-table th, .dc-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--dc-aqua-2); }
.dc-table thead th {
	font-family: var(--dc-font-display);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dc-slate);
	background: var(--dc-aqua);
}
.dc-table tfoot td { background: var(--dc-aqua); font-size: 1.05rem; }
.dc-matrix-marketing { background: #fff; border-radius: var(--dc-radius); overflow: hidden; box-shadow: var(--dc-shadow); color: var(--dc-ink); }

/* --------------------------------------------------------- dashboard */
.dc-dash { display: grid; gap: 24px; }
.dc-dash-status {
	border-radius: var(--dc-radius);
	padding: 18px 26px;
	font-family: var(--dc-font-display);
	font-weight: 700;
}
.dc-dash-status.is-active { background: #e5f7e9; color: #1c6b34; border: 1px solid #b8e6c4; }
.dc-dash-status.is-inactive { background: #fdf3d7; color: #6b5500; border: 1px solid #f3e0a0; }
.dc-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .dc-stat-grid { grid-template-columns: repeat(2, 1fr); } }
.dc-stat { text-align: center; padding: 22px 12px; }
.dc-stat-num { display: block; font-family: var(--dc-font-display); font-weight: 800; font-size: 1.7rem; color: var(--dc-teal); }
.dc-stat-label { font-size: 0.85rem; color: var(--dc-slate); }
.dc-reflink-row { display: flex; gap: 10px; }
.dc-reflink-row input {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid var(--dc-aqua-2);
	border-radius: 12px;
	font-size: 15px;
	color: var(--dc-teal-ink);
	background: var(--dc-foam);
}
.dc-badge { padding: 3px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.dc-badge-pending { background: #fdf3d7; color: #6b5500; }
.dc-badge-paid { background: #e5f7e9; color: #1c6b34; }
.dc-badge-approved { background: var(--dc-aqua); color: var(--dc-teal-deep); }
.dc-badge-reversed { background: #fde8e8; color: #b02a2a; }

/* --------------------------------------------------------- join form */
.dc-join-card { max-width: 520px; margin: 0 auto; }
.dc-join-form label { font-weight: 700; font-family: var(--dc-font-display); color: var(--dc-teal-ink); }
.dc-join-form input {
	width: 100%;
	padding: 12px 16px;
	margin-top: 6px;
	border: 2px solid var(--dc-aqua-2);
	border-radius: 12px;
	font-size: 16px;
	background: var(--dc-foam);
}
.dc-join-form input:focus { outline: none; border-color: var(--dc-teal); }
.dc-sponsor-note { background: var(--dc-aqua); border-radius: 12px; padding: 12px 18px; }
.dc-error { background: #fde8e8; color: #b02a2a; border-radius: 12px; padding: 12px 18px; font-weight: 700; }
.dc-notice { text-align: center; }

/* -------------------------------------------------------------- shop */
.dc-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
@media (max-width: 860px) { .dc-products { grid-template-columns: 1fr; } }
.dc-product-card {
	background: #fff;
	border-radius: var(--dc-radius);
	overflow: hidden;
	border: 1px solid var(--dc-aqua-2);
	box-shadow: 0 6px 24px -14px rgba(29, 84, 112, 0.18);
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.dc-product-card:hover { transform: translateY(-6px); box-shadow: var(--dc-shadow); }
.dc-product-card img { display: block; width: 100%; }
.dc-product-card .dc-product-body { padding: 22px 24px 28px; }
.dc-product-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.dc-product-card h3 a { text-decoration: none; color: var(--dc-teal-ink); }
.dc-price { font-family: var(--dc-font-display); font-weight: 800; font-size: 1.35rem; color: var(--dc-teal); display: block; margin: 8px 0 16px; }
.dc-price small { font-size: 0.75rem; font-weight: 600; color: var(--dc-slate); }

/* ------------------------------------------------------- steps (STOP) */
.dc-steps { counter-reset: step; display: grid; gap: 18px; margin-top: 40px; }
.dc-step {
	display: flex; gap: 22px; align-items: flex-start;
	background: #fff; border: 1px solid var(--dc-aqua-2);
	border-radius: var(--dc-radius); padding: 24px 28px;
}
.dc-step-num {
	flex: 0 0 52px; height: 52px;
	display: flex; align-items: center; justify-content: center;
	background: var(--dc-gold); color: var(--dc-teal-ink);
	font-family: var(--dc-font-display); font-weight: 800; font-size: 1.3rem;
	border-radius: 50%;
}

/* ------------------------------------------------------------ footer */
.dc-footer {
	background: var(--dc-teal-ink);
	color: #bfd9e6;
	padding: 54px 0 34px;
	margin-top: 0;
}
.dc-footer a { color: #fff; text-decoration: none; }
.dc-footer .dc-footer-motto { font-family: var(--dc-font-display); font-weight: 800; letter-spacing: 0.14em; color: var(--dc-gold); text-transform: uppercase; }
.dc-footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
@media (max-width: 720px) { .dc-footer-cols { grid-template-columns: 1fr; } }
.dc-footer small { color: #7fa5b8; }

/* ------------------------------------------------ woocommerce blends */
.woocommerce-page .dc-page-content, .dc-page-content { padding: 56px 0 90px; }
.dc-page-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 26px; }
.woocommerce ul.products,
.elementor-widget-woocommerce-product-related ul.products,
.elementor-widget-wc-archive-products ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	width: 100%;
	margin: 30px 0 0;
	padding: 0;
}
/* Woo clearfix pseudo-elements would become phantom grid cells. */
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none !important; display: none !important; }
@media (max-width: 860px) {
	.woocommerce ul.products { grid-template-columns: 1fr !important; }
}
.woocommerce ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	background: #fff;
	border-radius: var(--dc-radius);
	overflow: hidden;
	border: 1px solid var(--dc-aqua-2);
	padding-bottom: 26px;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--dc-shadow); }
.woocommerce ul.products li.product a img { margin: 0 0 4px; width: 100%; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--dc-font-display);
	color: var(--dc-teal-ink);
	font-size: 1.18rem;
	font-weight: 700;
	padding: 14px 18px 2px;
}
.woocommerce ul.products li.product .price {
	font-family: var(--dc-font-display);
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--dc-teal) !important;
	display: block;
	margin: 4px 0 14px;
}
.woocommerce ul.products li.product .price .dc-per-month { font-size: 0.72rem; font-weight: 600; color: var(--dc-slate); }
.woocommerce ul.products li.product .button { margin: 0 auto; }
.woocommerce ul.products li.product .added_to_cart {
	display: inline-block;
	margin: 10px 8px 0;
	font-family: var(--dc-font-display);
	font-weight: 700;
	color: var(--dc-teal-deep);
}
.woocommerce .button, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce button.button.alt, .woocommerce a.button.alt {
	background: var(--dc-teal) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-family: var(--dc-font-display) !important;
	font-weight: 700 !important;
	padding: 12px 26px !important;
}
.woocommerce .button:hover, .woocommerce a.button:hover { background: var(--dc-teal-deep) !important; }
.woocommerce span.price, .woocommerce div.product p.price { color: var(--dc-teal) !important; font-family: var(--dc-font-display); font-weight: 800; }
.woocommerce .woocommerce-breadcrumb { color: var(--dc-slate); }
.woocommerce-store-notice { background: var(--dc-gold); color: var(--dc-teal-ink); }

/* ---------------------------------------------- hero bubble overlay */
.dc-hero-elem { position: relative; overflow: hidden !important; }
.dc-hero-elem .elementor-widget-html {
	position: absolute !important;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}
.dc-hero-elem .dc-bubbles { position: absolute; inset: 0; }
.dc-hero-elem .e-con-inner > .elementor-element:not(.elementor-widget-html) { position: relative; z-index: 1; }

/* ------------------------------------------- product image zoom */
.woocommerce ul.products li.product img { transition: transform 0.3s ease; }
.woocommerce ul.products li.product:hover img { transform: scale(1.05); }

/* --------------------------------------------- scroll reveal */
/* Content is ALWAYS visible. The animation only plays when the
   observer adds dc-inview; if it never fires, nothing is hidden. */
.dc-reveal { opacity: 1; }
.dc-reveal.dc-inview { animation: dc-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
@keyframes dc-rise {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .dc-reveal.dc-inview { animation: none; } }

/* --------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
	.dc-bubble { animation: none; }
	.woocommerce ul.products li.product,
	.woocommerce ul.products li.product img,
	.dc-product-card, .dc-btn { transition: none; }
}

/* ------------------------------------------------- search results */
.dc-result-list { display: grid; gap: 20px; }
.dc-result-title { margin-bottom: 6px; }
.dc-result-title a { color: var(--dc-teal-ink); text-decoration: none; }
.dc-result-title a:hover { color: var(--dc-teal); }
.dc-result .dc-btn { margin-top: 6px; }

/* ------------------------------------------- accessibility: focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
	outline: 3px solid var(--dc-gold);
	outline-offset: 2px;
	border-radius: 4px;
}

/* --------------------------------------------- WooCommerce notices */
.woocommerce-message, .woocommerce-info {
	background: var(--dc-aqua) !important;
	color: var(--dc-teal-ink) !important;
	border-top-color: var(--dc-teal) !important;
	border-radius: 0 0 12px 12px;
}
.woocommerce-message a, .woocommerce-info a { color: var(--dc-teal-deep) !important; }
.woocommerce-error {
	background: #fde8e8 !important;
	color: #8f1d1d !important;
	border-top-color: #b02a2a !important;
	border-radius: 0 0 12px 12px;
}

/* Custom heading above the widget already says it. */
.elementor-widget-woocommerce-product-related .related.products > h2 { display: none; }

/* --------------------------------------------------- mini-cart drawer */
.elementor-menu-cart__main { border-left: 1px solid var(--dc-aqua-2); }
.elementor-menu-cart__product-name a { color: var(--dc-teal-ink) !important; font-family: var(--dc-font-display); font-weight: 600; }
.elementor-menu-cart__product-price,
.elementor-menu-cart__product .quantity { color: #3d5866 !important; font-weight: 600; }
.elementor-menu-cart__subtotal { color: var(--dc-teal-ink) !important; font-family: var(--dc-font-display); }
.elementor-menu-cart__product-remove { color: #8a2020; }
.elementor-menu-cart__footer-buttons .elementor-button--view-cart {
	background-color: var(--dc-teal) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-family: var(--dc-font-display) !important;
	font-weight: 700 !important;
}
.elementor-menu-cart__footer-buttons .elementor-button--checkout {
	background-color: var(--dc-gold) !important;
	color: var(--dc-teal-ink) !important;
	border-radius: 999px !important;
	font-family: var(--dc-font-display) !important;
	font-weight: 700 !important;
}
.elementor-menu-cart__close-button { color: var(--dc-teal-ink); }

/* -------------------------------------------------- contrast fixes */
/* Header cart pill: price must be white on teal. */
.elementor-menu-cart__toggle .elementor-button,
.elementor-menu-cart__toggle .elementor-button .woocommerce-Price-amount,
.elementor-menu-cart__toggle .elementor-button bdi {
	color: #ffffff !important;
}
/* Footer links: light aqua on the dark navy, white on hover. */
.elementor-location-footer a { color: #a9d6ea; }
.elementor-location-footer a:hover { color: #ffffff; }

/* ==================================================================== */
/* V2 HEADER / NAV                                                      */
/* ==================================================================== */

.dc-logo-img { height: 52px; width: auto; display: block; }
.dc-nav-wrap { display: flex; align-items: center; gap: 18px; }
.dc-header-actions { display: flex; align-items: center; gap: 12px; }
.dc-cart-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--dc-teal);
	color: #FFFFFF;
	border-radius: 999px;
	padding: 9px 16px;
	text-decoration: none;
	font-family: var(--dc-font-display);
	font-weight: 700;
	font-size: 14px;
	transition: background 0.15s ease, transform 0.15s ease;
}
.dc-cart-pill:hover { background: var(--dc-teal-deep); color: #FFFFFF; transform: translateY(-1px); }
.dc-cart-count {
	background: #E5484D;
	color: #FFFFFF;
	border-radius: 999px;
	min-width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	padding: 0 5px;
}
.dc-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 44px;
	padding: 10px;
	background: var(--dc-aqua);
	border: 1px solid var(--dc-aqua-2);
	border-radius: 12px;
	cursor: pointer;
}
.dc-burger span { display: block; height: 3px; border-radius: 3px; background: var(--dc-teal-ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.dc-nav-open .dc-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.dc-nav-open .dc-burger span:nth-child(2) { opacity: 0; }
.dc-nav-open .dc-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 920px) {
	.dc-burger { display: flex; }
	.dc-nav-wrap {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: #FFFFFF;
		border-bottom: 1px solid var(--dc-aqua-2);
		box-shadow: 0 18px 30px -18px rgba(29, 84, 112, 0.35);
		padding: 16px 20px 20px;
		gap: 8px;
	}
	.dc-nav-open .dc-nav-wrap { display: flex; }
	.dc-nav { flex-direction: column; align-items: stretch; }
	.dc-nav a { padding: 12px 14px; border-radius: 12px; }
	.dc-header-actions { justify-content: space-between; padding-top: 6px; border-top: 1px solid var(--dc-aqua-2); }
	.dc-header-inner { position: relative; flex-wrap: nowrap; }
}

/* ------------------------------------------------ footer logo */
.dc-footer-logo { width: 230px; height: auto; margin-bottom: 14px; }

/* ------------------------------------------- single product layout */
.single-product div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.single-product div.product .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	border-radius: var(--dc-radius);
	overflow: hidden;
	box-shadow: 0 14px 40px -20px rgba(29, 84, 112, 0.35);
}
.single-product div.product .entry-summary { width: 100% !important; float: none !important; padding-top: 6px; }
.single-product div.product .woocommerce-tabs,
.single-product div.product .dc2-band,
.single-product div.product .related.products { grid-column: 1 / -1; }
@media (max-width: 860px) { .single-product div.product { grid-template-columns: 1fr; } }
.woocommerce-tabs ul.tabs { padding: 0 !important; margin: 0 0 -1px !important; }
.woocommerce-tabs ul.tabs::before { border-color: var(--dc-aqua-2) !important; }
.woocommerce-tabs ul.tabs li { background: var(--dc-aqua) !important; border-color: var(--dc-aqua-2) !important; border-radius: 12px 12px 0 0 !important; }
.woocommerce-tabs ul.tabs li.active { background: #fff !important; }
.woocommerce-tabs ul.tabs li a { font-family: var(--dc-font-display); color: var(--dc-teal-ink) !important; }
.woocommerce-Tabs-panel { background: #fff; border: 1px solid var(--dc-aqua-2); border-radius: 0 var(--dc-radius) var(--dc-radius); padding: 26px 30px !important; }
.woocommerce-Tabs-panel h2:first-child { font-size: 1.4rem; }

/* --------------------------------------- single product extras */
.dc2-trust { display: grid; gap: 10px; margin-top: 22px; }
.dc2-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--dc-aqua);
	border-radius: 12px;
	padding: 11px 16px;
	font-size: 14.5px;
	color: #123A4F;
}
.dc2-trust-item span { font-size: 19px; }
.dc2-band {
	background:
		radial-gradient(700px 320px at 100% 0%, rgba(242, 183, 5, 0.14), transparent 55%),
		linear-gradient(160deg, #123A4F, #1D5470);
	border-radius: var(--dc-radius);
	text-align: center;
	color: #DCEFF7;
	padding: 52px 34px;
	margin: 50px 0;
}
.dc2-band h2 { color: #FFFFFF; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.dc2-band p { max-width: 560px; margin: 0 auto 24px; }

/* ==================================================================== */
/* V2 LANDING: dark hero, ticker, glass, timeline                       */
/* ==================================================================== */

.dc2-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(820px 420px at 90% 0%, rgba(242, 183, 5, 0.10), transparent 60%),
		radial-gradient(1000px 640px at -8% 104%, rgba(127, 176, 200, 0.35), transparent 62%),
		linear-gradient(175deg, #FFFFFF 0%, #E8F4F8 100%);
	color: var(--dc-ink);
	padding: 84px 0 116px;
}
.dc2-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
}
.dc2-blob-a { width: 480px; height: 480px; top: -160px; right: -120px; background: rgba(242, 183, 5, 0.16); }
.dc2-blob-b { width: 420px; height: 420px; bottom: -180px; left: -140px; background: rgba(127, 176, 200, 0.25); }
.dc2-blob-c { width: 520px; height: 520px; top: -180px; right: -160px; background: rgba(242, 183, 5, 0.10); }
.dc2-bubbles { position: absolute; inset: 0; pointer-events: none; }

.dc2-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
}
@media (max-width: 920px) { .dc2-hero-grid { grid-template-columns: 1fr; text-align: center; } }

.dc2-badge {
	display: inline-block;
	font-family: var(--dc-font-display);
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7A5C00;
	background: #FFF4CE;
	border: 1px solid rgba(207, 154, 2, 0.45);
	border-radius: 999px;
	padding: 8px 18px;
	margin-bottom: 22px;
}
.dc2-hero h1 {
	font-size: clamp(2.5rem, 4.8vw, 3.7rem);
	font-weight: 700;
	color: #10293A;
	margin-bottom: 18px;
	letter-spacing: -0.02em;
	line-height: 1.12;
}
.dc2-hl {
	background: linear-gradient(90deg, #F2B705, #FFDD66);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.dc2-sub { font-size: 1.16rem; color: #3D5866; max-width: 540px; margin-bottom: 30px; }
@media (max-width: 920px) { .dc2-sub { margin-left: auto; margin-right: auto; } }
.dc2-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
@media (max-width: 920px) { .dc2-cta-row { justify-content: center; } }
.dc-btn-ghost-light {
	background: #FFFFFF;
	color: var(--dc-teal-deep) !important;
	box-shadow: inset 0 0 0 2px var(--dc-teal);
}
.dc-btn-ghost-light:hover { background: var(--dc-aqua); }
.dc2-chips { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 920px) { .dc2-chips { justify-content: center; } }
.dc2-chip {
	font-family: var(--dc-font-display);
	font-weight: 600;
	font-size: 13.5px;
	color: var(--dc-teal-deep);
	background: #FFFFFF;
	border: 1px solid var(--dc-aqua-2);
	border-radius: 999px;
	padding: 7px 15px;
	box-shadow: 0 4px 14px -8px rgba(29, 84, 112, 0.35);
}
.dc2-hero-art img { display: block; width: 100%; height: auto; max-width: 600px; margin: 0 auto; filter: drop-shadow(0 26px 40px rgba(29, 84, 112, 0.22)); }
.dc2-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.dc2-wave svg { width: 100%; height: 90px; display: block; }

/* ------------------------------------------------------------ ticker */
.dc2-ticker {
	background: var(--dc-gold);
	overflow: hidden;
	padding: 13px 0;
	border-top: 3px solid #123A4F;
	border-bottom: 3px solid #123A4F;
}
.dc2-ticker-track {
	display: flex;
	gap: 34px;
	white-space: nowrap;
	width: max-content;
	animation: dc2-marquee 22s linear infinite;
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: 15.5px;
	letter-spacing: 0.14em;
	color: #123A4F;
}
.dc2-tick-star { color: #FFFFFF; }
@keyframes dc2-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .dc2-ticker-track { animation: none; } }

/* ---------------------------------------------------------- sections */
.dc2-aqua { background: linear-gradient(180deg, #F6FBFD 0%, #E8F4F8 100%); }
.dc2-dark {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(760px 380px at 104% 0%, rgba(242, 183, 5, 0.10), transparent 58%),
		#103752;
	color: #DCEFF7;
}
.dc2-dark p { color: #C9E2EE; }
.dc2-dark .dc-lead { color: #EAF6FB; font-weight: 700; }

.dc2-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #8A6D00;
	margin-bottom: 12px;
}
.dc2-kicker i {
	font-style: normal;
	font-size: 12px;
	color: #FFFFFF;
	background: var(--dc-teal);
	border-radius: 999px;
	padding: 4px 10px;
	letter-spacing: 0.06em;
}
.dc2-kicker-gold { color: #FFDD66; }
.dc2-kicker-gold i { background: var(--dc-gold); color: #123A4F; }

.dc2-h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; margin-bottom: 18px; }
.dc2-h2-light { color: #FFFFFF; }
.dc2-h3-light { color: #FFFFFF; font-size: 1.55rem; margin: 40px 0 8px; }

/* ------------------------------------------------------------- split */
.dc2-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 46px; align-items: center; margin-bottom: 26px; }
@media (max-width: 860px) { .dc2-split { grid-template-columns: 1fr; } }
.dc2-split-art img { width: 100%; height: auto; }

/* -------------------------------------------------------------- shout */
.dc2-shout {
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: clamp(1.25rem, 2.6vw, 1.7rem);
	line-height: 1.35;
	color: var(--dc-teal-ink);
	background: #FFFFFF;
	border-radius: var(--dc-radius);
	border-left: 6px solid var(--dc-gold);
	box-shadow: var(--dc-shadow);
	padding: 26px 32px;
	margin: 30px 0;
}
.dc2-shout em { font-style: normal; color: var(--dc-teal); }

/* --------------------------------------------------------- tilt cards */
.dc2-tilt-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 40px 0 30px; }
@media (max-width: 860px) { .dc2-tilt-row { grid-template-columns: 1fr; } }
.dc2-tilt-card {
	background: #FFFFFF;
	border-radius: var(--dc-radius);
	border: 1px solid var(--dc-aqua-2);
	box-shadow: 0 10px 30px -18px rgba(29, 84, 112, 0.4);
	padding: 30px 28px;
	transform: rotate(var(--tilt, 0deg));
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dc2-tilt-card:hover { transform: rotate(0deg) translateY(-8px); box-shadow: var(--dc-shadow); }
.dc2-tilt-ico { font-size: 34px; display: block; margin-bottom: 12px; }
.dc2-tilt-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.dc2-biz { font-size: 1.05rem; }

/* -------------------------------------------------------- glass cards */
.dc2-glass-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 10px; }
@media (max-width: 860px) { .dc2-glass-row { grid-template-columns: 1fr; } }
.dc2-glass {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
	border-radius: var(--dc-radius);
	padding: 28px 26px;
	text-align: left;
	transition: transform 0.22s ease, background 0.22s ease;
}
.dc2-glass:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.12); }
.dc2-glass h3 { color: #FFDD66; font-size: 1.2rem; margin-bottom: 8px; }
.dc2-glass p { margin: 0; }

/* ----------------------------------------------------------- counters */
.dc2-counters {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 44px 0 30px;
	padding: 26px 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 860px) { .dc2-counters { grid-template-columns: repeat(2, 1fr); } }
.dc2-counter-num {
	display: block;
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--dc-gold);
	line-height: 1.1;
}
.dc2-counter-label { font-size: 0.86rem; color: #C9E2EE; }

/* ----------------------------------------------------------- timeline */
.dc2-timeline { position: relative; margin-top: 40px; display: grid; gap: 26px; }
.dc2-timeline::before {
	content: '';
	position: absolute;
	left: 27px;
	top: 10px;
	bottom: 10px;
	width: 3px;
	border-radius: 3px;
	background: linear-gradient(180deg, var(--dc-gold), var(--dc-teal));
}
.dc2-step { display: flex; gap: 24px; align-items: flex-start; position: relative; }
.dc2-step-num {
	flex: 0 0 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dc-gold);
	color: var(--dc-teal-ink);
	font-family: var(--dc-font-display);
	font-weight: 800;
	font-size: 1.4rem;
	border-radius: 50%;
	border: 4px solid #FFFFFF;
	box-shadow: 0 6px 18px -6px rgba(29, 84, 112, 0.5);
	z-index: 1;
}
.dc2-step-body {
	flex: 1;
	background: #FFFFFF;
	border: 1px solid var(--dc-aqua-2);
	border-radius: var(--dc-radius);
	padding: 24px 28px;
	box-shadow: 0 8px 26px -18px rgba(29, 84, 112, 0.45);
}
.dc2-step-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.dc2-step-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- WAY */
.dc2-way { padding-top: 70px; }
.dc2-rocket { width: 280px; height: auto; margin-bottom: 6px; animation: dc-float 7s ease-in-out infinite; }
.dc2-pulse { animation: dc2-pulse 2.4s ease-in-out infinite; }
@keyframes dc2-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(242, 183, 5, 0.55); }
	55% { box-shadow: 0 0 0 18px rgba(242, 183, 5, 0); }
}
@media (prefers-reduced-motion: reduce) { .dc2-rocket, .dc2-pulse { animation: none; } }

/* ==================================================================== */
/* V3 WOW: aurora, shimmer, tilt, sparkles, bursts                      */
/* ==================================================================== */

/* Scroll progress bar */
#dc-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	background: linear-gradient(90deg, var(--dc-gold), #FFDD66);
	z-index: 200;
	pointer-events: none;
	box-shadow: 0 0 12px rgba(242, 183, 5, 0.6);
}

/* Aurora mesh in dark sections */
.dc3-aurora { position: absolute; inset: -20%; pointer-events: none; filter: blur(60px); opacity: 0.55; }
.dc3-aurora i { position: absolute; border-radius: 50%; display: block; mix-blend-mode: screen; }
.dc3-aurora i:nth-child(1) {
	width: 55%; height: 55%; left: -8%; top: 6%;
	background: radial-gradient(circle, rgba(64, 178, 216, 0.55), transparent 65%);
	animation: dc3-drift-a 13s ease-in-out infinite alternate;
}
.dc3-aurora i:nth-child(2) {
	width: 45%; height: 45%; right: -6%; top: -8%;
	background: radial-gradient(circle, rgba(242, 183, 5, 0.35), transparent 65%);
	animation: dc3-drift-b 17s ease-in-out infinite alternate;
}
.dc3-aurora i:nth-child(3) {
	width: 50%; height: 50%; left: 32%; bottom: -18%;
	background: radial-gradient(circle, rgba(46, 213, 200, 0.35), transparent 65%);
	animation: dc3-drift-c 15s ease-in-out infinite alternate;
}
@keyframes dc3-drift-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(9%, 7%) scale(1.15); } }
@keyframes dc3-drift-b { from { transform: translate(0, 0) scale(1.1); } to { transform: translate(-8%, 10%) scale(0.95); } }
@keyframes dc3-drift-c { from { transform: translate(0, 0) scale(1); } to { transform: translate(-10%, -8%) scale(1.2); } }

/* Film grain for depth */
.dc3-grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

/* Twinkling sparkles */
.dc3-spark { position: absolute; fill: var(--dc-gold); pointer-events: none; animation: dc3-twinkle 3.4s ease-in-out infinite; }
.dc3-spark-a { width: 26px; top: 16%; left: 26%; animation-delay: 0.4s; }
.dc3-spark-b { width: 16px; top: 58%; right: 24%; animation-delay: 1.5s; }
.dc3-spark-c { width: 20px; top: 30%; right: 40%; animation-delay: 2.4s; }
@keyframes dc3-twinkle {
	0%, 100% { opacity: 0.15; transform: scale(0.7) rotate(0deg); }
	50% { opacity: 0.95; transform: scale(1.15) rotate(18deg); }
}

/* Highlighter sweep under the key phrase */
.dc2-hl {
	color: var(--dc-teal-deep);
	background: linear-gradient(180deg, transparent 60%, rgba(242, 183, 5, 0.5) 60%, rgba(242, 183, 5, 0.5) 90%, transparent 90%);
	padding: 0 6px;
	margin: 0 -6px;
	border-radius: 6px;
}

/* Gold underline swash on section headings when revealed */
.dc2-h2 { position: relative; padding-bottom: 12px; }
.dc2-h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 76px;
	height: 5px;
	border-radius: 5px;
	background: linear-gradient(90deg, var(--dc-gold), rgba(242, 183, 5, 0.25));
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.dc-center .dc2-h2::after { left: 50%; transform-origin: center; margin-left: -38px; }
.dc2-h2.dc-inview::after, .dc-inview .dc2-h2::after { transform: scaleX(1); }

/* Button shine sweep + press feedback */
.dc-btn { position: relative; overflow: hidden; cursor: pointer; }
.dc-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -80%;
	width: 50%;
	height: 100%;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: skewX(-20deg);
	transition: left 0.5s ease;
	pointer-events: none;
}
.dc-btn:hover::before { left: 130%; }
.dc-btn:active { transform: translateY(0) scale(0.97); }
.dc-btn-gold { box-shadow: 0 10px 30px -10px rgba(242, 183, 5, 0.55); }

/* 3D tilt cards (JS drives --rx / --ry / --gx / --gy) */
.dc3-tilt {
	transform: rotate(var(--tilt, 0deg)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
	will-change: transform;
	cursor: pointer;
}
.dc3-tilt:hover { transform: rotate(0deg) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px); }
.dc3-tilt::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.28), transparent 45%);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}
.dc3-tilt:hover::after { opacity: 1; }
.dc2-tilt-card, .dc-product-card, .dc2-glass, .dc2-step-body { position: relative; }

/* Tilt-card icon chips */
.dc2-tilt-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: linear-gradient(150deg, var(--dc-aqua), #FFFFFF);
	border: 1px solid var(--dc-aqua-2);
	color: var(--dc-teal);
	margin-bottom: 14px;
}
.dc2-tilt-ico svg { width: 26px; height: 26px; }
.dc3-tico { display: inline-flex; color: var(--dc-teal-deep); }
.dc3-tico svg { width: 20px; height: 20px; }

/* Product card gradient ring on hover */
.dc-product-card { cursor: pointer; }
.dc-product-card::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: calc(var(--dc-radius) + 2px);
	background: linear-gradient(140deg, var(--dc-gold), var(--dc-teal), var(--dc-gold));
	opacity: 0;
	z-index: -1;
	transition: opacity 0.25s ease;
}
.dc-product-card:hover::before { opacity: 1; }

/* Glass upgrade per skill guidance */
.dc2-glass {
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	cursor: default;
}

/* Counter glow when landed */
.dc2-counter-num.dc3-landed { text-shadow: 0 0 22px rgba(242, 183, 5, 0.55); transition: text-shadow 0.4s ease; }

/* Nav link underline slide */
.dc-nav a { position: relative; }
.dc-nav a::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 6px;
	height: 2px;
	border-radius: 2px;
	background: var(--dc-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.22s ease;
}
.dc-nav a:hover::after { transform: scaleX(1); }

/* Ticker: pause on hover */
.dc2-ticker:hover .dc2-ticker-track { animation-play-state: paused; }

/* Magic bubble burst particles */
.dc3-pop {
	position: fixed;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 300;
	background: radial-gradient(circle at 32% 30%, #ffffff, var(--dc-teal) 70%);
	animation: dc3-pop 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.dc3-pop.gold { background: radial-gradient(circle at 32% 30%, #fff3c4, var(--dc-gold) 70%); }
@keyframes dc3-pop {
	0% { transform: translate(0, 0) scale(0.4); opacity: 1; }
	100% { transform: translate(var(--dx, 0px), var(--dy, -70px)) scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.dc3-aurora i, .dc3-spark, .dc2-hl { animation: none; }
	.dc2-h2::after { transition: none; transform: scaleX(1); }
	.dc-btn::before { display: none; }
	.dc3-tilt, .dc3-tilt:hover { transform: none; }
}

/* ------------------------------------------------------------- mobile */
@media (max-width: 767px) {
	html, body { overflow-x: clip; }

	/* Tables scroll inside their card instead of stretching the page. */
	.dc-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.dc-table thead, .dc-table tbody, .dc-table tfoot { min-width: 480px; display: table; width: 100%; }
	.dc-table th, .dc-table td { padding: 10px 12px; font-size: 14px; }

	.dc-reflink-row { flex-direction: column; }
	.dc-stat-grid { grid-template-columns: 1fr 1fr; }
	.dc-card { padding: 22px; }
}
