/* === product page right_info restyle === */
#product .right_info .form-group {
	margin-bottom: 28px;
}
.right_info .product-heading {
	font-family: 'Fixel Display', sans-serif;
	font-weight: 400;
	font-size: 19px;
	line-height: 120%;
	text-transform: uppercase;
	color: #0f0f0e;
	margin: 0 0 2px;
	padding: 0;
	position: static;
}
.right_info .pro_price {
	font-family: 'Fixel Display', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #0f0f0e;
}
.right_info .pro_oldprice {
	font-size: 16px;
	color: #757575;
}
.right_info .pro_price.special-product-price {
	color: #E14D3C;
}
.right_info .product-article {
	display: block;
	font-family: var(--second-family);
	font-size: 13px;
	color: #B7B7B7;
	text-transform: none;
	padding: 0px 0 24px;
}
.right_info hr {
	border: none;
	border-top: 1px solid #F8F8F8;
	margin: 18px 0;
}

@media (max-width: 767px) {
  .right_info .product-heading {
    margin: 0 0 8px;
	  font-size: 16px;

  }
}

/* form-name (label) — title row for "КОЛІР"/"РОЗМІР" */
.right_info .form-name {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;
	max-width: 100%;
	font-family: 'Fixel Text', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: normal;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #141414;
	margin-bottom: 12px;
	padding: 0;
}
.right_info .form-name .current-option {
	color: #A1A1A1;
	font-family: 'Fixel Text', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: lowercase;
}
.right_info .form-name .ending-count {
	position: relative;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: 'Fixel Display', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.2;
	text-transform: none;
	color: #141414;
}
.right_info .form-name .ending-count::before {
	content: '';
	position: static;
	display: block;
	width: 4px;
	height: 4px;
	background-color: #e14d3c;
	flex-shrink: 0;
}
.right_info .form-name .product-info-expired {
	margin-left: auto;
	font-size: 14px;
	color: #d22a2a;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.right_info .form-name .product-info-expired::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #d22a2a;
}
.right_info ul.sizes-button {
	margin: 28px 0 0 auto;
	list-style: none;
	font-family: 'Fixel Text', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.38;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #141414;
	border-bottom: 1px solid #141414;
}
.right_info ul.sizes-button li,
.right_info ul.sizes-button a {
	display: inline;
	text-decoration: none;
	color: inherit;
}
@media (max-width: 767px) {
  .right_info ul.sizes-button {
	  margin: 20px 0 0 auto;
  }
}

/* color swatches */
.right_info .product-option__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: flex-start;
	padding-bottom: 7px;
}
.right_info .radio label.product-option {
	width: 45px;
	height: 24px;
	border: none;
	overflow: visible;
	padding: 0;
	opacity: 1;
	position: relative;
	display: block;
}

/* Text-only options outside the size group (e.g. "Запах", "Аромат")
   — render as text buttons that fit content, mirroring the size-button look
   so labels don't overflow the 45×24 swatch box and overlap each other. */
.right_info .product-option__list:not(.product-option__list--size) .radio label.product-option:not(:has(.product-option__img)) {
	width: fit-content;
	height: auto;
	min-width: 62px;
	min-height: 43px;
	padding: 0 20px;
	box-sizing: border-box;
	overflow: visible;
	font-family: 'Fixel Text', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.38;
	text-transform: uppercase;
	color: #141414;
	display: flex;
	align-items: center;
	justify-content: center;
}

.right_info .product-option__list:not(.product-option__list--size) .radio:has(label:not(:has(.product-option__img))) {
	margin: 0;
	border-bottom: 1px solid #eeeeee;
}
.right_info .radio label.product-option::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 1px;
	background-color: #141414;
	transform: scaleX(0);
	transition: transform 0.2s ease;
}
.right_info .radio label.product-option .product-option__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.right_info .radio label.product-option--active {
	border: none;
	padding: 0;
}
.right_info .radio label.product-option--active::after {
	transform: scaleX(1);
}
.right_info .radio label.product-option--disabled::before {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
}

/* size buttons (text-only) */
.right_info .product-option__list--size {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding-bottom: 0;
}
.right_info .product-option__list--size .radio {
	margin: 0;
	border-bottom: 1px solid #eeeeee;
	transition: border-color 0.2s ease;
}
.right_info .product-option__list--size .radio label.product-option {
	width: fit-content;
  height: 43px !important;
	min-width: 62px;
  padding: 0 20px;
	border: none;
	box-sizing: border-box;
	font-family: 'Fixel Text', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.38;
	text-transform: uppercase;
	color: #141414;
	background: transparent;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.right_info .product-option__list--size .radio label.product-option::after {
	height: 1px;
	bottom: -1px;
	background-color: #141414;
}
.right_info .product-option__list--size .radio label.product-option--active {
	color: #141414;
	border: none;
}
.right_info .product-option__list--size .radio label.product-option--active::after {
	transform: scaleX(1);
}
.right_info .product-option__list--size .radio label.product-option--disabled::before {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
}
/* low-stock dot */
.right_info .product-option__list--size .radio[data-name] label .remains-progressbar {
	display: none;
}
.right_info .product-option__list--size .radio label.product-option .remains-bar {
	display: none;
}

/* buttons row: cart + wishlist */
.right_info .product-cart-row {
  display: grid;
  grid-template-columns: 1fr 46px;
  grid-template-rows: 1fr;
	align-items: stretch;
	gap: 8px;
	width: 100%;
  margin-bottom: 16px;
}

.right_info .product-cart-row #button-cart {
	flex: 1;
  grid-row: 1/2;
  grid-column: 1/2;
	margin: 0 !important;
	height: 44px;
	padding: 0 20px !important;
	max-width: none !important;
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}
.right_info .product-cart-row #button-cart:hover {
	background: transparent !important;
	color: #0f0f0e !important;
	border: 1px solid #0f0f0e !important;
}
.right_info .product-cart-row .pro_wish.pro_wish--inline {
  grid-column: 2/3;
  grid-row: 1/2;
	position: static;
	transform: none;
	justify-self: end;
	width: 44px;
	height: 44px;
  border: 1px solid black;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	margin: 0;
	flex: 0 0 46px;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.right_info .product-cart-row .pro_wish.pro_wish--inline:hover {
	border-color: #0f0f0e;
}
.right_info .kviz_button {
  grid-column: 1/3;
	width: 100% !important;
	max-width: none !important;
	height: 44px !important;
	box-sizing: border-box;
	margin-left: 0 !important;
	margin-right: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 0.3s ease, color 0.3s ease !important;
  font-size: 14px;
  text-transform: uppercase;
}
.right_info .kviz_button:hover {
	background: #0f0f0e !important;
	color: #e8e8e8 !important;
}

/* product stores link */
.right_info .product-info-link--right {
	display: flex !important;
	align-items: center;
	justify-content: flex-end !important;
	gap: 6px;
	background: transparent !important;
	border: none !important;
	color: #0f0f0e !important;
	text-decoration: none;
	max-width: none !important;
	width: auto !important;
	height: auto !important;
}
.right_info .product-info-link--right .product-info-link__text {
  font-family: "Fixel Text";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
	display: inline-block;
	border-bottom: 1px solid #141414;
	text-decoration: none;
	line-height: 1.38;
}
.right_info .product-info-link--right:hover {
	opacity: 0.7;
}
.right_info .product-info-link--right:hover .product-info-link__text {
	border-bottom-color: #141414;
}

/* product info extras (delivery, payment) */
.right_info .product-info-extras {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.right_info .product-info-extra {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 4px 0;
	font-family: 'Fixel Display', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.2;
	color: #141414;
}
.right_info .product-info-extra img,
.right_info .product-info-extra svg {
	flex-shrink: 0;
}

/* product accordion */
.right_info .product-accordion__item {
	border-bottom: 1px solid #F8F8F8;
}
.right_info .product-accordion__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 0;
	background: transparent;
	border: none;
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 14px;
	font-style: normal;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #0f0f0e;
	cursor: pointer;
	text-align: left;
}
.right_info .product-accordion__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8C14 8.13261 13.9473 8.25979 13.8536 8.35355C13.7598 8.44732 13.6326 8.5 13.5 8.5H8.5V13.5C8.5 13.6326 8.44732 13.7598 8.35355 13.8536C8.25979 13.9473 8.13261 14 8 14C7.86739 14 7.74021 13.9473 7.64645 13.8536C7.55268 13.7598 7.5 13.6326 7.5 13.5V8.5H2.5C2.36739 8.5 2.24021 8.44732 2.14645 8.35355C2.05268 8.25979 2 8.13261 2 8C2 7.86739 2.05268 7.74021 2.14645 7.64645C2.24021 7.55268 2.36739 7.5 2.5 7.5H7.5V2.5C7.5 2.36739 7.55268 2.24021 7.64645 2.14645C7.74021 2.05268 7.86739 2 8 2C8.13261 2 8.25979 2.05268 8.35355 2.14645C8.44732 2.24021 8.5 2.36739 8.5 2.5V7.5H13.5C13.6326 7.5 13.7598 7.55268 13.8536 7.64645C13.9473 7.74021 14 7.86739 14 8Z' fill='%23141414'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: background-image 0.2s ease;
}
.right_info .product-accordion__item.is-open .product-accordion__icon {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8C14 8.13261 13.9473 8.25979 13.8536 8.35355C13.7598 8.44732 13.6326 8.5 13.5 8.5H2.5C2.36739 8.5 2.24021 8.44732 2.14645 8.35355C2.05268 8.25979 2 8.13261 2 8C2 7.86739 2.05268 7.74021 2.14645 7.64645C2.24021 7.55268 2.36739 7.5 2.5 7.5H13.5C13.6326 7.5 13.7598 7.55268 13.8536 7.64645C13.9473 7.74021 14 7.86739 14 8Z' fill='%23141414'/%3E%3C/svg%3E");
}
.right_info .product-accordion__content {
	overflow: hidden;
	max-height: 0;
	padding: 0;
	font-family: var(--second-family);
	font-size: 14px;
	line-height: 160%;
	color: #5e5e5e;
	transition: max-height 0.3s ease, padding 0.3s ease;
}
.right_info .product-accordion__item.is-open .product-accordion__content {
	max-height: 1000px;
	padding: 0 0 20px;
}
.right_info .product-accordion__content h1,
.right_info .product-accordion__content h2,
.right_info .product-accordion__content h3,
.right_info .product-accordion__content h4,
.right_info .product-accordion__content h5 {
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
}
.right_info .product-accordion__content img,
.right_info .product-accordion__content svg {
	width: 20px !important;
	height: auto;
}
.right_info .product-accordion__content p {
	margin: 0 0 10px;
}
.right_info .product-accordion__content .product-attributes {
	width: 100%;
	border-collapse: collapse;
	margin-top: 16px;
}
.right_info .product-accordion__content .product-attributes td {
	padding: 6px 0;
	font-size: 13px;
	color: #5e5e5e;
	border: none;
	vertical-align: top;
}
.right_info .product-accordion__content .product-attributes .product-attributes__name {
	width: 50%;
	color: #0f0f0e;
}

/* mobile: container padding for product page sliders */
@media (max-width: 767px) {
	.related-products-block,
	.lastview-products-block,
	.product-page-additional-products {
		padding-left: 15px !important;
		padding-right: 15px !important;
		box-sizing: border-box;
		overflow: hidden;
	}
}


.loyalty-program {
	background: #FAFAFA;
	padding: 26px 40px;
  margin-bottom: 88px;
}
.loyalty-program__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.loyalty-program__title {
	font-family: 'Fixel Text', sans-serif;
	font-weight: 500;
	font-size: 19px;
	line-height: 1.38;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #141414;
	margin: 0;
	padding: 8px 0;
	flex: 0 0 auto;
}
.loyalty-program__text {
	flex: 0 1 346px;
	max-width: 346px;
	font-family: 'Fixel Text', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: #5E5E5E;
	margin: 0;
}
.loyalty-program__btn {
	flex: 0 0 275px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 275px;
	height: 42px;
	padding: 16px;
	box-sizing: border-box;
	border: 1px solid #000000;
	background: transparent;
	font-family: 'Fixel Text', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.38;
	text-transform: uppercase;
	color: #141414;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.loyalty-program__btn:hover {
	background: #141414;
	color: #ffffff;
}

@media (max-width: 991px) {
	.loyalty-program {
		padding: 16px 24px;
	}
	.loyalty-program__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}
	.loyalty-program__title {
		font-size: 16px;
		text-align: center;
		align-self: center;
	}
	
	.loyalty-program__btn {
		flex: 0 0 auto;
		width: 224px;
		align-self: center;
	}
}

@media(max-width:767px) {
  .container > .loyalty-program {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 70px;
  }
  .loyalty-program__title {
    padding: 0;
  }
	.custom-modal-wrapper {
		position: fixed;
		top: 0;
		z-index: 4100;
		left: 100%;
	}
  .loyalty-program__text {
		flex: 0 0 auto;
		width: 100%;
		font-size: 12px;
		text-align: center;
    padding-bottom: 10px;
	}
  .loyalty-program__inner {
    gap: 16px;
  }
 
}

.slider-video-thumb {
	pointer-events: none;
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* mobile overrides for color/size info block (Figma 0:3940) */
@media (max-width: 767px) {
	#product .right_info .form-group {
		margin-bottom: 40px;
	}
	.right_info .form-name {
		gap: 13px;
		margin-bottom: 16px;
	}
	.right_info .radio label.product-option {
		width: 36px;
		height: 24px;
	}

	/* gap between size row and "розмірна таблиця" link */
	.right_info .group-size .form-name {
		margin: 24px 0 16px;
	}
}