.click-icon-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.click-icon-link .sfc-view-details {
  color: #123E4E;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.color-dot.black {
  background: #000;
}

.color-dot.red {
  background: #b91c1c;
}

.color-dot.green {
  background: #3f6f52;
}

.color-dot.blue {
  background: #4d87d9;
}

.color-dot.grey {
  background: #888;
}

.sfc-product-colors {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.sfc-color-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
}

.sfc-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  row-gap: 60px;
}

@media (max-width: 991px) {
  .sfc-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .sfc-products-grid {
    grid-template-columns: 1fr;
  }
}
.sfc-product-card {
  list-style: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sfc-product-card .sfc-title-price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}
.sfc-product-card .sfc-title {
  color: #009591;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 125% */
  margin-bottom: 0;
}
.sfc-product-card .sfc-price span.woocommerce-Price-amount.amount {
  color: #123E4E;
  text-align: right;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 125% */
}
.sfc-product-card .sfc-short-desc {
  color: #161618;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  margin-bottom: 16px;
}
.sfc-product-card .sfc-product-colors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.sfc-product-card .sfc-product-colors .color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #ffffff;
  margin-left: -5px;
}
.sfc-product-card .sfc-product-colors .color-dot:first-child {
  margin-left: 0;
}
.sfc-product-card .sfc-color-label {
  margin-left: 10px;
}

.sfc-product-image {
  aspect-ratio: 1/1;
  border: 1px solid rgba(0, 149, 145, 0.2);
  border-radius: 16px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
}
.sfc-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sfc-product-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sfc-product-meta .sfc-cat a {
  color: #123E4E;
  font-family: "Nunito Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 160% */
}
.sfc-product-meta .click-icon-link {
  margin-top: auto;
}

.sfc-product-size-wrap {
  margin: 25px 0;
}

.sfc-product-size-wrap h4 {
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sfc-product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sfc-size-item {
  padding: 10px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}

.sfc-size-item:hover, .sfc-size-item.active {
  border: 1px solid #222;
}

.sfc-product-color-wrap {
  margin-top: 24px;
}

.sfc-product-color-wrap h4 {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.single-product.woocommerce div.product form.cart .button {
  border-radius: 8px;
  padding: 10px 30px;
  line-height: 22px;
  background-color: #009591;
  border-color: #009591;
  color: #FFFFFF;
  border-width: 2px;
  border-style: solid;
  margin-left: 0;
  min-height: 47px;
  height: auto;
}
.single-product.woocommerce div.product form.cart .button:hover {
  border-color: #123e4e;
  background-color: #123e4e;
}

.sfc-product-color-wrap .selected-colour {
  font-weight: 500;
}

.wp-singular .sfc-product-colors .color-dot {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}
.wp-singular .sfc-product-colors .color-dot:before {
  content: "";
  position: absolute;
  border: 1px solid transparent;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wp-singular .sfc-product-colors .color-dot.active:before {
  content: "";
  border-color: #1A1A1A;
}

.sfc-product-personalisation-wrap {
  margin-top: 26px;
  margin-bottom: 32px;
}

.sfc-product-personalisation-wrap h4 {
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 200% */
  letter-spacing: 2.88px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sfc-product-personalisation-wrap input {
  width: 100%;
  height: 48px;
  border: none;
  background: #F9F9F8;
  padding: 0 16px;
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  outline: none;
  border-radius: 4px;
}

.sfc-product-personalisation-wrap small {
  display: block;
  margin-top: 10px;
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sfc-single-top-meta .sfc-single-category {
  margin-bottom: 10px;
  font-size: 14px;
}
.sfc-single-top-meta .sfc-single-category a {
  color: #123E4E;
  font-family: "Nunito Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 160% */
}

.sfc-title-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--1A1A1A, #1A1A1A);
}
.sfc-title-price-row h1 {
  color: #009591;
  font-family: "Nunito Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 93.75% */
  margin: 0;
}
.sfc-title-price-row .sfc-price span.woocommerce-Price-amount.amount {
  color: #123E4E;
  text-align: right;
  font-family: "Nunito Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 93.75% */
}

.single-product.woocommerce div.product form.cart {
  margin: 10px 0 30px 0;
}

.sfc-single-excerpt-bottom {
  margin-top: 20px;
  font-size: 16px;
}

.sfc-quantity-label {
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 200% */
  letter-spacing: 2.88px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 32px;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  margin-right: 30px;
}

.quantity label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 3px;
}

.quantity button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #009c9a;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.quantity input.qty {
  width: 60px;
  height: 30px;
  border: none;
  text-align: center;
  font-size: 18px;
  background: transparent;
}

/* Chrome, Safari, Edge */
.quantity input[type=number]::-webkit-outer-spin-button,
.quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity:has(input[type=hidden]) .plus,
.quantity:has(input[type=hidden]) .minus {
  display: none;
}

/* Firefox */
.quantity input[type=number] {
  -moz-appearance: textfield;
}

.single-product.woocommerce div.product .quantity .qty {
  height: 48px;
  font-size: 16px;
  width: 87px;
  background: #F9F9F8 !important;
  border: none;
  border-radius: 4px;
  padding-left: 0;
}

.sfc-related-products {
  margin-top: 60px;
}

.infinite-body .sfc-related-products-title, .sfc-related-products-title {
  margin-bottom: 48px;
  color: #009591;
  font-family: Nunito;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 70px;
  letter-spacing: -0.64px;
}

.sfc-related-products .sfc-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .sfc-related-products .sfc-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .sfc-related-products .sfc-products-grid {
    grid-template-columns: 1fr;
  }
}
.sfc-empty-cart-wrap .box-title {
  margin-bottom: 48px;
  color: #009591;
  font-family: Nunito;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 70px;
  letter-spacing: -0.64px;
}

.sfc-shop-filter-bar {
  background: #F9F9F8;
  margin-bottom: 48px;
  padding: 32px;
}
.sfc-shop-filter-bar .news-filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sfc-shop-filter-bar .filter-headline {
  font-size: 16px;
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  margin-bottom: 20px;
  min-height: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.sfc-shop-filter-bar .sfc-shop-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sfc-shop-filter-bar .sfc-shop-categories a {
  height: 38px;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: white;
  color: #1A1A1A;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}
.sfc-shop-filter-bar .sfc-shop-categories a.active, .sfc-shop-filter-bar .sfc-shop-categories a:hover {
  background: #123E4E;
  border-color: #123E4E;
  color: white;
}

.sfc-shop-sort {
  min-width: 180px;
}
.sfc-shop-sort select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #1A1A1A;
  padding: 10px 28px 10px 0;
  background: transparent;
  outline: none;
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.woocommerce.loading {
  opacity: 0.5;
  pointer-events: none;
  transition: 0.3s;
}

.sfc-load-more-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

.infinite-body .sfc-load-more, .sfc-load-more {
  margin-left: 0;
  border-radius: 8px;
  padding: 10px 30px;
  line-height: 22px;
  border: 1px solid #009591;
  background: #009591;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
}
.infinite-body .sfc-load-more:hover, .sfc-load-more:hover {
  border: 1px solid #123e4e;
  background: #123e4e;
  color: white;
}

.sfc-load-more.loading {
  opacity: 0.6;
  pointer-events: none;
}

.sfc-products-grid > * {
  transition: 0.4s ease;
}

.sfc-no-more-products {
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
}

.sfc-shop-filter-reset {
  color: #123E4E;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  background: transparent;
  border: 1px solid #123e4e;
  padding: 3px 14px;
  border-radius: 8px;
  margin-top: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sfc-shop-filter-reset svg {
  width: 14px;
  height: 14px;
  fill: #d2002f;
}
.sfc-shop-filter-reset:hover {
  background: #123E4E;
  border-color: #123E4E;
  color: white;
}
.sfc-shop-filter-reset:hover svg {
  fill: #ffffff;
}

#sfc-shop-filter-reset {
  display: none;
}

.single-product.woocommerce div.product form.cart.variations_form {
  width: 100%;
}

.woocommerce div.product form.cart .variations {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.single-product table.variations {
  width: 100%;
  border-collapse: collapse;
}
.single-product table.variations th.label {
  background: #009591;
  color: #fff;
  font-weight: 600;
  padding: 5px 18px;
  min-width: 140px;
  margin: 60px;
  line-height: normal !important;
  vertical-align: middle !important;
  background-clip: padding-box;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}
.single-product table.variations th.label label {
  margin: 0;
  font-size: 16px;
  color: #fff;
}
.single-product table.variations td.value {
  background: transparent;
  padding: 0 0;
  position: relative;
  line-height: normal !important;
  vertical-align: middle !important;
  width: 100%;
  min-width: 100%;
}
.single-product table.variations td.value select {
  width: 100%;
  max-width: 180px;
  height: 56px;
  line-height: 22px;
  padding: 14px 24px;
  margin: 0 !important;
  font-family: "Nunito Sans";
  font-style: normal;
  border: transparent;
  background-color: #f9f9f8 !important;
  font-size: 16px;
  color: #1A1A1A;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23333' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 14px !important;
  overflow: hidden;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  border-bottom-left-radius: 0;
}
.single-product table.variations td.value select:focus {
  outline: none;
  border-color: #4db3d3;
}
.single-product table.variations td.value select:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23009591' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
}
.single-product table.variations td.value .reset_variations {
  margin-left: auto;
  color: #009591;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 0;
  bottom: -24px;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.single-product table.variations td.value .reset_variations:hover {
  color: #123e4e;
}

.woocommerce .woocommerce-error {
  background-color: #123e4e;
  border-top: 3px solid #123e4e;
  color: #fff;
}

.woocommerce form .form-row {
  margin: 0 0 25px;
}

.woocommerce form .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection {
  border-color: #009591;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, html .woocommerce input.button, html .woocommerce span.onsale {
  background-color: #009591;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background-color: #123E4E;
}

span.woocommerce-Price-amount.amount {
  color: #123E4E;
}

.woocommerce .cart .button, .woocommerce .cart input.button {
  padding: 14px 24px;
  height: 56px;
  line-height: 22px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  height: 56px;
  line-height: 22px;
  padding: 14px 24px;
  margin: 0 !important;
  font-family: "Nunito Sans";
  font-style: normal;
  background-color: #f9f9f8 !important;
  font-size: 16px;
  color: #1A1A1A;
  border: transparent;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
  display: block;
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
  height: 56px;
  padding: 12px 24px;
  color: rgba(26, 26, 26, 0.5);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
  background: #F9F9F8;
  border: none;
  border-radius: 8px;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  letter-spacing: normal;
  padding: 12px 24px;
  display: block;
  background-color: #f9f9f8;
  border: transparent;
  border-radius: 8px;
  color: rgba(26, 26, 26, 0.5);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
  color: rgba(26, 26, 26, 0.5);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
  color: rgba(26, 26, 26, 0.5);
}

.woocommerce form .form-row input.input-text::-webkit-input-placeholder,
.woocommerce form .form-row textarea::-webkit-input-placeholder {
  color: rgba(26, 26, 26, 0.5);
}

.woocommerce form .form-row input.input-text::-moz-placeholder,
.woocommerce form .form-row textarea::-moz-placeholder {
  color: rgba(26, 26, 26, 0.5);
}

.woocommerce form .select2-selection {
  border: 1px;
  border-style: solid;
  border-color: #f9f9f8;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  height: 56px;
  padding: 12px 24px;
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.infinite-body input, .infinite-body textarea, .infinite-body select, .woocommerce form .select2-selection {
  color: #1A1A1A;
}

.infinite-body input, .infinite-body textarea, .infinite-body select, .woocommerce form .select2-selection {
  background-color: #f9f9f8;
  border-color: #f9f9f8;
}

:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow b {
  border: none;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23333' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-size: 16px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -12px -12px 0px;
  color: #009591;
}

:where(.woocommerce) .select2-container .select2-selection--single:hover .select2-selection__arrow b {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23009591' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
}

:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0.5em 0;
  line-height: normal;
  box-sizing: border-box;
  color: #1A1A1A;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  line-height: 22px;
}

.cart_item input.input-text.qty.text {
  padding: 5px;
}

.woocommerce dl dt {
  margin-top: 0;
}

.woocommerce-shipping-methods .shipping-title {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.sfc-cs-shipping .shipping-title {
  display: flex;
  width: fit-content;
  float: left;
  height: 60px;
  align-items: center;
  color: #383838;
}
.sfc-cs-shipping .woocommerce-shipping-methods {
  text-wrap: nowrap;
  width: max-content;
  float: right;
}

body.woocommerce-cart .sfc-cs-shipping .shipping-title {
  display: none;
}

@media (max-width: 991px) {
  .woocommerce table.shop_table_responsive tr td.product-quantity, .woocommerce-page table.shop_table_responsive tr td.product-quantity {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
  }
  .woocommerce table.shop_table_responsive .quantity {
    margin-left: auto;
    margin-right: 0;
  }
  .woocommerce .cart_item td.product-total {
    padding-left: 0;
    width: 0;
    text-align: right;
  }
  body span.woocommerce-Price-amount.amount {
    text-wrap: nowrap;
  }
  .woocommerce ul#shipping_method {
    text-wrap: nowrap;
  }
  .woocommerce table.shop_table tfoot td {
    text-align: right;
  }
  .woocommerce table.shop_table th.product-total {
    text-align: right;
  }
  body.woocommerce-cart .sfc-cs-shipping .woocommerce-shipping-methods {
    float: none;
    width: auto;
  }
}

/*# sourceMappingURL=sfc-woocommerce.css.map */
