/**
 * أكورديون أقسام المنتج + صف الأيقونات الثابت + السعر بجانب زر الإضافة.
 */

/* ===== السعر فوق زر الإضافة للسلة ===== */
.product-cta .yaya-price {
	margin-bottom: 14px;
	font-size: 24px;
	font-weight: 800;
	color: #1c1c1e;
	line-height: 1.1;
}
.yaya-price ins {
	text-decoration: none;
	color: #1c1c1e;
}
.yaya-price del {
	margin-inline-start: 8px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: line-through;
	color: #c08a2e;
}
.product-cta .single_add_to_cart_button {
	width: 100%;
}
@media (max-width: 480px) {
	.product-cta .yaya-price { font-size: 20px; }
}

/* ===== الأكورديون ===== */
.yaya-acc {
	margin: 24px 0 8px;
	border-top: 1px solid #e9e9ee;
}
.yaya-acc__row {
	border-bottom: 1px solid #e9e9ee;
}
.yaya-acc__head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 2px;
	background: none;
	border: 0;
	margin: 0;
	cursor: pointer;
	text-align: start;
	font: inherit;
	font-size: 17px;
	font-weight: 700;
	color: #2a2a2e;
}
.yaya-acc__head:hover { color: #000; }

.yaya-acc__icon {
	position: relative;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
}
.yaya-acc__icon::before,
.yaya-acc__icon::after {
	content: "";
	position: absolute;
	background: #9a9aa0;
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}
.yaya-acc__icon::before { /* الأفقي */
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px;
}
.yaya-acc__icon::after { /* العمودي */
	top: 0;
	left: 7px;
	width: 2px;
	height: 16px;
}
.yaya-acc__row.is-open .yaya-acc__icon::after {
	transform: scaleY(0);
	opacity: 0;
}

.yaya-acc__body {
	overflow: hidden;
	max-height: 0;
	transition: max-height .32s ease;
}
.yaya-acc__row.is-open .yaya-acc__body {
	max-height: 800px;
}
.yaya-acc__inner {
	padding: 0 2px 20px;
	color: #5a5a5f;
	font-size: 15px;
	line-height: 1.85;
}
.yaya-acc__inner p { margin: 0 0 10px; }
.yaya-acc__inner p:last-child { margin-bottom: 0; }

/* ===== صف الأيقونات الثابت ===== */
.yaya-feat-icons {
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin: 28px 0 4px;
}
.yaya-feat-icons__item {
	flex: 1 1 0;
	text-align: center;
}
.yaya-feat-icons__icon {
	width: 86px;
	height: 86px;
	margin: 0 auto 12px;
	border: 1px solid #e4e4e8;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a6a6ac;
	background: #fff;
}
.yaya-feat-icons__icon svg {
	width: 46px;
	height: 46px;
}
.yaya-feat-icons__label {
	font-size: 13px;
	line-height: 1.5;
	color: #6a6a70;
}

@media (max-width: 520px) {
	.yaya-feat-icons__icon { width: 68px; height: 68px; }
	.yaya-feat-icons__icon svg { width: 36px; height: 36px; }
	.yaya-feat-icons__label { font-size: 12px; }
}
