/* Genosys Customs — Common Styles */

.geno-hidden {
	display: none !important;
}
.geno-header-top-bar .et_pb_widget{
  margin: 0 !important;
  color: #ffffff;
  font-family: Century Gothic Bold;
  font-size: 14px;
}

.geno-loading {
	opacity: 0.6;
	pointer-events: none;
}

.geno-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Pagination — shared across all shortcodes that use geno.pagination() */
.geno-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin: 32px 0 0;
}

.geno-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	color: #333;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.18s, color 0.18s, border-color 0.18s;
	line-height: 1;
}

.geno-page-btn:hover:not(:disabled) {
	background: #f5f0ef;
	border-color: #bbb;
}

.geno-page-btn.active,
.geno-page-btn.active:hover {
	background: #9b1c1c;
	border-color: #9b1c1c;
	color: #fff;
	cursor: default;
}

.geno-page-btn:disabled {
	opacity: 0.4;
	cursor: default;
}

.geno-page-ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 38px;
	color: #888;
	font-size: 14px;
}
.gs-add-to-cart{
	cursor: pointer;
}
.gs-add-to-cart:hover{
	opacity: 0.7;
}
.geno-cart-content .wc-block-cart-item__quantity{
	margin-top: 12px;
}
.geno-cart-content .wc-block-cart-items *,
.geno-cart-content .wc-block-components-sidebar,
.geno-cart-content .wc-block-cart .wc-block-cart__totals-title{
  font-size: 16px !important;
  line-height: 24px !important;
}
.geno-cart-content .wc-block-cart {
  background-color: #FCFBF9;
}
.geno-cart-content .wc-block-components-button {
	background-color: #8c1d2c !important;
	color: #ffffff !important;
	border-radius: 8px !important;
	border: none !important;
	transition: opacity 0.3s ease !important;
}
.geno-cart-content .wc-block-components-button:hover {
	opacity: 0.9 !important;
	background-color: #8c1d2c !important;
}

/* ==========================================================================
   Off-Canvas Cart
   ========================================================================== */

.geno-cart-offcanvas {
	position: fixed;
	top: 0;
	right: 0;
	width: 420px;
	max-width: 100vw;
	height: 100%;
	background: #fff;
	z-index: 9000;
	display: flex;
	flex-direction: column;
	box-shadow: -4px 0 24px rgba( 0, 0, 0, 0.12 );
	transform: translateX( 100% );
	transition: transform 0.32s cubic-bezier( 0.4, 0, 0.2, 1 );
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif;
}

.geno-cart-offcanvas.is-open {
	transform: translateX( 0 );
}

/* Panel header */
.geno-cart-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #ece8e4;
	flex-shrink: 0;
}

.geno-cart-panel-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: 0.01em;
}

.geno-cart-close-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: #f3f4f6;
	color: #444;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
	flex-shrink: 0;
}

.geno-cart-close-btn:hover {
	background: #8C1D2C;
	color: #fff;
}

/* Scrollable cart content */
.geno-cart-content {
	flex: 1;
	overflow-y: auto;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.geno-cart-content .widget_shopping_cart_content {
	padding: 0;
}

/* WooCommerce mini-cart list */
.geno-cart-content .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

.geno-cart-content .woocommerce-mini-cart__empty-message {
	padding: 32px 24px;
	text-align: center;
	color: #888;
	font-size: 15px;
}

.geno-cart-content .woocommerce-mini-cart-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 24px;
	border-bottom: 1px solid #f0ece8;
}

/* Product image + name link — centred flex row */
.geno-cart-content .woocommerce-mini-cart-item > a:not( .remove ) {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	flex: 1;
	min-width: 0;
	text-decoration: none !important;
	color: #8C1D2C !important;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.35;
}

.geno-cart-content .woocommerce-mini-cart-item > a:not( .remove ):hover {
	color: #751827 !important;
}

.geno-cart-content .woocommerce-mini-cart-item img {
	width: 64px !important;
	height: 64px !important;
	object-fit: cover !important;
	border-radius: 8px !important;
	flex-shrink: 0 !important;
}

.geno-cart-content .woocommerce-mini-cart-item .remove {
	color: #aaa;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	transition: color 0.15s;
	flex-shrink: 0;
	order: 99; /* push remove to the end */
}

.geno-cart-content .woocommerce-mini-cart-item .remove:hover {
	color: #8C1D2C;
}

/* Cart totals + buttons */
.geno-cart-content .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 600;
	border-top: 1px solid #ece8e4;
}

.geno-cart-content .woocommerce-mini-cart__buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px 24px 24px;
}

.geno-cart-content .woocommerce-mini-cart__buttons a {
	display: block !important;
	width: 100% !important;
	padding: 13px 20px !important;
	border: none !important;
	border-radius: 10px !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: background 0.18s, opacity 0.18s !important;
	box-sizing: border-box !important;
	letter-spacing: 0.01em !important;
}

.geno-cart-content .woocommerce-mini-cart__buttons .button {
	background: #8C1D2C !important;
	color: #fff !important;
}

.geno-cart-content .woocommerce-mini-cart__buttons .button:hover {
	background: #751827 !important;
	color: #fff !important;
}

.geno-cart-content .woocommerce-mini-cart__buttons .checkout {
	background: #1a1a1a !important;
	color: #fff !important;
}

.geno-cart-content .woocommerce-mini-cart__buttons .checkout:hover {
	opacity: 0.85 !important;
}

/* Overlay */
.geno-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba( 0, 0, 0, 0.45 );
	z-index: 8999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.32s ease;
}

.geno-cart-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/* Responsive — full width on small screens */
@media ( max-width: 480px ) {
	.geno-cart-offcanvas {
		width: 100vw;
	}
}

/* ==========================================================================
   Search Modal
   ========================================================================== */

.geno-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 9100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 20px;
	background: rgba( 0, 0, 0, 0.55 );
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s ease;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif;
}

.geno-search-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.geno-search-modal {
	background: #fff;
	border-radius: 18px;
	width: 100%;
	max-width: 860px;
	max-height: calc( 100vh - 48px );
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba( 0, 0, 0, 0.18 );
	transform: translateY( -16px ) scale( 0.98 );
	transition: transform 0.26s cubic-bezier( 0.4, 0, 0.2, 1 );
}

.geno-search-overlay.is-open .geno-search-modal {
	transform: translateY( 0 ) scale( 1 );
}

/* ── Input row ── */
.geno-search-input-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border: 2px solid #8C1D2C;
	border-radius: 14px;
	margin: 20px 20px 0;
	flex-shrink: 0;
}

.geno-search-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.geno-search-input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-family: inherit;
	font-size: 16px;
	color: #1a1a1a;
	line-height: 1.4;
	-webkit-appearance: none;
	appearance: none;
}

.geno-search-input::placeholder {
	color: #aaa;
}

/* Hide native × button that browsers add to search inputs */
.geno-search-input::-webkit-search-cancel-button,
.geno-search-input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.geno-search-dismiss-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #999;
	font-size: 15px;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.15s, color 0.15s;
	padding: 0;
}

.geno-search-dismiss-btn:hover {
	background: #f3f4f6;
	color: #333;
}

/* ── Scrollable body ── */
.geno-search-body {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0;
	-webkit-overflow-scrolling: touch;
}

/* ── Shared section styles ── */
.geno-search-section {
	padding: 20px 28px;
}

.geno-search-section + .geno-search-section {
	border-top: 1px solid #f0ece8;
}

.geno-search-section-label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #999;
}

/* ── Popular search pills ── */
.geno-search-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.geno-search-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border: none;
	border-radius: 999px;
	background: #F0EBE5;
	color: #2c2c2c;
	font-family: inherit;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
	white-space: nowrap;
}

.geno-search-pill:hover {
	background: #8C1D2C;
	color: #fff;
}

/* ── Trending arrow icon ── */
.geno-trending-arrow {
	flex-shrink: 0;
}

/* ── Trending item list ── */
.geno-search-trending-list {
	display: flex;
	flex-direction: column;
}

.geno-search-trending-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 0;
	border-bottom: 1px solid #f0ece8;
	text-decoration: none;
	transition: background 0.15s;
}

.geno-search-trending-item:first-child {
	padding-top: 0;
}

.geno-search-trending-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.geno-search-trending-name {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	transition: color 0.15s;
}

.geno-search-trending-item:hover .geno-search-trending-name {
	color: #8C1D2C;
}

.geno-search-trending-cat {
	font-size: 13px;
	color: #888;
}

/* ── Loading state ── */
.geno-search-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 52px 28px;
}

.geno-search-loading-icon {
	opacity: 0.6;
}

.geno-search-loading-text {
	margin: 0;
	font-size: 15px;
	color: #555;
	text-align: center;
}

.geno-search-query-echo {
	font-weight: 700;
	color: #1a1a1a;
}

/* ── Results list ── */
.geno-search-results {
	display: flex;
	flex-direction: column;
	padding: 8px 0;
}

.geno-search-result-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	padding: 10px 28px;
	text-decoration: none;
	border-bottom: 1px solid #f5f2ef;
	transition: background 0.15s;
}

.geno-search-result-item:last-child {
	border-bottom: none;
}

.geno-search-result-item:hover {
	background: #faf8f6;
}

/* Thumbnail */
.geno-search-result-thumb {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f0ec;
}

.geno-search-result-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Placeholder thumbnail when no image */
.geno-search-result-thumb--empty {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Text info */
.geno-search-result-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.geno-search-result-title {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	transition: color 0.15s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.geno-search-result-item:hover .geno-search-result-title {
	color: #8C1D2C;
}

.geno-search-result-sub {
	font-size: 13px;
	color: #888;
}

/* ── No results ── */
.geno-search-no-results {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 48px 28px;
	color: #999;
}

.geno-search-no-results p {
	margin: 0;
	font-size: 15px;
	color: #888;
}

/* ── Footer ── */
.geno-search-footer {
	flex-shrink: 0;
	border-top: 1px solid #ece8e4;
	padding: 16px 28px;
	text-align: center;
	font-size: 14px;
	color: #888;
}

.geno-search-contact-link {
	color: #8C1D2C;
	text-decoration: none;
	font-weight: 600;
}

.geno-search-contact-link:hover {
	text-decoration: underline;
}

/* ── Responsive ── */

/* 980px — tighten horizontal padding, modal stays centred */
@media ( max-width: 980px ) {
	.geno-search-overlay {
		padding: 20px 16px;
	}

	.geno-search-modal {
		max-height: calc( 100vh - 40px );
	}
}

/* 768px — bottom-sheet style */
@media ( max-width: 768px ) {
	.geno-search-overlay {
		padding: 0;
		align-items: flex-end;
	}

	.geno-search-modal {
		border-radius: 18px 18px 0 0;
		max-height: 88vh;
		max-width: 100%;
		/* slide up from bottom instead of scaling */
		transform: translateY( 100% );
	}

	.geno-search-overlay.is-open .geno-search-modal {
		transform: translateY( 0 );
	}

	.geno-search-section {
		padding: 16px 20px;
	}

	.geno-search-input-wrap {
		margin: 16px 16px 0;
		padding: 14px 16px;
	}

	.geno-search-result-item {
		padding: 10px 20px;
	}
}

/* ==========================================================================
   Guest login gate — price note + "Log in to Purchase" button styles
   ========================================================================== */

/* Price placeholder shown to guests in the shop archive */
.geno-price-login-note {
	font-size: 14x;
	color: #999;
}

/* Login CTA rendered instead of Add to Cart for guests */
.geno-add-to-cart-btn.geno-login-to-purchase,
.geno-atc-btn.geno-login-to-purchase {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	padding: 13px 20px !important;
	border: none !important;
	border-radius: 10px !important;
	background: #8C1D2C !important;
	color: #fff !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-align: center !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: background 0.18s !important;
	box-sizing: border-box !important;
}

.geno-add-to-cart-btn.geno-login-to-purchase:hover,
.geno-atc-btn.geno-login-to-purchase:hover {
	background: #751827 !important;
	color: #fff !important;
}

/* Guest note above login button in [geno-add-to-cart] */
.geno-atc-guest-note {
	margin: 0 0 4px;
	padding: 14px 16px;
	background: #f5f2ef;
	border-radius: 8px;
	font-size: 14px;
	color: #555;
}

/* ==========================================================================
   Login Modal
   ========================================================================== */

.geno-login-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 9200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba( 0, 0, 0, 0.5 );
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif;
}

.geno-login-modal-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.geno-login-modal-box {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 40px 36px 32px;
	width: 100%;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 20px 60px rgba( 0, 0, 0, 0.16 );
	transform: translateY( -10px ) scale( 0.98 );
	transition: transform 0.24s cubic-bezier( 0.4, 0, 0.2, 1 );
}

.geno-login-modal-overlay.is-open .geno-login-modal-box {
	transform: translateY( 0 ) scale( 1 );
}

.geno-login-modal-dismiss {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: #f3f4f6;
	color: #888;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	padding: 0;
}

.geno-login-modal-dismiss:hover {
	background: #e5e7eb;
	color: #333;
}

.geno-login-modal-icon {
	margin-bottom: 16px;
}

.geno-login-modal-title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif;
}

.geno-login-modal-text {
	margin: 0 0 24px;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.geno-login-modal-btn {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border-radius: 10px;
	background: #8C1D2C;
	color: #fff;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: background 0.18s;
	box-sizing: border-box;
	margin-bottom: 12px;
}

.geno-login-modal-btn:hover {
	background: #751827;
	color: #fff;
}

.geno-login-modal-cancel {
	display: block;
	width: 100%;
	padding: 10px;
	border: none;
	background: transparent;
	color: #aaa;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif;
	font-size: 13px;
	cursor: pointer;
	transition: color 0.15s;
}

.geno-login-modal-cancel:hover {
	color: #555;
}

@media ( max-width: 480px ) {
	.geno-login-modal-box {
		padding: 32px 24px 24px;
	}
}
.geno-menu-items{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.geno-menu-items a.geno-menu-item{
  color: #ffffff;
  font-size: 14px;
  line-height: 1em;
  background-color: #101828;
  padding: 6px 12px;
  border-radius: 40px;
}
/* ==========================================================================
   WooCommerce Global Overrides — Genosys brand colours
   Red: #8c1d2c  |  Black: #101828  |  Gray: #4a5565
   All selectors start with "body" to beat Divi specificity.
   ========================================================================== */

/* ── Typography baseline ─────────────────────────────────────────────────── */
body .woocommerce,
body .woocommerce-page {
	color: #4a5565 !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
}

body .woocommerce h1,
body .woocommerce h2,
body .woocommerce h3,
body .woocommerce h4,
body .woocommerce-page h1,
body .woocommerce-page h2,
body .woocommerce-page h3,
body .woocommerce-page h4 {
	color: #101828 !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
}

/* ── Buttons (all WC + Divi button variants) ─────────────────────────────── */
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input[type="submit"],
body .woocommerce-page a.button,
body .woocommerce-page button.button,
body .woocommerce-page input[type="submit"],
body .woocommerce #respond input#submit,
body .woocommerce .button.alt,
body .woocommerce a.button.alt {
	background-color: #8c1d2c !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em !important;
	transition: background 0.18s, opacity 0.18s !important;
	box-shadow: none !important;
	text-shadow: none !important;
}
body .woocommerce-button::after{
	display: none !important;
}
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce input[type="submit"]:hover,
body .woocommerce-page a.button:hover,
body .woocommerce-page button.button:hover,
body .woocommerce-page input[type="submit"]:hover,
body .woocommerce #respond input#submit:hover,
body .woocommerce .button.alt:hover,
body .woocommerce a.button.alt:hover {
	background-color: #751827 !important;
	color: #ffffff !important;
	opacity: 1 !important;
}

body .woocommerce a.button.disabled,
body .woocommerce button.button:disabled,
body .woocommerce input[type="submit"]:disabled {
	background-color: #d1d5db !important;
	color: #9ca3af !important;
	cursor: not-allowed !important;
	opacity: 1 !important;
}

/* ── Links ───────────────────────────────────────────────────────────────── */
body .woocommerce a,
body .woocommerce-page a {
	color: #8c1d2c !important;
}

body .woocommerce a:hover,
body .woocommerce-page a:hover {
	color: #751827 !important;
}

/* ── Form inputs & selects ───────────────────────────────────────────────── */
body .woocommerce input[type="text"],
body .woocommerce input[type="email"],
body .woocommerce input[type="password"],
body .woocommerce input[type="tel"],
body .woocommerce input[type="number"],
body .woocommerce input[type="search"],
body .woocommerce textarea,
body .woocommerce select,
body .woocommerce-page input[type="text"],
body .woocommerce-page input[type="email"],
body .woocommerce-page input[type="password"],
body .woocommerce-page input[type="tel"],
body .woocommerce-page input[type="number"],
body .woocommerce-page input[type="search"],
body .woocommerce-page textarea,
body .woocommerce-page select {
	border-radius: 8px !important;
	color: #101828 !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
	font-size: 15px !important;
	padding: 10px 14px !important;
	box-shadow: none !important;
	outline: none !important;
	transition: border-color 0.18s !important;
}



body .woocommerce label,
body .woocommerce-page label {
	color: #101828 !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
	font-weight: 600 !important;
	font-size: 14px !important;
}

/* ── Notices ─────────────────────────────────────────────────────────────── */
body .woocommerce-message,
body .woocommerce-info {
	background-color: #fdf2f4 !important;
	border-top-color: #8c1d2c !important;
	color: #101828 !important;
}

body .woocommerce-message::before,
body .woocommerce-info::before {
	color: #8c1d2c !important;
}

body .woocommerce-error {
	background-color: #fff5f5 !important;
	border-top-color: #dc2626 !important;
	color: #991b1b !important;
}

/* ── Login / Register forms ──────────────────────────────────────────────── */
body .woocommerce-account .woocommerce:not(.woocommerce-MyAccount-content-wrapper),
body .woocommerce-account .woocommerce > .woocommerce-notices-wrapper + .u-columns,
body .woocommerce-account .u-columns.col2-set {
	max-width: 100% !important;
}

body .woocommerce-account .woocommerce-form-login,
body .woocommerce-account .woocommerce-form-register,
body .woocommerce-account .u-column1,
body .woocommerce-account .u-column2 {
	max-width: 600px !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	background: #ffffff !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 14px !important;
	padding: 36px !important;
	box-shadow: 0 4px 24px rgba( 0, 0, 0, 0.06 ) !important;
	box-sizing: border-box !important;
}

body .woocommerce-account .col2-set {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 28px !important;
	justify-content: center !important;
}

body .woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox,
body .woocommerce-account .woocommerce-form-login__rememberme {
	color: #4a5565 !important;
	font-weight: 400 !important;
}

body .woocommerce-account .lost_password a {
	color: #8c1d2c !important;
	font-size: 13px !important;
}

/* ── My Account — sidebar navigation ────────────────────────────────────── */
body .woocommerce-account .woocommerce-MyAccount-navigation {
	background: #faf8f6 !important;
	border-radius: 12px !important;
	padding: 8px !important;
	border: 1px solid #ede8e3 !important;
}

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

body .woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block !important;
	padding: 10px 16px !important;
	border-radius: 8px !important;
	color: #4a5565 !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	transition: background 0.15s, color 0.15s !important;
}

body .woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
body .woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: #8c1d2c !important;
	color: #ffffff !important;
}

/* ── Cart table ──────────────────────────────────────────────────────────── */
body .woocommerce table.shop_table {
	border: 1px solid #e5e7eb !important;
	border-radius: 12px !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	overflow: hidden !important;
}

body .woocommerce table.shop_table th {
	background: #faf8f6 !important;
	color: #101828 !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
	font-weight: 700 !important;
	border-bottom: 1px solid #e5e7eb !important;
	padding: 14px 16px !important;
}

body .woocommerce table.shop_table td {
	color: #4a5565 !important;
	border-bottom: 1px solid #f0ece8 !important;
	padding: 14px 16px !important;
	vertical-align: middle !important;
}

body .woocommerce table.shop_table .product-name a {
	color: #101828 !important;
	font-weight: 600 !important;
}

body .woocommerce table.shop_table .product-name a:hover {
	color: #8c1d2c !important;
}

body .woocommerce .cart-subtotal th,
body .woocommerce .order-total th,
body .woocommerce .cart-subtotal td,
body .woocommerce .order-total td {
	color: #101828 !important;
	font-weight: 700 !important;
}

body .woocommerce .order-total .amount {
	color: #8c1d2c !important;
}

/* Cart quantity input */
body .woocommerce .quantity input.qty {
	border: 1.5px solid #d1d5db !important;
	border-radius: 6px !important;
	color: #101828 !important;
	text-align: center !important;
}

/* Remove item link */
body .woocommerce table.cart td.product-remove a.remove {
	color: #9ca3af !important;
	font-size: 18px !important;
	background: none !important;
}

body .woocommerce table.cart td.product-remove a.remove:hover {
	color: #8c1d2c !important;
	background: none !important;
}

/* ── Cart totals / Checkout sidebar ──────────────────────────────────────── */
body .woocommerce .cart_totals,
body .woocommerce .checkout_coupon {
	background: #faf8f6 !important;
	border: 1px solid #ede8e3 !important;
	border-radius: 12px !important;
	padding: 24px !important;
}

body .woocommerce .cart_totals h2,
body .woocommerce-checkout h3 {
	color: #101828 !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	border-bottom: 1px solid #e5e7eb !important;
	padding-bottom: 12px !important;
	margin-bottom: 16px !important;
}

/* ── Checkout ────────────────────────────────────────────────────────────── */
body .woocommerce-checkout #order_review {
	background: #faf8f6 !important;
	border: 1px solid #ede8e3 !important;
	border-radius: 12px !important;
	padding: 24px !important;
}

body .woocommerce-checkout #place_order {
	background-color: #8c1d2c !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 10px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	padding: 16px 24px !important;
	width: 100% !important;
	transition: background 0.18s !important;
}

body .woocommerce-checkout #place_order:hover {
	background-color: #751827 !important;
}

/* ── Single product ──────────────────────────────────────────────────────── */
body .woocommerce div.product .product_title {
	color: #101828 !important;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif !important;
}

body .woocommerce div.product p.price,
body .woocommerce div.product span.price {
	color: #8c1d2c !important;
	font-weight: 700 !important;
}

body .woocommerce div.product p.price del,
body .woocommerce div.product span.price del {
	color: #9ca3af !important;
	font-weight: 400 !important;
}

body .woocommerce div.product .stock {
	color: #16a34a !important;
	font-weight: 600 !important;
}

body .woocommerce div.product .out-of-stock {
	color: #dc2626 !important;
}

/* Product tabs */
body .woocommerce div.product .woocommerce-tabs ul.tabs {
	border-bottom: 2px solid #e5e7eb !important;
	padding: 0 !important;
	margin-bottom: 0 !important;
}

body .woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent !important;
	border: none !important;
	border-bottom: 2px solid transparent !important;
	margin-bottom: -2px !important;
}

body .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: #4a5565 !important;
	font-weight: 600 !important;
	padding: 10px 20px !important;
}

body .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: #8c1d2c !important;
	background: transparent !important;
}

body .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #8c1d2c !important;
	background: transparent !important;
}

body .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body .woocommerce div.product .woocommerce-tabs ul.tabs li::after,
body .woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none !important;
	border: none !important;
	box-shadow: none !important;
}

body .woocommerce div.product .woocommerce-tabs .panel {
	border: 1px solid #e5e7eb !important;
	border-top: none !important;
	border-radius: 0 0 10px 10px !important;
	padding: 24px !important;
	background: #ffffff !important;
}

/* ── Prices in archive / shortcode context ───────────────────────────────── */
body .woocommerce ul.products li.product .price,
body .woocommerce-page ul.products li.product .price {
	color: #8c1d2c !important;
	font-weight: 700 !important;
}

/* ── Order / thank you page ──────────────────────────────────────────────── */
body .woocommerce-order-received h2,
body .woocommerce-order-received h3 {
	color: #101828 !important;
}

body .woocommerce-order-overview li {
	color: #4a5565 !important;
	border-bottom: 1px solid #e5e7eb !important;
}

body .woocommerce-order-overview li strong {
	color: #101828 !important;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
body .woocommerce .woocommerce-breadcrumb {
	color: #9ca3af !important;
	font-size: 13px !important;
}

body .woocommerce .woocommerce-breadcrumb a {
	color: #4a5565 !important;
}

body .woocommerce .woocommerce-breadcrumb a:hover {
	color: #8c1d2c !important;
}

/* ── WC native pagination ────────────────────────────────────────────────── */
body .woocommerce nav.woocommerce-pagination ul li a,
body .woocommerce nav.woocommerce-pagination ul li span {
	border-color: #e5e7eb !important;
	color: #4a5565 !important;
	border-radius: 6px !important;
}

body .woocommerce nav.woocommerce-pagination ul li a:hover,
body .woocommerce nav.woocommerce-pagination ul li span.current {
	background: #8c1d2c !important;
	color: #ffffff !important;
	border-color: #8c1d2c !important;
}

/* ── "Please log in to view pricing" notice ──────────────────────────────── */
body .woocommerce .woocommerce-info.woocommerce-no-price {
	background: #faf8f6 !important;
	border-color: #e5e7eb !important;
	color: #4a5565 !important;
	border-radius: 8px !important;
}

/* ── Coupon / discount code field ────────────────────────────────────────── */
body .woocommerce .coupon label {
	color: #101828 !important;
}

body .woocommerce .coupon .input-text {
	border-radius: 8px 0 0 8px !important;
}

body .woocommerce .coupon .button {
	border-radius: 0 8px 8px 0 !important;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media ( max-width: 768px ) {
	body .woocommerce-account .woocommerce-form-login,
	body .woocommerce-account .woocommerce-form-register,
	body .woocommerce-account .u-column1,
	body .woocommerce-account .u-column2 {
		padding: 24px 20px !important;
	}

	body .woocommerce-account .col2-set {
		flex-direction: column !important;
	}
}
