/* === Product Add to Cart Widget === */

.patc-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.patc-wrapper.patc-full {
	align-items: stretch;
}

/* === Quantity Selector === */
.patc-qty-wrap {
	display: inline-flex;
	align-items: center;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 14px;
	background: #fff;
}

.patc-qty-btn {
	flex: 1;
	height: 42px;
	background: transparent !important;
	color: #666;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s, color 0.2s;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1;
	user-select: none;
	border: none !important;
	box-shadow: none !important;
	min-width: 0;
	font-size: 18px;
	outline: none !important;
}

.patc-qty-btn:hover {
	background-color: #f5f5f5;
	color: #333;
}

.patc-qty-input {
	flex: 1;
	width: 0;
	height: 42px;
	text-align: center;
	border: none !important;
	color: #333;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	-moz-appearance: textfield;
	appearance: textfield;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	min-width: 0;
	max-width: none;
	font-size: 16px;
	font-weight: 500;
}

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

/* === Add to Cart Button === */
.patc-btn {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #fff;
	background-color: #5A3F00;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
	text-decoration: none;
	text-transform: none;
	line-height: 1.2;
	box-shadow: none;
}


.patc-btn:hover {
	background-color: #3d2a00;
}

.patc-btn i {
	display: inline-block;
}

.patc-btn svg {
	display: block;
	fill: currentColor;
}

/* === Button Row === */
.patc-btn-row {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0;
	width: 100%;
}

.patc-btn-row .patc-btn {
	flex: 1;
}

/* === Wishlist === */
.patc-wishlist {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	background: transparent;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
	margin-left: 10px;
}

.patc-wishlist:hover {
	color: #5A3F00;
}

.patc-wishlist svg {
	fill: currentColor;
	pointer-events: none;
}

.patc-wishlist i {
	pointer-events: none;
}

.patc-wishlist.patc-wl-active svg {
	fill: currentColor;
}

/* === Notice === */
.patc-notice {
	color: #999;
	font-size: 14px;
	margin: 0;
}
