
/* панель — одна строка */
.product-fixed-cart__variants{
	display:flex;
	overflow-x:auto;
	-webkit-overflow-scrolling:touch;
	gap:12px;
	padding:0 10px 0;
	margin:0 10px 0 0;
	flex:1 1 auto;
}
.product-fixed-cart .product-fixed-cart__variant-chip{
	appearance:none;
	-webkit-appearance:none;
	white-space:nowrap;
	border:1px solid #e0e0e0 !important;
	background:#fff !important;
	color:inherit !important;
	border-radius:20px !important;
	padding:12px 16px !important;
	font-size:15px !important;
	line-height:1;
	flex:0 0 auto;
	box-shadow:none !important;
	min-height:44px;
}
.product-fixed-cart .product-fixed-cart__variant-chip.selected{
	background:var(--button-color-bg) !important;
	color:var(--button-color-font) !important;
	border-color:var(--button-color-bg) !important;
}
.product-fixed-cart .product-fixed-cart__variant-chip.disabled{
	opacity:.4;
	cursor:not-allowed;
}
.product-fixed-cart__notify{
	border:none;
	background:#eee;
	border-radius:8px;
	padding:10px 14px;
	font-size:14px;
}

/* секция цены и кнопок справа, чтобы они всегда были видимы */
.product-fixed-cart__prices{flex:0 0 auto;margin:0 10px 0 0}
.product-fixed-cart__btns{flex:0 0 auto;min-width:60px}

/* стили для иконки корзины */
.product-fixed-cart .product-fixed-cart__addtocart{
	display:flex;
	align-items:center;
	justify-content:center;
	width:44px;
	height:44px;
	border-radius:8px;
	background:var(--button-color-bg);
	color:var(--button-color-font);
	text-decoration:none;
}
.product-fixed-cart .product-fixed-cart__addtocart .add2cart__icon{
	font-size:18px;
}

/* уменьшаем шрифт цены и убираем символ рубля */
.product-fixed-cart .product-fixed-cart__price{
	font-size:16px !important;
	font-weight:600;
}
.product-fixed-cart .product-fixed-cart__price .ruble{
	display:none !important;
}

/* класс для скрытия элементов */
.display-none{
	display:none !important;
}

/* стили для скрытия/показа цен и кнопок */
.product-fixed-cart .js-product-prices.display-none{
	display:none !important;
}
.product-fixed-cart .product-fixed-cart__addtocart.display-none{
	display:none !important;
}
.product-fixed-cart .js-fixed-notify-btn.display-none{
	display:none !important;
}

/* альтернативный способ скрытия через visibility и opacity */
.product-fixed-cart .js-product-prices.display-none{
	visibility:hidden !important;
	opacity:0 !important;
	pointer-events:none !important;
}
.product-fixed-cart .product-fixed-cart__addtocart.display-none{
	visibility:hidden !important;
	opacity:0 !important;
	pointer-events:none !important;
}
.product-fixed-cart .js-fixed-notify-btn.display-none{
	visibility:hidden !important;
	opacity:0 !important;
	pointer-events:none !important;
}

