/*
Theme Name: Creatiq Agency
Theme URI: https://creatiqagency.com
Author: Creatiq Agency
Author URI: https://creatiqagency.com
Description: High-performance client portal theme for Creatiq Agency with WooCommerce Subscriptions integration.
Version: 1.0.21
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creatiq-agency
Tags: custom-logo, dark-mode, e-commerce, full-width-template, woocommerce
*/

:root {
	--creatiq-brand: #3eb4ed;
	--creatiq-brand-soft: rgba(62, 180, 237, 0.14);
	--creatiq-bg-deep: #050508;
	--creatiq-bg: #0c0d12;
	--creatiq-bg-elevated: #12141c;
	--creatiq-surface: #181b26;
	--creatiq-border: rgba(255, 255, 255, 0.08);
	--creatiq-text: #e8eaef;
	--creatiq-text-muted: #9aa3b2;
	--creatiq-text-faint: #5c6575;
	--creatiq-radius: 14px;
	--creatiq-radius-sm: 10px;
	--creatiq-max: 1120px;
	--creatiq-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--creatiq-space-section: clamp(4rem, 10vw, 7rem);
	--creatiq-space-block: clamp(2rem, 5vw, 3.5rem);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--creatiq-font);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--creatiq-text);
	background: var(--creatiq-bg-deep);
	background-image:
		radial-gradient(ellipse 120% 80% at 50% -30%, rgba(62, 180, 237, 0.12), transparent 55%),
		radial-gradient(ellipse 80% 50% at 100% 100%, rgba(62, 180, 237, 0.05), transparent 45%);
	background-attachment: fixed;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

svg {
	max-width: 100%;
}

a {
	color: var(--creatiq-brand);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: #6bc9f2;
}

h1,
h2,
h3,
h4 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #f4f6fb;
	margin-block: 0 0.5em;
}

h1 {
	font-size: clamp(2rem, 4.5vw, 3rem);
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
	font-size: 1.2rem;
}

p {
	margin-block: 0 1em;
	color: var(--creatiq-text-muted);
}

p:last-child {
	margin-bottom: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--creatiq-border);
	background: rgba(5, 5, 8, 0.82);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	max-width: var(--creatiq-max);
	margin-inline: auto;
	padding: 0.55rem clamp(1.25rem, 4vw, 1.5rem) 0.4rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	row-gap: 0.5rem;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	min-width: min-content;
	max-width: min(100%, 520px);
}

.site-brand .custom-logo-link,
.site-brand__mark {
	display: flex;
	align-items: center;
	line-height: 0;
	flex-shrink: 0;
}

.site-brand .custom-logo-link img,
.site-brand__mark img {
	display: block;
	width: auto !important;
	max-width: min(100%, 480px) !important;
	height: clamp(64px, 8vw, 104px) !important;
	object-fit: contain;
}

.site-brand__title {
	flex: 0 1 auto;
	min-width: 0;
	font-size: 1.05rem;
	line-height: 1.15;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--creatiq-text);
	text-decoration: none;
}

.site-brand__title:hover {
	color: var(--creatiq-brand);
}

.site-header__end {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1.25rem;
	margin-left: auto;
}

.site-header__portal-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--creatiq-brand);
	border: 1px solid #3eb4ed;
	border-radius: var(--creatiq-radius-sm);
	background: transparent;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header__portal-link:hover {
	color: var(--creatiq-bg-deep);
	background: #3eb4ed;
	box-shadow: 0 0 0 1px rgba(62, 180, 237, 0.35);
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
}

.site-nav .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.site-nav a {
	color: var(--creatiq-text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
}

.site-nav a:hover {
	color: var(--creatiq-brand);
}

main {
	max-width: var(--creatiq-max);
	margin-inline: auto;
	padding: var(--creatiq-space-section) clamp(1.25rem, 4vw, 2rem) 5rem;
}

.section {
	margin-bottom: var(--creatiq-space-section);
}

.section__intro {
	max-width: 38rem;
	margin-bottom: var(--creatiq-space-block);
}

.section__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--creatiq-brand);
	margin-bottom: 0.75rem;
}

.hero {
	padding: clamp(2rem, 6vw, 4rem) 0 0;
	text-align: center;
}

.hero__inner {
	max-width: 40rem;
	margin-inline: auto;
}

.hero h1 {
	margin-bottom: 0.75rem;
}

.hero .lead {
	font-size: 1.125rem;
	color: var(--creatiq-text-muted);
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 900px) {
	.grid-3 {
		grid-template-columns: 1fr;
	}
}

.card {
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
	padding: 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.card--featured {
	border-color: rgba(62, 180, 237, 0.45);
	box-shadow:
		0 0 0 1px rgba(62, 180, 237, 0.12),
		0 28px 70px rgba(0, 0, 0, 0.45);
}

.card__title {
	font-size: 1.15rem;
	margin-bottom: 0.25rem;
}

.card__price {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--creatiq-text);
	margin-bottom: 1rem;
}

.card__price small {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--creatiq-text-muted);
}

.card__meta {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.card__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--creatiq-border);
	padding-bottom: 0.65rem;
}

.card__row:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.card__label {
	color: var(--creatiq-text-faint);
}

.card__value {
	color: var(--creatiq-text);
	text-align: right;
	font-weight: 500;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 1.25rem;
	border-radius: var(--creatiq-radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.15s ease;
}

.btn:active {
	transform: translateY(1px);
}

.btn--primary {
	background: var(--creatiq-brand);
	color: #050508;
	border-color: var(--creatiq-brand);
}

.btn--primary:hover {
	background: #6bc9f2;
	border-color: #6bc9f2;
	color: #050508;
}

.btn--ghost {
	background: transparent;
	border-color: var(--creatiq-border);
	color: var(--creatiq-text);
}

.btn--ghost:hover {
	border-color: rgba(62, 180, 237, 0.5);
	color: var(--creatiq-brand);
}

.btn[aria-disabled="true"] {
	opacity: 0.45;
	pointer-events: none;
}

.note {
	font-size: 0.875rem;
	color: var(--creatiq-text-faint);
	max-width: 48rem;
	margin-top: 1.5rem;
	line-height: 1.55;
}

.setup-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 900px) {
	.setup-grid {
		grid-template-columns: 1fr;
	}
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin: 1rem 0 1.5rem;
	flex-grow: 1;
}

.checklist li {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.9rem;
	color: var(--creatiq-text-muted);
	padding-left: 1.65rem;
}

.checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2rem;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 4px;
	background: var(--creatiq-brand-soft);
	border: 1px solid rgba(62, 180, 237, 0.35);
}

.checklist li.is-on::before {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--creatiq-brand);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2 4.2 8.4 11 1.6' stroke='%23050508' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.58rem 0.48rem;
	border-color: var(--creatiq-brand);
	line-height: 0;
}

.checklist li.is-off {
	opacity: 0.55;
}

.checklist li.is-off::before {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 2'%3E%3Crect width='12' height='2' rx='1' fill='%235c6575'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.55rem 0.14rem;
	border-color: var(--creatiq-border);
	line-height: 0;
}

.site-footer {
	border-top: 1px solid var(--creatiq-border);
	padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
	text-align: center;
	font-size: 0.875rem;
	color: var(--creatiq-text-faint);
	max-width: var(--creatiq-max);
	margin-inline: auto;
	box-sizing: border-box;
	width: 100%;
}

.site-footer p {
	margin: 0.4rem 0;
}

.site-footer p:first-child {
	margin-top: 0;
}

.site-footer p:last-child {
	margin-bottom: 0;
}

.site-footer a {
	color: var(--creatiq-brand);
	font-weight: 500;
	text-decoration: none;
}

.site-footer a:hover {
	color: #6bc9f5;
	text-decoration: underline;
}

#sidebar[role="complementary"],
#secondary.widget-area {
	max-width: var(--creatiq-max);
	margin-inline: auto;
	padding: clamp(1.25rem, 4vw, 2rem);
	box-sizing: border-box;
}

#sidebar[role="complementary"] .widget,
#secondary.widget-area .widget {
	margin: 0 0 1.75rem;
	color: var(--creatiq-text-muted);
}

#sidebar[role="complementary"] .widget:last-child,
#secondary.widget-area .widget:last-child {
	margin-bottom: 0;
}

#sidebar[role="complementary"] .widget-title,
#sidebar[role="complementary"] h2,
#secondary.widget-area .widget-title,
#secondary.widget-area h2 {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #f4f6fb;
	margin: 0 0 0.75rem;
}

#sidebar[role="complementary"] ul,
#secondary.widget-area ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidebar[role="complementary"] li,
#secondary.widget-area li {
	margin: 0.35rem 0;
}

#sidebar[role="complementary"] a,
#secondary.widget-area a {
	color: var(--creatiq-text-muted);
	text-decoration: none;
}

#sidebar[role="complementary"] a:hover,
#secondary.widget-area a:hover {
	color: var(--creatiq-brand);
}

#sidebar[role="complementary"] .search-form,
#secondary.widget-area .search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: stretch;
	max-width: 22rem;
}

#sidebar[role="complementary"] .search-form label,
#secondary.widget-area .search-form label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

#sidebar[role="complementary"] .search-field,
#secondary.widget-area .search-field {
	flex: 1 1 10rem;
	min-width: 0;
	background: var(--creatiq-surface);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius-sm);
	color: var(--creatiq-text);
	padding: 0.55rem 0.75rem;
	font-size: 0.875rem;
	box-shadow: none;
}

#sidebar[role="complementary"] .search-field::placeholder,
#secondary.widget-area .search-field::placeholder {
	color: var(--creatiq-text-faint);
	opacity: 1;
}

#sidebar[role="complementary"] .search-field:focus,
#secondary.widget-area .search-field:focus {
	border-color: rgba(62, 180, 237, 0.55);
	outline: none;
	box-shadow: 0 0 0 2px var(--creatiq-brand-soft);
}

#sidebar[role="complementary"] .search-submit,
#secondary.widget-area .search-submit {
	flex: 0 0 auto;
	background: var(--creatiq-brand);
	border: 1px solid var(--creatiq-brand);
	border-radius: var(--creatiq-radius-sm);
	color: var(--creatiq-bg-deep);
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.55rem 1rem;
	cursor: pointer;
	box-shadow: none;
}

#sidebar[role="complementary"] .search-submit:hover,
#secondary.widget-area .search-submit:hover {
	filter: brightness(1.06);
}

@media (min-width: 768px) {
	#secondary.widget-area {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
		gap: 1.5rem 2rem;
		align-items: start;
	}

	#secondary.widget-area .widget {
		margin-bottom: 0;
	}
}

.woocommerce .creatiq-wrap,
.woocommerce-page .creatiq-wrap {
	max-width: var(--creatiq-max);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2rem);
}

body.woocommerce-checkout,
body.woocommerce-order-received {
	background: var(--creatiq-bg-deep);
	color: var(--creatiq-text-muted);
}

body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .woocommerce-page {
	color: var(--creatiq-text-muted);
}

body.woocommerce-checkout .woocommerce h1,
body.woocommerce-checkout .woocommerce h2,
body.woocommerce-checkout .woocommerce h3,
body.woocommerce-checkout .woocommerce h4,
body.woocommerce-checkout .woocommerce legend {
	color: #f4f6fb;
}

body.woocommerce-checkout .woocommerce form.checkout {
	background: transparent;
}

body.woocommerce-checkout .woocommerce form .form-row label {
	color: var(--creatiq-text-muted);
}

body.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row select,
body.woocommerce-checkout .woocommerce form .form-row textarea {
	background: var(--creatiq-surface);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius-sm);
	color: var(--creatiq-text);
	padding: 0.65rem 0.85rem;
	box-shadow: none;
}

body.woocommerce-checkout .woocommerce form .form-row input.input-text::placeholder,
body.woocommerce-checkout .woocommerce form .form-row textarea::placeholder {
	color: var(--creatiq-text-faint);
	opacity: 1;
}

body.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
body.woocommerce-checkout .woocommerce form .form-row select:focus,
body.woocommerce-checkout .woocommerce form .form-row textarea:focus {
	border-color: rgba(62, 180, 237, 0.55);
	outline: none;
	box-shadow: 0 0 0 2px var(--creatiq-brand-soft);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout #order_review_heading {
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
	padding: 1rem 1.25rem;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	border-color: var(--creatiq-border);
	color: var(--creatiq-text-muted);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
	color: var(--creatiq-text);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
	color: var(--creatiq-text);
}

body.woocommerce-checkout #payment {
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
}

body.woocommerce-checkout #payment ul.payment_methods {
	border-bottom-color: var(--creatiq-border);
}

body.woocommerce-checkout #payment div.payment_box {
	background: var(--creatiq-surface);
	color: var(--creatiq-text-muted);
	border-radius: var(--creatiq-radius-sm);
}

body.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--creatiq-surface);
}

body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info {
	background: var(--creatiq-surface);
	border-color: var(--creatiq-brand);
	color: var(--creatiq-text);
	border-radius: var(--creatiq-radius-sm);
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout .woocommerce #place_order,
body.woocommerce-checkout button#place_order,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button__text {
	background: var(--creatiq-brand) !important;
	color: #050508 !important;
	border: 1px solid var(--creatiq-brand) !important;
	border-radius: var(--creatiq-radius-sm) !important;
	font-weight: 600 !important;
	padding: 0.85rem 1.5rem !important;
	text-shadow: none !important;
	box-shadow: none !important;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout button#place_order:hover {
	background: #6bc9f2 !important;
	border-color: #6bc9f2 !important;
	color: #050508 !important;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
body.woocommerce-checkout .woocommerce-privacy-policy-text {
	color: var(--creatiq-text-faint);
	font-size: 0.9rem;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
	background: var(--creatiq-surface);
	border-color: var(--creatiq-border);
	border-radius: var(--creatiq-radius-sm);
	min-height: 2.75rem;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--creatiq-text);
	line-height: 2.65rem;
	padding-left: 0.85rem;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--creatiq-text-muted) transparent transparent transparent;
}

body.woocommerce-checkout .select2-dropdown {
	background: var(--creatiq-surface);
	border-color: var(--creatiq-border);
}

body.woocommerce-checkout .select2-results__option {
	color: var(--creatiq-text);
}

body.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected],
body.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[data-selected] {
	background: var(--creatiq-brand-soft);
	color: var(--creatiq-text);
}

body.woocommerce-checkout .wc-stripe-banner-checkout,
body.woocommerce-checkout .woocommerce-checkout .stripe-card-group,
body.woocommerce-checkout #wc-stripe-upe-form,
body.woocommerce-checkout .wc_payment_method label {
	color: var(--creatiq-text-muted);
}

body.woocommerce-checkout .testmode-badge {
	background: var(--creatiq-brand-soft);
	color: var(--creatiq-brand);
	border: 1px solid rgba(62, 180, 237, 0.35);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-thumbnail,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-thumbnail,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name img {
	display: none !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
	padding-left: 0;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image,
body.woocommerce-checkout .wc-block-components-order-summary-item__image-link,
body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
	display: none !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item {
	padding-left: 0;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
	flex: 1 1 auto;
	min-width: 0;
}

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout {
	color: var(--creatiq-text-muted);
}

body.woocommerce-checkout .wc-block-checkout h1,
body.woocommerce-checkout .wc-block-checkout h2,
body.woocommerce-checkout .wc-block-checkout h3,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-title {
	color: #f4f6fb;
}

body.woocommerce-checkout .wc-block-checkout input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout .wc-block-checkout textarea {
	background-color: var(--creatiq-surface) !important;
	border: 1px solid var(--creatiq-border) !important;
	border-radius: var(--creatiq-radius-sm) !important;
	color: var(--creatiq-text) !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-checkout input::placeholder,
body.woocommerce-checkout .wc-block-checkout textarea::placeholder {
	color: var(--creatiq-text-faint);
	opacity: 1;
}

body.woocommerce-checkout .wc-block-checkout__actions,
body.woocommerce-checkout .wc-block-checkout__actions.wp-block-group,
body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block {
	background: transparent !important;
	background-color: transparent !important;
	padding-top: 0 !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: transparent !important;
	padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button button,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button {
	background: var(--creatiq-brand) !important;
	color: #050508 !important;
	border: 1px solid var(--creatiq-brand) !important;
	border-radius: var(--creatiq-radius-sm) !important;
	font-weight: 600 !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button button:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button:hover {
	background: #6bc9f2 !important;
	border-color: #6bc9f2 !important;
	color: #050508 !important;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel,
body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-panel {
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
}

body.woocommerce-checkout .wc-block-components-order-summary-item {
	border-color: var(--creatiq-border);
}

body.woocommerce-checkout .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-item__value {
	color: var(--creatiq-text);
}

body.woocommerce-checkout .wc-block-components-notice-banner {
	background: var(--creatiq-surface);
	border-color: var(--creatiq-border);
	color: var(--creatiq-text);
}

body.woocommerce-checkout main,
body.woocommerce-checkout #main {
	padding: 1rem clamp(1.25rem, 4vw, 2rem) 2.5rem;
	max-width: min(1180px, 100%);
}

body.woocommerce-checkout .wc-block-checkout {
	max-width: 1180px;
	margin-inline: auto;
}

body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__container {
	background-color: var(--creatiq-surface) !important;
	border: 1px solid var(--creatiq-border) !important;
	border-radius: var(--creatiq-radius-sm) !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select {
	color: var(--creatiq-text) !important;
	background: transparent !important;
	border-color: transparent !important;
}

body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__expand {
	color: var(--creatiq-text-muted);
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label {
	color: var(--creatiq-text-muted) !important;
}

body.woocommerce-checkout .wc-block-components-text-input .wc-block-components-text-input__input,
body.woocommerce-checkout .wc-block-components-text-input input {
	background-color: var(--creatiq-surface) !important;
	border-color: var(--creatiq-border) !important;
	color: var(--creatiq-text) !important;
}

body.woocommerce-checkout .wc-block-components-textarea {
	background-color: var(--creatiq-surface) !important;
	border-color: var(--creatiq-border) !important;
	color: var(--creatiq-text) !important;
}

body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
	background-color: var(--creatiq-surface) !important;
	border-color: var(--creatiq-border) !important;
}

body.woocommerce-checkout .wc-block-components-panel__button,
body.woocommerce-checkout .wc-block-components-panel__button:hover {
	color: var(--creatiq-text) !important;
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button a {
	color: var(--creatiq-brand);
}

body.woocommerce-checkout .wc-block-components-totals-footer-item-recurring-totals {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--creatiq-border);
}

body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
	position: sticky;
	top: 5.5rem;
	align-self: flex-start;
}

@media (max-width: 699px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
		position: static;
	}
}

body.woocommerce-checkout .wc-block-components-sidebar-layout {
	align-items: flex-start;
}

body.woocommerce-checkout .wp-site-blocks main,
body.woocommerce-checkout main.wp-block-group {
	padding-top: 0.25rem !important;
}

body.woocommerce-checkout .wp-block-post-title,
body.woocommerce-checkout h1.wp-block-post-title {
	margin-top: 0.35rem !important;
	margin-bottom: 1rem !important;
}

body.woocommerce-checkout .wc-block-checkout h1:first-of-type,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-title:first-of-type {
	margin-top: 0;
}

body.woocommerce-checkout .wc-block-components-address-form__secondary button,
body.woocommerce-checkout .wc-block-components-address-form__secondary {
	color: var(--creatiq-brand) !important;
}

body.woocommerce-checkout .wc-block-checkout__payment-method,
body.woocommerce-checkout .wc-block-components-checkout-payment-methods {
	border: 1px solid var(--creatiq-border) !important;
	border-radius: var(--creatiq-radius-sm);
	background: var(--creatiq-bg-elevated) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
body.woocommerce-checkout .wc-block-components-radio-control-accordion-option {
	border-color: var(--creatiq-border) !important;
}

body.creatiq-portal-account.woocommerce-account .woocommerce {
	max-width: var(--creatiq-max);
	margin-inline: auto;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) #main .section > h1 {
	margin-bottom: 1rem;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce {
	width: 100%;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce #customer_login {
	display: flex !important;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 1.5rem;
	width: 100%;
	max-width: min(100%, 52rem);
	margin-inline: auto;
	overflow: hidden;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce #customer_login .col-1,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce #customer_login .col-2 {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: 100% !important;
	flex: 1 1 auto;
	margin: 0 !important;
	min-width: 0;
	padding: clamp(1rem, 3vw, 1.5rem);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
	background: var(--creatiq-bg-elevated);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce #customer_login h2 {
	margin-top: 0;
	color: #f4f6fb;
	font-size: 1.25rem;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-login,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-register {
	margin: 0;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .form-row {
	margin-bottom: 1rem;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .form-row .input-text,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .form-row input[type="password"],
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .form-row input[type="email"],
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .form-row input[type="text"] {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 0.85rem;
	background: var(--creatiq-surface);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--creatiq-text);
	border-radius: var(--creatiq-radius-sm);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .password-input,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .password-input .input-text {
	width: 100%;
	max-width: 100%;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .show-password-input {
	color: var(--creatiq-brand);
	background: transparent;
	border: none;
	cursor: pointer;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .form-row .input-text:focus,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .form-row input:focus {
	border-color: #3eb4ed;
	outline: none;
	box-shadow: 0 0 0 2px rgba(62, 180, 237, 0.2);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce label {
	color: var(--creatiq-text);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-LostPassword a,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-privacy-policy-text a {
	color: var(--creatiq-brand);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-privacy-policy-text,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-register > p {
	color: var(--creatiq-text-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-login__submit,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-register__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.25rem;
	font-weight: 600;
	border-radius: var(--creatiq-radius-sm);
	border: 1px solid #3eb4ed;
	color: var(--creatiq-bg-deep);
	background: #3eb4ed;
	cursor: pointer;
	transition: filter 0.2s ease, box-shadow 0.2s ease;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-login__submit:hover,
body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-register__submit:hover {
	filter: brightness(1.08);
	box-shadow: 0 0 0 2px rgba(62, 180, 237, 0.25);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form__label-for-checkbox {
	color: var(--creatiq-text-muted);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form__input-checkbox {
	accent-color: #3eb4ed;
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce > .woocommerce-form-login.login {
	max-width: 28rem;
	width: 100%;
	margin-inline: auto;
	padding: clamp(1rem, 3vw, 1.5rem);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
	background: var(--creatiq-bg-elevated);
}

body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce > .woocommerce-form-login.login h2 {
	margin-top: 0;
	color: #f4f6fb;
	font-size: 1.25rem;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-message .button,
body.creatiq-portal-account.woocommerce-account .woocommerce-message a.button,
body.creatiq-portal-account.woocommerce-account .woocommerce-info .button,
body.creatiq-portal-account.woocommerce-account .woocommerce-info a.button {
	float: none !important;
	display: inline-flex !important;
	align-items: center;
	margin-top: 0.35rem;
	border: 1px solid #3eb4ed !important;
	color: var(--creatiq-bg-deep) !important;
	background: #3eb4ed !important;
	text-decoration: none !important;
	border-radius: var(--creatiq-radius-sm) !important;
	padding: 0.45rem 1rem !important;
	font-weight: 600 !important;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-message .button:hover,
body.creatiq-portal-account.woocommerce-account .woocommerce-message a.button:hover {
	filter: brightness(1.08);
}

@media (min-width: 640px) {
	body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce #customer_login {
		flex-direction: row;
		align-items: stretch;
		gap: 1.5rem 2rem;
	}

	body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce #customer_login .col-1,
	body.creatiq-portal-account.woocommerce-account:not(.logged-in) .woocommerce #customer_login .col-2 {
		flex: 1 1 0;
		width: auto !important;
	}
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: 100%;
	margin-bottom: 2rem;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	border-bottom: 1px solid var(--creatiq-border);
	padding-bottom: 0.75rem;
	margin: 0;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	margin: 0;
	list-style: none;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--creatiq-text-muted);
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: var(--creatiq-radius-sm);
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	color: var(--creatiq-brand);
	border-color: rgba(62, 180, 237, 0.45);
	background: var(--creatiq-brand-soft);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	color: var(--creatiq-brand);
	border-color: #3eb4ed;
	background: rgba(62, 180, 237, 0.12);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: 100%;
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
	background: var(--creatiq-bg-elevated);
	padding: clamp(1.25rem, 3vw, 1.75rem);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content fieldset {
	border-color: var(--creatiq-border);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .shop_table {
	border-collapse: collapse;
	width: 100%;
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius-sm);
	overflow: hidden;
	background: var(--creatiq-surface);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table th,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table td,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .shop_table th,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .shop_table td {
	border-color: var(--creatiq-border);
	color: var(--creatiq-text-muted);
	padding: 0.75rem 1rem;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table th,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .shop_table th {
	background: var(--creatiq-bg);
	color: var(--creatiq-text);
	font-weight: 600;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content a.button,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content button.button,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .wcs-switch-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.15rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--creatiq-radius-sm);
	border: 1px solid #3eb4ed;
	color: var(--creatiq-brand);
	background: rgba(62, 180, 237, 0.1);
	transition: background 0.2s ease, color 0.2s ease;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content button.button:hover,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .wcs-switch-link:hover {
	color: var(--creatiq-bg-deep);
	background: #3eb4ed;
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form .input-text,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form input[type="password"],
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form input[type="email"],
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form input[type="text"],
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form textarea,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form select {
	background: var(--creatiq-bg);
	border: 1px solid var(--creatiq-border);
	color: var(--creatiq-text);
	border-radius: var(--creatiq-radius-sm);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form .input-text:focus,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form input:focus,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form textarea:focus,
body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content form select:focus {
	border-color: #3eb4ed;
	outline: none;
	box-shadow: 0 0 0 2px rgba(62, 180, 237, 0.2);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content label {
	color: var(--creatiq-text);
}

body.creatiq-portal-account.woocommerce-account .woocommerce-error,
body.creatiq-portal-account.woocommerce-account .woocommerce-message,
body.creatiq-portal-account.woocommerce-account .woocommerce-info {
	border-radius: var(--creatiq-radius-sm);
	border-left-width: 4px;
	border-left-color: #3eb4ed;
	background: var(--creatiq-surface);
	color: var(--creatiq-text-muted);
}

body.logged-in.creatiq-portal-account.woocommerce-account #main {
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

body.logged-in.creatiq-portal-account.woocommerce-account #main article.section > h1 {
	display: none;
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce {
	direction: ltr;
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none !important;
	width: 100% !important;
	max-width: 100%;
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: 100%;
	min-width: 0;
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 0 1rem;
	padding: 1.5rem 1.25rem;
	text-align: center;
	border: 1px solid var(--creatiq-border);
	border-left: 4px solid #3eb4ed;
	background: var(--creatiq-surface);
	color: var(--creatiq-text);
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button,
body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message .button,
body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info a.button,
body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message a.button {
	float: none !important;
	display: inline-flex !important;
	margin-top: 1rem;
	margin-inline: 0.25rem;
	vertical-align: middle;
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--creatiq-border);
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button {
	margin: 0;
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__header-order-actions,
body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions {
	text-align: end;
}

body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button {
	margin: 0.15rem 0 0.15rem 0.35rem;
}

@media (min-width: 768px) {
	body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce {
		display: grid;
		grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
		gap: 2rem;
		align-items: start;
	}

	body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation {
		grid-column: 1;
		margin-bottom: 0;
	}

	body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-content {
		grid-column: 2;
	}

	body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation ul {
		flex-direction: column;
		border-bottom: none;
		border-right: 1px solid var(--creatiq-border);
		padding-right: 1rem;
		padding-bottom: 0;
	}

	body.logged-in.creatiq-portal-account.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
		width: 100%;
	}
}

body.creatiq-single-product.single-product #main {
	padding-top: clamp(1.25rem, 4vw, 2rem);
}

body.creatiq-single-product.single-product .woocommerce-breadcrumb {
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
	color: var(--creatiq-text-muted);
}

body.creatiq-single-product.single-product .woocommerce-breadcrumb a {
	color: var(--creatiq-text-muted);
	text-decoration: none;
}

body.creatiq-single-product.single-product .woocommerce-breadcrumb a:hover {
	color: var(--creatiq-brand);
}

body.creatiq-single-product.single-product div.product {
	float: none !important;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

body.creatiq-single-product.single-product div.product .summary.entry-summary {
	float: none !important;
	width: 100% !important;
	max-width: 100%;
}

body.creatiq-single-product.single-product .woocommerce-product-gallery {
	display: none !important;
}

body.creatiq-single-product.single-product section.related.products img,
body.creatiq-single-product.single-product section.up-sells img {
	display: none !important;
}

body.creatiq-single-product.single-product .summary.entry-summary {
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
	padding: clamp(1.25rem, 3vw, 1.75rem);
}

body.creatiq-single-product.single-product .product_title {
	margin-top: 0;
	color: #f4f6fb;
}

body.creatiq-single-product.single-product div.product p.price,
body.creatiq-single-product.single-product div.product span.price {
	color: var(--creatiq-brand);
	font-size: 1.25rem;
	font-weight: 600;
}

body.creatiq-single-product.single-product div.product p.price del,
body.creatiq-single-product.single-product div.product span.price del {
	color: var(--creatiq-text-faint);
	opacity: 0.85;
}

body.creatiq-single-product.single-product .woocommerce-product-details__short-description,
body.creatiq-single-product.single-product .product_meta {
	color: var(--creatiq-text-muted);
	font-size: 0.95rem;
}

body.creatiq-single-product.single-product .product_meta a {
	color: var(--creatiq-brand);
}

body.creatiq-single-product.single-product table.group_table {
	border-collapse: collapse;
	width: 100%;
	margin: 1rem 0 1.25rem;
	background: var(--creatiq-surface);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius-sm);
	overflow: hidden;
}

body.creatiq-single-product.single-product table.group_table td,
body.creatiq-single-product.single-product table.group_table th {
	border-color: var(--creatiq-border);
	color: var(--creatiq-text);
	padding: 0.85rem 1rem;
	vertical-align: middle;
}

body.creatiq-single-product.single-product table.group_table .woocommerce-grouped-product-list-item__label a {
	color: var(--creatiq-brand);
	font-weight: 600;
	text-decoration: none;
}

body.creatiq-single-product.single-product table.group_table .woocommerce-grouped-product-list-item__label a:hover {
	text-decoration: underline;
}

body.creatiq-single-product.single-product table.group_table .woocommerce-grouped-product-list-item__price {
	color: var(--creatiq-text-muted);
	font-weight: 500;
}

body.creatiq-single-product.single-product .wc-grouped-product-add-to-cart-checkbox {
	width: 1.15rem;
	height: 1.15rem;
	accent-color: #3eb4ed;
	cursor: pointer;
}

body.creatiq-single-product.single-product .single_add_to_cart_button,
body.creatiq-single-product.single-product button.single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.5rem;
	font-weight: 600;
	border-radius: var(--creatiq-radius-sm);
	border: 1px solid #3eb4ed !important;
	background: #3eb4ed !important;
	color: var(--creatiq-bg-deep) !important;
	box-shadow: none;
	transition: filter 0.2s ease, box-shadow 0.2s ease;
}

body.creatiq-single-product.single-product .single_add_to_cart_button:hover,
body.creatiq-single-product.single-product button.single_add_to_cart_button:hover {
	filter: brightness(1.06);
	box-shadow: 0 0 0 2px rgba(62, 180, 237, 0.25);
}

body.creatiq-single-product.single-product .woocommerce-tabs {
	margin-top: 2rem;
}

body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid var(--creatiq-border);
}

body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs::before,
body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs::after {
	display: none;
}

body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs li::before,
body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs li::after {
	display: none;
	content: none;
}

body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}

body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.6rem 1rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--creatiq-text-muted);
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--creatiq-radius-sm) var(--creatiq-radius-sm) 0 0;
	text-decoration: none;
}

body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--creatiq-brand);
	border-color: rgba(62, 180, 237, 0.35);
}

body.creatiq-single-product.single-product .woocommerce-tabs ul.tabs li.active a {
	color: var(--creatiq-brand);
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-bottom-color: var(--creatiq-bg-elevated);
	margin-bottom: -1px;
}

body.creatiq-single-product.single-product .woocommerce-Tabs-panel {
	margin: 0;
	padding: 1.25rem 1rem;
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-top: none;
	border-radius: 0 0 var(--creatiq-radius) var(--creatiq-radius);
	color: var(--creatiq-text-muted);
}

body.creatiq-single-product.single-product .woocommerce-Tabs-panel h2 {
	color: #f4f6fb;
	font-size: 1.15rem;
}

body.creatiq-single-product.single-product #reviews .comment-reply-title,
body.creatiq-single-product.single-product #reviews label {
	color: var(--creatiq-text);
}

body.creatiq-single-product.single-product #review_form #respond input[type="text"],
body.creatiq-single-product.single-product #review_form #respond input[type="email"],
body.creatiq-single-product.single-product #review_form #respond textarea {
	background: var(--creatiq-bg);
	border: 1px solid var(--creatiq-border);
	color: var(--creatiq-text);
	border-radius: var(--creatiq-radius-sm);
	padding: 0.55rem 0.75rem;
	width: 100%;
	max-width: 36rem;
	box-sizing: border-box;
}

body.creatiq-single-product.single-product #review_form #respond input:focus,
body.creatiq-single-product.single-product #review_form #respond textarea:focus {
	border-color: #3eb4ed;
	outline: none;
	box-shadow: 0 0 0 2px rgba(62, 180, 237, 0.2);
}

body.creatiq-single-product.single-product #review_form #respond .form-submit input {
	border: 1px solid #3eb4ed;
	background: rgba(62, 180, 237, 0.12);
	color: var(--creatiq-brand);
	font-weight: 600;
	padding: 0.5rem 1.25rem;
	border-radius: var(--creatiq-radius-sm);
	cursor: pointer;
}

body.creatiq-single-product.single-product #review_form #respond .form-submit input:hover {
	background: #3eb4ed;
	color: var(--creatiq-bg-deep);
}

body.creatiq-single-product.single-product .star-rating span::before,
body.creatiq-single-product.single-product p.stars a {
	color: var(--creatiq-brand);
}

body.creatiq-single-product.single-product section.related,
body.creatiq-single-product.single-product section.upsells {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--creatiq-border);
}

body.creatiq-single-product.single-product section.related > h2,
body.creatiq-single-product.single-product section.upsells > h2 {
	color: #f4f6fb;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

body.creatiq-single-product.single-product ul.products li.product {
	background: var(--creatiq-bg-elevated);
	border: 1px solid var(--creatiq-border);
	border-radius: var(--creatiq-radius);
	padding: 1rem;
}

body.creatiq-single-product.single-product ul.products li.product .woocommerce-loop-product__title {
	color: #f4f6fb;
	font-size: 1rem;
}

body.creatiq-single-product.single-product ul.products li.product .price {
	color: var(--creatiq-brand);
}

body.creatiq-single-product.single-product .woocommerce-message,
body.creatiq-single-product.single-product .woocommerce-info,
body.creatiq-single-product.single-product .woocommerce-error {
	border-radius: var(--creatiq-radius-sm);
	border-left-width: 4px;
	border-left-color: #3eb4ed;
	background: var(--creatiq-surface);
	color: var(--creatiq-text-muted);
}

body.creatiq-single-product.single-product .woocommerce-message a.button,
body.creatiq-single-product.single-product .woocommerce-info a.button {
	border: 1px solid #3eb4ed !important;
	color: var(--creatiq-bg-deep) !important;
	background: #3eb4ed !important;
}

@media (min-width: 900px) {
	body.creatiq-single-product.single-product div.product {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
	}
}
