/* =========================
   PRODUCT ACTIONS
========================= */

.tubuy-product-actions {
	margin-top: 28px;
}

.tubuy-product-actions-top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.tubuy-quantity-box {
	width: 140px;
	height: 56px;
	border: 1px solid #e2e8f0;
	border-radius: var(--tubuy-border-radius);
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	flex-shrink: 0;
}

.tubuy-qty-btn {
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	font-size: 24px;
	font-weight: 500;
	color: #07121d;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s ease;
}

.tubuy-qty-btn:hover {
	color: #16a34a;
}

.tubuy-quantity-box input {
	width: 40px;
	border: none;
	background: transparent;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: #07121d;
	outline: none;
}

.tubuy-add-to-cart-btn {
	flex: 1;
	height: 56px;
	border: none;
	border-radius: var(--tubuy-border-radius);
	background: #16a34a;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s ease;
}

.tubuy-add-to-cart-btn:hover {
	background: #15803d;
	transform: translateY(-1px);
}

.tubuy-buy-now-btn {
	width: 100%;
	height: 56px;
	border-radius: var(--tubuy-border-radius);
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #07121d;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s ease;
	margin-bottom: 18px;
}

.tubuy-buy-now-btn:hover {
	border-color: #16a34a;
	color: #16a34a;
}

.tubuy-product-extra-actions {
	display: flex;
	align-items: center;
	gap: 28px;
}

.tubuy-extra-action {
	border: none;
	background: transparent;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	color: #475569;
	cursor: pointer;
	transition: 0.3s ease;
}

.tubuy-extra-action:hover {
	color: #16a34a;
}

/* =========================
   RTL PRODUCT ACTIONS
========================= */

.tubuy-rtl .tubuy-product-extra-actions {
	justify-content: flex-start;
}

.tubuy-rtl .tubuy-single-product-summary,
.tubuy-rtl .tubuy-product-meta-item,
.tubuy-rtl .tubuy-product-description {
	text-align: right;
}