/* Shaer Silver — Price Inquiry menu (Eitaa / Bale / WhatsApp)
   Replaces price + add-to-cart everywhere with a single CTA that opens
   a small menu letting the customer pick which app to ask on. */

.shsl-inquiry-wrap {
	position: relative;
	display: inline-block;
}
.shsl-inquiry-wrap--single,
.shsl-inquiry-wrap--loop {
	width: 100%;
	max-width: 320px;
}
.shsl-inquiry-wrap--loop {
	max-width: none;
}

.shsl-inquiry-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: linear-gradient(135deg, #efd696, #c9a227 55%, #8a6d1f) !important;
	color: #171208 !important;
	padding: 12px 26px !important;
	border-radius: 999px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	font-family: 'Vazirmatn', 'Tajawal', sans-serif !important;
	text-decoration: none !important;
	border: none !important;
	box-shadow: 0 10px 22px rgba(201,162,39,.25);
	transition: transform .2s ease, box-shadow .2s ease;
	cursor: pointer;
}
.shsl-inquiry-btn:hover {
	transform: translateY(-2px);
	color: #171208 !important;
	box-shadow: 0 14px 28px rgba(201,162,39,.35);
}
.shsl-inquiry-btn svg {
	width: 18px;
	height: 18px;
	fill: #171208;
	flex: 0 0 auto;
}

/* Single product page: full-width-ish, sits where the add-to-cart button was */
.shsl-inquiry-btn--single {
	padding: 15px 28px !important;
	font-size: 15px !important;
}

/* Shop / archive / related-products loop: compact, fits inside the card */
.shsl-inquiry-btn--loop {
	box-sizing: border-box;
	margin-top: 10px;
	padding: 10px 14px !important;
	font-size: 13px !important;
}

/* Dropdown menu with the three apps */
.shsl-inquiry-menu {
	position: absolute;
	inset-inline-start: 0;
	top: calc(100% + 8px);
	z-index: 20;
	display: none;
	flex-direction: column;
	gap: 6px;
	width: 100%;
	min-width: 190px;
	background: #171208;
	border: 1px solid rgba(201,162,39,.35);
	border-radius: 16px;
	padding: 8px;
	box-shadow: 0 16px 32px rgba(0,0,0,.45);
}
.shsl-inquiry-wrap.is-open .shsl-inquiry-menu {
	display: flex;
}

.shsl-inquiry-menu__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 10px;
	color: #efd696 !important;
	font-family: 'Vazirmatn', 'Tajawal', sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background .15s ease;
}
.shsl-inquiry-menu__item:hover {
	background: rgba(201,162,39,.12);
}
.shsl-inquiry-menu__item svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}
.shsl-inquiry-menu__item--eitaa svg { fill: #4fb0e6; }
.shsl-inquiry-menu__item--bale svg { fill: #3fc16b; }
.shsl-inquiry-menu__item--whatsapp svg { fill: #25d366; }
