/* [geno-add-to-cart] shortcode styles */

.geno-atc-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: 'Century Gothic', Helvetica, Arial, Lucida, sans-serif;
	
}
.geno-atc-wrap .added_to_cart.wc-forward{
	color: #8C1D2C;
	text-decoration: underline;
}

/* -----------------------------------------------------------------------
   Quantity section
----------------------------------------------------------------------- */
.geno-qty-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.geno-qty-label {
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.geno-qty-controls {
	display: flex;
	align-items: center;
	gap: 6px;
}

.geno-qty-btn,
.geno-qty-input {
	height: 44px;
	border: none;
	border-radius: 8px;
	background: #F3F4F6;
	font-family: inherit;
	font-size: 16px;
	color: #111;
	line-height: 1;
	transition: background 0.15s;
}

.geno-qty-btn {
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	font-weight: 400;
	padding: 0;
	flex-shrink: 0;
}

.geno-qty-btn:hover:not( :disabled ) {
	background: #e5e7eb;
}

.geno-qty-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.geno-qty-input {
	width: 60px;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
	padding: 0;
	cursor: default;
}

.geno-qty-input::-webkit-outer-spin-button,
.geno-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.geno-qty-input:focus {
	outline: 2px solid #8C1D2C;
	outline-offset: 1px;
}

/* -----------------------------------------------------------------------
   Add to Cart button
----------------------------------------------------------------------- */
.geno-atc-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 20px;
	border: none;
	border-radius: 10px;
	background: #8C1D2C;
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.18s, opacity 0.18s;
	letter-spacing: 0.01em;
}

.geno-atc-btn:hover:not( :disabled ) {
	background: #751827;
}

.geno-atc-btn:disabled,
.geno-atc-btn.out-of-stock {
	background: #ccc;
	color: #888;
	cursor: default;
}

.geno-atc-btn.geno-loading {
	opacity: 0.7;
	cursor: wait;
}

.geno-atc-btn.geno-atc-added {
	background: #2e7d32;
}
