
@charset "UTF-8";
.block-wrapper,
.category-blocks {
  position: relative;
}
.block-wrapper.block-wrapper-split,
.category-blocks.block-wrapper-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.block-wrapper .block-edit-buttons,
.category-blocks .block-edit-buttons {
  background-color: transparent;
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: background-color, opacity 0.3s ease-in-out;
  width: 100%;
  z-index: 2;
}
.block-wrapper:hover > .block-edit-buttons,
.category-blocks:hover > .block-edit-buttons {
  background-color: rgba(247, 247, 242, 0.5);
  opacity: 1;
}
.block-wrapper:hover > .block-edit-buttons > *[data-title]:after,
.category-blocks:hover > .block-edit-buttons > *[data-title]:after {
  content: attr(data-title);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: -32px;
  background: #000000;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  border-radius: 4px;
  font-family: var(--font-family);
  pointer-events: none;
}
.block-wrapper:hover > .block-edit-buttons > *[data-title]:hover:after,
.category-blocks:hover > .block-edit-buttons > *[data-title]:hover:after {
  opacity: 1;
}
.block-wrapper:hover > .block-edit-buttons .up-button:after,
.category-blocks:hover > .block-edit-buttons .up-button:after {
  left: 0;
}
.block-wrapper:hover > .block-edit-buttons .delete-button:after,
.category-blocks:hover > .block-edit-buttons .delete-button:after {
  right: 0;
}
.block-wrapper:hover > .block-edit-buttons .down-button:after,
.category-blocks:hover > .block-edit-buttons .down-button:after {
  top: 32px;
  right: 0;
  transform: rotate(180deg);
}
.block-wrapper:hover > .block-edit-buttons .change-layout-options:after,
.category-blocks:hover > .block-edit-buttons .change-layout-options:after {
  left: 0;
}

.block-wrapper:first-child .block-edit-buttons .up-button {
  display: none;
}
.block-wrapper:last-child .block-edit-buttons .down-button {
  display: none;
}

.block {
  padding: 64px;
  position: relative;
}
.block.page-height {
  min-height: calc(100vh - 128px);
}
.block .voog-bg-picker-btn {
  top: 64px;
  left: 64px;
}
.block.split_40_60, .block.split_staggered, .block.split_60_40 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.block.split_40_60 .wrapper, .block.split_staggered .wrapper, .block.split_60_40 .wrapper {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
  align-items: center;
  align-self: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  z-index: 3;
}
.publicmode .block.split_40_60.animated {
  overflow: hidden;
}
.publicmode .block.split_40_60.animated .content-formatted {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.publicmode .block.split_40_60.animated .content-formatted:first-child {
  transform: translateX(-40px);
}
.publicmode .block.split_40_60.animated .content-formatted:last-child {
  transform: translateX(40px);
}
.publicmode .block.split_40_60.animated.visible {
  overflow: auto;
}
.publicmode .block.split_40_60.animated.visible .content-formatted {
  transform: translateX(0);
  opacity: 1;
}
.block.column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.block.column .wrapper {
  max-width: 560px;
  flex: 1;
  z-index: 3;
  width: 100%;
}
.block.column.full-width .wrapper {
  max-width: 100%;
}
.publicmode .block.column.animated {
  overflow: hidden;
}
.publicmode .block.column.animated .content-formatted {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(40px);
}
.publicmode .block.column.animated.visible {
  overflow: auto;
}
.publicmode .block.column.animated.visible .content-formatted {
  transform: translateY(0);
  opacity: 1;
}
.block.split_staggered .wrapper {
  grid-template-columns: 1fr 1fr;
  flex: 1;
}
.block.split_staggered .content-formatted:last-child {
  height: 100%;
}
.publicmode .block.split_staggered.animated {
  overflow: hidden;
}
.publicmode .block.split_staggered.animated .content-formatted {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(40px);
}
.publicmode .block.split_staggered.animated.visible {
  overflow: auto;
}
.publicmode .block.split_staggered.animated.visible .content-formatted {
  transform: translateY(0);
  opacity: 1;
}
.block.split_60_40 .wrapper {
  grid-template-columns: 1fr 40%;
}
.publicmode .block.split_60_40.animated {
  overflow: hidden;
}
.publicmode .block.split_60_40.animated .content-formatted {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.publicmode .block.split_60_40.animated .content-formatted:first-child {
  transform: translateX(-40px);
}
.publicmode .block.split_60_40.animated .content-formatted:last-child {
  transform: translateX(40px);
}
.publicmode .block.split_60_40.animated.visible {
  overflow: auto;
}
.publicmode .block.split_60_40.animated.visible .content-formatted {
  transform: translateX(0);
  opacity: 1;
}
.block.split_50_50_full {
  padding: 0;
}
.block.split_50_50_full.page-height {
  min-height: calc(100vh - var(--header-height));
}
.block.split_50_50_full .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
}
.block.split_50_50_full .content-formatted {
  margin: 48px;
  position: relative;
  z-index: 2;
}

.block-bg-color,
.block-bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
}

.block-bg-color {
  z-index: 1;
}

.block-bg-image {
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.move-button,
.delete-button {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.move-button:hover,
.delete-button:hover {
  opacity: 0.7;
}

.move-button {
  background-image: url("../assets/chevron-up.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.delete-button {
  background-image: url("../assets/trash.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.up-button {
  position: absolute;
  top: 24px;
  left: 24px;
}

.down-button {
  transform: rotate(180deg);
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.delete-button {
  position: absolute;
  top: 24px;
  right: 24px;
}

.settings-button {
  position: absolute;
  bottom: 24px;
  right: 24px;
}

.change-layout-options {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 24px;
}
.change-layout-options select {
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}
.change-layout-options:hover {
  opacity: 0.7;
}

.settings-options {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
}
.settings-options .settings-checkbox {
  display: inline-block;
}

@media (max-width: 1440px) {
  .block.split_40_60 .wrapper, .block.split_staggered .wrapper, .block.split_60_40 .wrapper {
    width: calc(100vw - 128px);
  }
}
@media screen and (max-width: 640px) {
  .block {
    padding: 24px;
  }
  .block.page-height {
    min-height: calc(100vh - 48px);
  }
  .block.split_40_60 .wrapper, .block.split_staggered .wrapper, .block.split_60_40 .wrapper {
    width: 100%;
    grid-template-columns: calc(100vw - 48px);
  }
  .publicmode .block.split_40_60.animated .content-formatted:first-child, .publicmode .block.split_40_60.animated .content-formatted:last-child, .publicmode .block.split_staggered.animated .content-formatted:first-child, .publicmode .block.split_staggered.animated .content-formatted:last-child, .publicmode .block.split_60_40.animated .content-formatted:first-child, .publicmode .block.split_60_40.animated .content-formatted:last-child {
    transform: translateY(40px);
  }
  .publicmode .block.split_40_60.animated.visible .content-formatted, .publicmode .block.split_staggered.animated.visible .content-formatted, .publicmode .block.split_60_40.animated.visible .content-formatted {
    transform: translateY(0);
  }
  .block.split_staggered .wrapper {
    flex: unset;
  }
  .block.split_staggered .wrapper .content-formatted:first-child {
    order: 2;
  }
  .block.split_staggered .wrapper .content-formatted:last-child {
    order: 1;
    height: unset;
  }
  .block-wrapper.block-wrapper-split {
    grid-template-columns: 1fr;
  }
}
body .edy-ecommerce-shopping-cart-button {
  display: none;
  max-height: 0;
  position: relative;
  top: unset;
  bottom: 0;
}
body.edy-checkout-button-visible {
  padding-top: 0;
}

.cart-popover {
  position: fixed;
  top: 48px;
  right: 32px;
  width: 100%;
  opacity: 0;
  max-width: 360px;
  pointer-events: none;
  z-index: 11020;
  background-color: #FFFFFF;
  transition: opacity 400ms;
  cursor: pointer;
}
.cart-popover .wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.cart-popover.visible {
  opacity: 1;
  pointer-events: all;
}
.cart-popover.visible .content {
  transform: translateX(0);
}
.cart-popover.visible:hover {
  opacity: 0.7;
}
.cart-popover .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  min-height: 40px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 0px 25px 35px rgba(0, 0, 0, 0.03);
  width: 100%;
  margin-left: 72px;
  transition: transform 400ms;
  transform: translateX(-72px);
}
.cart-popover .content .info {
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.cart-popover .content .view-cart {
  color: #888888;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  margin-left: 8px;
}
.cart-popover .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  background-color: #000000;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 0px 25px 35px rgba(0, 0, 0, 0.03);
  z-index: 11021;
}
.cart-popover .icon path {
  fill: #FFFFFF;
}

@media screen and (max-width: 900px) {
  .cart-popover {
    top: 0;
    left: 0;
    right: 0;
    min-width: 100vw;
  }
}
.footer {
  min-height: 360px;
  padding: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  z-index: 1;
}
.footer .footer-content {
  max-width: 1440px;
  width: 100%;
  display: grid;
  align-items: center;
  align-self: center;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 5%;
}
.footer .footer-content .footer-voog-ref {
  grid-column: 1/-1;
  grid-row: 2;
  justify-self: center;
  margin-top: 48px;
}
.footer .footer-content .footer-voog-ref a {
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .footer {
    padding: 24px;
  }
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-content .content-formatted:first-child {
    grid-column: 1/-1;
  }
  .footer .footer-content .footer-voog-ref {
    grid-row: unset;
  }
}
.header {
  background-color: rgb(148,131,121);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header.fixed {
  position: fixed;
}
.header .wrapper {
  padding: 16px 24px;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 16px;
  min-height: 64px;
  position: relative;
  z-index: 10700;
}
.header .header-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
}
.header .header-right {
  display: flex;
  justify-content: end;
  gap: 32px;
  align-items: center;
  text-wrap: nowrap;
  z-index: 1;
}
.header .header-right .cart-btn {
  cursor: not-allowed;
  display: none;
}
.header .header-right .cart-btn.active {
  cursor: pointer;
}
.header .header-right .cart-btn .cart-btn-count:not(:empty)::before {
  content: "·";
  margin: 0 4px;
}
.header .header-right .search,
.header .header-right .cart-btn {
  padding: 12px;
}
.header .header-right > * {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.header .header-right.hidden > * {
  opacity: 0;
}

@media screen and (min-width: 900px) {
  .header .header-right {
    z-index: 10700;
  }
}
@media screen and (max-width: 900px) {
  .header .wrapper {
    grid-template-columns: auto 1fr auto;
  }
  .header .wrapper .menu-main {
    order: 2;
  }
  .header .wrapper .header-content {
    order: 1;
    z-index: 2;
  }
  .header .wrapper .header-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding-bottom: 176px;
  }
  .header .wrapper .header-right .search,
  .header .wrapper .header-right .cart-btn {
    padding: 0;
  }
  .header .wrapper .header-right .menu-lang {
    order: 1;
  }
  .header .wrapper .header-right .cart-btn {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .header.menu-active .wrapper .cart-btn {
    order: 2;
    outline: 1px solid #000000;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    position: fixed;
    left: 24px;
    bottom: 24px;
    right: 24px;
    opacity: 1;
  }
  .editmode .header.menu-active .wrapper .cart-btn {
    bottom: 96px;
  }
  .header.menu-active .wrapper .cart-btn:after {
    content: "";
    position: absolute;
    height: calc(100% + 48px);
    width: 100vw;
    top: -24px;
    left: -24px;
    background-color: rgba(var(--body-bg-color-rgb), 0.6);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: -1;
  }
}
.search-button {
  cursor: pointer;
}

.search .search-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background-color: rgba(247, 247, 242, 0.8);
  z-index: 1;
  flex-direction: column;
  align-items: center;
  display: none;
}
.search .search-wrapper.active {
  display: flex;
}
.search .search-close {
  background-image: url("../assets/ico-cross.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 64px;
  right: 64px;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.search .search-inner {
  max-width: 992px;
  width: 100%;
  padding: 24px;
  position: relative;
  top: max(10%, 96px);
}
.search .search-input-wrapper {
  flex: 1;
}
.search .search-form {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 24px;
}
.search .search-form svg {
  width: 24px;
  height: 24px;
}
.search .search-form svg path {
  fill: #000000;
}
.search .search-input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  outline: none;
}
.search .clear-search-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  outline: none;
  color: #888888;
  cursor: pointer;
}
.search .search-results {
  padding-top: 24px;
  text-wrap: wrap;
}
.search .search-results h3, .search .search-results a {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  margin: 0;
  text-decoration: none;
}
.search .search-results a:hover {
  opacity: 0.5;
}
.search .search-results p {
  color: #888888;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

@media screen and (min-width: 900px) {
  .search .search-results {
    height: calc(75vh - 96px);
  }
}
@media screen and (max-width: 900px) {
  .search .search-button,
  .search .search-close {
    display: none;
  }
  .search .search-wrapper {
    display: flex;
    position: relative;
    background-color: unset;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .search .search-inner {
    max-width: 100%;
    top: 0;
    padding: 0;
    width: 100%;
  }
  .search .search-form {
    margin: 24px;
  }
  .search .search-results {
    padding-top: 0;
  }
  .search .search-results.search-results-active {
    padding: 0 24px;
    height: calc(80vh - 96px);
  }
}
.product-page .voog-bg-picker-btn {
  position: relative;
  margin-bottom: 12px;
}
.product-page .product-page-content {
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-height));
}
.product-page .split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(50%, 1fr));
  gap: 40px;
  padding: 40px;
  height: 100%;
}
.product-page .product-image.without-images {
  background-image: url("../assets/ico-placeholder.svg");
  background-size: 168px;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 3/4;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product-page .product-information {
  max-width: 416px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 32px;
}
.product-page .product-information .product-name {
  padding-bottom: 8px;
}
.product-page .product-information .product-price,
.product-page .product-information .product-social {
  padding-bottom: 32px;
}
.product-page .product-information .product-price-original {
  opacity: 0.4;
}
.product-page .product-information .product-description {
  padding-bottom: 24px;
  overflow-wrap: break-word;
}
.product-page .product-information .product-buy-button {
  padding-bottom: 24px;
}
.product-page .product-footnote {
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
  padding-top: 24px;
  margin-top: 24px;
  color: #727272;
}
.product-page .product-additional-content {
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
  padding: 48px 40px;
  margin-top: 56px;
}

@media screen and (max-width: 900px) {
  .product-page .split-section,
  .product-page .product-information {
    padding: 24px;
  }
  .product-page .product-additional-content {
    padding: 24px;
  }
}
@media screen and (max-width: 640px) {
  .product-page .split-section {
    grid-template-columns: 1fr;
  }
  .product-page .product-information {
    max-width: 100%;
    padding: 0;
  }
}
.common-page .common-page-content {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.front-page {
  position: relative;
}
.front-page .voog-bg-picker-btn {
  position: relative;
}
.front-page .change-layout-options:after {
  content: attr(data-title);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: -32px;
  left: 0;
  background: #000000;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  border-radius: 4px;
  font-family: var(--font-family);
  pointer-events: none;
}
.front-page .change-layout-options:hover:after {
  opacity: 1;
}
.front-page .front-page-wrapper {
  padding: 56px;
  max-width: 1440px;
  margin: auto;
}
.front-page .front-page-content {
  display: grid;
  position: relative;
  width: 100%;
  gap: 32px;
}
.front-page .hero {
  min-height: 432px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1440px;
}
.front-page .hero .content-formatted {
  width: 100%;
}
.front-page .split_dominant_right .hero,
.front-page .split_even .hero {
  width: 50%;
}
.front-page .split-section {
  max-width: 1440px;
}
.front-page .split_dominant_right {
  display: flex;
  flex-direction: column;
}
.front-page .split_dominant_right .split-section {
  display: grid;
  grid-template-columns: 40% 50%;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.front-page .split_even .split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.front-page .change-layout-options {
  position: absolute;
  top: -32px;
}
.front-page.dark-background .change-layout-options select {
  color: var(--darkmode-color);
}

@media (max-width: 1440px) {
  .front-page .front-page-wrapper {
    padding: 0;
    max-width: calc(100vw - 48px);
  }
  .front-page .split_dominant_right .hero,
  .front-page .split_even .hero {
    width: 100%;
  }
  .front-page .split_dominant_right .split-section,
  .front-page .split_even .split-section {
    grid-template-columns: calc(100vw - 48px);
  }
  .front-page .column .split-section {
    max-width: calc(100vw - 48px);
  }
  .front-page .hero {
    max-width: calc(100vw - 48px);
  }
}
@media screen and (max-width: 900px) {
  .front-page .hero {
    min-height: auto;
  }
  .front-page .column .split-section {
    display: flex;
    flex-direction: column;
  }
  .front-page .change-layout-options {
    top: -64px;
  }
  .front-page .split-section {
    gap: 32px;
  }
}
.product-list-page {
  position: relative;
}
.product-list-page .voog-bg-picker-btn {
  position: relative;
  margin-bottom: 12px;
}
.product-list-page .product-list-content {
  padding: 32px;
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.menu-breadcrumbs .menu-item.divider:after {
  content: "·";
  margin: 0 4px;
}

.lang-flag {
  display: flex;
  padding: 8px 0;
}
.lang-flag::after {
  background-position: 0 -75px;
  content: attr(data-lang-code);
  background-image: url("../images/ico-flags.png");
  width: 21px;
  height: 15px;
  display: block;
  margin-left: 8px;
}

[data-lang-code^=sq]:after {
  background-position: 0 0;
  content: "";
}

[data-lang-code^=hy]:after {
  background-position: -21px 0;
  content: "";
}

[data-lang-code^=bn]:after {
  background-position: -42px 0;
  content: "";
}

[data-lang-code^=bg]:after {
  background-position: -84px 0;
  content: "";
}

[data-lang-code^=zh]:after {
  background-position: -105px 0;
  content: "";
}

[data-lang-code^=hr]:after {
  background-position: -126px 0;
  content: "";
}

[data-lang-code^=da]:after {
  background-position: -147px 0;
  content: "";
}

[data-lang-code^=cs]:after {
  background-position: -168px 0;
  content: "";
}

[data-lang-code^=et]:after {
  background-position: -189px 0;
  content: "";
}

[data-lang-code^=fi]:after {
  background-position: 0 -15px;
  content: "";
}

[data-lang-code^=fr]:after {
  background-position: -21px -15px;
  content: "";
}

[data-lang-code^=ka]:after {
  background-position: -42px -15px;
  content: "";
}

[data-lang-code^=de]:after {
  background-position: -63px -15px;
  content: "";
}

[data-lang-code^=el]:after {
  background-position: -84px -15px;
  content: "";
}

[data-lang-code^=hu]:after {
  background-position: -105px -15px;
  content: "";
}

[data-lang-code^=is]:after {
  background-position: -126px -15px;
  content: "";
}

[data-lang-code^=hi]:after {
  background-position: -147px -15px;
  content: "";
}

[data-lang-code^=id]:after {
  background-position: -168px -15px;
  content: "";
}

[data-lang-code^=fa]:after {
  background-position: -189px -15px;
  content: "";
}

[data-lang-code^=he]:after {
  background-position: 0 -30px;
  content: "";
}

[data-lang-code^=it]:after {
  background-position: -21px -30px;
  content: "";
}

[data-lang-code^=ja]:after {
  background-position: -42px -30px;
  content: "";
}

[data-lang-code^=ko]:after {
  background-position: -63px -30px;
  content: "";
}

[data-lang-code^=lv]:after {
  background-position: -84px -30px;
  content: "";
}

[data-lang-code^=lt]:after {
  background-position: -105px -30px;
  content: "";
}

[data-lang-code^=ms]:after {
  background-position: -126px -30px;
  content: "";
}

[data-lang-code^=nl]:after {
  background-position: -147px -30px;
  content: "";
}

[data-lang-code^=no]:after {
  background-position: -168px -30px;
  content: "";
}

[data-lang-code^=ur]:after {
  background-position: -189px -30px;
  content: "";
}

[data-lang-code^=fil]:after {
  background-position: 0 -45px;
  content: "";
}

[data-lang-code^=pl]:after {
  background-position: -21px -45px;
  content: "";
}

[data-lang-code^=ro]:after {
  background-position: -42px -45px;
  content: "";
}

[data-lang-code^=ru]:after {
  background-position: -63px -45px;
  content: "";
}

[data-lang-code^=ar]:after {
  background-position: -84px -45px;
  content: "";
}

[data-lang-code^=sk]:after {
  background-position: -105px -45px;
  content: "";
}

[data-lang-code^=sl]:after {
  background-position: -126px -45px;
  content: "";
}

[data-lang-code^=es]:after {
  background-position: -147px -45px;
  content: "";
}

[data-lang-code^=sv]:after {
  background-position: -168px -45px;
  content: "";
}

[data-lang-code^=tr]:after {
  background-position: -189px -45px;
  content: "";
}

[data-lang-code^=uk]:after {
  background-position: 0 -60px;
  content: "";
}

[data-lang-code^=en]:after {
  background-position: -21px -60px;
  content: "";
}

[data-lang-code^=pt]:after {
  background-position: -84px -60px;
  content: "";
}

[data-lang-code^=sr]:after {
  background-position: -126px -60px;
  content: "";
}

[data-lang-code^=bn]:after {
  background-position: -147px -60px;
  content: "";
}

[data-lang-code^=th]:after {
  background-position: -189px -60px;
  content: "";
}

[data-lang-code^=en_US]:after {
  background-position: -21px -60px;
  content: "";
}

[data-lang-code^=en_GB]:after {
  background-position: -63px -60px;
  content: "";
}

[data-lang-code^=en_AU]:after {
  background-position: -168px -60px;
  content: "";
}

[data-lang-code^=en_CA]:after {
  background-position: -105px -60px;
  content: "";
}

[data-lang-code^=pt_BR]:after {
  background-position: -63px 0;
  content: "";
}

[data-lang-code^=fr_IC]:after {
  background-position: -42px -60px;
  content: "";
}

[data-lang-code^=fr_CA]:after {
  background-position: -105px -60px;
  content: "";
}

.menu-lang .menu-item {
  cursor: default;
}

@media screen and (max-width: 900px) {
  .menu-main .menu .menu-lang .menu-item-wrapper .menu-item-children {
    display: flex;
    gap: 0;
  }
  .menu-main .menu .menu-lang .menu-item-wrapper .menu-item-children .menu-child {
    position: relative;
  }
}
.menu-children-close-icon {
  display: none;
}

.menu-main {
  position: relative;
}
.menu-main .cart-item-count {
  display: none;
}
.menu-main > * {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.menu-main.hidden > * {
  opacity: 0;
}
.menu-main .menu {
  display: flex;
  text-wrap: nowrap;
  flex-wrap: wrap;
  gap: 32px;
  overflow: hidden;
}
.menu-main .menu-item-wrapper.top-level {
  padding: 12px;
}
.menu-main .menu-children-icon {
  display: none;
}
.menu-main .menu-item-children,
.menu-main .dropdown-menu-children {
  border-radius: 8px;
  box-shadow: 0px 15px 42px 0px rgba(0, 0, 0, 0.03);
  display: none;
  position: absolute;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  background-color: rgba(var(--body-bg-color-rgb), 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.menu-main .dropdown-item-children .menu-item-children {
  right: calc(-100% + 64px);
}
.menu-main .dropdown-menu {
  display: none;
}
.menu-main .dropdown-menu-visible {
  display: flex;
  align-self: center;
  height: 100%;
}
.menu-main .dropdown-menu-visible .menu-item-wrapper {
  padding: 0;
}
.menu-main .dropdown-menu-visible .dropdown-menu-children {
  top: 24px;
}
.menu-main .dropdown-menu-visible .dropdown-menu-icon {
  height: 100%;
}
.menu-main .menu-item {
  width: 100%;
}
.menu-main .menu-item a,
.menu-main .menu-child a {
  display: inline-block;
  width: 100%;
}
.menu-main .menu-item a.untranslated,
.menu-main .menu-child a.untranslated {
  color: #C5292A;
}

.menu-lang {
  position: relative;
}
.menu-lang .menu-item-children {
  right: 0;
}

@media screen and (min-width: 900px) {
  .menu-main .menu-item-wrapper .menu-item:hover + .menu-item-children,
  .menu-main .dropdown-menu-visible .dropdown-menu-icon:hover + .dropdown-menu-children,
  .menu-main .menu-item-children:hover,
  .menu-main .dropdown-menu-children:hover {
    display: flex;
    flex-direction: column;
    z-index: 11015;
    width: -moz-max-content;
    width: max-content;
  }
  .menu-main .dropdown-menu-children .menu-item-wrapper .menu-item + .menu-item-children, .menu-main .dropdown-menu-children .menu-item-wrapper .menu-item:hover + .menu-item-children {
    left: calc(100% - 104px);
  }
}
@media screen and (max-width: 900px) {
  .menu-children-close-icon {
    width: 32px;
    height: 32px;
    display: block;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .menu-children-close-icon:hover {
    cursor: pointer;
  }
  .menu-children-close-icon path {
    fill: #000000;
  }
  .menu-children-active .menu-children-close-icon {
    opacity: 1;
  }
  .menu-main {
    position: unset;
    align-self: stretch;
    display: flex;
    align-items: center;
  }
  .menu-main .mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: -moz-max-content;
    max-width: max-content;
    height: 100%;
    z-index: 2;
  }
  .menu-main .mobile-menu-button:hover {
    cursor: pointer;
  }
  .menu-main .mobile-menu-button .stripe {
    display: block;
    height: 1px;
    width: 32px;
    background-color: #000000;
    transition: transform 0.3s ease-in-out;
  }
  .menu-main .mobile-menu-button .stripe:last-of-type {
    margin-top: 8px;
  }
  .menu-active .menu-main .mobile-menu-button .stripe:first-of-type {
    transform: rotate(-45deg) translate(-3.5px, 2.5px);
  }
  .menu-active .menu-main .mobile-menu-button .stripe:last-of-type {
    transform: rotate(45deg) translate(-3.5px, -3.5px);
  }
  .menu-main .mobile-menu-button .cart-item-count {
    display: inline-block;
    position: absolute;
    min-width: 12px;
    text-align: center;
    top: 12px;
    right: -50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: #FFFFFF;
    padding: 0 4px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 1em;
    outline: 2px solid var(--body-bg-color);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  .menu-active .menu-main .mobile-menu-button .cart-item-count {
    opacity: 0;
  }
  .menu-main .menu {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(var(--body-bg-color-rgb), 0.6);
    transition: height 0.3s ease-in-out, top 0.3s ease-in-out;
  }
  .menu-main .menu > :first-child {
    padding-top: var(--header-height);
  }
  .menu-main .menu .menu-item-wrapper {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-main .menu .menu-item-wrapper.menu-lang-wrapper {
    padding-bottom: 16px;
    width: 100%;
  }
  .menu-main .menu .menu-item-wrapper .menu-children-icon {
    width: 24px;
    height: 24px;
    display: none;
    transform: rotate(180deg) translateY(-4px);
  }
  .menu-active .menu-main .menu .menu-item-wrapper .menu-children-icon {
    display: block;
  }
  .menu-main .menu .menu-item-wrapper .menu-children-icon:hover {
    cursor: pointer;
  }
  .menu-main .menu .menu-item-wrapper .menu-children-icon path {
    fill: inherit;
  }
  .menu-main .menu .menu-item-wrapper .menu-children-icon use {
    fill: #000000;
  }
  .menu-main .menu .menu-item-wrapper .menu-item-children {
    box-shadow: none;
    display: block;
    height: 100%;
    padding: 0;
    right: -100%;
    top: 0;
    transition: right 0.3s ease-in-out;
    width: 100%;
    z-index: 2;
  }
  .menu-main .menu .menu-item-wrapper .menu-item-children.active {
    right: 0;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .menu-main .menu .menu-item-wrapper.menu-child {
    padding: 24px;
  }
  .menu-main .menu .menu-item-wrapper.menu-child:first-child {
    padding-top: var(--header-height);
  }
  .menu-main .menu .menu-item-wrapper .menu-child {
    padding: 24px;
  }
  .menu-main .menu .menu-item-wrapper .menu-child:first-child {
    padding-top: var(--header-height);
  }
  .menu-main .menu .menu-item-children,
  .menu-main .menu .dropdown-menu-children {
    background-color: rgba(var(--body-bg-color-rgb), 0.8);
  }
  .menu-main .menu .dropdown-menu-visible {
    display: none;
  }
  .menu-active .menu-main .menu {
    height: 100vh;
    overflow-y: scroll;
    z-index: 1;
  }
  .menu-active .menu-main .menu:before {
    content: "";
    display: block;
    height: var(--header-height);
    width: 100%;
    top: 0;
    position: fixed;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    z-index: 2;
  }
  .menu-children-active .menu-main .menu {
    overflow: hidden;
  }
  .menu-main .menu:after {
    content: "";
    position: fixed;
    height: 1px;
    width: 100%;
    top: -1px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    transition: height 0.3s ease-in-out;
    z-index: -1;
  }
  .menu-active .menu-main .menu:after {
    height: 100%;
    top: 0;
  }
  .menu-main.search-modal-active .menu-item-wrapper,
  .menu-main.search-modal-active .header-right {
    display: none;
  }
}
.content-formatted .edy-texteditor-container {
  margin: 8px;
}
.content-formatted .edy-texteditor-container-wrapper {
  margin-bottom: 1em;
}
.content-formatted .edy-texteditor-container-wrapper-left, .content-formatted .edy-texteditor-container-left {
  margin-right: 1em;
}
.content-formatted .edy-texteditor-container-wrapper-right, .content-formatted .edy-texteditor-container-right {
  margin-left: 1em;
}
.content-formatted .edy-image-container-with-title:after {
  display: block;
  padding: 4px;
  font-size: 12px;
  line-height: 1.3em;
  content: attr(data-title);
}
.content-formatted form {
  max-width: 100%;
  margin-top: 24px;
  clear: both;
}
.content-formatted .form_field {
  padding-top: 8px;
  padding-bottom: 8px;
}
.content-formatted .form_field:first-child {
  padding-top: 0;
}
.content-formatted .form_field:last-child {
  padding-bottom: 0;
}
.content-formatted .form_field_label,
.content-formatted .form_field_error,
.content-formatted .edy-fe-label {
  padding: 8px 0;
}
.content-formatted .form_field_required .form_field_label:after {
  content: "*";
}
.content-formatted label {
  display: block;
}
.content-formatted .form_field_label,
.content-formatted .edy-fe-label {
  font-family: inherit;
}
.content-formatted .form_field_textfield,
.content-formatted .form_field_textarea,
.content-formatted .form_field_select,
.content-formatted .form_field_file,
.content-formatted .form_submit input {
  font-family: inherit;
}
.content-formatted .form_field_textfield,
.content-formatted .form_field_textarea,
.content-formatted .form_field_select,
.content-formatted .form_field_file {
  max-width: 100%;
}
.content-formatted .form_field_textfield,
.content-formatted .form_field_textarea {
  width: 280px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #F7F7F2;
  box-sizing: border-box;
  background: #FFFFFF;
}
.content-formatted .form_field_textfield::-moz-placeholder, .content-formatted .form_field_textarea::-moz-placeholder {
  color: #888888;
}
.content-formatted .form_field_textfield::placeholder,
.content-formatted .form_field_textarea::placeholder {
  color: #888888;
}
.content-formatted .form_field_textfield:hover,
.content-formatted .form_field_textarea:hover {
  border-color: rgba(136, 136, 136, 0.3);
}
.content-formatted .form_field_textfield:focus, .content-formatted .form_field_textfield:focus-visible,
.content-formatted .form_field_textarea:focus,
.content-formatted .form_field_textarea:focus-visible {
  border-color: #000000;
  outline-color: #000000;
}
.content-formatted .form_field_textarea {
  min-height: 96px;
}
.content-formatted .form_field_size_medium {
  max-width: 416px;
  width: 100%;
}
.content-formatted .form_field_size_large {
  max-width: 576px;
  width: 100%;
}
.content-formatted .form_submit {
  margin-top: 8px;
}
.content-formatted .form_error,
.content-formatted .form_field_error {
  color: #C5292A;
}
.content-formatted .form_field_with_errors .form_field_textfield,
.content-formatted .form_field_with_errors .form_field_textarea {
  border: 1px solid #C5292A;
}
.content-formatted .form_notice {
  color: #2F5D4B;
}
.content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-flex-wrap {
  text-align: center;
}
.content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-flex-wrap .edy-product-widget-item-btn {
  width: 100%;
}
.content-formatted .edy-product-widget-masonry .edy-product-widget-item-content .edy-product-widget-item-details-inner,
.content-formatted .edy-product-widget-catalogue .edy-product-widget-item .edy-product-widget-item-details-inner {
  text-align: center;
  width: 100%;
}
.content-formatted .edy-buy-button-align-center .form_field {
  grid-template-columns: repeat(4, 1fr);
}
.content-formatted .edy-buy-button-align-center .form_field:before, .content-formatted .edy-buy-button-align-center .form_field:after {
  content: "";
  display: block;
}
.content-formatted .edy-buy-button-align-right .form_field {
  grid-template-columns: 3fr 1fr;
}
.content-formatted table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
}
.content-formatted table tr {
  border-top: 1px solid #888888;
  background-color: transparent;
}
.dark-background .content-formatted table tr {
  border-top: 1px solid var(--darkmode-color);
}
.content-formatted table tr:last-child {
  border-bottom: 1px solid #888888;
}
.dark-background .content-formatted table tr:last-child {
  border-bottom: 1px solid var(--darkmode-color);
}
.content-formatted table td {
  border-left: 1px solid #888888;
  padding: 4px;
}
.dark-background .content-formatted table td {
  border-left: 1px solid var(--darkmode-color);
}
.content-formatted table td:last-child {
  border-right: 1px solid #888888;
}
.dark-background .content-formatted table td:last-child {
  border-right: 1px solid var(--darkmode-color);
}

.custom-btn,
.form_submit_input,
.edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn,
.edy-product-widget-modal .edy-product-widget-modal-btn-wrapper .custom-btn {
  display: inline-block;
  padding: 12px 40px;
  transition: all 0.1s ease-in-out;
}
.custom-btn.custom-btn-disabled,
.form_submit_input.custom-btn-disabled,
.edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.custom-btn-disabled,
.edy-product-widget-modal .edy-product-widget-modal-btn-wrapper .custom-btn.custom-btn-disabled {
  border-color: #F7F7F2;
  background-color: #F7F7F2;
  color: #888888;
}

.edy-buy-button .edy-buy-button-title:before,
.edy-js-buy-button:before {
  content: "+";
  margin-right: 4px;
}

.content-formatted .edy-buy-button-variants, .edy-product-widget-modal-container .edy-buy-button-variants {
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
}
.content-formatted .edy-buy-button-variants .form_field, .edy-product-widget-modal-container .edy-buy-button-variants .form_field {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
  gap: 8px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}
.content-formatted .edy-buy-button-variants .form_field + .form_field, .edy-product-widget-modal-container .edy-buy-button-variants .form_field + .form_field {
  border-top: none;
}
.content-formatted .edy-buy-button-variants .form_field .form_field_label:after, .edy-product-widget-modal-container .edy-buy-button-variants .form_field .form_field_label:after {
  content: ":";
}
.content-formatted .edy-buy-button-variants .form_field .form_field_select, .edy-product-widget-modal-container .edy-buy-button-variants .form_field .form_field_select {
  border: none;
  background: none;
}
.content-formatted .edy-buy-button-variants .form_field .form_field_select:focus, .edy-product-widget-modal-container .edy-buy-button-variants .form_field .form_field_select:focus {
  outline: none;
}
.edy-product-widget-modal-container .edy-buy-button-variants {
  padding-bottom: 24px;
}
.edy-product-widget-modal-container .edy-buy-button-variants .form_field:first-child {
  padding-top: 16px;
}
.edy-product-widget-modal-container .edy-buy-button-variants .form_field:last-child {
  padding-bottom: 16px;
}

.edy-product-widget-modal .product-price-original {
  opacity: 0.4;
  margin-right: 4px;
}

@media screen and (max-width: 640px) {
  .content-formatted .form_field_size_medium,
  .content-formatted .form_field_size_large {
    max-width: 100%;
  }
}
@font-face {
  font-family: "Anonymous Pro";
  src: url("../assets/anonymous-pro-v21-latin-ext_greek_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Anonymous Pro";
  src: url("../assets/anonymous-pro-v21-latin-ext_greek_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Anonymous Pro";
  src: url("../assets/anonymous-pro-v21-latin-ext_greek_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Anonymous Pro";
  src: url("../assets/anonymous-pro-v21-latin-ext_greek_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Arvo";
  src: url("../assets/arvo-v20-latin-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Arvo";
  src: url("../assets/arvo-v20-latin-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Arvo";
  src: url("../assets/arvo-v20-latin-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Arvo";
  src: url("../assets/arvo-v20-latin-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../assets/bodoni-moda-v25-latin_latin-ext_math_symbols-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../assets/bodoni-moda-v25-latin_latin-ext_math_symbols-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../assets/bodoni-moda-v25-latin_latin-ext_math_symbols-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../assets/bodoni-moda-v25-latin_latin-ext_math_symbols-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Cousine";
  src: url("../assets/cousine-v25-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Cousine";
  src: url("../assets/cousine-v25-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Cousine";
  src: url("../assets/cousine-v25-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Cousine";
  src: url("../assets/cousine-v25-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Crimson Text";
  src: url("../assets/crimson-text-v19-vietnamese_latin-ext-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Crimson Text";
  src: url("../assets/crimson-text-v19-vietnamese_latin-ext-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Crimson Text";
  src: url("../assets/crimson-text-v19-vietnamese_latin-ext-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Crimson Text";
  src: url("../assets/crimson-text-v19-vietnamese_latin-ext-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../assets/fira-sans-v16-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-style: normal;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../assets/fira-sans-v16-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-style: italic;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../assets/fira-sans-v16-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../assets/fira-sans-v16-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../assets/lato-v23-latin-ext-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../assets/lato-v23-latin-ext-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../assets/lato-v23-latin-ext-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Lato";
  src: url("../assets/lato-v23-latin-ext-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/lora-v26-vietnamese_latin-ext_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/lora-v26-vietnamese_latin-ext_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/lora-v26-vietnamese_latin-ext_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/lora-v26-vietnamese_latin-ext_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/montserrat-v25-vietnamese_latin-ext_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/montserrat-v25-vietnamese_latin-ext_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/montserrat-v25-vietnamese_latin-ext_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/montserrat-v25-vietnamese_latin-ext_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Noto Serif";
  src: url("../assets/noto-serif-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Noto Serif";
  src: url("../assets/noto-serif-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Noto Serif";
  src: url("../assets/noto-serif-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Noto Serif";
  src: url("../assets/noto-serif-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/open-sans-v34-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/open-sans-v34-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/open-sans-v34-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/open-sans-v34-vietnamese_latin-ext_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/playfair-display-v30-vietnamese_latin-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/playfair-display-v30-vietnamese_latin-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/playfair-display-v30-vietnamese_latin-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/playfair-display-v30-vietnamese_latin-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "PT Sans";
  src: url("../assets/pt-sans-v17-latin-ext_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "PT Sans";
  src: url("../assets/pt-sans-v17-latin-ext_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "PT Sans";
  src: url("../assets/pt-sans-v17-latin-ext_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "PT Sans";
  src: url("../assets/pt-sans-v17-latin-ext_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "PT Serif";
  src: url("../assets/pt-serif-v17-latin-ext_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "PT Serif";
  src: url("../assets/pt-serif-v17-latin-ext_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "PT Serif";
  src: url("../assets/pt-serif-v17-latin-ext_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "PT Serif";
  src: url("../assets/pt-serif-v17-latin-ext_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../assets/raleway-v28-vietnamese_latin-ext_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../assets/raleway-v28-vietnamese_latin-ext_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../assets/raleway-v28-vietnamese_latin-ext_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Raleway";
  src: url("../assets/raleway-v28-vietnamese_latin-ext_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-300.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-500.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/roboto-v30-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../assets/roboto-mono-v22-vietnamese_latin-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../assets/roboto-mono-v22-vietnamese_latin-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../assets/roboto-mono-v22-vietnamese_latin-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../assets/roboto-mono-v22-vietnamese_latin-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../assets/roboto-slab-v24-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../assets/roboto-slab-v24-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../assets/source-sans-pro-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../assets/source-sans-pro-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../assets/source-sans-pro-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../assets/source-sans-pro-v21-vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../assets/ubuntu-v20-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../assets/ubuntu-v20-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../assets/ubuntu-v20-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../assets/ubuntu-v20-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Ubuntu Mono";
  src: url("../assets/ubuntu-mono-v15-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Ubuntu Mono";
  src: url("../assets/ubuntu-mono-v15-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Ubuntu Mono";
  src: url("../assets/ubuntu-mono-v15-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Ubuntu Mono";
  src: url("../assets/ubuntu-mono-v15-latin-ext_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
body {
  margin: 0;
  padding: 0;
}
body.light-background * ::-moz-selection {
  color: #FFFFFF;
  background: #000000;
}
body.light-background * ::selection {
  color: #FFFFFF;
  background: #000000;
}

main {
  position: relative;
}

.body-bg-color {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--body-bg-color);
}

.ico-hidden {
  display: none;
}

.add-block-wrapper {
  display: flex;
  justify-content: center;
  min-height: 156px;
  align-items: center;
}

.add-block-button {
  width: 56px;
  height: 56px;
  background: #888888;
  border: none;
  cursor: pointer;
  margin: 12px 0;
  opacity: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}
.add-block-button svg {
  rotate: 45deg;
}
.add-block-button svg path {
  stroke: #FFFFFF;
}
.add-block-button:after {
  content: attr(data-title);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: -40px;
  background: #000000;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  border-radius: 4px;
  font-family: var(--font-family);
  pointer-events: none;
}
.add-block-button:hover {
  opacity: 0.7;
}
.add-block-button:hover:after {
  opacity: 1;
}

body {
  color: var(--primary-color);
  font-family: var(--font-family);
}
body.dark-background,
body .dark-background {
  color: var(--darkmode-color);
}

.edy-product-widget-modal .edy-product-widget-modal-title,
.edy-product-widget-modal .edy-buy-button-price-container .edy-buy-button-price-original,
.edy-product-widget-modal .edy-buy-button-price-container .edy-buy-button-effective-price {
  color: var(--primary-color);
}

h1 {
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  font-style: var(--heading-1-font-style);
  -webkit-text-decoration: var(--heading-1-text-decoration);
          text-decoration: var(--heading-1-text-decoration);
  text-transform: var(--heading-1-text-transform);
  color: var(--heading-1-color);
  line-height: var(--heading-1-line-height);
  text-align: var(--heading-1-text-alignment);
  -webkit-hyphens: var(--heading-1-hyphens);
          hyphens: var(--heading-1-hyphens);
}
.dark-background h1 {
  color: var(--darkmode-color);
}

h2 {
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  font-style: var(--heading-2-font-style);
  -webkit-text-decoration: var(--heading-2-text-decoration);
          text-decoration: var(--heading-2-text-decoration);
  text-transform: var(--heading-2-text-transform);
  color: var(--heading-2-color);
  line-height: var(--heading-2-line-height);
  text-align: var(--heading-2-text-alignment);
  -webkit-hyphens: var(--heading-2-hyphens);
          hyphens: var(--heading-2-hyphens);
}
.dark-background h2 {
  color: var(--darkmode-color);
}

h3 {
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  font-style: var(--heading-3-font-style);
  -webkit-text-decoration: var(--heading-3-text-decoration);
          text-decoration: var(--heading-3-text-decoration);
  text-transform: var(--heading-3-text-transform);
  color: var(--heading-3-color);
  line-height: var(--heading-3-line-height);
  text-align: var(--heading-3-text-alignment);
  -webkit-hyphens: var(--heading-3-hyphens);
          hyphens: var(--heading-3-hyphens);
}
.dark-background h3 {
  color: var(--darkmode-color);
}

h4 {
  font-size: var(--heading-4-font-size);
  font-weight: var(--heading-4-font-weight);
  font-style: var(--heading-4-font-style);
  -webkit-text-decoration: var(--heading-4-text-decoration);
          text-decoration: var(--heading-4-text-decoration);
  text-transform: var(--heading-4-text-transform);
  color: var(--heading-4-color);
  line-height: var(--heading-4-line-height);
  text-align: var(--heading-4-text-alignment);
  -webkit-hyphens: var(--heading-4-hyphens);
          hyphens: var(--heading-4-hyphens);
}
.dark-background h4 {
  color: var(--darkmode-color);
}

.dark-background .edy-ecommerce-modal-title h1 {
  color: revert;
}

.custom-btn:not(.custom-btn-disabled),
.custom-btn.edy-buy-button:not(.custom-btn-disabled),
.form_submit_input:not(.custom-btn-disabled),
.edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:not(.custom-btn-disabled),
.edy-product-widget-modal .edy-product-widget-modal-btn-wrapper .custom-btn:not(.custom-btn-disabled) {
  border-radius: var(--button-border-radius);
  border: var(--button-border-size) solid var(--button-border-color);
  color: var(--button-color);
  background-color: var(--button-background-color);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  font-style: var(--button-font-style);
  -webkit-text-decoration: var(--button-text-decoration);
          text-decoration: var(--button-text-decoration);
  text-transform: var(--button-text-transform);
  -webkit-hyphens: var(--button-hyphens);
          hyphens: var(--button-hyphens);
}
.custom-btn:not(.custom-btn-disabled):hover,
.custom-btn.edy-buy-button:not(.custom-btn-disabled):hover,
.form_submit_input:not(.custom-btn-disabled):hover,
.edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:not(.custom-btn-disabled):hover,
.edy-product-widget-modal .edy-product-widget-modal-btn-wrapper .custom-btn:not(.custom-btn-disabled):hover {
  color: var(--button-hover-color);
  background-color: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.custom-btn:not(.custom-btn-disabled):active,
.custom-btn.edy-buy-button:not(.custom-btn-disabled):active,
.form_submit_input:not(.custom-btn-disabled):active,
.edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:not(.custom-btn-disabled):active,
.edy-product-widget-modal .edy-product-widget-modal-btn-wrapper .custom-btn:not(.custom-btn-disabled):active {
  color: var(--button-active-color);
  background-color: var(--button-active-background-color);
  border-color: var(--button-active-border-color);
}

.edy-product-widget-modal .edy-product-widget-modal-btn-wrapper .custom-btn {
  white-space: nowrap;
}

.content-formatted {
  font-size: var(--content-body-font-size);
  color: var(--content-body-color);
  line-height: var(--content-body-line-height);
  -webkit-hyphens: var(--content-body-hyphens);
          hyphens: var(--content-body-hyphens);
}
.dark-background .content-formatted {
  color: var(--darkmode-color);
}
.content-formatted a:not(.custom-btn) {
  font-weight: var(--content-link-font-weight);
  font-style: var(--content-link-font-style);
  -webkit-text-decoration: var(--content-link-text-decoration);
          text-decoration: var(--content-link-text-decoration);
  text-transform: var(--content-link-text-transform);
  color: var(--content-link-color);
}
.content-formatted a:not(.custom-btn):hover {
  font-weight: var(--content-link-hover-font-weight);
  font-style: var(--content-link-hover-font-style);
  -webkit-text-decoration: var(--content-link-hover-text-decoration);
          text-decoration: var(--content-link-hover-text-decoration);
  text-transform: var(--content-link-hover-text-transform);
  color: var(--content-link-hover-color);
}
.dark-background .content-formatted a:not(.custom-btn) {
  color: var(--darkmode-color);
}
.dark-background .content-formatted a:not(.custom-btn):hover {
  color: var(--darkmode-color);
  opacity: 0.7;
}
.content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-title,
.content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-flex-wrap .edy-product-widget-item-btn {
  font-family: var(--font-family);
  color: var(--primary-color);
}
.dark-background .content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-title,
.dark-background .content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-flex-wrap .edy-product-widget-item-btn {
  color: var(--darkmode-color);
}
.content-formatted .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-header .edy-product-widget-item-title .edy-product-widget-item-link,
.content-formatted .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-description {
  font-family: var(--font-family);
  color: var(--primary-color);
}
.dark-background .content-formatted .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-header .edy-product-widget-item-title .edy-product-widget-item-link,
.dark-background .content-formatted .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-description {
  color: var(--darkmode-color);
}
.content-formatted .edy-product-widget-masonry .edy-product-widget-item-content .edy-product-widget-item-title,
.content-formatted .edy-product-widget-masonry .edy-product-widget-item-content a.edy-product-widget-item-btn,
.content-formatted .edy-product-widget-masonry .edy-product-widget-item-content div.edy-product-widget-item-btn {
  font-family: var(--font-family);
  color: var(--primary-color);
}
.dark-background .content-formatted .edy-product-widget-masonry .edy-product-widget-item-content .edy-product-widget-item-title,
.dark-background .content-formatted .edy-product-widget-masonry .edy-product-widget-item-content a.edy-product-widget-item-btn,
.dark-background .content-formatted .edy-product-widget-masonry .edy-product-widget-item-content div.edy-product-widget-item-btn {
  color: var(--darkmode-color);
}
.content-formatted .edy-product-widget-catalogue .edy-product-widget-item .edy-product-widget-item-title,
.content-formatted .edy-product-widget-catalogue .edy-product-widget-item a.edy-product-widget-item-btn,
.content-formatted .edy-product-widget-catalogue .edy-product-widget-item div.edy-product-widget-item-btn {
  font-family: var(--font-family);
  text-decoration: none;
  color: var(--primary-color);
}
.dark-background .content-formatted .edy-product-widget-catalogue .edy-product-widget-item .edy-product-widget-item-title,
.dark-background .content-formatted .edy-product-widget-catalogue .edy-product-widget-item a.edy-product-widget-item-btn,
.dark-background .content-formatted .edy-product-widget-catalogue .edy-product-widget-item div.edy-product-widget-item-btn {
  color: var(--darkmode-color);
}
.content-formatted .edy-product-widget-catalogue .edy-product-widget-item a {
  text-decoration: none;
}
.dark-background .content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-top-outer .edy-product-widget-item-top.edy-product-widget-item-without-image, .dark-background .content-formatted .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-top-outer .edy-product-widget-item-top.edy-product-widget-item-without-image.edy-product-widget-item-with-draft-box {
  border: 1px solid var(--darkmode-color);
}
.dark-background .content-formatted .edy-product-widget-masonry .edy-product-widget-item-content .edy-product-widget-item-image-wrap-draft .edy-product-widget-item-image-wrap-inner .edy-product-widget-item-without-image,
.dark-background .content-formatted .edy-product-widget-masonry .edy-product-widget-item-content .edy-product-widget-masonry .edy-product-widget-item-content .edy-product-widget-item-without-image {
  border: 1px solid var(--darkmode-color);
}
.dark-background .content-formatted .edy-product-widget-catalogue .edy-product-widget-item .edy-product-widget-item-image-wrap-draft .edy-product-widget-item-no-image,
.dark-background .content-formatted .edy-product-widget-catalogue .edy-product-widget-item .edy-product-widget-item-no-image {
  border: 1px solid var(--darkmode-color);
}
.dark-background .content-formatted .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-top-outer .edy-product-widget-item-top.edy-product-widget-item-without-image, .dark-background .content-formatted .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-top-outer .edy-product-widget-item-top.edy-product-widget-item-without-image.edy-product-widget-item-with-draft-box {
  border: 1px solid var(--darkmode-color);
}
.content-formatted .edy-product-widget-item-price-original,
.content-formatted .edy-product-widget-item-price-final,
.content-formatted .edy-product-widget-filter-sort,
.content-formatted .edy-product-widget-filter-search-input {
  color: var(--primary-color);
  font-family: var(--font-family);
}
.dark-background .content-formatted .edy-product-widget-item-price-original,
.dark-background .content-formatted .edy-product-widget-item-price-final,
.dark-background .content-formatted .edy-product-widget-filter-sort,
.dark-background .content-formatted .edy-product-widget-filter-search-input {
  color: var(--darkmode-color);
}
.content-formatted .edy-product-widget-item-price-original {
  opacity: 0.4;
}
.content-formatted .edy-buy-button-price-container .edy-buy-button-price-original,
.content-formatted .edy-buy-button-price-container .edy-buy-button-effective-price {
  color: var(--primary-color);
}
.content-formatted .edy-buy-button-price-container .edy-buy-button-price-original {
  opacity: 0.4;
}
.dark-background .content-formatted .edy-buy-button-price-container {
  color: var(--darkmode-color);
}
.content-formatted .edy-fe-label,
.content-formatted .form_field_label,
.content-formatted .form_error,
.content-formatted .form_notice {
  font-size: var(--form-label-font-size);
  line-height: var(--form-label-line-height);
  font-weight: var(--form-label-font-weight);
  font-style: var(--form-label-font-style);
  -webkit-text-decoration: var(--form-label-text-decoration);
          text-decoration: var(--form-label-text-decoration);
  text-transform: var(--form-label-text-transform);
  color: var(--form-label-color);
}
.dark-background .content-formatted .edy-fe-label,
.dark-background .content-formatted .form_field_label,
.dark-background .content-formatted .form_error,
.dark-background .content-formatted .form_notice {
  color: var(--darkmode-color);
}
.content-formatted .form_field_textfield,
.content-formatted .form_field_textarea,
.content-formatted .form_field_select,
.content-formatted .form_field_file,
.content-formatted .form_field_checkbox_label,
.content-formatted .form_field_radio_label {
  color: var(--form-field-color);
}
.content-formatted .form_field_textfield::-moz-placeholder, .content-formatted .form_field_textarea::-moz-placeholder, .content-formatted .form_field_select::-moz-placeholder, .content-formatted .form_field_file::-moz-placeholder, .content-formatted .form_field_checkbox_label::-moz-placeholder, .content-formatted .form_field_radio_label::-moz-placeholder {
  font-size: var(--form-field-font-size);
  line-height: var(--form-field-line-height);
  font-weight: var(--form-field-font-weight);
  font-style: var(--form-field-font-style);
  text-decoration: var(--form-field-text-decoration);
  text-transform: var(--form-field-text-transform);
}
.content-formatted .form_field_textfield, .content-formatted .form_field_textfield::placeholder,
.content-formatted .form_field_textarea,
.content-formatted .form_field_textarea::placeholder,
.content-formatted .form_field_select,
.content-formatted .form_field_select::placeholder,
.content-formatted .form_field_file,
.content-formatted .form_field_file::placeholder,
.content-formatted .form_field_checkbox_label,
.content-formatted .form_field_checkbox_label::placeholder,
.content-formatted .form_field_radio_label,
.content-formatted .form_field_radio_label::placeholder {
  font-size: var(--form-field-font-size);
  line-height: var(--form-field-line-height);
  font-weight: var(--form-field-font-weight);
  font-style: var(--form-field-font-style);
  -webkit-text-decoration: var(--form-field-text-decoration);
          text-decoration: var(--form-field-text-decoration);
  text-transform: var(--form-field-text-transform);
}
.dark-background .content-formatted .form_field_checkbox_label,
.dark-background .content-formatted .form_field_radio_label {
  color: var(--darkmode-color);
}
.dark-background .content-formatted .edy-buy-button-variants .form_field_label,
.dark-background .content-formatted .edy-buy-button-variants .form_field_select {
  color: var(--darkmode-color);
}

.header .menu-item a,
.header .menu-child a,
.header .search,
.header .cart-btn,
.header .menu-lang .menu-item,
.header .menu-lang .menu-child {
  line-height: var(--header-menu-line-height);
  font-size: var(--header-menu-font-size);
  font-weight: var(--header-menu-font-weight);
  font-style: var(--header-menu-font-style);
  -webkit-text-decoration: var(--header-menu-text-decoration);
          text-decoration: var(--header-menu-text-decoration);
  text-transform: var(--header-menu-text-transform);
  color: var(--header-menu-color);
}
.header .menu-item a:hover,
.header .menu-child a:hover,
.header .search:hover,
.header .cart-btn:hover,
.header .menu-lang .menu-item:hover,
.header .menu-lang .menu-child:hover {
  font-weight: var(--header-menu-hover-font-weight);
  font-style: var(--header-menu-hover-font-style);
  -webkit-text-decoration: var(--header-menu-hover-text-decoration);
          text-decoration: var(--header-menu-hover-text-decoration);
  text-transform: var(--header-menu-hover-text-transform);
  color: var(--header-menu-hover-color);
}
.dark-background .header .menu-item a,
.dark-background .header .menu-child a,
.dark-background .header .search,
.dark-background .header .cart-btn,
.dark-background .header .menu-lang .menu-item,
.dark-background .header .menu-lang .menu-child {
  color: var(--darkmode-color);
}
.header .menu-item.selected a,
.header .menu-child.selected a {
  font-weight: var(--header-menu-active-font-weight);
  font-style: var(--header-menu-active-font-style);
  -webkit-text-decoration: var(--header-menu-active-text-decoration);
          text-decoration: var(--header-menu-active-text-decoration);
  text-transform: var(--header-menu-active-text-transform);
  color: var(--header-menu-active-color);
}
.header .menu-item.selected a:hover,
.header .menu-child.selected a:hover {
  font-weight: var(--header-menu-hover-font-weight);
  font-style: var(--header-menu-hover-font-style);
  -webkit-text-decoration: var(--header-menu-hover-text-decoration);
          text-decoration: var(--header-menu-hover-text-decoration);
  text-transform: var(--header-menu-hover-text-transform);
  color: var(--header-menu-hover-color);
}
.dark-background .header .menu-item.selected a,
.dark-background .header .menu-child.selected a {
  color: var(--darkmode-color);
}
.header .content-formatted {
  line-height: var(--header-content-line-height);
  font-size: var(--header-content-font-size);
  color: var(--header-content-color);
  -webkit-hyphens: var(--header-content-hyphens);
          hyphens: var(--header-content-hyphens);
}
.dark-background .header .content-formatted {
  color: var(--darkmode-color);
}

.search input {
  font-family: var(--font-family);
}

.footer .content-formatted {
  line-height: var(--footer-body-line-height);
  font-size: var(--footer-body-font-size);
  color: var(--footer-body-color);
  -webkit-hyphens: var(--footer-body-hyphens);
          hyphens: var(--footer-body-hyphens);
}
.footer .content-formatted a:not(.custom-btn) {
  color: var(--footer-link-color);
  font-weight: var(--footer-link-font-weight);
  font-style: var(--footer-link-font-style);
  -webkit-text-decoration: var(--footer-link-text-decoration);
          text-decoration: var(--footer-link-text-decoration);
  text-transform: var(--footer-link-text-transform);
}
.footer .content-formatted a:not(.custom-btn):hover {
  color: var(--footer-link-hover-color);
  font-weight: var(--footer-link-hover-font-weight);
  font-style: var(--footer-link-hover-font-style);
  -webkit-text-decoration: var(--footer-link-hover-text-decoration);
          text-decoration: var(--footer-link-hover-text-decoration);
  text-transform: var(--footer-link-hover-text-transform);
}

.product-page .product-page-content .product-name {
  text-align: var(--product-title-alignment);
  line-height: var(--product-title-line-height);
  font-size: var(--product-title-size);
  font-weight: var(--product-title-font-weight);
  font-style: var(--product-title-font-style);
  -webkit-text-decoration: var(--product-title-text-decoration);
          text-decoration: var(--product-title-text-decoration);
  text-transform: var(--product-title-text-transform);
  color: var(--product-title-color);
  -webkit-hyphens: var(--product-title-hyphens);
          hyphens: var(--product-title-hyphens);
}
.product-page .product-page-content .product-price {
  font-size: var(--product-price-size);
  font-weight: var(--product-price-font-weight);
  font-style: var(--product-price-font-style);
  -webkit-text-decoration: var(--product-price-text-decoration);
          text-decoration: var(--product-price-text-decoration);
  color: var(--product-price-color);
}
.product-page .product-page-content .product-description {
  font-size: var(--product-description-font-size);
  font-weight: var(--product-description-font-weight);
  font-style: var(--product-description-font-style);
  -webkit-text-decoration: var(--product-description-text-decoration);
          text-decoration: var(--product-description-text-decoration);
  text-transform: var(--product-description-text-transform);
  color: var(--product-description-color);
  -webkit-hyphens: var(--product-description-hyphens);
          hyphens: var(--product-description-hyphens);
}
.product-page.dark-background .product-page-content .product-name,
.product-page.dark-background .product-page-content .product-price,
.product-page.dark-background .product-page-content .product-description {
  color: var(--darkmode-color);
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: calc(var(--heading-1-font-size) / 2);
  }
  h2 {
    font-size: calc(var(--heading-2-font-size) / 1.167);
  }
  h3 {
    font-size: calc(var(--heading-3-font-size) / 1.25);
  }
  .dark-background .header .mobile-menu-button .stripe {
    background-color: var(--darkmode-color);
  }
  .dark-background .header .mobile-menu-button .cart-item-count {
    color: var(--darkmode-color);
  }
  .dark-background .header .header-right .cart-btn {
    outline-color: var(--darkmode-color);
  }
  .dark-background .header .header-right .cart-btn:after {
    border-color: var(--darkmode-color);
  }
  .dark-background .header .menu-main .menu .menu-children-icon use,
  .dark-background .header .menu-children-close-icon use {
    fill: var(--darkmode-color);
  }
  .dark-background .search .search-form svg path {
    fill: var(--darkmode-color);
  }
  .dark-background .search .search-input {
    color: var(--darkmode-color);
  }
  .dark-background .search .voog-search-modal-results h3 a {
    color: var(--darkmode-color);
  }
}
/* Default header */
.header {
  background-color: rgb(196,185,170);
}

/* Remove underline from header text only */
.header .content-formatted a,
.header .content-formatted a:hover,
.header .content-formatted a:focus,
.header .content-formatted a:active {
  text-decoration: none;
}

header.scrolled {
  opacity: 0.6;
}

.footer {
  padding: 16px 0;       /* smaller vertical height */
}

.footer-content {
  font-size: 14px;
  line-height: 1.4;
}

.footer .content-formatted {
  margin-bottom: 8px;   /* tighten columns */
}

/* Footer base */
.footer {
  padding: 24px 0;          /* was too large */
}

/* Footer inner content */
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
}

/* Reduce spacing between blocks */
.footer .content-formatted {
  margin-bottom: 10px;
}
.footer p,
.footer h1,
.footer h2,
.footer h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
/* =========================
   FOOTER — COMPACT & MATCH HEADER
   ========================= */

/* Footer base */
.footer {
  padding: 12px 0;                 /* very compact */
  background-color: #d8cdbc;       /* SAME as header */
  color: #111;
}

/* Inner content */
.footer-content {
  font-size: 13px;
  line-height: 1.35;
}

/* Kill Voog default margins (main reason footer was huge) */
.footer * {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Links */
.footer a {
  color: #111;
  text-decoration: none;
}

.footer a:hover {
  opacity: 0.7;
}

/* Icons alignment */
.footer svg,
.footer i {
  vertical-align: middle;
}

/* =========================
   MOBILE FOOTER — EXTRA TIGHT
   ========================= */
@media (max-width: 640px) {
  .footer {
    padding: 8px 0;               /* VERY small on phone */
  }

  .footer-content {
    font-size: 12px;
    line-height: 1.3;
  }

  .footer * {
    margin-bottom: 4px !important;
  }
}

/* =========================
   HEADER FADE ON SCROLL (≥50%)
   ========================= */



/* =========================
   FORCE FOOTER TO BE SMALL
   ========================= */

.footer {
  min-height: unset !important;   /* 🔥 remove forced height */
  height: auto !important;
  padding: 12px 0 !important;
  background-color: rgb(196,185,170); /* match header */
}

/* Tighten grid */
.footer .footer-content {
  gap: 16px !important;
  align-items: flex-start;
}

/* Kill vertical stretching */
.footer .footer-content,
.footer .content-formatted {
  align-self: flex-start !important;
}

/* Remove Voog-added spacing */
.footer * {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Mobile = even tighter */
@media (max-width: 640px) {
  .footer {
    padding: 8px 0 !important;
  }

  .footer .footer-content {
    gap: 12px !important;
  }

  .footer * {
    margin-bottom: 4px !important;
  }
}

.js-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(210, 195, 175, 1);
  transition: opacity 0.4s ease;
  z-index: 1000;
}


.js-header.scrolled {
  opacity: 0.55;                  /* never below 50% */
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu {
  background: rgba(210, 195, 175, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media screen and (max-width: 900px) {
  .menu-main .menu {
    background-color: rgba(210, 200, 185, 0.97) !important;
  }
}

@media screen and (min-width: 900px) {
  .menu-main .menu-item-children,
  .menu-main .dropdown-menu-children {
    background-color: rgb(210, 200, 185);
  }
}
/* Image NEVER crops */
/* PRODUCT PAGE — FULL IMAGE, NO CROP */
/* ================================
   PRODUCT PAGE — IMAGE GALLERY
   Full image, no crop, stable height
   ================================ */

/* Keep height so gallery renders */
/* ================================
   PRODUCT GALLERY — FINAL FIX
   ================================ */

/* Ensure slider shows ONE slide at a time */
.product-page .edys-gallery-product-slider {
  overflow: hidden;
}

/* Each slide takes full width */
.product-page .edys-gallery-product-slider-slide {
  width: 100%;
  height: 100%;
}

/* Each item fills slide, image centered */
.product-page .edys-gallery-product-slider-item {
  width: 80%;
  height: 80%;
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center center;
}

/* ================================
   VOOG PRODUCT IMAGE – NO CLIPPING
   ================================ */

/* =====================================
   VOOG PRODUCT IMAGE – NO CLIP FIX
   ===================================== */

/* ================================
   VOOG PRODUCT IMAGE – SAFE MODE
   ================================ */

/* Product card */
.edy-product-widget-item,
.edy-product-widget-item-wrap {
  height: auto !important;
  overflow: visible !important;
}

/* Image wrapper */
.edy-product-widget-item-image-wrap {
  width: 100%;
  padding: 16px 16px 24px; /* space top & bottom */
  box-sizing: border-box;
  overflow: visible !important;
}

/* Inner wrapper */
.edy-product-widget-item-image-wrap-inner {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Images */
.edy-product-widget-item-image,
.edy-product-widget-item-alt-image {
  width: 100%;
  height: auto !important;     /* 🔑 NEVER force height */
  max-width: 100%;
  max-height: none !important; /* 🔑 allow tall images */
  object-fit: contain;
  display: block;
}

/* =========================
   TESTIMONIALS CONTAINER
========================= */

.privileg-testimonials {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* =========================
   TESTIMONIAL BASE
========================= */

.testimonial {
  max-width: 520px;
  margin-bottom: 56px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* LEFT / RIGHT POSITIONING */

.testimonial.left {
  margin-right: auto;
  transform: translateX(-60px);
}

.testimonial.right {
  margin-left: auto;
  transform: translateX(60px);
}

/* VISIBLE STATE */

.testimonial.visible {
  opacity: 1;
  transform: translateX(0);
}

/* LEAVING VIEW */

.testimonial.out {
  opacity: 0;
  transform: translateY(20px);
}

/* =========================
   TYPOGRAPHY
========================= */

.quote {
  font-family: "Bodoni Moda", serif;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.text {
  font-size: 16px;
  line-height: 1.65;
}

.author {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.6;
}

/* =========================
   CENTER IMAGE BETWEEN ITEMS
========================= */

/* =========================
   PAGE CONTAINER
========================= */

.privileg-testimonials {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* =========================
   TESTIMONIAL PAIR WRAPPER
========================= */

.testimonial-pair {
  position: relative;
  margin-bottom: 140px;
}

/* =========================
   TESTIMONIAL BASE
========================= */

.testimonial {
  max-width: 520px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* Left / Right alignment */
.testimonial.left {
  margin-right: auto;
  transform: translateX(-60px);
}

.testimonial.right {
  margin-left: auto;
  transform: translateX(60px);
}

/* Visible state (used by your JS) */
.testimonial.visible {
  opacity: 1;
  transform: translateX(0);
}

.testimonial.out {
  opacity: 0;
  transform: translateY(20px);
}

/* =========================
   TYPOGRAPHY
========================= */

.quote {
  font-family: "Bodoni Moda", serif;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.text {
  font-size: 16px;
  line-height: 1.65;
}

.author {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.6;
}

/* =========================
   SIDE IMAGE (OPTION B)
========================= */

.testimonial-image.side {
  position: absolute;
  top: 0;                 /* anchor to top */
  margin-top: -16px;       /* fine vertical offset */
  max-width: 200px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.testimonial-image.side.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-image.side img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* =========================
   SIDE IMAGE – DYNAMIC SIDE
========================= */

/* Default: image on the RIGHT (when text is LEFT) */
.testimonial-pair .testimonial.left + .testimonial-image.side {
  right: -8px;
  left: auto;
}

/* When text is RIGHT → image goes LEFT */
.testimonial-pair .testimonial.right + .testimonial-image.side {
  left: -8px;
  right: auto;
}


/* =========================
   MOBILE SAFETY
========================= */

@media (max-width: 900px) {

  .testimonial-pair {
    margin-bottom: 90px;
  }

  .testimonial {
    max-width: 100%;
    transform: translateY(30px);
  }

  .testimonial.left,
  .testimonial.right {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial.visible {
    transform: translateY(0);
  }

  .testimonial-image.side {
    position: static;
    max-width: 420px;
    margin: 32px auto 0;
    transform: translateY(30px);
  }
}











