.article-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.article-card:hover {
  color: var(--color-navy);
}
.article-card:hover img {
  transform: scale(1.05);
}

.article-card-image {
  overflow: hidden;
  aspect-ratio: 395/226;
}
.article-card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}

.article-card-title {
  display: -webkit-box;
  font-size: 24px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 700;
}
@media only screen and (max-width: 767.98px) {
  .article-card-title {
    font-size: 18px;
  }
}

.article-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-date {
  padding-block-start: 0.5rem;
  padding-block-end: 0.1rem;
}

.article-card-link {
  text-decoration: underline;
}

.article-card-tags {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
}

.article-card-tag {
  padding: 7px 10px;
  background-color: var(--color-cream);
  border: 1px solid var(--color-stone);
  color: var(--color-navy);
  text-align: center;
  text-transform: capitalize;
  border-radius: 40px;
  margin-block-start: 10px;
  margin-inline-start: 10px;
}

.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  outline: none;
  font-size: 15px;
  color: inherit;
  transition: 0.3s all;
}
.accordion > div {
  display: flex;
  align-items: center;
}
.accordion .chevron {
  width: 17px;
  height: 7px;
  pointer-events: none;
}
.accordion .chevron svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
.accordion.active {
  border-bottom: none;
}
.accordion.active .chevron svg {
  transform: rotateX(180deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel .content {
  padding: 0;
  font-size: 14px;
}
.panel .content p {
  margin: 10px 0;
}

.faq-question__group {
  border-top: 1px solid var(--color-stone);
}
.faq-question__group:last-child {
  border-bottom: 1px solid var(--color-stone);
}

.accordion-faqs-tag-based-container {
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .accordion-faqs-tag-based-container {
    padding: 40px 0px;
    grid-template-columns: 1fr;
  }
}
.accordion-faqs-tag-based-container .accordion-sub-container .faq-sub-title {
  text-align: left;
  font-weight: bold;
  font-size: 23px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #484848;
  margin-bottom: 21px;
  font-family: var(--font-body);
}
@media screen and (max-width: 768px) {
  .accordion-faqs-tag-based-container .accordion-sub-container .faq-sub-title {
    text-align: center;
  }
}
.accordion-faqs-tag-based-container .accordion-sub-container .accordion-wrapper:last-of-type .panel-active {
  border: solid 1px #f4f4f4;
}

.accordion-wrapper {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.accordion-wrapper .accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  width: 100%;
  background-color: #f4f4f4;
  color: #212121;
  font-size: 14px;
  line-height: 17px;
  padding: 15px 22px;
  text-align: left;
  outline: none;
  border: 3px;
  border-radius: 0;
  cursor: pointer;
  transition: 0.2s;
  transition: max-height 0.3s ease-out;
}
.accordion-wrapper .accordion.active .custom-arrow svg {
  transform: scaleY(-1);
}
.accordion-wrapper .accordion .custom-arrow svg {
  width: 10px;
  height: 10px;
  transform: scaleY(1);
}
.accordion-wrapper .accordion .custom-arrow svg path {
  fill: var(--color-navy);
}
.accordion-wrapper .panel {
  padding: 0 22px;
  background-color: #fcfcfc;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-wrapper .panel.panel-active.panel-open-default {
  max-height: 100%;
}
.accordion-wrapper .panel p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  font-size: 14px;
  line-height: 17px;
  color: #212121;
  font-family: var(--font-body);
}

.accordion_button {
  border-bottom: none;
}

.open-sidecart {
  cursor: pointer;
}

#cart-drawer-container {
  position: fixed;
  top: 0px;
  right: 0px;
  height: 100vh;
  width: 100vw;
  background: transparent;
  z-index: 99 !important;
  transition: 0.3s ease;
  pointer-events: none;
  visibility: hidden;
}
#cart-drawer-container.open {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(0.5px);
  visibility: visible;
  transition: 0.3s ease;
  pointer-events: auto;
}
#cart-drawer-container.open #cart-drawer {
  transform: translateX(0%);
  display: flex;
  flex-direction: column;
}

#cart-drawer {
  width: 340px;
  height: 100%;
  max-width: 370px;
  background-color: white;
  float: right;
  transition: 0.3s ease;
  transform: translateX(103%);
  pointer-events: auto;
}
#cart-drawer .product-card .product-badges {
  top: 5px;
  left: 5px;
}
#cart-drawer .product-card .product-badges .product-badge {
  font-size: 11px;
  padding: 0px 2px;
  height: 20px;
}
#cart-drawer .product-card__image img {
  padding: unset;
}
@media only screen and (max-width: 767.98px) {
  #cart-drawer {
    width: 293px;
  }
}
#cart-drawer > .top {
  background-color: var(--color-stone);
  position: relative;
}
#cart-drawer > .top .closeSideCart {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}
#cart-drawer .inner {
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}
#cart-drawer .inner > div {
  height: 100%;
}
#cart-drawer > form {
  flex: 1;
  display: flex;
}
#cart-drawer > form .cart .items-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
}
#cart-drawer > form .cart .items-wrapper .items {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px 11px 20px 20px;
  overflow-y: auto;
}
#cart-drawer > form .cart .items-wrapper .items .item {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-stone);
}
#cart-drawer > form .cart .items-wrapper .items .item:first-of-type {
  padding-top: 0;
}
#cart-drawer > form .cart .items-wrapper .items .item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
#cart-drawer > form .cart .items-wrapper .items .item .img-wrapper {
  justify-content: center;
  display: flex;
  width: 84px;
  height: 84px;
  border: 1px solid var(--color-stone);
}
#cart-drawer > form .cart .items-wrapper .items .item .info-wrapper {
  flex: 1;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .top > div {
  display: flex;
  justify-content: space-between;
}
#cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .top svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
#cart-drawer > form .cart .items-wrapper .items .item .info-wrapper [delivery-date-info] {
  font-weight: bold;
}
#cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 6px;
}
#cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .bottom .final-price img {
  width: 16px;
  height: 16px;
  transform: translateY(3px);
}
#cart-drawer > form .cart .items-wrapper .empty-cart {
  padding-top: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
#cart-drawer .cart-content {
  display: flex;
  background: var(--color-cream);
  flex-direction: column;
  flex: 1;
  display: none;
}
#cart-drawer .cart-content .buttons {
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  display: flex;
  padding: 0 20px 16px;
  background: var(--color-stone);
}
#cart-drawer .cart-content .buttons .text-toggle {
  cursor: pointer;
  text-align: center;
  text-decoration: underline;
}
#cart-drawer .cart-content .buttons .text-toggle.hidden {
  display: none;
}
#cart-drawer .cart-content .buttons #express-checkout-section {
  position: relative;
}
#cart-drawer .cart-content .buttons #express-checkout-section.hidden {
  display: none;
}
#cart-drawer .cart-content .buttons #express-checkout-section .express-checkout-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
#cart-drawer .cart-content .buttons #express-checkout-section .express-checkout-header .close-button {
  cursor: pointer;
  font-size: 18px;
  color: #333;
}
#cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate div[role=button] {
  max-height: 40px;
  border-radius: 40px !important;
}
#cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate ul {
  flex-direction: row !important;
}
#cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate ul li {
  margin-top: 0 !important;
  margin-right: 4px !important;
  height: unset !important;
}
#cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate ul li:nth-of-type(n + 3) {
  display: none;
}

.cart-tabs {
  display: flex;
  gap: 2px;
}

.cart-tab {
  align-items: center;
  gap: 3px;
  display: flex;
  padding: 16px 28px;
  background-color: var(--color-cream);
  cursor: pointer;
}
.cart-tab.active {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.cart-tab svg {
  width: 24px;
  height: 24px;
}

.cart-drawer__heading {
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  display: flex;
  padding: 24px 20px;
}

.cart-drawer__recommendations {
  display: none;
}

.cart-drawer__free-delivery-status {
  padding: 24px 20px 16px;
  background-color: var(--color-navy);
  color: var(--color-white);
}

.cart-drawer__costs {
  padding: 12px 20px;
  background-color: var(--color-stone);
}

.cart-drawer__cost {
  gap: 12px;
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-lighter-navy);
}

.cart-drawer__cost-price-compare {
  margin-right: 6px;
}

.cart-drawer__payments {
  padding-top: 16px;
  border-top: 1px solid var(--color-lighter-navy);
}
.cart-drawer__payments .payment-icons__items {
  justify-content: center;
}

.grid-container {
  position: relative;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.side-cart-orders {
  position: relative;
  flex: 1;
  max-height: calc(100vh - 138px);
  overflow-y: auto;
}
.account-cart--loggedin .side-cart-orders {
  max-height: calc(100vh - 142px);
  padding-top: 8px;
}
.side-cart-orders .product-card {
  position: relative;
  flex-direction: row;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-stone);
}
.side-cart-orders .product-card:last-of-type {
  padding-bottom: 24px;
  border-bottom: none;
}
.side-cart-orders .product-card__image {
  position: static;
  width: 84px;
  height: 84px;
}
.side-cart-orders .product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.side-cart-orders .product-card__image--primary {
  opacity: 1 !important;
  visibility: visible !important;
}
.side-cart-orders .product-card__image--secondary {
  opacity: 0 !important;
  visibility: hidden !important;
}
.side-cart-orders .product-card__badge {
  display: none;
}
.side-cart-orders .product-card__wishlist {
  display: none;
}
.side-cart-orders .product-card__title {
  margin-right: 4px;
  font-size: 14px !important;
}
.side-cart-orders .product-card__price {
  flex: 1;
}
.side-cart-orders .product-card__details {
  flex: 1;
}
.side-cart-orders .product-card__bottom {
  align-items: center;
  flex-direction: row-reverse;
}
.side-cart-orders .product-card__button--quick {
  display: none;
}
.side-cart-orders .price {
  font-size: 14px !important;
}
.side-cart-orders .quantity-select > * {
  font-size: 14px !important;
}
.side-cart-orders .reorder-all-text {
  margin-right: 4px;
}

.account-cart__details {
  border-bottom: 1px solid var(--color-stone);
}

.account-cart__icon {
  width: 14px;
  transition: 0.3s ease;
}

.account-cart__details[open] .account-cart__icon {
  transform: rotate(180deg);
}

.account-cart__summary {
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  display: flex;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
}
.account-cart__summary::marker {
  display: none;
}
.account-cart__summary::-webkit-details-marker {
  display: none;
}

.account-cart__content {
  padding: 0 20px 16px;
}

.account-cart__orders {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.account-cart__order {
  gap: 16px;
  grid-template-columns: 1fr auto;
  display: grid;
  padding: 16px 20px;
}

.account-cart__order:nth-child(even) {
  background-color: var(--color-white);
}

.account-cart__text {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.account-cart__link {
  display: block;
}
.account-cart__link svg {
  width: 20px;
  height: auto;
}

.account-cart__button {
  margin: 24px 20px;
}

.account-cart__button--account {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
}

.account-cart__button--add {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.quick-order .from-price {
  display: none;
}

.quick-order__content {
  flex-direction: column;
  gap: 12px;
  display: flex;
  margin-right: -20px;
  margin-bottom: 24px;
  margin-left: -20px;
  padding: 20px;
  background-color: var(--color-stone);
}

.quick-order__cards {
  gap: 16px;
  display: grid;
}

.side-cart-recommended {
  display: none;
}

.side-cart-recommended {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 404px);
  margin-left: 32px;
  padding: 24px 28px;
  background-color: var(--color-cream);
  border-radius: 2px;
  opacity: 1;
  pointer-events: none;
  transform: translate(-150%, -50%);
  transition: all 1s ease;
  max-height: 98dvh;
}
@media only screen and (max-width: 1199.98px) {
  .side-cart-recommended {
    display: none;
  }
}
.side-cart-recommended.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}
.side-cart-recommended:empty {
  display: none;
}
.side-cart-recommended .product {
  height: auto;
}
.side-cart-recommended .product-card__details {
  gap: 12px;
}

.side-cart-product-recommendations__header {
  align-items: flex-end;
  flex-direction: row;
  gap: 28px;
  justify-content: space-between;
  display: flex;
  margin-bottom: 16px;
}

.side-cart-product-recommendations__swiper-slide {
  height: auto;
}

.cart .cart-item {
  position: relative;
  width: 100%;
  padding: 15px 0 30px 0;
  gap: 30px;
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-template-rows: 1fr 1fr;
  border-bottom: 1px solid var(--color-stone);
}
@media only screen and (max-width: 991.98px) {
  .cart .cart-item {
    grid-template-rows: 1fr 30px;
    gap: 15px;
  }
}
.cart .cart-item:last-of-type {
  border-bottom: solid 2px transparent;
  padding: 15px 0 0 0;
}
@media only screen and (max-width: 575.98px) {
  .cart .cart-item:first-of-type {
    padding: 0 0 30px 0;
  }
}
.cart .cart-item .img-wrap {
  grid-row: 1/-1;
  grid-column: 1/2;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-stone);
}
@media only screen and (max-width: 991.98px) {
  .cart .cart-item .img-wrap {
    grid-row: 1/2;
    grid-row: 1/2;
  }
}
.cart .cart-item .img-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart .cart-item .product-info {
  grid-column: 2/-1;
  grid-row: 1/2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.cart .cart-item .product-info .title {
  font-family: var(--body-font);
  color: var(--color-navy);
  margin-right: 30px;
}
@media only screen and (max-width: 991.98px) {
  .cart .cart-item .product-info .title {
    font-size: 14px;
  }
}
.cart .cart-item .product-info .product-options {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 5px;
}
.cart .cart-item .product-info .product-options .product-option {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 5px;
  font-size: 12px;
  font-weight: normal;
  color: var(--color-navy);
}
.cart .cart-item .product-info .product-options .product-option .option-name {
  opacity: 0.5;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  min-width: 80px;
}
.cart .cart-item .cart-info {
  grid-column: 2/-1;
  grid-row: 2/-1;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-left: auto;
}
@media only screen and (max-width: 991.98px) {
  .cart .cart-item .cart-info {
    grid-column: 1/-1;
    grid-row: 2/-1;
  }
}
@media only screen and (max-width: 575.98px) {
  .cart .cart-item .cart-info {
    justify-content: space-between;
    margin-left: 0;
  }
}
.cart .cart-item .cart-info .price,
.cart .cart-item .cart-info .subtotal {
  min-width: 90px;
  text-align: right;
}
@media only screen and (max-width: 575.98px) {
  .cart .cart-item .cart-info .price,
  .cart .cart-item .cart-info .subtotal {
    min-width: unset;
  }
}
.cart .cart-item .remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 0;
  padding: 0;
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.cart .cart-item .remove-item svg {
  cursor: pointer;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--primary-color);
}
.cart .cart-item .remove-item svg path {
  fill: currentColor;
}

.collection-grid-tile {
  padding-top: 100%;
  height: 0;
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.collection-grid-tile.hover:hover img {
  scale: 1.05;
}
.collection-grid-tile.hover img {
  scale: 1;
  transition: scale 3.5s ease-in-out;
}
.collection-grid-tile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.collection-grid-tile .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
}
.collection-grid-tile .content-wrapper .title {
  color: var(--color-navy);
  font-size: 18px;
  margin: 0;
}
.collection-grid-tile .content-wrapper .icon {
  width: 15px;
  height: 15px;
}
.collection-grid-tile .content-wrapper .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  rotate: -90deg;
}

.cta-card {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  height: 100%;
  border-radius: 2px;
}

.cta-card__image {
  position: relative;
}
.cta-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-navy) 0%, transparent 100%);
  pointer-events: none;
}
.cta-card__image img {
  max-height: 200px;
  border-radius: 2px 2px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px;
}
@media only screen and (min-width: 768px) {
  .cta-card__image img {
    max-height: 400px;
  }
}
@media only screen and (min-width: 992px) {
  .cta-card__image img {
    max-height: none;
  }
}

.cta-card__image-has-mobile .cta-card__desktop-image {
  display: none;
}
@media only screen and (min-width: 992px) {
  .cta-card__image-has-mobile .cta-card__desktop-image {
    display: block;
  }
}

.cta-card__mobile-image {
  display: block;
}
@media only screen and (min-width: 992px) {
  .cta-card__mobile-image {
    display: none;
  }
}

.cta-card__content {
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 12px;
  display: flex;
  padding: 20px;
  padding-top: 0;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .cta-card__content {
    padding: 32px;
  }
}

.cta-card__button {
  margin-top: 8px;
}

.cta-card__button-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.cta-card__button-text {
  margin-right: 4px;
}

.cta-card__button-price {
  position: relative;
  padding-left: 10px;
  font-size: 14px;
}
.cta-card__button-price::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

/* Customize the label (the container) */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  min-height: 36px;
  /* Styles Label */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.custom-checkbox p {
  font-size: 13px;
  width: 100%;
  margin: 0px 0px 0px 10px;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 1px;
  width: 1px;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 36px;
  width: 36px;
  background-color: #fff;
  border-radius: 50%;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  /* Style the checkmark/indicator */
  left: 50%;
  top: 50%;
  width: 8px;
  height: 15px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: translate(-50%, -59%) rotate(40deg);
}
.custom-checkbox:hover input ~ .checkmark {
  background-color: var(--secondary-color);
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--secondary-color);
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  min-width: 200px;
  min-height: 25px;
}
@media only screen and (max-width: 991.98px) {
  .custom-checkbox {
    margin: 0 auto;
    text-align: center;
  }
}

.custom-checkbox p {
  margin: 0;
}
@media only screen and (max-width: 991.98px) {
  .custom-checkbox p {
    font-size: 12px;
  }
}

.custom-checkbox a {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 1px;
}

.custom-checkbox .checkmark {
  background: transparent;
  border: 1px solid var(--color-navy);
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  padding: 2px;
}
.custom-checkbox .checkmark::after {
  width: 4px;
  height: 11px;
}

.custom-checkbox input:checked ~ .checkmark {
  background: var(--color-navy);
}

.details {
  border-top: 1px solid var(--color-stone);
}

.media-faqs__faqs {
  /* Remove default arrow in Safari/iOS */
  /* Ensure no default list-style for broader compatibility */
}
.media-faqs__faqs details > summary::-webkit-details-marker {
  display: none;
}
.media-faqs__faqs details > summary {
  list-style: none;
}

.details__summary {
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .details__summary {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.details__summary:focus-visible {
  outline-offset: -1px;
}
.details__summary::marker {
  content: "";
}
.details__summary::-webkit-details-marker {
  display: none;
}

.details__title {
  pointer-events: none;
}

.details__chevron {
  width: 18px;
  height: 12px;
  pointer-events: none;
  transition: all 0.2s;
}
.details[open] > summary .details__chevron {
  transform: rotate(180deg);
}

.details__content {
  max-height: 0;
  padding-bottom: 16px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media only screen and (min-width: 768px) {
  .details__content {
    padding-right: 44px;
    padding-bottom: 20px;
  }
}
.details[open] .details__content {
  max-height: 2000px;
}

.free-delivery-status {
  text-align: center;
}

.free-delivery-text {
  display: block;
  margin-top: 12px;
}

.free-delivery-progress-bar {
  flex: 1;
  width: 100%;
}

.free-delivery-progress-bar__container {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: var(--color-white);
  border-radius: 4px;
}

.free-delivery-progress-bar__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-yellow);
  border-radius: 4px;
  transition: width 0.3s ease-in-out;
}

.free-delivery-progress-bar__icon {
  position: absolute;
  top: -10px;
  left: 0;
  width: 24px;
  height: 24px;
  padding: 4px;
  background-color: var(--color-yellow);
  border-radius: 50%;
}

.lightbox-modal {
  display: none;
  pointer-events: none;
  isolation: isolate;
  overflow: hidden auto;
  position: fixed;
  inset: 0;
  isolation: isolate;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  z-index: 99999;
  padding: 70px 55px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  outline: none;
}
@media only screen and (max-width: 767.98px) {
  .lightbox-modal {
    padding: 65px 28px;
  }
}
.lightbox-modal[open] {
  display: flex;
  pointer-events: all;
}
.lightbox-modal::before {
  content: "";
  pointer-events: none;
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(0.5px);
  background: rgba(0, 0, 0, 0.7);
}
.lightbox-modal .swiper-zoom-container {
  width: 100%;
  height: 100%;
}
.lightbox-modal .swiper-zoom-container img {
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox-modal .swiper-button-prev,
.lightbox-modal .swiper-button-next {
  position: absolute;
  background-color: var(--color-yellow);
}
.lightbox-modal .swiper-button-prev {
  left: 20px;
}
.lightbox-modal .swiper-button-next {
  right: 20px;
}

.lightbox-trigger {
  position: absolute;
  inset: 12px 12px auto auto;
  z-index: 10;
  width: 24px;
  height: 24px;
}
.lightbox-trigger svg {
  color: var(--color-navy);
  pointer-events: none;
}
.lightbox-trigger[disabled] {
  pointer-events: none;
}

.lightbox-close {
  position: absolute;
  inset: 0 0 auto auto;
  padding: 20px;
  background-color: var(--color-stone);
  cursor: pointer;
}
.lightbox-close svg {
  color: var(--color-navy);
  pointer-events: none;
}

.market-language-select--modal-container .modal {
  overflow: visible;
}

localization-form.dropdown-selector {
  position: relative;
}
localization-form.dropdown-selector button {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
localization-form.dropdown-selector ul {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  flex-direction: column;
  margin: 0;
  list-style: none;
  padding: 14px;
  width: -moz-max-content;
  width: max-content;
  z-index: 9999;
  display: flex;
  max-height: 300px;
  overflow: auto;
}
@media only screen and (max-width: 767.98px) {
  localization-form.dropdown-selector ul {
    left: 50%;
    transform: translateX(-50%);
  }
}
localization-form.dropdown-selector ul[hidden] {
  display: none;
}
localization-form.dropdown-selector ul li {
  margin: 4px 0;
  padding: 4px 6px;
  border-radius: 4px;
  transition: 0.3s all;
}
localization-form.dropdown-selector ul li:hover {
  background-color: #f5f5f5;
}
localization-form.dropdown-selector ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
}
localization-form.modal-selector {
  margin-top: 15px;
  display: block;
  position: relative;
}
localization-form.modal-selector button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  align-items: center;
  padding: 4px 15px;
  border-radius: 15px;
  background-color: var(--primary-color);
  color: var(--color-grey);
}
localization-form.modal-selector button img {
  width: 30px;
}
localization-form.modal-selector button svg {
  width: 24px;
  fill: var(--color-grey);
}
localization-form.modal-selector ul {
  position: absolute;
  top: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  left: 0;
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  margin: 0;
  padding: 14px;
  list-style: none;
}
localization-form.modal-selector ul[hidden] {
  display: none;
}
localization-form.modal-selector ul li {
  overflow: hidden;
  margin: 4px 0;
  padding: 4px 6px;
  border-radius: 4px;
  transition: 0.3s all;
}
localization-form.modal-selector ul li:hover {
  background-color: #f5f5f5;
}
localization-form.modal-selector ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
}

.modal-container {
  z-index: 999999;
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-container.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-container .modal {
  width: auto;
  padding: 60px 50px;
  border-radius: 5px;
  max-width: 90%;
  max-height: 94%;
  background: white;
  position: relative;
  overflow: auto;
  text-align: center;
}
@media only screen and (max-width: 575.98px) {
  .modal-container .modal {
    padding: 1.5rem;
  }
}
.modal-container .modal::-webkit-scrollbar {
  margin-left: 10px;
  width: 8px;
  background: transparent;
}
.modal-container .modal::-webkit-scrollbar-track {
  background-color: #fff;
}
.modal-container .modal .close-button {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  padding: 0;
  transition: all 150ms ease-in-out;
}
.modal-container .modal .close-button:hover {
  rotate: 90deg;
}
.modal-container .modal .icon.icon-close {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.modal-container .modal .icon.icon-close path {
  fill: var(--primary-text-color);
}
.modal-container .modal .slide-in-enter {
  transition: all 300ms ease;
  margin-top: -62px;
  opacity: 0;
}
.modal-container .modal .slide-in-enter.slide-in-active {
  margin-top: 0;
  opacity: 1;
}
.modal-container .modal .modal-title {
  font-weight: bold;
  font-size: var(--heading-h1);
  line-height: 35px;
}
.modal-container .modal .modal-subtitle {
  margin-top: 17px;
}
.modal-container .modal .button-container {
  display: flex;
}
.modal-container.basic-confirm {
  text-align: center;
}
.modal-container.basic-confirm .modal-header {
  max-width: 270px;
  margin: auto;
}
.modal-container.basic-confirm .modal-body {
  display: flex;
  gap: 10px;
  padding-top: 32px;
}
.modal-container.basic-confirm .modal-body button {
  width: 100%;
}

button[data-modal-trigger=example-fab] {
  position: fixed;
  left: 20px;
  bottom: 50px;
  border-radius: 50%;
  padding: 20px;
  z-index: 101;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  background-color: var(--primary-color);
}
button[data-modal-trigger=example-fab] svg {
  width: 30px;
  height: 30px;
  fill: white;
  pointer-events: none;
}

[data-modal=delete-profile] .modal-content {
  max-width: 280px;
  text-align: center;
}
[data-modal=delete-profile] .button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  [data-modal=delete-profile] .button-container {
    flex-wrap: wrap;
  }
}
[data-modal=delete-profile] .button-container button {
  width: 100%;
}

.newsletter-form {
  position: relative;
}

.newsletter-form__field {
  align-items: center;
  flex-direction: column;
  gap: 24px;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .newsletter-form__field {
    flex-direction: row;
  }
}

.newsletter-form__input {
  flex: 1;
  width: 100%;
  padding: 12px 16px;
  border-radius: 2px;
  border: none;
}
@media only screen and (min-width: 992px) {
  .newsletter-form__input {
    min-width: 288px;
  }
}
.newsletter-form__input::-moz-placeholder {
  color: var(--color-navy);
}
.newsletter-form__input::placeholder {
  color: var(--color-navy);
}

.newsletter-form__button {
  min-width: 100px;
}

.newsletter-form__message {
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 20px;
}

.predictive-search-section {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  z-index: -1;
  padding: 0 60px 35px;
  background: var(--color-grey);
  opacity: 1;
  transition: translate 0.2s ease-out 0s, opacity 0.05s ease-in 0s;
}
.predictive-search-section[aria-hidden=true] {
  height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}
@media only screen and (max-width: 991.98px) {
  .predictive-search-section {
    padding: 0;
  }
  .predictive-search-section .predictive-search-header {
    padding: 0;
  }
  .predictive-search-section .predictive-search-header .predictive-search-header-container .predictive-search-form .visually-hidden {
    display: none;
  }
  .predictive-search-section .predictive-search-header .predictive-search-header-container .predictive-search-form input {
    padding-left: 56px;
  }
  .predictive-search-section .predictive-search-header .predictive-search-header-container .predictive-search-form #search-submit {
    left: 20px;
  }
  .predictive-search-section .predictive-search-header .predictive-search-header-container .predictive-search-form #search-reset {
    right: 20px;
  }
  .predictive-search-section .predictive-search-results {
    flex-direction: column;
    gap: 0;
    display: flex;
    padding-top: 12px;
  }
}
.predictive-search-section:has(#predictive-previous-searches) .predictive-search-results {
  padding-top: 0;
}

.predictive-search-header {
  z-index: 2;
  width: 100%;
}
.predictive-search-header .predictive-search-header-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.predictive-search-header .predictive-search-header-container .predictive-search-form {
  width: 100%;
  min-height: 51px;
}
@media only screen and (max-width: 991.98px) {
  .predictive-search-header .predictive-search-header-container #predictive-previous-searches {
    padding: 0 var(--page-width-padding);
  }
}
.predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches {
  grid-column: span 12;
}
@media only screen and (max-width: 991.98px) {
  .predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches {
    padding-top: 20px;
  }
}
.predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches .popular-searches-container {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (max-width: 991.98px) {
  .predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches .popular-searches-container {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
  }
  .predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches .popular-searches-container .previous-searches-list {
    display: flex;
    justify-content: start;
    gap: 20px;
    flex-flow: row wrap;
  }
}
.predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches .popular-searches-container .search-heading {
  white-space: nowrap;
}
.predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches .popular-searches-container .previous-searches-list {
  padding-inline-start: 0;
}
.predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches .popular-searches-container .previous-searches-list a {
  font-weight: 400;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) {
  .predictive-search-header .predictive-search-header-container #predictive-previous-searches .popular-searches .popular-searches-container .previous-searches-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-inline-start: 0;
  }
}

.predictive-search-results {
  position: relative;
  padding: 30px 50px;
  background: var(--color-cream);
  overflow: hidden auto;
  max-height: calc(100vh - (var(--site-header-offset, 76px) + 58px + 38px));
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-results {
    max-height: calc(100dvh - (var(--site-header-offset, 70px) + 37px + 20px));
    padding: 24px 20px;
  }
}
.predictive-search-results.results-loading::after {
  opacity: 1;
  visibility: visible;
}
.predictive-search-results.results-loading .predictive-search-results__sidebar,
.predictive-search-results.results-loading .predictive-search-results__product-grid-outer {
  opacity: 0;
  pointer-events: none;
}
.predictive-search-results::after {
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  translate: -50% -50%;
  inset: 50% auto auto 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in 0.1s;
  border: solid 4px var(--primary-color);
  border-right-color: transparent;
  animation: loading_spin 1s infinite ease-out;
}
@keyframes loading_spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.predictive-search-results__product-grid-outer {
  width: 100%;
  opacity: 1;
  transition: opacity 0.25s ease-in 0.1s;
}
.predictive-search-results:not(:has(.predictive-search-results__sidebar)) .predictive-search-results__product-grid-outer {
  grid-column: span 12;
}

.product-grid-heading-container {
  display: none;
}
@media only screen and (min-width: 992px) {
  .product-grid-heading-container {
    align-items: center;
    flex-flow: row nowrap;
    gap: 20px;
    grid-column: span 2;
    justify-content: space-between;
    display: flex;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .product-grid-heading-container {
    grid-column: span 3;
  }
}
.product-grid-heading-container .product-grid-heading {
  flex: 1;
  text-align: left;
  margin-right: auto;
}
.product-grid-heading-container .product-grid-heading-btn {
  margin-left: auto;
}

.predictive-search-results__product-grid {
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  display: none;
}
@media only screen and (min-width: 1200px) {
  .predictive-search-results__product-grid {
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.predictive-search-results__product-grid.accordion-open {
  display: grid;
  max-height: var(--content-height, 0px);
  margin-top: 8px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1025px) {
  .predictive-search-results__product-grid.accordion-open {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.product-grid-footer-link {
  margin-top: 24px;
}
@media only screen and (min-width: 992px) {
  .product-grid-footer-link {
    display: none;
  }
}

.predictive-search-results__sidebar {
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  display: flex;
  gap: 24px;
  width: 100%;
  opacity: 1;
  transition: opacity 0.25s ease-in 0.1s;
}
@media only screen and (max-width: 991.98px) {
  .predictive-search-results__sidebar {
    gap: 0;
  }
}

.sidebar-resource-group {
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
}
@media only screen and (min-width: 992px) {
  .sidebar-resource-group {
    gap: 15px;
  }
}

.resource-heading {
  position: relative;
  width: 100%;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}
.resource-heading:has(+ .accordion-open) {
  border-bottom: none;
}
@media only screen and (min-width: 992px) {
  .resource-heading {
    font-family: var(--font-heading-italic);
  }
}
@media only screen and (max-width: 991.98px) {
  .resource-heading {
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--color-stone);
  }
}
@media only screen and (min-width: 992px) {
  .resource-heading.resource-heading--product-grid {
    display: none;
  }
}
@media only screen and (max-width: 991.98px) {
  .resource-heading.resource-heading--product-grid {
    border-bottom: none;
  }
}
.resource-heading > svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  inset: 50% 0 auto auto;
  translate: 0 -50%;
  color: inherit;
  width: 15px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 992px) {
  .resource-heading > svg {
    display: none;
  }
}
.resource-heading:has(+ .accordion-open) > svg {
  rotate: 180deg;
}

.resource-content {
  align-items: flex-start;
  flex-flow: column nowrap;
  gap: 12px;
  justify-content: flex-start;
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 991.98px) {
  .resource-content {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in, margin-top 0.2s ease-in;
  }
  .resource-content.accordion-open {
    max-height: var(--content-height, 0);
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

.resource-link {
  display: block;
}
.resource-link:hover {
  color: var(--color-yellow);
}

.predictive-search-form {
  position: relative;
  min-height: 62px;
}
.predictive-search-form.mobile {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .predictive-search-form.mobile {
    position: relative;
    align-items: center;
    justify-content: start;
    display: flex;
    height: 35px;
    padding-left: 45px;
  }
}

.predictive-search-form__input {
  padding: 16px 90px;
  outline: none;
}
@media only screen and (min-width: 768px) {
  .predictive-search-form__input {
    font-size: 18px;
  }
}
.predictive-search-form__input::-moz-placeholder {
  color: var(--color-navy);
}
.predictive-search-form__input::placeholder {
  color: var(--color-navy);
}
@media only screen and (min-width: 768px) {
  .predictive-search-form__input::-moz-placeholder {
    font-size: 18px;
  }
  .predictive-search-form__input::placeholder {
    font-size: 18px;
  }
}

.predictive-search-form__submit {
  position: absolute;
  inset: 0 auto 0 48px;
  z-index: 5;
  width: 24px;
  color: var(--color-navy);
}
.predictive-search-form__submit > svg {
  pointer-events: none;
}

.predictive-search-form__reset {
  width: 20px;
  position: absolute;
  inset: 0 48px 0 auto;
  z-index: 5;
  width: 20px;
  color: var(--color-navy);
}
.predictive-search-form__reset > svg {
  pointer-events: none;
}

.price {
  align-items: center;
  gap: 6px;
  display: flex;
}
.price.hidden {
  display: none;
}

.compare-price {
  text-decoration: line-through;
  opacity: 0.4;
}

.product-card {
  flex-direction: column;
  gap: 16px;
  display: flex;
  height: 100%;
}
.product-card .product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  width: unset;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.product-card .product-badges .product-badge {
  width: -moz-max-content;
  width: max-content;
  font-size: 13px;
  padding: 0px 10px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: default;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card .product-badges .badge-icons {
  display: flex;
  gap: 5px;
}
.product-card .product-badges .badge-icons .product-badge {
  padding: 0px;
  height: 30px;
}
.product-card .product-card__text.plp-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__image {
  position: relative;
  border: 1px solid var(--color-stone);
  background-color: #fff;
  border-radius: 2px;
  position: relative;
}
.product-card__image img {
  height: auto;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
  aspect-ratio: 1/1;
  padding: 40px;
}
@media only screen and (max-width: 767.98px) {
  .product-card__image img {
    padding: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .product-card--images:hover .product-card__image--primary {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
}

.product-card__image--secondary {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 1200px) {
  .product-card--images:hover .product-card__image--secondary {
    z-index: 1;
    opacity: 1;
    visibility: visible;
  }
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.product-card__wishlist svg {
  cursor: pointer;
}

.product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  background-color: var(--color-cream);
  border: 1px solid var(--color-stone);
  border-radius: 40px;
}

.product-card__details {
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  display: flex;
  height: 100%;
}
@media only screen and (min-width: 1200px) {
  .product-card__details {
    gap: 52px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-card--wishlist .product-card__details {
    gap: 12px;
  }
}

.product-card__top {
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  display: flex;
}

.product-card__bottom {
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  display: flex;
}

.dietary-badges {
  display: flex;
  flex: row;
  gap: 5px;
}

.dietary-badges img {
  max-width: 30px;
}

.dietary-badges .product-badge {
  position: relative;
}

.dietary-badges .product-badge:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 0%;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
}

.dietary-badges .product-badge:hover::before {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
  z-index: 1000;
}

@media only screen and (max-width: 767.98px) {
  .product-card__title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .product-card--wishlist .product-card__title {
    font-size: 18px;
  }
}

.product-card__swiper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-width: 0;
}

.product-card__buttons {
  align-items: center;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.product-card--wishlist .product-card__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.product-card__button--view {
  flex: 1;
}

@media only screen and (max-width: 767.98px) {
  .product-card__button--quick {
    padding: 8px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-card__button--quick {
    flex: 1;
  }
}
.product-card--wishlist .product-card__button--quick {
  padding: 8px;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) {
  .product-card--wishlist .product-card__button--quick {
    flex: none;
  }
}

.product-card__button--quick .product-card__button-text {
  display: none;
}
@media only screen and (min-width: 768px) {
  .product-card__button--quick .product-card__button-text {
    display: block;
  }
}

.product-card__button-text--desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .product-card__button-text--desktop {
    display: flex;
  }
}

@media only screen and (min-width: 768px) {
  .product-card__button-text--mobile {
    display: none;
  }
}

.product-card__button-icon {
  width: 16px;
  height: 16px;
}
@media only screen and (min-width: 768px) {
  .product-card__button-icon {
    margin-left: 8px;
  }
}
@media only screen and (min-width: 768px) {
  .product-card--wishlist .product-card__button-icon {
    margin-left: 0;
  }
}

.quick-view-container {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  width: 100%;
  height: 100%;
  background-color: var(--color-grey-half);
  opacity: 0;
}
.quick-view-container.active {
  justify-content: end;
  display: flex;
  opacity: 1;
}

.quick-view-modal {
  position: relative;
  width: 100vw;
  margin-top: 60px;
  padding: 16px;
  background-color: var(--color-stone);
  box-shadow: 0 0 30px 0 var(--color-black-half);
  overflow: auto;
  transition: all 0.3s ease;
  animation: slide-in-right 0.3s ease 0.5s both;
}
.quick-view-modal .inner {
  height: 100%;
}
.quick-view-modal .inner #shopify-section-diforti-main-product {
  height: 100%;
}
.quick-view-modal .inner #shopify-section-diforti-main-product .main-product {
  height: 100%;
}
.quick-view-modal .inner .main-product__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.quick-view-modal .inner .main-product__form .product-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.quick-view-modal .inner .main-product__form .product-form .spacer {
  display: block !important;
}
@media only screen and (min-width: 768px) {
  .quick-view-modal {
    width: clamp(320px, 100vw, 450px);
    margin-top: 0;
    padding: 12px;
    padding-top: 60px;
  }
}
.quick-view-modal .main-product {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
}
.quick-view-modal .main-product__container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.quick-view-modal .main-product__details {
  flex: 1;
}
.quick-view-modal .main-product__gallery {
  margin-bottom: 32px;
  width: 100%;
}
.quick-view-modal .main-gallery {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.quick-view-modal .main-swiper {
  height: 40dvh;
}
.quick-view-modal .main-swiper .gallery-image-holder img {
  max-height: 40dvh;
}
.quick-view-modal .thumb-gallery,
.quick-view-modal .main-product__breadcrumbs,
.quick-view-modal .product-form__price--section,
.quick-view-modal .main-product__delivery,
.quick-view-modal .main-product__payments,
.quick-view-modal .main-product__complementary-products,
.quick-view-modal .product-form__bulk,
.quick-view-modal .product-form__hr,
.quick-view-modal .product-form__text-links,
.quick-view-modal .product-form__increments,
.quick-view-modal .product-title-play {
  display: none;
}
@media only screen and (min-width: 992px) {
  .quick-view-modal .thumb-gallery {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .quick-view-modal .grid-gallery {
    display: none;
  }
}
.quick-view-modal .product-form__buying {
  flex-direction: row;
}
.quick-view-modal .product-form__price--modal {
  display: block;
}
.quick-view-modal .product-form {
  gap: 12px;
}
.quick-view-modal .product-form__description p:nth-child(2) {
  display: none;
}
.quick-view-modal .product-form__title {
  display: block;
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.43;
}
.quick-view-modal .product-form__wishlist {
  position: absolute;
  top: -40px;
  right: 0;
}
.quick-view-modal .main-product__view-details {
  display: block;
  margin-block: 20px;
}
.quick-view-modal .lightbox-trigger {
  inset: 8px 8px auto auto;
}

.quick-view-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
  display: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .quick-view-modal__close {
    display: flex;
  }
}

.quick-view-modal__close-mobile {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 60px;
  height: 60px;
  padding: 20px;
  background-color: var(--color-stone);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slide-in-right 0.3s ease 0.5s both;
}
@media only screen and (min-width: 768px) {
  .quick-view-modal__close-mobile {
    display: none;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(103%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.item .oos {
  font-size: 12px;
  width: 50%;
  margin: 0px;
  text-align: right;
}
.item .oos span {
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.quantity-select {
  display: flex;
  padding: 4px 8px;
  background-color: var(--color-white);
  border-radius: 40px;
}
.quantity-select > * {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 28px;
  height: 28px;
  font-size: 18px;
}
.quantity-select input[type=number] {
  padding: 0px;
  text-align: center;
  -moz-appearance: textfield;
}
.quantity-select input[type=number]::-webkit-inner-spin-button,
.quantity-select input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.quantity-select__plus,
.quantity-select__minus {
  color: var(--color-navy);
  cursor: pointer;
}

.quantity-cart {
  display: flex;
  max-width: 100px;
  padding: 4px 8px;
  background-color: var(--color-white);
  border-radius: 40px;
}
.quantity-cart > * {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 28px;
  height: 28px;
}

.quantity-cart__plus,
.quantity-cart__minus {
  color: var(--color-navy);
  cursor: pointer;
}

.search-bar-qf {
  position: relative;
  width: clamp(125px, 100%, 145px);
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 21px;
}
.search-bar-qf input[type=text] {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: regular;
  height: 36px;
  position: relative;
  background: #f0f0f0;
  border-radius: 21px;
  border: none;
  outline: none;
  padding: 10px 20px 10px 45px;
  width: 100%;
}
.search-bar-qf input[type=text]::-moz-placeholder {
  font-weight: regular;
}
.search-bar-qf input[type=text]::placeholder {
  font-weight: regular;
}
.search-bar-qf .submit-group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0 auto 0 0;
  width: 50px;
  height: 36px;
}
.search-bar-qf .submit-group label {
  width: 50px;
  height: 36px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 5px;
}
.search-bar-qf .submit-group label svg {
  width: 21px;
  height: 21px;
}
.search-bar-qf .submit-group label svg path {
  fill: var(--color-navy);
}
.search-bar-qf .submit-group label input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 0;
  background: none;
  border: none;
  padding: 0;
}

.custom-search-qf-section .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  max-width: 750px;
}
.custom-search-qf-section .wrapper p {
  min-width: -moz-max-content;
  min-width: max-content;
  font-weight: bolder;
}
.custom-search-qf-section .wrapper .search-bar-qf input {
  color: rgba(0, 0, 0, 0.65);
  padding-right: 50px;
}
.custom-search-qf-section .wrapper .search-bar-qf input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}
.custom-search-qf-section .wrapper .search-bar-qf input::placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}
.custom-search-qf-section .wrapper .search-bar-qf .submit-group label svg path {
  fill: #10573b;
}

#notification-test {
  position: fixed;
  inset: auto 30px 100px auto;
  z-index: 9999;
  background: #f01e2c;
  border-color: #f01e2c;
}
#notification-test:hover {
  background: #d1001f;
  border-color: #d1001f;
}
@media only screen and (max-width: 767.98px) {
  #notification-test {
    font-size: 30px;
    text-align: center;
    width: calc(100vw - 3rem);
    inset: auto 1.5rem 200px auto;
  }
}

#toasty-zone {
  z-index: 99999999999;
  position: fixed;
  overflow: hidden;
  isolation: isolate;
  inset: 140px 0 auto auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px 0;
  height: 100vh;
  pointer-events: none;
  padding: 10px;
}

.toasty {
  z-index: -1;
  position: fixed;
  inset: 0 20px auto auto;
  pointer-events: all;
  width: clamp(280px, 100%, 360px);
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: white;
  border-radius: 8px;
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(6px);
  filter: drop-shadow(2px 3px 4px rgba(30, 30, 30, 0.15));
  will-change: transform;
  scale: 1;
  transform-origin: top right;
  transition: translate 0.3s cubic-bezier(0.73, 0.04, 0.95, 0.74), background 0.15s ease-in-out, scale 0.15s ease-in-out, top 0.2s ease-in-out 0.2s;
  /*
    // Animations
    animation:
    toasty-in .3s ease-in forwards,
    toasty-out .3s ease-in var( --animation-delay ) forwards;
    */
}
@media only screen and (max-width: 767.98px) {
  .toasty {
    width: calc(100vw - 3rem);
    inset: 0 1.5rem auto auto;
  }
}
.toasty.bg {
  background: var(--background);
}
.toasty.bg:hover,
.toasty.bg .toasty-close {
  background: var(--background);
}
.toasty.img {
  justify-content: center;
  min-height: 74px;
  padding-left: 80px;
}
.toasty-title, .toasty-body {
  width: 100%;
  text-align: left;
  color: inherit;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  translate: 0 0 0;
  -webkit-font-smoothing: antialiased;
  transition: translate 0.25s ease-in-out 0.05s;
}
.toasty-title {
  font-size: 16px;
  font-weight: bold;
}
.toasty-body {
  font-size: 13px;
  line-height: 1.4;
}
.toasty-close {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  inset: 0 auto auto 0;
  translate: -50% -30% 0;
  padding: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: opacity 0.15s ease-in;
  color: inherit;
  background: rgba(70, 70, 70, 0.8);
}
.toasty-close svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: inherit;
  pointer-events: none;
}
.toasty-image {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 3px;
  position: absolute;
  inset: 50% auto auto 10px;
  translate: 0 -50%;
  transition: translate 0.25s ease-in-out 0.05s;
}
.toasty:hover {
  scale: 1.028;
  background: rgba(25, 25, 25, 0.65);
}
.toasty:hover .toasty-title,
.toasty:hover .toasty-body {
  translate: 5px 0 0;
}
.toasty:hover .toasty-image {
  translate: 5px -50% 0;
}
.toasty:hover .toasty-close {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}
.toasty.dragging {
  z-index: 1;
  scale: 1.048;
  cursor: grabbing;
}
@media only screen and (max-width: 767.98px) {
  .toasty:hover, .toasty.dragging {
    scale: 1;
  }
}

[wishlist-button] {
  z-index: 10;
  cursor: pointer;
  color: var(--color-navy);
  transition: opacity 0.15s ease-in;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: none;
  padding: 0;
}
[wishlist-button] svg,
[wishlist-button] img.active-heart,
[wishlist-button] img.inactive-heart {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
[wishlist-button] svg path,
[wishlist-button] img.active-heart path,
[wishlist-button] img.inactive-heart path {
  fill: none;
}
[wishlist-button] img.active-heart {
  display: none;
}
[wishlist-button] img.inactive-heart {
  display: block;
}
[wishlist-button].active-wishlist svg path {
  fill: currentColor;
}
[wishlist-button].active-wishlist img.active-heart {
  display: block;
}
[wishlist-button].active-wishlist img.inactive-heart {
  display: none;
}
[wishlist-button][loading] {
  opacity: 0;
}

.side-cart-saved-grid {
  position: relative;
  gap: 16px;
  display: grid;
  max-height: calc(100vh - 128px);
  padding-right: 20px;
  padding-left: 20px;
  overflow-y: auto;
}
.side-cart-saved-grid::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  width: 40px;
  height: 40px;
  border: 4px dotted var(--color-navy);
  border-radius: 50%;
  opacity: 1;
  translate: -50% -50%;
  animation: wishlist_loader 3s infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.side-cart-saved-grid[loaded] {
  opacity: 1;
}
.side-cart-saved-grid[loaded]::after {
  opacity: 0;
}
.side-cart-saved-grid .product-card {
  position: relative;
  flex-direction: row;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-stone);
}
.side-cart-saved-grid .product-card:last-of-type {
  padding-bottom: 24px;
  border-bottom: none;
}
.side-cart-saved-grid .product-card__image {
  position: static;
  width: 84px;
  height: 84px;
}
.side-cart-saved-grid .product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: unset;
}
.side-cart-saved-grid .product-card__image--primary {
  opacity: 1 !important;
  visibility: visible !important;
}
.side-cart-saved-grid .product-card__image--secondary {
  opacity: 0 !important;
  visibility: hidden !important;
}
.side-cart-saved-grid .product-card__badge {
  display: none;
}
.side-cart-saved-grid .product-card__wishlist {
  top: 0;
  right: 0;
}
.side-cart-saved-grid .product-card__title {
  font-size: 14px;
}
.side-cart-saved-grid .product-card__details {
  flex: 1;
  padding-right: 28px;
}
.side-cart-saved-grid .product-card__buttons {
  display: none;
}
.side-cart-saved-grid .price {
  font-size: 14px !important;
}

@keyframes wishlist_loader {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
