/* =========================================================
   GERL-CRAFT – THEME CSS CLEAN
   Aufgeräumte Haupt-CSS für Theme-Ordner / assets/css
   ========================================================= */

/* ---------------------------------------------------------
   0) Globale Design-Werte + Seitenbreiten
   --------------------------------------------------------- */

:root {
	/* zentrale Breite der Website */
	--gc-content-width: 1280px;
	--gc-readable-width: 1080px;
	--gc-page-gutter: clamp(1rem, 4vw, 3rem);

	/* Farben */
	--gc-bg-0: #010609;
	--gc-bg-1: #030e12;
	--gc-bg-2: #071f20;

	--gc-text: #f4f4ef;
	--gc-text-soft: rgba(225, 236, 239, 0.72);
	--gc-text-muted: rgba(225, 236, 239, 0.55);

	--gc-blue: #19a7d8;
	--gc-blue-light: #43c9f5;
	--gc-gold: #f0ac2b;
	--gc-gold-soft: #d8b067;
	--gc-gold-light: #ffd18a;

	--gc-border: rgba(255, 255, 255, 0.09);
	--gc-border-strong: rgba(255, 255, 255, 0.14);
	--gc-border-gold: rgba(240, 172, 43, 0.28);

	--gc-radius-lg: 24px;
	--gc-radius-md: 18px;
	--gc-radius-sm: 12px;
}

/* zentrale Inhaltsbreite */
body .alignwide,
body .gc-hero-content,
body .gc-intro-inner,
body .gc-section > .alignwide,
body .gc-section-heading,
body .wp-block-query.alignwide,
body .gc-feature-panel,
body .gc-contact-content,
body .gc-projects-page .gc-projects-header,
body .gc-projects-page .gc-projects-listing,
body.single-product .gc-product-layout,
body.single-product .wp-block-woocommerce-product-details,
body.single-product .wp-block-woocommerce-product-collection,
body.single-product .wp-block-woocommerce-breadcrumbs,
body.single-product .wc-block-components-notice-banner,
body.single-product .woocommerce-tabs {
	box-sizing: border-box;
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

/* volle Hintergrundflächen */
body .alignfull,
body .gc-hero,
body .gc-intro-strip,
body .gc-section {
	width: 100% !important;
	max-width: none !important;
}

/* lesbare Textbreite */
body .gc-section-lead,
body .gc-contact-lead,
body .gc-intro-copy,
body .gc-projects-header-note,
body .gc-shop-lead,
body .gc-shop-description {
	max-width: var(--gc-readable-width);
}

/* ---------------------------------------------------------
   1) Header
   --------------------------------------------------------- */

body .wp-site-blocks > header,
body header.wp-block-template-part,
body header {
	position: relative;
	z-index: 50;
	min-height: 72px;

	background:
		linear-gradient(
			180deg,
			rgba(1, 6, 9, 0.98) 0%,
			rgba(3, 10, 14, 0.96) 100%
		) !important;

	border-bottom: 1px solid rgba(255, 158, 44, 0.16);

	box-shadow:
		0 10px 34px rgba(0, 0, 0, 0.38),
		inset 0 -1px 0 rgba(255, 255, 255, 0.025);
}

body header > .wp-block-group,
body header .wp-block-template-part > .wp-block-group {
	box-sizing: border-box;
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin-right: auto !important;
	margin-left: auto !important;
	align-items: center !important;
}

body header .wp-block-group {
	align-items: center !important;
}

body header .wp-block-site-logo,
body header > .wp-block-group .wp-block-image:first-child {
	margin-right: 42px !important;
	opacity: 0.95;
}

body header .wp-block-site-logo img,
body header .wp-block-image img {
	width: auto !important;
	max-height: 48px !important;
	object-fit: contain;
}

body header .wp-block-navigation,
body header .wp-block-navigation__container {
	display: flex !important;
	align-items: center !important;
	gap: 0 !important;
}

body header .wp-block-navigation-item__content,
body header .wp-block-navigation a {
	color: var(--gc-gold) !important;
	font-size: 0.78rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

body header .wp-block-navigation-item__content:hover,
body header .wp-block-navigation a:hover {
	color: var(--gc-gold-light) !important;
	text-shadow: 0 0 12px rgba(244, 165, 49, 0.38);
}

body header .wp-block-navigation-item:not(:last-child)::after {
	content: "·";
	display: inline-block;
	margin: 0 15px;
	color: rgba(244, 165, 49, 0.38);
	font-weight: 900;
}

body header .gc-header-actions,
body header .gc-header-shop-actions {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 12px !important;
	width: auto !important;
	margin-left: 16px !important;
	padding: 0 !important;
	flex: 0 0 auto !important;
}

body header .wp-block-woocommerce-customer-account,
body header .wp-block-woocommerce-mini-cart,
body header .gc-header-account,
body header .gc-header-cart {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	margin: 0 0 0 10px !important;
	padding: 0 !important;
	flex: 0 0 auto !important;
}

body header .wp-block-woocommerce-customer-account a,
body header .gc-header-account a,
body header .wc-block-mini-cart__button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 38px !important;
	height: 38px !important;
	padding: 0 !important;
	color: var(--gc-gold-soft) !important;
	background: linear-gradient(180deg, rgba(20, 14, 9, 0.96) 0%, rgba(9, 8, 7, 0.98) 100%) !important;
	border: 1px solid rgba(173, 112, 30, 0.72) !important;
	border-radius: var(--gc-radius-sm) !important;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 220, 160, 0.08);
	text-decoration: none !important;
	transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body header .wp-block-woocommerce-customer-account a:hover,
body header .gc-header-account a:hover,
body header .wc-block-mini-cart__button:hover {
	transform: translateY(-1px);
	color: #f1d39a !important;
	border-color: rgba(214, 151, 56, 0.95) !important;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 16px rgba(190, 124, 35, 0.2);
}

body header .wp-block-woocommerce-customer-account svg,
body header .wp-block-woocommerce-customer-account svg path,
body header .gc-header-account svg,
body header .gc-header-account svg path,
body header .wc-block-mini-cart__button svg,
body header .wc-block-mini-cart__button svg path {
	color: var(--gc-gold-soft) !important;
	fill: var(--gc-gold-soft) !important;
	stroke: var(--gc-gold-soft) !important;
	opacity: 1 !important;
}

body header .wc-block-mini-cart__badge {
	top: -6px !important;
	right: -6px !important;
	min-width: 18px !important;
	height: 18px !important;
	padding: 0 5px !important;
	color: #120d07 !important;
	background: var(--gc-gold-soft) !important;
	border: 1px solid rgba(255, 220, 150, 0.75) !important;
	border-radius: 999px !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

body header .wc-block-mini-cart__amount {
	display: none !important;
}

/* ---------------------------------------------------------
   2) Startseite / allgemeine Sektionen
   --------------------------------------------------------- */

body .gc-section {
	padding-right: var(--gc-page-gutter) !important;
	padding-left: var(--gc-page-gutter) !important;
}

body .gc-post-grid {
	gap: clamp(1.5rem, 2.5vw, 2rem) !important;
}

/* ---------------------------------------------------------
   3) Projektübersicht
   --------------------------------------------------------- */

.gc-projects-page {
	padding: clamp(2.5rem, 5vw, 5.5rem) var(--gc-page-gutter) clamp(4rem, 7vw, 7rem) !important;
}

.gc-projects-page .gc-projects-header {
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: clamp(2.5rem, 5vw, 5rem);
	padding: clamp(2rem, 5vw, 4.75rem);
	border: 1px solid rgba(240, 172, 43, 0.2);
	border-radius: 28px;
	background:
		radial-gradient(circle at 85% 20%, rgba(240, 172, 43, 0.14), transparent 36%),
		linear-gradient(135deg, rgba(5, 31, 32, 0.98), rgba(2, 18, 20, 0.98));
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.gc-projects-page .gc-projects-header::after {
	content: "";
	position: absolute;
	right: -90px;
	bottom: -130px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(240, 172, 43, 0.14);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(240, 172, 43, 0.035), 0 0 0 90px rgba(240, 172, 43, 0.02);
	pointer-events: none;
}

.gc-projects-page .gc-page-title {
	max-width: 900px;
	margin-top: 0.25rem;
	margin-bottom: 1rem;
	font-size: clamp(2.7rem, 7vw, 5.8rem);
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.gc-projects-page .gc-section-lead {
	margin-bottom: 1.5rem;
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	line-height: 1.75;
}

.gc-projects-header-note {
	margin: 0;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(225, 236, 239, 0.65);
	font-size: 0.93rem;
	line-height: 1.7;
}

.gc-projects-page .gc-dynamic-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.75rem, 3vw, 2.75rem);
	align-items: stretch;
}

.gc-projects-page .gc-post-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-lg);
	background: linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gc-projects-page .gc-post-card:hover {
	transform: translateY(-5px);
	border-color: rgba(240, 172, 43, 0.36);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.gc-projects-page .gc-card-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: rgba(255, 255, 255, 0.025);
}

.gc-projects-page .gc-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.gc-projects-page .gc-post-card:hover .gc-card-image img {
	transform: scale(1.035);
}

.gc-projects-page .gc-post-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	box-sizing: border-box;
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.gc-projects-page .gc-card-category {
	margin: 0 0 0.9rem;
	color: var(--gc-gold);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.gc-projects-page .gc-card-title {
	margin: 0 0 1rem;
	font-size: clamp(1.4rem, 2vw, 2rem);
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.gc-projects-page .gc-card-title a {
	color: inherit;
	text-decoration: none;
}

.gc-projects-page .gc-card-excerpt {
	margin: 0;
	color: var(--gc-text-soft);
	font-size: 1rem;
	line-height: 1.75;
}

.gc-projects-page .gc-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--gc-text-muted);
	font-size: 0.82rem;
}

.gc-projects-page .gc-card-footer a {
	color: var(--gc-gold);
	font-weight: 750;
	text-decoration: none;
}

.gc-projects-page .gc-card-footer a::after {
	content: " →";
}

.gc-projects-page .gc-dynamic-post-card:first-child {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
	min-height: 450px;
}

.gc-projects-page .gc-dynamic-post-card:first-child::before {
	content: "NEUESTES PROJEKT";
	position: absolute;
	z-index: 3;
	top: 1.25rem;
	left: 1.25rem;
	padding: 0.55rem 0.85rem;
	color: var(--gc-gold);
	background: rgba(3, 19, 20, 0.88);
	border: 1px solid rgba(240, 172, 43, 0.38);
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	backdrop-filter: blur(10px);
}

.gc-projects-page .gc-dynamic-post-card:first-child .gc-card-image {
	height: 100%;
	min-height: 450px;
	aspect-ratio: auto;
}

.gc-projects-page .gc-dynamic-post-card:first-child .gc-post-card-content {
	justify-content: center;
	padding: clamp(2rem, 4vw, 3.5rem);
}

.gc-projects-page .gc-dynamic-post-card:first-child .gc-card-title {
	font-size: clamp(2rem, 3.2vw, 3.25rem);
	line-height: 1.05;
}

.gc-projects-page .gc-dynamic-post-card:first-child .gc-card-excerpt {
	font-size: 1.05rem;
}

/* ---------------------------------------------------------
   4) WooCommerce – Einzelprodukt
   Voraussetzung: main.gc-single-product-page, .gc-product-layout,
   .gc-product-media, .gc-product-summary
   --------------------------------------------------------- */

body.single-product .wp-site-blocks > header + main,
body.single-product .wp-site-blocks > header + .wp-block-group,
body.single-product .wp-site-blocks > main.gc-single-product-page {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
}

body.single-product .gc-single-product-page {
	box-sizing: border-box;
	width: 100% !important;
	max-width: none !important;
	padding: 0.25rem var(--gc-page-gutter) clamp(4rem, 7vw, 6rem) !important;
}

body.single-product .gc-single-product-page > * {
	margin-block-start: 0 !important;
}

body.single-product .gc-single-product-page > * + * {
	margin-block-start: 1rem !important;
}

body.single-product .wp-block-woocommerce-breadcrumbs,
body.single-product .woocommerce-breadcrumb {
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin: 0 auto 1rem !important;
	padding: 0 !important;
	color: var(--gc-text-muted) !important;
	font-size: 0.85rem;
}

body.single-product .wp-block-woocommerce-breadcrumbs a,
body.single-product .woocommerce-breadcrumb a {
	color: var(--gc-blue) !important;
	text-decoration: none !important;
}

body.single-product .wp-block-woocommerce-store-notices,
body.single-product .woocommerce-notices-wrapper,
body.single-product .wc-block-components-notices {
	min-height: 0 !important;
	margin: 0 auto 1rem !important;
	padding: 0 !important;
}

body.single-product .wp-block-woocommerce-store-notices:empty,
body.single-product .woocommerce-notices-wrapper:empty,
body.single-product .wc-block-components-notices:empty {
	display: none !important;
}

body.single-product .gc-product-layout {
	box-sizing: border-box;
	display: grid !important;
	grid-template-columns: minmax(360px, 560px) minmax(420px, 1fr);
	align-items: start;
	gap: clamp(2rem, 5vw, 4rem);
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin: 0 auto clamp(3rem, 6vw, 5rem) !important;
	padding: 0 !important;
}

body.single-product .gc-product-layout.wp-block-columns {
	display: grid !important;
}

body.single-product .gc-product-layout > .wp-block-column {
	flex: none !important;
	flex-basis: auto !important;
	flex-grow: 0 !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.single-product .gc-product-media,
body.single-product .gc-product-media .woocommerce-product-gallery,
body.single-product .gc-product-media .wp-block-woocommerce-product-image-gallery {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

body.single-product .gc-product-media img {
	width: 100% !important;
	height: auto !important;
	border-radius: 20px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.single-product .gc-product-summary {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	color: rgba(255, 255, 255, 0.78);
}

body.single-product .gc-product-summary .wp-block-post-title,
body.single-product .product_title {
	width: 100% !important;
	max-width: 760px !important;
	margin: 0 0 1.25rem !important;
	color: var(--gc-text);
	font-size: clamp(2.4rem, 4.2vw, 5rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: normal !important;
	writing-mode: horizontal-tb !important;
}

body.single-product .wp-block-woocommerce-product-rating {
	margin-bottom: 1.25rem !important;
	color: var(--gc-text-soft);
}

body.single-product .gc-product-summary .wp-block-woocommerce-product-price,
body.single-product .woocommerce div.product p.price,
body.single-product .woocommerce div.product span.price {
	margin: 0 0 1.5rem !important;
	color: #f1b453 !important;
	font-size: 1.35rem;
	font-weight: 900;
}

body.single-product .gc-product-summary .wp-block-post-excerpt,
body.single-product .woocommerce-product-details__short-description {
	max-width: 680px;
	margin: 0 0 1.75rem !important;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
	line-height: 1.75;
}

body.single-product .gc-product-summary .wp-block-post-excerpt p {
	margin: 0;
}

body.single-product .gc-product-summary form.cart,
body.single-product form.cart {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 1.75rem !important;
}

body.single-product .quantity input.qty {
	width: 78px;
	height: 48px;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--gc-radius-sm);
}

body.single-product .single_add_to_cart_button {
	min-height: 50px;
	padding: 0 26px;
	color: #111 !important;
	background: #f1b453 !important;
	border: 0;
	border-radius: var(--gc-radius-sm);
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

body.single-product .single_add_to_cart_button:hover {
	background: #ffca6a !important;
}

body.single-product .wp-block-woocommerce-product-meta {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
}

body.single-product .wp-block-woocommerce-product-meta a {
	color: #f1b453;
	text-decoration: none;
}

body.single-product .wp-block-woocommerce-product-details,
body.single-product .wp-block-woocommerce-product-collection,
body.single-product .woocommerce-tabs {
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin-right: auto !important;
	margin-left: auto !important;
	color: rgba(255, 255, 255, 0.76);
}

body.single-product .wp-block-woocommerce-product-collection h2 {
	color: var(--gc-text);
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

/* ---------------------------------------------------------
   5) WooCommerce – Hinweise
   --------------------------------------------------------- */

body.single-product .wc-block-components-notice-banner,
body.woocommerce .wc-block-components-notice-banner {
	color: rgba(255, 255, 255, 0.9) !important;
	background: rgba(8, 28, 35, 0.92) !important;
	border: 1px solid rgba(25, 167, 216, 0.75) !important;
	border-left: 4px solid var(--gc-blue) !important;
	border-radius: 14px !important;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.single-product .wc-block-components-notice-banner__content,
body.woocommerce .wc-block-components-notice-banner__content {
	color: rgba(255, 255, 255, 0.92) !important;
}

body.single-product .wc-block-components-notice-banner a,
body.single-product .wc-block-components-notice-banner .button,
body.single-product .wc-block-components-notice-banner .wc-forward,
body.woocommerce .wc-block-components-notice-banner a,
body.woocommerce .wc-block-components-notice-banner .button,
body.woocommerce .wc-block-components-notice-banner .wc-forward {
	color: #f4c46f !important;
	background: transparent !important;
	font-weight: 900 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none !important;
	opacity: 1 !important;
}

body.single-product .wc-block-components-notice-banner a:hover,
body.single-product .wc-block-components-notice-banner .button:hover,
body.single-product .wc-block-components-notice-banner .wc-forward:hover,
body.woocommerce .wc-block-components-notice-banner a:hover,
body.woocommerce .wc-block-components-notice-banner .button:hover,
body.woocommerce .wc-block-components-notice-banner .wc-forward:hover {
	color: #ffd98d !important;
	text-shadow: 0 0 12px rgba(244, 196, 111, 0.35);
}

/* ---------------------------------------------------------
   6) Kontaktseite
   --------------------------------------------------------- */

.gc-contact-content {
	box-sizing: border-box;
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding: clamp(3rem, 5vw, 5rem) 0 clamp(5rem, 8vw, 7rem);
}

.gc-contact-lead {
	margin-bottom: clamp(2.5rem, 4vw, 4rem);
	color: var(--gc-text-soft);
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	line-height: 1.8;
}

.gc-contact-grid {
	display: grid !important;
	grid-template-columns: minmax(360px, 1.15fr) minmax(260px, 1fr) minmax(260px, 1fr);
	gap: clamp(1.25rem, 2vw, 1.8rem);
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	align-items: stretch;
}

.gc-contact-card {
	position: relative;
	overflow: hidden;
	min-width: 0;
	padding: clamp(1.6rem, 2.4vw, 2.4rem);
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-lg);
	background: linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.gc-contact-card-main {
	grid-row: span 2;
	background:
		radial-gradient(circle at 80% 20%, rgba(240, 172, 43, 0.14), transparent 36%),
		linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
}

.gc-contact-card h2,
.gc-contact-card h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: var(--gc-text);
	line-height: 1.1;
}

.gc-contact-card h2 {
	font-size: clamp(2.1rem, 3vw, 3.1rem);
	letter-spacing: -0.04em;
}

.gc-contact-card h3 {
	font-size: clamp(1.45rem, 2vw, 1.85rem);
	letter-spacing: -0.025em;
}

.gc-contact-card p {
	color: var(--gc-text-soft);
	font-size: 1rem;
	line-height: 1.75;
}

.gc-contact-muted {
	margin-top: 1.6rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--gc-text-muted) !important;
	font-size: 0.92rem !important;
}

.gc-contact-content .wp-block-button__link {
	border-radius: 999px;
	background: linear-gradient(180deg, #ffb24a, #d98622);
	color: #111 !important;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}

.gc-contact-content .wp-block-button__link:hover {
	background: linear-gradient(180deg, #ffc16b, #e6952e);
}

/* ---------------------------------------------------------
   7) WooCommerce – Mini-Warenkorb Drawer
   --------------------------------------------------------- */

body .wc-block-components-drawer__screen-overlay {
	background: rgba(1, 6, 9, 0.74) !important;
	backdrop-filter: blur(4px);
}

body .wc-block-components-drawer,
body .wc-block-mini-cart__drawer {
	background: linear-gradient(180deg, rgba(3, 18, 22, 0.98) 0%, rgba(1, 9, 12, 0.99) 100%) !important;
	color: var(--gc-text) !important;
	border-left: 1px solid rgba(240, 172, 43, 0.22) !important;
	box-shadow: -24px 0 70px rgba(0, 0, 0, 0.62), inset 1px 0 0 rgba(255, 255, 255, 0.03);
}

body .wc-block-components-drawer__content,
body .wp-block-woocommerce-mini-cart-contents,
body .wp-block-woocommerce-filled-mini-cart-contents-block {
	background: transparent !important;
	color: var(--gc-text) !important;
}

body .wc-block-mini-cart__title,
body .wc-block-components-drawer__content h2 {
	color: var(--gc-text) !important;
	font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
	font-weight: 900 !important;
	line-height: 1.05 !important;
	letter-spacing: -0.045em !important;
}

body .wc-block-components-drawer__close {
	color: var(--gc-gold-soft) !important;
	background: transparent !important;
	border: 0 !important;
	opacity: 1 !important;
}

body .wc-block-components-drawer__close:hover {
	color: var(--gc-gold-light) !important;
}

body .wc-block-mini-cart__items,
body .wc-block-cart-items,
body .wc-block-cart-item {
	color: var(--gc-text) !important;
}

body .wc-block-cart-item {
	padding: 1.2rem 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body .wc-block-cart-item__image img {
	border-radius: 10px !important;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body .wc-block-components-product-name,
body .wc-block-components-product-name a,
body .wc-block-cart-item__wrap a {
	color: var(--gc-blue) !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	line-height: 1.35 !important;
}

body .wc-block-components-product-name:hover,
body .wc-block-components-product-name a:hover,
body .wc-block-cart-item__wrap a:hover {
	color: var(--gc-blue-light) !important;
}

body .wc-block-components-product-price,
body .wc-block-cart-item__prices,
body .wc-block-cart-item__total,
body .wc-block-cart-item__total-price-and-sale-badge-wrapper,
body .wc-block-components-formatted-money-amount {
	color: #f4c46f !important;
	font-weight: 900 !important;
}

body .wc-block-components-product-metadata,
body .wc-block-components-product-metadata__description,
body .wc-block-components-product-metadata p {
	color: var(--gc-text-muted) !important;
	font-size: 0.9rem !important;
	line-height: 1.55 !important;
}

body .wc-block-components-quantity-selector {
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 10px !important;
}

body .wc-block-components-quantity-selector__button,
body .wc-block-components-quantity-selector__input {
	color: var(--gc-text) !important;
	background: transparent !important;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

body .wc-block-components-quantity-selector__button:hover {
	color: var(--gc-gold-light) !important;
}

body .wc-block-cart-item__remove-link,
body .wc-block-cart-item__remove-link button,
body .wc-block-components-product-badge {
	color: var(--gc-text-muted) !important;
}

body .wc-block-cart-item__remove-link:hover,
body .wc-block-cart-item__remove-link button:hover {
	color: #ff8f8f !important;
}

body .wc-block-mini-cart__footer,
body .wc-block-mini-cart__footer-subtotal {
	background: linear-gradient(180deg, rgba(3, 18, 22, 0.94), rgba(1, 9, 12, 0.99)) !important;
	color: var(--gc-text) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body .wc-block-components-totals-item,
body .wc-block-components-totals-item__label,
body .wc-block-components-totals-item__value {
	color: var(--gc-text) !important;
}

body .wc-block-components-totals-item__value {
	color: #f4c46f !important;
	font-weight: 900 !important;
}

body .wc-block-mini-cart__footer p,
body .wc-block-components-totals-footer-item-tax {
	color: var(--gc-text-muted) !important;
}

body .wc-block-mini-cart__footer-actions {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 14px !important;
}

body .wc-block-mini-cart__footer-actions .wc-block-components-button,
body .wc-block-mini-cart__footer-actions a {
	min-height: 48px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 999px !important;
	font-size: 0.82rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
}

body .wc-block-mini-cart__footer-actions .wc-block-components-button:first-child,
body .wc-block-mini-cart__footer-actions a:first-child {
	color: var(--gc-gold-soft) !important;
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(216, 176, 103, 0.34) !important;
}

body .wc-block-mini-cart__footer-actions .wc-block-components-button:first-child:hover,
body .wc-block-mini-cart__footer-actions a:first-child:hover {
	color: var(--gc-gold-light) !important;
	border-color: rgba(216, 176, 103, 0.75) !important;
}

body .wc-block-mini-cart__footer-actions .wc-block-components-button:last-child,
body .wc-block-mini-cart__footer-actions a:last-child {
	color: #111 !important;
	background: linear-gradient(180deg, #ffb24a, #d98622) !important;
	border: 1px solid rgba(255, 220, 150, 0.35) !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}

body .wc-block-mini-cart__footer-actions .wc-block-components-button:last-child:hover,
body .wc-block-mini-cart__footer-actions a:last-child:hover {
	background: linear-gradient(180deg, #ffc16b, #e6952e) !important;
}

/* ---------------------------------------------------------
   8) WooCommerce – Shop / Produktkatalog Block-Template
   Voraussetzung: main.gc-shop-page, .gc-shop-hero, .gc-shop-toolbar, .gc-shop-products
   --------------------------------------------------------- */

.gc-shop-page {
	box-sizing: border-box;
	width: 100% !important;
	max-width: none !important;
	padding-top: clamp(2.5rem, 4vw, 4rem) !important;
}

.gc-shop-page > .alignwide,
.gc-shop-hero,
.gc-shop-toolbar,
.gc-shop-products {
	box-sizing: border-box;
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.gc-shop-page > * {
	margin-block-start: 0 !important;
}

.gc-shop-hero {
	position: relative;
	overflow: hidden;
	margin-bottom: clamp(1.8rem, 3vw, 2.5rem) !important;
	padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 4vw, 3rem) !important;
	border: 1px solid rgba(240, 172, 43, 0.2);
	border-radius: 22px !important;
	background:
		radial-gradient(circle at 85% 20%, rgba(240, 172, 43, 0.12), transparent 36%),
		linear-gradient(135deg, rgba(5, 31, 32, 0.98), rgba(2, 18, 20, 0.98));
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.gc-shop-title,
.gc-shop-page .wp-block-query-title {
	margin: 0.25rem 0 0.75rem !important;
	color: var(--gc-text) !important;
	font-size: clamp(2.6rem, 5vw, 4.4rem) !important;
	line-height: 0.95 !important;
	letter-spacing: -0.055em !important;
}

.gc-shop-lead,
.gc-shop-description {
	max-width: 900px !important;
	margin-bottom: 0 !important;
	color: var(--gc-text-soft);
	font-size: clamp(1rem, 1.4vw, 1.15rem) !important;
	line-height: 1.65 !important;
}

.gc-shop-page .wp-block-woocommerce-breadcrumbs {
	margin-bottom: 1.25rem !important;
	color: var(--gc-text-muted);
	font-size: 0.85rem;
}

.gc-shop-page .wp-block-woocommerce-breadcrumbs a {
	color: var(--gc-blue) !important;
	text-decoration: none !important;
}

.gc-shop-toolbar {
	margin-top: 0 !important;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem) !important;
	padding: 1rem 1.25rem !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(7, 31, 32, 0.55);
}

.gc-shop-toolbar .wp-block-woocommerce-product-results-count {
	color: var(--gc-text-soft);
	font-size: 0.95rem;
}

.gc-shop-toolbar .wp-block-woocommerce-catalog-sorting select,
.gc-shop-toolbar select {
	min-width: 230px;
	min-height: 44px;
	padding: 0 42px 0 14px;
	color: var(--gc-text);
	background: linear-gradient(180deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	font-size: 0.9rem;
}

.gc-shop-products {
	margin-top: 0 !important;
}

.gc-shop-products .wc-block-product-template,
.gc-shop-products .wp-block-post-template,
.gc-shop-products ul {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(1.5rem, 2.5vw, 2rem) !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.gc-shop-products .wc-block-product,
.gc-shop-products .wp-block-post,
.gc-shop-products li {
	display: flex !important;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 0 1.6rem !important;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-lg);
	background: linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gc-shop-products .wc-block-product:hover,
.gc-shop-products .wp-block-post:hover,
.gc-shop-products li:hover {
	transform: translateY(-5px);
	border-color: rgba(240, 172, 43, 0.36);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.gc-shop-product-image,
.gc-shop-products .wp-block-woocommerce-product-image {
	margin: 0 !important;
}

.gc-shop-products .wp-block-woocommerce-product-image img,
.gc-shop-products .wc-block-components-product-image img,
.gc-shop-products img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	margin: 0 !important;
	border-radius: 0 !important;
}

.gc-shop-product-title,
.gc-shop-products .wp-block-post-title {
	margin: 0 !important;
	padding: 1.5rem 1.5rem 0.65rem !important;
	text-align: center;
}

.gc-shop-product-title a,
.gc-shop-products .wp-block-post-title a {
	color: var(--gc-blue) !important;
	font-size: clamp(1.15rem, 1.8vw, 1.45rem) !important;
	line-height: 1.2 !important;
	font-weight: 900 !important;
	letter-spacing: -0.025em;
	text-decoration: none !important;
}

.gc-shop-product-title a:hover,
.gc-shop-products .wp-block-post-title a:hover {
	color: var(--gc-blue-light) !important;
}

.gc-shop-product-price,
.gc-shop-products .wp-block-woocommerce-product-price {
	margin: 0.25rem 1.5rem 1.25rem !important;
	color: #f4c46f !important;
	font-size: 1.05rem !important;
	font-weight: 900 !important;
	text-align: center;
}

.gc-shop-products .wp-block-woocommerce-product-price * {
	color: #f4c46f !important;
}

.gc-shop-product-button,
.gc-shop-products .wp-block-woocommerce-product-button {
	margin-top: auto !important;
	text-align: center;
}

.gc-shop-products .wp-block-woocommerce-product-button .wp-block-button__link,
.gc-shop-products .wp-block-button__link,
.gc-shop-products button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 46px;
	padding: 0.9rem 1.35rem !important;
	color: #111 !important;
	background: linear-gradient(180deg, #ffb24a, #d98622) !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-size: 0.82rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}

.gc-shop-products .wp-block-woocommerce-product-button .wp-block-button__link:hover,
.gc-shop-products .wp-block-button__link:hover,
.gc-shop-products button:hover {
	background: linear-gradient(180deg, #ffc16b, #e6952e) !important;
}

.gc-shop-pagination {
	margin-top: 3rem !important;
}

.gc-shop-pagination a,
.gc-shop-pagination span {
	min-width: 42px;
	height: 42px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	color: var(--gc-gold-soft) !important;
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(216, 176, 103, 0.28) !important;
	border-radius: 12px !important;
	text-decoration: none !important;
}

.gc-shop-no-results {
	padding: 2rem;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-lg);
	background: rgba(7, 31, 32, 0.75);
	color: var(--gc-text-soft);
}

/* ---------------------------------------------------------
   9) WooCommerce – Mein Konto
   Voraussetzung: Seite Mein Konto enthält einen Wrapper mit der Klasse gc-account-page
   --------------------------------------------------------- */

.gc-account-page {
	box-sizing: border-box;
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(5rem, 8vw, 7rem) !important;
}

.gc-account-page .woocommerce::before,
.gc-account-page .woocommerce::after {
	content: none !important;
	display: none !important;
}

.gc-account-page .woocommerce {
	display: grid !important;
	grid-template-columns: 280px minmax(0, 1fr) !important;
	grid-template-areas: "accountnav accountcontent";
	gap: clamp(1.5rem, 3vw, 2.5rem) !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	align-items: start;
}

.gc-account-page .woocommerce-MyAccount-navigation {
	grid-area: accountnav;
	float: none !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 1.15rem !important;
	border: 1px solid var(--gc-border);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.gc-account-page .woocommerce-MyAccount-navigation ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.gc-account-page .woocommerce-MyAccount-navigation li {
	margin: 0 !important;
	padding: 0 !important;
}

.gc-account-page .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 0.85rem 0.95rem;
	color: var(--gc-text-soft) !important;
	text-decoration: none !important;
	border-radius: 14px;
	font-size: 0.95rem;
	font-weight: 750;
}

.gc-account-page .woocommerce-MyAccount-navigation a:hover {
	color: var(--gc-text) !important;
	background: rgba(255, 255, 255, 0.05);
}

.gc-account-page .woocommerce-MyAccount-navigation-link.is-active a {
	color: #111 !important;
	background: linear-gradient(180deg, #ffb24a, #d98622) !important;
}

.gc-account-page .woocommerce-MyAccount-content {
	grid-area: accountcontent;
	float: none !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: clamp(1.4rem, 2.5vw, 2rem);
	border: 1px solid var(--gc-border);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
	color: var(--gc-text-soft);
}

body.woocommerce-account .wp-block-post-title,
body.woocommerce-account h1.entry-title {
	width: min(var(--gc-content-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-content-width) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem) !important;
	font-size: clamp(3rem, 6vw, 5rem) !important;
	line-height: 0.95 !important;
}

.gc-account-page .woocommerce-MyAccount-content p,
.gc-account-page .woocommerce-MyAccount-content address,
.gc-account-page .woocommerce-MyAccount-content li,
.gc-account-page .woocommerce-MyAccount-content td,
.gc-account-page .woocommerce-MyAccount-content th {
	color: var(--gc-text-soft) !important;
	line-height: 1.7;
}

.gc-account-page .woocommerce-MyAccount-content a {
	color: var(--gc-blue) !important;
	text-decoration: none !important;
}

.gc-account-page .woocommerce-MyAccount-content a:hover {
	color: var(--gc-blue-light) !important;
}

.gc-account-page .woocommerce-MyAccount-content h2,
.gc-account-page .woocommerce-MyAccount-content h3 {
	margin-top: 0;
	color: var(--gc-text) !important;
	font-size: clamp(1.6rem, 2.5vw, 2.4rem) !important;
	line-height: 1.1 !important;
	letter-spacing: -0.035em !important;
}

.gc-account-page .woocommerce-Addresses,
.gc-account-page .addresses,
.gc-account-page .u-columns.col2-set {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 1.5rem !important;
	width: 100% !important;
	max-width: none !important;
	margin: 1.5rem 0 0 !important;
	padding: 0 !important;
}

.gc-account-page .woocommerce-Addresses .woocommerce-Address,
.gc-account-page .woocommerce-Addresses .u-column1,
.gc-account-page .woocommerce-Addresses .u-column2,
.gc-account-page .addresses .col-1,
.gc-account-page .addresses .col-2 {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 1.5rem !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(7, 31, 32, 0.96), rgba(3, 20, 22, 0.96));
	box-shadow: none !important;
}

.gc-account-page .woocommerce-Address-title,
.gc-account-page .addresses .title {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 1rem !important;
	margin: 0 0 1rem !important;
	padding: 0 !important;
}

.gc-account-page .woocommerce-Address-title h2,
.gc-account-page .woocommerce-Address-title h3,
.gc-account-page .addresses .title h2,
.gc-account-page .addresses .title h3 {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--gc-text) !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	font-size: clamp(1.45rem, 2vw, 1.9rem) !important;
	line-height: 1.1 !important;
	letter-spacing: -0.035em !important;
	white-space: normal !important;
}

.gc-account-page .woocommerce-Address-title .edit,
.gc-account-page .addresses .title .edit {
	flex: 0 0 auto;
	color: var(--gc-blue) !important;
	font-size: 0.9rem !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	white-space: nowrap;
}

.gc-account-page .woocommerce-Address-title .edit:hover,
.gc-account-page .addresses .title .edit:hover {
	color: var(--gc-blue-light) !important;
}

.gc-account-page .woocommerce-Address address,
.gc-account-page .addresses address {
	margin: 0 !important;
	color: var(--gc-text-soft) !important;
	font-size: 0.95rem !important;
	line-height: 1.65 !important;
}

.gc-account-page table.shop_table {
	width: 100%;
	border-collapse: collapse !important;
	background: transparent !important;
}

.gc-account-page table.shop_table th,
.gc-account-page table.shop_table td {
	padding: 0.85rem !important;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

.gc-account-page table.shop_table th {
	color: var(--gc-text) !important;
	font-weight: 800;
}

.gc-account-page .woocommerce-info,
.gc-account-page .woocommerce-message,
.gc-account-page .woocommerce-error {
	padding: 1rem 1.1rem !important;
	margin-bottom: 1.5rem !important;
	color: var(--gc-text-soft) !important;
	background: rgba(255, 255, 255, 0.035) !important;
	border: 1px solid rgba(255, 255, 255, 0.09) !important;
	border-left: 4px solid var(--gc-blue) !important;
	border-radius: 14px !important;
}

.gc-account-page .woocommerce-MyAccount-content .button,
.gc-account-page .woocommerce-MyAccount-content .woocommerce-Button,
.gc-account-page .woocommerce-MyAccount-content input[type="submit"] {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px;
	padding: 0.85rem 1.25rem !important;
	color: #111 !important;
	background: linear-gradient(180deg, #ffb24a, #d98622) !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-size: 0.8rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
}

.gc-account-page .woocommerce-MyAccount-content input[type="text"],
.gc-account-page .woocommerce-MyAccount-content input[type="email"],
.gc-account-page .woocommerce-MyAccount-content input[type="password"],
.gc-account-page .woocommerce-MyAccount-content input[type="tel"],
.gc-account-page .woocommerce-MyAccount-content textarea,
.gc-account-page .woocommerce-MyAccount-content select {
	width: 100%;
	min-height: 46px;
	padding: 0.8rem 0.95rem;
	color: var(--gc-text) !important;
	background: linear-gradient(180deg, rgba(7, 31, 32, 0.96), rgba(3, 20, 22, 0.96)) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 12px !important;
	box-shadow: none !important;
}


/* ---------------------------------------------------------
   10) Über mich – Sicherheit & Verantwortung
   --------------------------------------------------------- */

.gc-author-safety {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 4vw, 3rem);
	border: 1px solid rgba(240, 172, 43, 0.22);
	border-radius: var(--gc-radius-lg);
	background: radial-gradient(circle at 88% 18%, rgba(240, 172, 43, 0.12), transparent 34%), linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.gc-author-safety .gc-author-section-head {
	max-width: var(--gc-readable-width);
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.gc-author-safety .gc-author-section-head h2 {
	margin-top: 0.35rem;
	margin-bottom: 1rem;
	color: var(--gc-text);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.gc-author-safety .gc-author-section-head p,
.gc-safety-card p {
	color: var(--gc-text-soft);
	line-height: 1.75;
}

.gc-author-safety-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2vw, 1.75rem);
}

.gc-safety-card {
	border-color: rgba(255, 255, 255, 0.1);
}

.gc-safety-card.is-warning {
	border-color: rgba(240, 172, 43, 0.35);
	background: radial-gradient(circle at 80% 20%, rgba(240, 172, 43, 0.13), transparent 36%), linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
}

.gc-safety-card h3 {
	color: var(--gc-text);
}

.gc-author-safety-note {
	max-width: var(--gc-readable-width);
	margin: clamp(1.5rem, 3vw, 2rem) 0 0;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--gc-text-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* ---------------------------------------------------------
   11) Gerl-Craft Artikel-Elemente
   --------------------------------------------------------- */

.single-post .gc-article-intro,
.single-post .gc-info-box,
.single-post .gc-feature-grid,
.single-post .gc-callout,
.single-post .gc-checklist-box,
.single-post .gc-article-cta {
	width: min(var(--gc-readable-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-readable-width) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.single-post .gc-article-lead {
	color: var(--gc-text-soft);
	font-size: clamp(1.15rem, 1.6vw, 1.35rem);
	line-height: 1.8;
}

.single-post .gc-info-box,
.single-post .gc-callout,
.single-post .gc-checklist-box,
.single-post .gc-article-cta {
	margin-top: clamp(2rem, 4vw, 3rem) !important;
	margin-bottom: clamp(2rem, 4vw, 3rem) !important;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--gc-radius-lg);
	background: radial-gradient(circle at 90% 12%, rgba(55, 192, 255, 0.1), transparent 34%), linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.single-post .gc-callout.is-warning {
	border-color: rgba(240, 172, 43, 0.32);
	background: radial-gradient(circle at 90% 12%, rgba(240, 172, 43, 0.13), transparent 34%), linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98));
}

.single-post .gc-info-box h3,
.single-post .gc-feature-card h3,
.single-post .gc-article-cta h2 {
	color: var(--gc-text);
}

.single-post .gc-info-box p,
.single-post .gc-callout p,
.single-post .gc-checklist-box,
.single-post .gc-article-cta p {
	color: var(--gc-text-soft);
	line-height: 1.75;
}

.single-post .gc-feature-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-top: clamp(2rem, 4vw, 3rem) !important;
	margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.single-post .gc-feature-card {
	padding: clamp(1.25rem, 2vw, 1.6rem);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.single-post .gc-feature-card p {
	color: var(--gc-text-soft);
	line-height: 1.7;
}

.single-post .wp-block-code {
	width: min(var(--gc-readable-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-readable-width) !important;
	margin: 1.25rem auto 1.75rem !important;
}

.single-post .wp-block-code code {
	display: block;
	padding: 1.1rem 1.25rem;
	color: #d9f7ff;
	background: linear-gradient(180deg, rgba(2, 14, 17, 0.98), rgba(1, 8, 10, 0.98));
	border: 1px solid rgba(55, 192, 255, 0.16);
	border-radius: 16px;
	font-size: 0.92rem;
	line-height: 1.7;
	overflow-x: auto;
}

.single-post .gc-checklist-box ul {
	margin: 0;
	padding-left: 1.2rem;
}

.single-post .gc-checklist-box li {
	margin-bottom: 0.7rem;
	color: var(--gc-text-soft);
}

.single-post .gc-checklist-box li::marker {
	color: #f1b453;
}

/* ---------------------------------------------------------
   12) Kommentare
   --------------------------------------------------------- */

body.single-post .wp-block-comments,
body.single-post .gc-comments-section {
	box-sizing: border-box;
	width: min(var(--gc-readable-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-readable-width) !important;
	margin: clamp(3rem, 6vw, 5rem) auto clamp(3rem, 6vw, 5rem) !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.single-post .wp-block-post-comments-form,
body.single-post .comment-respond {
	box-sizing: border-box;
	width: min(var(--gc-readable-width), calc(100vw - (var(--gc-page-gutter) * 2))) !important;
	max-width: var(--gc-readable-width) !important;
	margin: 0 auto !important;
	padding: clamp(1.6rem, 3vw, 2.4rem) !important;
	border: 1px solid rgba(255, 255, 255, 0.09) !important;
	border-radius: 24px !important;
	background: radial-gradient(circle at 92% 8%, rgba(55, 192, 255, 0.1), transparent 32%), linear-gradient(145deg, rgba(7, 31, 32, 0.98), rgba(3, 20, 22, 0.98)) !important;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
}

body.single-post .comments-title,
body.single-post .wp-block-comments-title,
body.single-post .comment-reply-title {
	margin: 0 0 1rem !important;
	color: var(--gc-text) !important;
	font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.04em !important;
}

body.single-post .comment-notes,
body.single-post .logged-in-as,
body.single-post .comment-form-cookies-consent,
body.single-post .comment-form p {
	color: var(--gc-text-muted) !important;
	font-size: 0.95rem;
	line-height: 1.7;
}

body.single-post .logged-in-as {
	margin-bottom: 1.2rem !important;
}

body.single-post .logged-in-as a,
body.single-post .comment-notes a,
body.single-post .comment-form a {
	color: var(--gc-blue) !important;
	text-decoration: none !important;
}

body.single-post .logged-in-as a:hover,
body.single-post .comment-form a:hover {
	color: var(--gc-blue-light) !important;
}

body.single-post .comment-form label {
	display: inline-block;
	margin-bottom: 0.5rem;
	color: var(--gc-text) !important;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

body.single-post .comment-form textarea,
body.single-post .comment-form input[type="text"],
body.single-post .comment-form input[type="email"],
body.single-post .comment-form input[type="url"] {
	box-sizing: border-box;
	width: 100% !important;
	color: var(--gc-text) !important;
	background: linear-gradient(180deg, rgba(5, 24, 27, 0.98), rgba(2, 14, 17, 0.98)) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 16px !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 26px rgba(0, 0, 0, 0.18) !important;
	outline: none !important;
}

body.single-post .comment-form textarea {
	min-height: 170px !important;
	padding: 1rem 1.1rem !important;
	resize: vertical;
}

body.single-post .comment-form input[type="text"],
body.single-post .comment-form input[type="email"],
body.single-post .comment-form input[type="url"] {
	min-height: 48px !important;
	padding: 0.85rem 1rem !important;
}

body.single-post .comment-form textarea:focus,
body.single-post .comment-form input[type="text"]:focus,
body.single-post .comment-form input[type="email"]:focus,
body.single-post .comment-form input[type="url"]:focus {
	border-color: rgba(55, 192, 255, 0.55) !important;
	box-shadow: 0 0 0 3px rgba(55, 192, 255, 0.13), 0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

body.single-post .comment-form textarea::placeholder,
body.single-post .comment-form input::placeholder {
	color: rgba(255, 255, 255, 0.35) !important;
}

body.single-post .comment-form-comment,
body.single-post .comment-form-author,
body.single-post .comment-form-email,
body.single-post .comment-form-url {
	margin-bottom: 1.1rem !important;
}

body.single-post .comment-form input[type="checkbox"] {
	accent-color: #f1b453;
}

body.single-post .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 1rem 0 1.25rem !important;
}

body.single-post .comment-form .form-submit {
	margin: 1.25rem 0 0 !important;
}

body.single-post .comment-form input[type="submit"],
body.single-post .form-submit .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.55rem !important;
	color: #101010 !important;
	background: linear-gradient(180deg, #ffb24a, #d98622) !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-size: 0.82rem !important;
	font-weight: 950 !important;
	letter-spacing: 0.07em !important;
	text-transform: uppercase !important;
	box-shadow: 0 12px 26px rgba(217, 134, 34, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.single-post .comment-form input[type="submit"]:hover,
body.single-post .form-submit .submit:hover {
	transform: translateY(-1px);
	filter: brightness(1.08);
	box-shadow: 0 18px 34px rgba(217, 134, 34, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

body.single-post .comment-list,
body.single-post .wp-block-comment-template {
	list-style: none !important;
	margin: 0 0 2rem !important;
	padding: 0 !important;
}

body.single-post .comment,
body.single-post .wp-block-comment-template > li {
	margin: 0 0 1rem !important;
	padding: 1.25rem !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

body.single-post .comment-body,
body.single-post .wp-block-comment-content {
	color: var(--gc-text-soft) !important;
	line-height: 1.75;
}

body.single-post .comment-author,
body.single-post .wp-block-comment-author-name {
	color: var(--gc-text) !important;
	font-weight: 900;
}

body.single-post .comment-meta,
body.single-post .wp-block-comment-date {
	color: var(--gc-text-muted) !important;
	font-size: 0.85rem;
}

body.single-post .comment-reply-link,
body.single-post .wp-block-comment-reply-link a {
	display: inline-flex;
	margin-top: 0.85rem;
	padding: 0.45rem 0.85rem;
	color: #f1b453 !important;
	background: rgba(240, 172, 43, 0.08);
	border: 1px solid rgba(240, 172, 43, 0.18);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none !important;
}

body.single-post .comment-reply-link:hover,
body.single-post .wp-block-comment-reply-link a:hover {
	background: rgba(240, 172, 43, 0.14);
	border-color: rgba(240, 172, 43, 0.34);
}

body.single-post .comment-author img,
body.single-post .wp-block-avatar img {
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(240, 172, 43, 0.22), 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------------------
   13) Hitcounter / Beitragsaufrufe
   --------------------------------------------------------- */

body.single-post .post-views,
body.single-post .pvc_post_views,
body.single-post .pvc_stats,
body.single-post .post-views-counter,
body.single-post .entry-meta .post-views,
body.single-post [class*="post-views"],
body.single-post [class*="pvc"] {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.45rem !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: auto !important;
	max-width: none !important;
	margin: 1rem 0 1.5rem !important;
	padding: 0.45rem 0.8rem !important;
	color: var(--gc-text-muted) !important;
	background: rgba(255, 255, 255, 0.035) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 999px !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
}

.gc-post-card .post-views,
.gc-post-card .pvc_post_views,
.gc-post-card .pvc_stats,
.gc-card-footer .post-views,
.gc-card-footer .pvc_post_views,
.gc-card-footer .pvc_stats,
body.blog .post-views,
body.archive .post-views,
body.blog .pvc_post_views,
body.archive .pvc_post_views {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.35rem !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--gc-text-muted) !important;
	background: transparent !important;
	border: 0 !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
}

.post-views a,
.pvc_post_views a,
.pvc_stats a,
.post-views-counter a,
.post-views svg,
.pvc_post_views svg,
.pvc_stats svg,
.post-views .dashicons,
.pvc_post_views .dashicons,
.pvc_stats .dashicons {
	color: var(--gc-gold-soft) !important;
	fill: var(--gc-gold-soft) !important;
	stroke: var(--gc-gold-soft) !important;
	opacity: 1 !important;
}

.post-views .post-views-count,
.pvc_post_views .post-views-count,
.pvc_stats .post-views-count,
.post-views .count,
.pvc_post_views .count,
.pvc_stats .count {
	color: var(--gc-text) !important;
	font-weight: 900 !important;
}

/* ---------------------------------------------------------
   14) Responsive
   --------------------------------------------------------- */

@media (max-width: 980px) {
	body.single-product .gc-product-layout,
	.gc-contact-grid {
		grid-template-columns: 1fr !important;
	}

	body.single-product .gc-single-product-page {
		padding-top: 1.5rem !important;
	}

	body.single-product .gc-product-summary .wp-block-post-title,
	body.single-product .product_title {
		font-size: clamp(2rem, 9vw, 3.4rem);
	}

	.gc-projects-page .gc-dynamic-card-grid {
		grid-template-columns: 1fr;
	}

	.gc-projects-page .gc-dynamic-post-card:first-child {
		display: flex;
		min-height: 0;
	}

	.gc-projects-page .gc-dynamic-post-card:first-child .gc-card-image {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.gc-contact-card-main {
		grid-row: auto;
	}

	.gc-shop-products .wc-block-product-template,
	.gc-shop-products .wp-block-post-template,
	.gc-shop-products ul {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.gc-shop-toolbar {
		align-items: flex-start !important;
		flex-direction: column;
	}

	.gc-account-page .woocommerce {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"accountnav"
			"accountcontent";
	}

	.gc-account-page .woocommerce-Addresses,
	.gc-account-page .addresses,
	.gc-account-page .u-columns.col2-set {
		grid-template-columns: 1fr !important;
	}

	.gc-author-safety-grid,
	.single-post .gc-feature-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 720px) {
	:root {
		--gc-page-gutter: 1rem;
	}

	.gc-projects-page .gc-projects-header {
		padding: 2rem 1.35rem;
		border-radius: 20px;
	}

	.gc-projects-page .gc-card-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.gc-projects-page .gc-post-card,
	.gc-projects-page .gc-card-image,
	.gc-contact-card {
		border-radius: 20px;
	}

	body header .wp-block-navigation-item:not(:last-child)::after {
		margin: 0 8px;
	}

	body header .wp-block-woocommerce-customer-account a,
	body header .gc-header-account a,
	body header .wc-block-mini-cart__button {
		width: 34px !important;
		height: 34px !important;
	}
}

@media (max-width: 680px) {
	.gc-contact-content,
	.gc-account-page {
		width: calc(100vw - 2rem) !important;
		padding-top: 2.5rem !important;
	}

	.gc-contact-grid {
		grid-template-columns: 1fr !important;
	}

	.gc-shop-page {
		padding-top: 3rem !important;
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.gc-shop-hero {
		padding: 2rem 1.35rem;
		border-radius: 20px;
	}

	.gc-shop-products .wc-block-product-template,
	.gc-shop-products .wp-block-post-template,
	.gc-shop-products ul {
		grid-template-columns: 1fr !important;
	}

	.gc-shop-toolbar .wp-block-woocommerce-catalog-sorting select,
	.gc-shop-toolbar select {
		width: 100%;
	}

	body .wc-block-components-drawer,
	body .wc-block-mini-cart__drawer {
		width: 100vw !important;
		max-width: 100vw !important;
	}

	body .wc-block-mini-cart__footer-actions {
		grid-template-columns: 1fr !important;
	}

	.gc-account-page .woocommerce-MyAccount-navigation,
	.gc-account-page .woocommerce-MyAccount-content {
		padding: 1rem !important;
		border-radius: 18px;
	}

	.gc-account-page .woocommerce-Address-title,
	.gc-account-page .addresses .title {
		display: block !important;
	}

	.gc-account-page .woocommerce-Address-title .edit,
	.gc-account-page .addresses .title .edit {
		display: inline-block;
		margin-top: 0.5rem;
	}

	.gc-author-safety {
		padding: 1.5rem;
		border-radius: 20px;
	}

	body.single-post .wp-block-comments,
	body.single-post .gc-comments-section,
	body.single-post .wp-block-post-comments-form,
	body.single-post .comment-respond {
		width: calc(100vw - 2rem) !important;
		max-width: calc(100vw - 2rem) !important;
	}

	body.single-post .comment-respond {
		padding: 1.25rem !important;
		border-radius: 20px !important;
	}

	body.single-post .comment-form textarea {
		min-height: 150px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gc-projects-page .gc-post-card,
	.gc-projects-page .gc-card-image img,
	.gc-shop-products .wc-block-product,
	.gc-shop-products .wp-block-post,
	.gc-shop-products li,
	body header .wp-block-navigation a,
	body header .wp-block-navigation-item__content,
	body header .wp-block-woocommerce-customer-account a,
	body header .gc-header-account a,
	body header .wc-block-mini-cart__button {
		transition: none !important;
	}
}
