/* R3-S3-B3-B lightweight scoped share buttons. */
.hsj-r3-share {
	margin: 18px 0 10px;
	padding: 14px 0 0;
	border-top: 1px solid rgba(47, 36, 28, 0.12);
	color: #2f241c;
}

.hsj-r3-share--blog {
	margin-top: 32px;
	padding-top: 18px;
}

.hsj-r3-share__label {
	margin: 0 0 10px;
	color: rgba(47, 36, 28, 0.72);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hsj-r3-share__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.hsj-r3-share__button {
	min-height: 40px;
	padding: 9px 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 1px solid rgba(47, 36, 28, 0.16);
	border-radius: 999px;
	background: #fffdf9;
	color: #2f241c;
	font: inherit;
	font-size: 0.88rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.hsj-r3-share__button:hover,
.hsj-r3-share__button:focus-visible {
	border-color: rgba(47, 36, 28, 0.36);
	background: #f7efe5;
	color: #2f241c;
	transform: translateY(-1px);
}

.hsj-r3-share__button:focus-visible {
	outline: 2px solid rgba(47, 36, 28, 0.28);
	outline-offset: 2px;
}

.hsj-r3-share__button--native {
	background: #2f241c;
	color: #fffdf9;
}

.hsj-r3-share__button--native:hover,
.hsj-r3-share__button--native:focus-visible {
	background: #3a2c22;
	color: #fffdf9;
}

.hsj-r3-share__button.is-copied {
	border-color: rgba(80, 111, 78, 0.45);
	background: #eef5ec;
}

@media (max-width: 520px) {
	.hsj-r3-share__buttons {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hsj-r3-share__button {
		width: 100%;
		min-height: 42px;
		padding-left: 10px;
		padding-right: 10px;
		font-size: 0.84rem;
	}
}


/* R3-S3-B3-F icon-first share visual pass. */
.hsj-r3-share,
.hsj-r3-share * {
	box-sizing: border-box;
}

.hsj-r3-share__button {
	min-width: 40px;
	min-height: 40px;
	padding: 9px 12px;
	gap: 7px;
	border-color: rgba(67, 49, 38, 0.18);
	background: #fffaf3;
	box-shadow: 0 6px 16px rgba(47, 36, 28, 0.05);
}

.hsj-r3-share__icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.hsj-r3-share__icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.hsj-r3-share__text {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.hsj-r3-share__button--native .hsj-r3-share__icon,
.hsj-r3-share__button--native .hsj-r3-share__text {
	color: inherit;
}

@media (hover: hover) {
	.hsj-r3-share__button:hover {
		box-shadow: 0 9px 20px rgba(47, 36, 28, 0.08);
	}
}

@media (max-width: 520px) {
	.hsj-r3-share__buttons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 100%;
	}

	.hsj-r3-share__button {
		min-width: 0;
		justify-content: center;
	}

	.hsj-r3-share__text {
		font-size: 0.82rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hsj-r3-share__button {
		transition: none;
	}

	.hsj-r3-share__button:hover,
	.hsj-r3-share__button:focus-visible {
		transform: none;
	}
}


/* R3-S3-B3-F-FIX1 pure icon share row. */
.hsj-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.hsj-r3-share {
	margin: 16px 0 8px;
	padding: 12px 0 0;
}

.hsj-r3-share__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	max-width: 100%;
}

.hsj-r3-share__button {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(67, 49, 38, 0.2);
	background: #fffaf3;
	color: #2f241c;
	box-shadow: 0 7px 18px rgba(47, 36, 28, 0.06);
	font-size: 0;
	line-height: 0;
	overflow: visible;
}

.hsj-r3-share__button--native {
	background: #fffaf3;
	color: #2f241c;
}

.hsj-r3-share__button--native:hover,
.hsj-r3-share__button--native:focus-visible {
	background: #f3eadf;
	color: #2f241c;
}

.hsj-r3-share__icon,
.hsj-r3-share__icon svg {
	width: 18px;
	height: 18px;
}

.hsj-r3-share__button.is-copied {
	border-color: rgba(80, 111, 78, 0.5);
	background: #eef5ec;
}

.hsj-r3-share__button.is-copied::after {
	content: "Copied";
	position: absolute;
	top: calc(100% + 7px);
	left: 50%;
	z-index: 2;
	padding: 5px 8px;
	border-radius: 999px;
	background: #2f241c;
	color: #fffaf3;
	font-size: 11px;
	line-height: 1;
	white-space: nowrap;
	transform: translateX(-50%);
}

@media (hover: hover) {
	.hsj-r3-share__button:hover {
		background: #f3eadf;
		transform: translateY(-1px);
	}
}

@media (max-width: 520px) {
	.hsj-r3-share__buttons {
		display: flex;
		gap: 10px;
	}

	.hsj-r3-share__button {
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
	}
}


/* R3-S3-B3-F-FIX2 target-like naked share icon row. */
.hsj-r3-share {
	margin: 12px 0 6px;
	padding: 10px 0 0;
	border-top: 1px solid rgba(47, 36, 28, 0.1);
	min-height: 0;
	background: transparent;
}

.hsj-r3-share__buttons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 18px;
	max-width: 100%;
}

.hsj-r3-share__button,
.hsj-r3-share__button--native,
.hsj-r3-share__button--copy,
.hsj-r3-share__button--whatsapp,
.hsj-r3-share__button--pinterest,
.hsj-r3-share__button--facebook,
.hsj-r3-share__button--email {
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #4a4038;
	font-size: 0;
	line-height: 0;
	overflow: visible;
}

.hsj-r3-share__button:hover,
.hsj-r3-share__button:focus-visible,
.hsj-r3-share__button--native:hover,
.hsj-r3-share__button--native:focus-visible {
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #2f241c;
	transform: translateY(-1px);
}

.hsj-r3-share__icon,
.hsj-r3-share__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.hsj-r3-share__button.is-copied {
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #506f4e;
}

.hsj-r3-share__button.is-copied::after {
	content: "Copied";
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	z-index: 2;
	padding: 5px 8px;
	border-radius: 999px;
	background: #2f241c;
	color: #fffaf3;
	font-size: 11px;
	line-height: 1;
	white-space: nowrap;
	transform: translateX(-50%);
}

@media (max-width: 520px) {
	.hsj-r3-share__buttons {
		display: flex;
		gap: 16px;
	}

	.hsj-r3-share__button {
		width: auto;
		height: auto;
		min-width: 0;
		min-height: 0;
	}
}


/* R3-GLOBAL-SOCIAL-ICON-FIX1 final share icon unification */
.hsj-r3-share {
  margin: 20px 0 12px;
  padding-top: 16px;
}

.hsj-r3-share__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hsj-r3-share__button,
.hsj-r3-share__button--native,
.hsj-r3-share__button--copy,
.hsj-r3-share__button--whatsapp,
.hsj-r3-share__button--pinterest,
.hsj-r3-share__button--facebook,
.hsj-r3-share__button--email {
  position: relative;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(59, 45, 36, 0.18);
  background: #fbf6ef;
  color: #3b2d24;
  box-shadow: 0 6px 16px rgba(47, 36, 28, 0.06);
  font-size: 0;
  line-height: 0;
  overflow: visible;
}

.hsj-r3-share__button:hover,
.hsj-r3-share__button:focus-visible,
.hsj-r3-share__button--native:hover,
.hsj-r3-share__button--native:focus-visible {
  background: #f2e7da;
  border-color: rgba(59, 45, 36, 0.28);
  color: #3b2d24;
  transform: translateY(-1px);
}

.hsj-r3-share__icon,
.hsj-r3-share__icon svg,
.hsj-r3-share__button svg {
  width: 19px;
  height: 19px;
  display: block;
  flex: 0 0 auto;
}

.hsj-r3-share__button--native .hsj-r3-share__icon,
.hsj-r3-share__button--native .hsj-r3-share__text {
  color: #3b2d24;
}

.hsj-r3-share__button.is-copied {
  border-color: rgba(80, 111, 78, 0.42);
  background: #edf5ec;
}

.hsj-r3-share__button.is-copied::after {
  top: calc(100% + 8px);
}

@media (max-width: 767px) {
  .hsj-r3-share__buttons {
    gap: 10px;
  }

  .hsj-r3-share__button,
  .hsj-r3-share__button--native,
  .hsj-r3-share__button--copy,
  .hsj-r3-share__button--whatsapp,
  .hsj-r3-share__button--pinterest,
  .hsj-r3-share__button--facebook,
  .hsj-r3-share__button--email {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .hsj-r3-share__icon,
  .hsj-r3-share__icon svg,
  .hsj-r3-share__button svg {
    width: 18px;
    height: 18px;
  }
}


/* R3-GLOBAL-SOCIAL-ICON-FIX2 local SVG share icon system */
.hsj-r3-share {
  margin: 16px 0 10px;
  padding-top: 12px;
}

.hsj-r3-share__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

.hsj-r3-share__button {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(74, 56, 45, 0.16);
  background: #fbf5ec;
  color: #3b2d24;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
}

.hsj-r3-share__button:hover,
.hsj-r3-share__button:focus-visible {
  background: #f0e5d7;
  border-color: rgba(74, 56, 45, 0.3);
  color: #33271f;
  transform: translateY(-1px);
}

.hsj-r3-share__button--native,
.hsj-r3-share__button--copy,
.hsj-r3-share__button--facebook,
.hsj-r3-share__button--email,
.hsj-r3-share__button--whatsapp,
.hsj-r3-share__button--pinterest {
  background: #fbf5ec;
  color: #3b2d24;
}

.hsj-r3-share__icon,
.hsj-r3-share__icon .hsj-r3-svg-icon,
.hsj-r3-share__button .hsj-r3-svg-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.hsj-r3-share__button .hsj-r3-svg-icon {
  overflow: visible;
}

.hsj-r3-share__button.is-copied {
  background: #edf5ec;
  border-color: rgba(80, 111, 78, 0.42);
}

@media (max-width: 520px) {
  .hsj-r3-share__buttons {
    justify-content: center;
    gap: 10px;
  }

  .hsj-r3-share__button {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }

  .hsj-r3-share__icon,
  .hsj-r3-share__icon .hsj-r3-svg-icon,
  .hsj-r3-share__button .hsj-r3-svg-icon {
    width: 19px;
    height: 19px;
  }
}


/* R3-GLOBAL-SOCIAL-ICON-FIX3 visual polish */
.hsj-r3-share {
  margin: 16px 0 10px;
  padding-top: 12px;
}

.hsj-r3-share__buttons {
  gap: 12px;
}

.hsj-r3-share__button,
.hsj-r3-share__button--native,
.hsj-r3-share__button--copy,
.hsj-r3-share__button--whatsapp,
.hsj-r3-share__button--pinterest,
.hsj-r3-share__button--facebook,
.hsj-r3-share__button--email {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: #fbf5ec;
  border: 1px solid rgba(74, 56, 45, 0.16);
  box-shadow: none;
}

.hsj-r3-share__icon,
.hsj-r3-share__icon svg,
.hsj-r3-share__button svg,
.hsj-r3-share__icon .hsj-r3-svg-icon,
.hsj-r3-share__button .hsj-r3-svg-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
}

.hsj-r3-share__button:hover,
.hsj-r3-share__button:focus-visible,
.hsj-r3-share__button--native:hover,
.hsj-r3-share__button--native:focus-visible {
  background: #f0e5d7;
  border-color: rgba(74, 56, 45, 0.3);
  color: #33271f;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .hsj-r3-share__buttons {
    gap: 10px;
    justify-content: center;
  }

  .hsj-r3-share__button,
  .hsj-r3-share__button--native,
  .hsj-r3-share__button--copy,
  .hsj-r3-share__button--whatsapp,
  .hsj-r3-share__button--pinterest,
  .hsj-r3-share__button--facebook,
  .hsj-r3-share__button--email {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }

  .hsj-r3-share__icon,
  .hsj-r3-share__icon svg,
  .hsj-r3-share__button svg,
  .hsj-r3-share__icon .hsj-r3-svg-icon,
  .hsj-r3-share__button .hsj-r3-svg-icon {
    width: 21px;
    height: 21px;
  }
}


/* R3-GLOBAL-SOCIAL-ICON-FIX3B product609 share lock */
.single-product.postid-609 .hsj-r3-share__icon,
.single-product.postid-609 .hsj-r3-share__icon svg,
.single-product.postid-609 .hsj-r3-share__button svg,
.single-product.postid-609 .hsj-r3-share__icon .hsj-r3-svg-icon,
.single-product.postid-609 .hsj-r3-share__button .hsj-r3-svg-icon {
  width: 23px !important;
  height: 23px !important;
}

@media (max-width: 767px) {
  .single-product.postid-609 .hsj-r3-share__icon,
  .single-product.postid-609 .hsj-r3-share__icon svg,
  .single-product.postid-609 .hsj-r3-share__button svg,
  .single-product.postid-609 .hsj-r3-share__icon .hsj-r3-svg-icon,
  .single-product.postid-609 .hsj-r3-share__button .hsj-r3-svg-icon {
    width: 22px !important;
    height: 22px !important;
  }
}
