@charset "UTF-8";
/* ---------------------------------------------------------------------------------------------------------- 
Typography ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/* Font Weights */
/* Padding & Margins */
/* ---------------------------------------------------------------------------------------------------------- 
Header Heights ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- 
Breakpoints ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/* ==========================================================================
   Card Mixins

   This file contains structural/layout mixins for cards.
   For visual styles (colors, typography, badges), see elements/_cards.scss
   ========================================================================== */
.nb-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  border: none;
  border-radius: 999px;
  background-color: #0A0F1F;
  border: 1px solid #0A0F1F;
  color: #fff;
  font-family: "basic-sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.nb-filter-pill__icon {
  flex: 0 0 auto;
}
.nb-filter-pill__label {
  white-space: nowrap;
}
.nb-filter-pill--inline, .nb-filter-pill--float {
  padding: 11px 18px;
}
.nb-filter-pill:hover, .nb-filter-pill:focus-visible {
  top: 0;
}
.nb-filter-pill:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}

.nb-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: #fff;
  font-family: "basic-sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #0A0F1F;
}
.nb-filter-count[hidden] {
  display: none;
}

.nb-filter-pill-wrap--float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 10030;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 999px;
  border: 1px solid #fff;
  transform: translateY(calc(100% + 28px));
  transition: opacity 0.3s ease, transform 0.32s cubic-bezier(0.4, 0, 0.1, 1), visibility 0s linear 0.32s;
}
.nb-filter-pill-wrap--float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.32s cubic-bezier(0.4, 0, 0.1, 1), visibility 0s;
}
.listing-filter-ui.is-open .nb-filter-pill-wrap--float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 28px));
}
.nb-filter-pill-wrap--float:hover {
  border-color: #fff;
}

.listing-filter-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 10200;
  margin: 0;
  padding: 0;
  background: rgba(10, 15, 31, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}
.listing-filter-backdrop[hidden] {
  display: block !important;
}
.listing-filter-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.32s ease, visibility 0s;
}

#filter.nb-filter-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 392px;
  max-width: 92vw !important;
  height: 100vh;
  height: 100dvh;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0;
  background-color: #fbfaf6;
  box-shadow: -24px 0 60px -24px rgba(0, 0, 0, 0.4);
  z-index: 10201 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%) !important;
  opacity: 1 !important;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.1, 1), visibility 0s linear 0.36s !important;
}
#filter.nb-filter-drawer.open {
  transform: translateX(0) !important;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.1, 1), visibility 0s !important;
}
#filter.nb-filter-drawer form#listings-filter {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.listing-filter-open {
  overflow: hidden;
}

body.listing-filter-open:has(#filter.nb-filter-drawer.open) header#masthead {
  z-index: 10250;
}
body.listing-filter-open:has(#filter.nb-filter-drawer.open) .menu__toggler {
  z-index: 100;
}

.nb-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 22px 26px;
  border-bottom: 1px solid #dcdcdc;
}
.nb-drawer-header__title {
  margin: 0;
  font-family: "ivypresto-display", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: #0A0F1F;
}
.nb-drawer-header__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #fff;
  color: #0A0F1F;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.nb-drawer-header__close:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}

.nb-drawer-body {
  flex: 1;
  min-height: 0;
  padding: 22px 26px;
  overflow-x: hidden;
  overflow-y: auto;
}

.nb-drawer-footer {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  padding: 16px 26px;
  border-top: 1px solid #dcdcdc;
}

.nb-drawer-clear {
  flex: 0 0 auto;
  margin: 0;
  padding: 13px 18px;
  border: 1px solid #0A0F1F;
  border-radius: 10px;
  background: #fff;
  font-family: "ivypresto-display", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #666;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.nb-drawer-clear:hover, .nb-drawer-clear:focus-visible {
  top: 0;
}
.nb-drawer-clear:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}

.nb-drawer-search-btn.filter-search-btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 13px 18px;
  border: none;
  border-radius: 10px;
  background-color: #0A0F1F;
  font-family: "ivypresto-display", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid #0A0F1F;
}
.nb-drawer-search-btn.filter-search-btn__icon {
  flex: 0 0 auto;
}
.nb-drawer-search-btn.filter-search-btn:hover, .nb-drawer-search-btn.filter-search-btn:focus-visible {
  background-color: #D4E2CF;
  transform: none;
  box-shadow: none;
  top: 0;
  color: #0A0F1F;
  cursor: pointer;
  border-color: #0A0F1F;
}
.nb-drawer-search-btn.filter-search-btn:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}

.nb-drawer-search-field {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #fff;
}
.nb-drawer-search-field > svg {
  flex: 0 0 auto;
  color: #999;
}
.nb-drawer-search-field input {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: "basic-sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #0A0F1F;
  text-align: left;
}
.nb-drawer-search-field input::placeholder {
  color: #999;
}
.nb-drawer-search-field input:focus {
  outline: none;
}
.nb-drawer-search-field > button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.nb-drawer-search-field > button:hover, .nb-drawer-search-field > button:focus-visible {
  background: transparent;
  color: #0A0F1F;
  top: 0;
}
.nb-drawer-search-field > button:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}

.nb-drawer-divider {
  height: 1px;
  margin: 20px 0;
  background: #dcdcdc;
}

.nb-drawer-section .nb-drawer-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 4px 2px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.nb-drawer-section .nb-drawer-accordion-toggle__label {
  font-family: "basic-sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}
.nb-drawer-section .nb-drawer-accordion-toggle__meta {
  margin-right: auto;
  margin-left: 8px;
  font-family: "basic-sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}
.nb-drawer-section .nb-drawer-accordion-toggle__chevron,
.nb-drawer-section .nb-drawer-accordion-toggle .nb-drawer-accordion__chevron {
  flex: 0 0 auto;
  color: #666;
  transition: transform 0.2s ease;
}
.nb-drawer-section.is-open .nb-drawer-accordion-toggle__chevron, .nb-drawer-section.is-open .nb-drawer-accordion__chevron {
  transform: rotate(180deg);
}
.nb-drawer-section:not(.is-open) .nb-drawer-accordion-panel {
  display: none;
}
.nb-drawer-section.is-open .nb-drawer-accordion-panel {
  padding-top: 13px;
}

.nb-filter-hidden-inputs {
  display: none !important;
}

.nb-category-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nb-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: "basic-sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #0A0F1F;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.nb-category-row__name {
  flex: 1;
  min-width: 0;
}
.nb-category-row__count {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 500;
  color: #666;
}
.nb-category-row.is-active, .nb-category-row:hover {
  background-color: rgb(226, 239, 222);
  top: 0;
}
.nb-category-row.is-active {
  font-weight: 600;
  background-color: transparent;
}
.nb-category-row:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 1px;
}

.nb-cat-swatch {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border-radius: 3px;
}
.nb-cat-swatch.cat-red {
  background-color: #E84545;
}
.nb-cat-swatch.cat-orange {
  background-color: #F4890B;
}
.nb-cat-swatch.cat-yellow {
  background-color: #F5CC00;
}
.nb-cat-swatch.cat-green {
  background-color: #2ECC71;
}
.nb-cat-swatch.cat-blue {
  background-color: #1A9BE8;
}
.nb-cat-swatch.cat-purple {
  background-color: #6C5CE7;
}
.nb-cat-swatch.cat-pink {
  background-color: #E91E8C;
}
.nb-cat-swatch.cat-teal {
  background-color: #00BCD4;
}
.nb-cat-swatch.cat-neutral {
  background-color: #dcdcdc;
}

.nb-location-filter-input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 9px 11px;
  border: 1px solid #dcdcdc;
  border-radius: 9px;
  background: #fff;
}
.nb-location-filter-input svg {
  flex: 0 0 auto;
  color: #999;
}
.nb-location-filter-input input {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: "basic-sans", sans-serif;
  font-size: 14px;
  color: #0A0F1F;
}
.nb-location-filter-input input::placeholder {
  color: #999;
}
.nb-location-filter-input input:focus {
  outline: none;
}

.nb-location-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-height: 210px;
  overflow-y: auto;
}

.nb-location-row {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  margin: 0;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: "basic-sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #0A0F1F;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.nb-location-row__pin {
  flex: 0 0 auto;
  color: #999;
}
.nb-location-row__name {
  flex: 1;
  min-width: 0;
}
.nb-location-row.is-active, .nb-location-row:hover {
  background-color: rgb(226, 239, 222);
  top: 0;
}
.nb-location-row.is-active, .nb-location-row.is-active:hover {
  font-weight: 600;
  background-color: transparent;
}
.nb-location-row.is-active .nb-location-row__pin, .nb-location-row:hover .nb-location-row__pin {
  color: #0A0F1F;
}
.nb-location-row.is-hidden {
  display: none;
}
.nb-location-row:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 1px;
}

.nb-hidden-gems-toggle {
  margin: 0;
}

.nb-toggle-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  cursor: pointer;
}
.nb-toggle-switch__control {
  position: relative;
  flex: 0 0 auto;
}
.nb-toggle-switch input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.nb-toggle-switch__track {
  display: block;
  position: relative;
  width: 46px;
  height: 26px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background-color: #f2efea;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.nb-toggle-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}
input:checked + .nb-toggle-switch__track {
  background-color: #0A0F1F;
  border-color: #0A0F1F;
}
input:checked + .nb-toggle-switch__track .nb-toggle-switch__thumb {
  transform: translateX(20px);
}
input:focus-visible + .nb-toggle-switch__track {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}

.nb-hidden-gems-toggle__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.nb-hidden-gems-toggle__label {
  font-family: "basic-sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #0A0F1F;
}

.nb-hidden-gems-toggle__hint {
  font-family: "basic-sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  color: #666;
}

#filter.nb-filter-drawer #distance-filter {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
#filter.nb-filter-drawer #distance-location-container.nb-drawer-search-field {
  position: relative;
  margin: 0 0 12px;
}
#filter.nb-filter-drawer #distance-location-container.nb-drawer-search-field > button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
#filter.nb-filter-drawer #distance-location-container.nb-drawer-search-field > button:hover, #filter.nb-filter-drawer #distance-location-container.nb-drawer-search-field > button:focus-visible {
  background: transparent;
  color: #0A0F1F;
  top: 0;
}
#filter.nb-filter-drawer #distance-location-container.nb-drawer-search-field > button:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}
#filter.nb-filter-drawer #distance-slider-container {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: none;
}
#filter.nb-filter-drawer #distance-slider-container > label.distance-slider-label,
#filter.nb-filter-drawer #distance-slider-container > label[for=distance-slider] {
  display: block;
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  text-align: left;
  font-family: "basic-sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #0A0F1F;
}
#filter.nb-filter-drawer #distance-slider-container > label.distance-slider-label #distance-value,
#filter.nb-filter-drawer #distance-slider-container > label[for=distance-slider] #distance-value {
  font-size: 14px;
  font-weight: 600;
  color: #0A0F1F;
}
#filter.nb-filter-drawer #user-location {
  display: block;
  margin-top: 8px;
  font-family: "basic-sans", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #666;
}
#filter.nb-filter-drawer #user-location[hidden] {
  display: none;
}
#filter.nb-filter-drawer #distance-filter .slider-wrapper {
  position: relative;
  width: 100%;
  padding: 4px 6px 0;
  box-sizing: border-box;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: #dcdcdc;
  outline: none;
  cursor: pointer;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: #dcdcdc;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -7px;
  background: #0A0F1F;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider:active::-webkit-slider-thumb {
  transform: scale(1.08);
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: #dcdcdc;
  border: none;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #0A0F1F;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider:disabled::-webkit-slider-thumb, #filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider:disabled::-moz-range-thumb {
  cursor: not-allowed;
}
#filter.nb-filter-drawer #distance-filter input[type=range]#distance-slider:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 4px;
}
#filter.nb-filter-drawer .slider-tooltip {
  display: none;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A0F1F;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: "basic-sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
}
#filter.nb-filter-drawer .slider-tooltip.visible {
  opacity: 1;
}
#filter.nb-filter-drawer .slider-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #0A0F1F;
}
#filter.nb-filter-drawer #distance-filter .slider-ruler {
  position: relative;
  width: calc(100% - 20px);
  height: 22px;
  margin-top: 4px;
  margin-left: 10px;
}
#filter.nb-filter-drawer #distance-filter .slider-ruler .tick {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#filter.nb-filter-drawer #distance-filter .slider-ruler .tick::before {
  content: "";
  width: 1px;
  height: 6px;
  background-color: #999;
  margin-bottom: 2px;
}
#filter.nb-filter-drawer #distance-filter .slider-ruler .tick:first-child {
  left: 0 !important;
  transform: translateX(0);
}
#filter.nb-filter-drawer #distance-filter .slider-ruler .tick:last-child {
  left: 100% !important;
  transform: translateX(-100%);
}
#filter.nb-filter-drawer #distance-filter .slider-ruler .tick:not(:first-child):not(:last-child) {
  transform: translateX(-50%);
}
#filter.nb-filter-drawer #distance-filter .slider-ruler .tick-label {
  font-family: "basic-sans", sans-serif;
  font-size: 10px;
  color: #666;
  user-select: none;
  line-height: 1;
}
#filter.nb-filter-drawer .location-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 1px;
  max-height: 210px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: 100%;
  margin: 0;
  padding: 8px;
  border: none;
  border-radius: 0;
  background: transparent;
  font-family: "basic-sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #0A0F1F;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row .nb-location-row__pin {
  flex: 0 0 auto;
  color: #999;
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row .nb-location-row__name {
  flex: 1;
  min-width: 0;
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row:first-child {
  border-radius: 8px 8px 0 0;
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row:last-child {
  border-radius: 0 0 8px 8px;
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row:only-child {
  border-radius: 8px;
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row:hover, #filter.nb-filter-drawer .location-suggestions .nb-location-row:focus-visible {
  background-color: rgb(226, 239, 222);
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row:hover .nb-location-row__pin, #filter.nb-filter-drawer .location-suggestions .nb-location-row:focus-visible .nb-location-row__pin {
  color: #0A0F1F;
}
#filter.nb-filter-drawer .location-suggestions .nb-location-row:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: -2px;
}
#filter.nb-filter-drawer form#listings-filter > .filter-search-btn {
  display: none;
}

.nb-listings-info-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dcdcdc;
}
.nb-listings-info-bar__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 767px) {
  .nb-listings-info-bar__meta {
    flex: 1 1 100%;
    width: 100%;
  }
}
.nb-listings-info-bar__count {
  margin: 0;
  font-family: "basic-sans", sans-serif;
  font-size: var(--step--1);
  font-weight: 600;
  color: #0A0F1F;
}
.nb-listings-info-bar__count[hidden] {
  display: none;
}
.nb-listings-info-bar .listing-filter-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  font-family: "basic-sans", sans-serif;
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1.45;
  color: #0A0F1F;
}
.nb-listings-info-bar .listing-filter-summary[hidden] {
  display: none;
}
.nb-listings-info-bar .listing-filter-summary__text {
  flex: 0 0 auto;
  min-width: 0;
  text-align: center;
  width: 100%;
}
.nb-listings-info-bar .listing-filter-summary__clear {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin: 0;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: transparent;
  font-family: "basic-sans", sans-serif;
  font-size: var(--step--2);
  font-weight: 500;
  line-height: 1.2;
  color: #0A0F1F;
  cursor: pointer;
  white-space: nowrap;
}
.nb-listings-info-bar .listing-filter-summary__clear i {
  font-size: 0.7rem;
}
.nb-listings-info-bar .listing-filter-summary__clear:hover {
  color: black;
  border-color: black;
}
.nb-listings-info-bar .listing-filter-summary__clear:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}
@media (max-width: 1023px) {
  .nb-listings-info-bar .listing-filter-summary__clear {
    margin: 0 auto;
  }
}
.nb-listings-info-bar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .nb-listings-info-bar__actions {
    flex: 1 1 100%;
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
}
.nb-listings-info-bar__sort-label {
  margin: 0;
  font-family: "basic-sans", sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  color: #666;
  white-space: nowrap;
  display: none;
}
.nb-listings-info-bar__sort {
  min-width: 10rem;
  margin: 0;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background-color: #fff;
  font-family: "basic-sans", sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  color: #0A0F1F;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
}
.nb-listings-info-bar__sort:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.nb-listings-info-bar__sort:focus-visible {
  outline: 2px solid #1DAC07;
  outline-offset: 2px;
}

.woocommerce-cart #content,
.woocommerce-cart #main,
.woocommerce-checkout #content,
.woocommerce-checkout #main,
.woocommerce-order-received #content,
.woocommerce-order-received #main,
.woocommerce-account #content,
.woocommerce-account #main {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
  margin: var(--step-0) 0;
  font-size: var(--step--1);
  font-weight: 400;
  color: #dcdcdc;
}
.woocommerce .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb a {
  color: #fbfaf6;
  font-weight: 400;
  text-decoration: none;
}
.woocommerce .woocommerce-breadcrumb a:hover,
.woocommerce-page .woocommerce-breadcrumb a:hover {
  color: var(--accent-colour);
}

.woocommerce .button:not(.checkout-button):not(#place_order)::before,
.woocommerce a.button:not(.checkout-button)::before,
.woocommerce button:not(#place_order):not([name=update_cart]):not(.show-password-input)::before,
.woocommerce-page .button:not(.checkout-button):not(#place_order)::before,
.woocommerce-page a.button:not(.checkout-button)::before,
.woocommerce-page button:not(#place_order):not([name=update_cart]):not(.show-password-input)::before,
.woocommerce-cart .button:not(.checkout-button):not(#place_order)::before,
.woocommerce-cart a.button:not(.checkout-button)::before,
.woocommerce-cart button:not(#place_order):not([name=update_cart]):not(.show-password-input)::before,
.woocommerce-checkout .button:not(.checkout-button):not(#place_order)::before,
.woocommerce-checkout a.button:not(.checkout-button)::before,
.woocommerce-checkout button:not(#place_order):not([name=update_cart]):not(.show-password-input)::before,
.woocommerce-order-received .button:not(.checkout-button):not(#place_order)::before,
.woocommerce-order-received a.button:not(.checkout-button)::before,
.woocommerce-order-received button:not(#place_order):not([name=update_cart]):not(.show-password-input)::before,
.woocommerce-account .button:not(.checkout-button):not(#place_order)::before,
.woocommerce-account a.button:not(.checkout-button)::before,
.woocommerce-account button:not(#place_order):not([name=update_cart]):not(.show-password-input)::before {
  display: none !important;
}
.woocommerce .listing-filter-header,
.woocommerce-page .listing-filter-header,
.woocommerce-cart .listing-filter-header,
.woocommerce-checkout .listing-filter-header,
.woocommerce-order-received .listing-filter-header,
.woocommerce-account .listing-filter-header {
  display: none;
}
.woocommerce #content,
.woocommerce-page #content,
.woocommerce-cart #content,
.woocommerce-checkout #content,
.woocommerce-order-received #content,
.woocommerce-account #content {
  padding-top: 0;
}

.woocommerce form .form-row .password-input,
.woocommerce-page form .form-row .password-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
}
.woocommerce form .form-row .password-input input.input-text[type=password],
.woocommerce form .form-row .password-input input.input-text[type=text],
.woocommerce-page form .form-row .password-input input.input-text[type=password],
.woocommerce-page form .form-row .password-input input.input-text[type=text] {
  padding-right: 2.75rem;
}
.woocommerce form .form-row .password-input input::-ms-reveal,
.woocommerce-page form .form-row .password-input input::-ms-reveal {
  display: none;
}
.woocommerce form .form-row .password-input .show-password-input,
.woocommerce-page form .form-row .password-input .show-password-input {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #0A0F1F;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  min-height: 2.25rem;
  min-width: 2.25rem;
  padding: 0;
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  overflow: visible;
  z-index: 2;
}
.woocommerce form .form-row .password-input .show-password-input::before,
.woocommerce-page form .form-row .password-input .show-password-input::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23111111"/></svg>');
  content: "";
  display: block;
  height: 1.375rem;
  width: 1.375rem;
}
.woocommerce form .form-row .password-input .show-password-input.display-password::before,
.woocommerce-page form .form-row .password-input .show-password-input.display-password::before {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23111111"/></svg>');
}

.listing-filter-ui,
.shop-filter-ui {
  position: static;
  width: 0;
  height: 0;
  overflow: visible;
}

.woocommerce-shop #static-banner {
  height: 50vh;
  min-height: 600px;
}
.woocommerce-shop #static-banner h1 {
  margin-top: 1rem;
}
.woocommerce-shop #static-banner .banner-text {
  margin-top: 0;
}
.woocommerce-shop .col-1 ul.products {
  margin-top: var(--step-0);
}

.woocommerce-shop .blog-pagination,
.woocommerce-page.tax-product_cat .blog-pagination,
.woocommerce-page.tax-product_tag .blog-pagination,
.woocommerce-product-search .blog-pagination {
  width: 100%;
  margin-top: var(--step-2);
  padding-top: var(--step-2);
  border-top: 1px solid #dcdcdc;
  text-align: center;
}
.woocommerce-shop .blog-pagination .navigation,
.woocommerce-page.tax-product_cat .blog-pagination .navigation,
.woocommerce-page.tax-product_tag .blog-pagination .navigation,
.woocommerce-product-search .blog-pagination .navigation {
  margin: 0;
}
.woocommerce-shop .blog-pagination .nav-links,
.woocommerce-page.tax-product_cat .blog-pagination .nav-links,
.woocommerce-page.tax-product_tag .blog-pagination .nav-links,
.woocommerce-product-search .blog-pagination .nav-links {
  display: block;
}
.woocommerce-shop .blog-pagination ul.page-numbers,
.woocommerce-page.tax-product_cat .blog-pagination ul.page-numbers,
.woocommerce-page.tax-product_tag .blog-pagination ul.page-numbers,
.woocommerce-product-search .blog-pagination ul.page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.75rem;
  border: 0;
  white-space: normal;
  clear: none;
}
.woocommerce-shop .blog-pagination ul.page-numbers li,
.woocommerce-page.tax-product_cat .blog-pagination ul.page-numbers li,
.woocommerce-page.tax-product_tag .blog-pagination ul.page-numbers li,
.woocommerce-product-search .blog-pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
  border: 0;
  float: none;
  overflow: visible;
}
.woocommerce-shop .blog-pagination a.page-numbers,
.woocommerce-shop .blog-pagination span.page-numbers,
.woocommerce-page.tax-product_cat .blog-pagination a.page-numbers,
.woocommerce-page.tax-product_cat .blog-pagination span.page-numbers,
.woocommerce-page.tax-product_tag .blog-pagination a.page-numbers,
.woocommerce-page.tax-product_tag .blog-pagination span.page-numbers,
.woocommerce-product-search .blog-pagination a.page-numbers,
.woocommerce-product-search .blog-pagination span.page-numbers {
  display: inline-block;
  font-family: "ivypresto-display", serif;
  font-size: var(--step--1);
  color: #0A0F1F;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  line-height: 1.2;
}
.woocommerce-shop .blog-pagination a.page-numbers:hover,
.woocommerce-page.tax-product_cat .blog-pagination a.page-numbers:hover,
.woocommerce-page.tax-product_tag .blog-pagination a.page-numbers:hover,
.woocommerce-product-search .blog-pagination a.page-numbers:hover {
  text-decoration: underline;
}
.woocommerce-shop .blog-pagination span.page-numbers.current,
.woocommerce-page.tax-product_cat .blog-pagination span.page-numbers.current,
.woocommerce-page.tax-product_tag .blog-pagination span.page-numbers.current,
.woocommerce-product-search .blog-pagination span.page-numbers.current {
  font-weight: 600;
  text-decoration: underline;
}
.woocommerce-shop .blog-pagination span.page-numbers.dots,
.woocommerce-page.tax-product_cat .blog-pagination span.page-numbers.dots,
.woocommerce-page.tax-product_tag .blog-pagination span.page-numbers.dots,
.woocommerce-product-search .blog-pagination span.page-numbers.dots {
  padding: 0.35rem 0.25rem;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-message,
.product-row .woocommerce-notices-wrapper .woocommerce-message {
  padding: 0.5rem;
  padding-left: calc((100vw - min(90vw, 75rem)) / 2.5);
  padding-right: calc((100vw - min(90vw, 75rem)) / 2.5);
  font-size: var(--step--1);
  display: flex;
  margin-bottom: var(--step-2);
  align-items: center;
  justify-content: space-between;
  background-color: rgb(229.5, 229.5, 229.5);
  border: 0;
  border-radius: 5px;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-message a.button,
.product-row .woocommerce-notices-wrapper .woocommerce-message a.button {
  font-size: var(--step--1);
  border: 0;
  background: black;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button:hover,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-message a.button:hover,
.product-row .woocommerce-notices-wrapper .woocommerce-message a.button:hover {
  background: #1DAC07;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message:focus,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-message:focus,
.product-row .woocommerce-notices-wrapper .woocommerce-message:focus {
  outline: none;
}
.woocommerce .shop-info-bar,
.woocommerce-page .shop-info-bar,
.product-row .shop-info-bar {
  width: 100%;
}

#shop-filter.nb-filter-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 392px;
  max-width: 92vw !important;
  height: 100vh;
  height: 100dvh;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0;
  background-color: #fff;
  box-shadow: -24px 0 60px -24px rgba(0, 0, 0, 0.4);
  z-index: 10201 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%) !important;
  opacity: 1 !important;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.1, 1), visibility 0s linear 0.36s !important;
}
#shop-filter.nb-filter-drawer.open {
  transform: translateX(0) !important;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.1, 1), visibility 0s !important;
}
#shop-filter.nb-filter-drawer form#shop-products-filter {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.shop-filter-open {
  overflow: hidden;
}
body.shop-filter-open header#masthead {
  z-index: 100;
}

.shop-filter-ui .nb-filter-pill-wrap--float.shop-filter-pill-wrap--float {
  z-index: 10030;
}
.shop-filter-ui.is-open .nb-filter-pill-wrap--float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 28px));
}

.woocommerce-product-gallery .wc-product-gallery__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: block;
  width: 100%;
}
.woocommerce-product-gallery .woocommerce-product-gallery__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 100%;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-family: "ivypresto-display", serif;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  text-align: left;
  z-index: 2;
  pointer-events: none;
}
.woocommerce-product-gallery .woocommerce-product-gallery__caption .attachment-caption__link {
  pointer-events: auto;
}

.wc-product-loop__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: block;
  width: 100%;
}

.wc-product-loop__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 100%;
  margin: 0;
  padding: 0.35rem 0.5rem;
  font-family: "ivypresto-display", serif;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  text-align: left;
  z-index: 2;
  pointer-events: none;
}
.wc-product-loop__caption .attachment-caption__link {
  pointer-events: auto;
}

body.single-product #main, body.single-product #content {
  padding: 0;
}
body.single-product .product {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: var(--step-5);
  padding-left: calc((100vw - min(90vw, 75rem)) / 2.5);
  padding-right: calc((100vw - min(90vw, 75rem)) / 2.5);
}
@media (min-width: 1024px) {
  body.single-product .product {
    padding-top: 5rem;
  }
}
body.single-product .product span.onsale {
  display: none;
}
body.single-product .product .woocommerce-product-gallery {
  flex: 0 0 100%;
  opacity: 1 !important;
}
@media (min-width: 1024px) {
  body.single-product .product .woocommerce-product-gallery {
    flex: 0 0 calc(50% - 2rem);
  }
}
body.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  width: 100%;
  overflow: hidden;
}
body.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image {
  width: 100%;
  cursor: pointer;
}
body.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image a,
body.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}
body.single-product .product .woocommerce-product-gallery ol.flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
body.single-product .product .woocommerce-product-gallery ol.flex-control-thumbs li {
  flex: 0 0 calc(25% - 0.375rem);
}
body.single-product .product .woocommerce-product-gallery ol.flex-control-thumbs li img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
body.single-product .product .woocommerce-product-gallery ol.flex-control-thumbs li img.flex-active, body.single-product .product .woocommerce-product-gallery ol.flex-control-thumbs li img:hover {
  cursor: pointer;
  opacity: 1;
}
body.single-product .product .woocommerce-product-gallery.woocommerce-product-gallery--no-slider .woocommerce-product-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}
body.single-product .product .woocommerce-product-gallery.woocommerce-product-gallery--no-slider .woocommerce-product-gallery__image:first-child {
  grid-column: 1/-1;
}
body.single-product .product .woocommerce-product-gallery.woocommerce-product-gallery--no-slider .woocommerce-product-gallery__image:not(:first-child) img {
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.2s;
}
body.single-product .product .woocommerce-product-gallery.woocommerce-product-gallery--no-slider .woocommerce-product-gallery__image:not(:first-child):hover img {
  opacity: 1;
}
body.single-product .product .woocommerce-product-gallery.woocommerce-product-gallery--no-slider .woocommerce-product-gallery__image:only-child {
  grid-column: 1/-1;
}
body.single-product .product .summary {
  flex: 0 0 100%;
  margin-bottom: var(--step-5);
}
body.single-product .product .summary h1 {
  font-size: var(--step-4);
  margin-bottom: var(--step--2);
}
body.single-product .product .summary p.price {
  font-family: "ivypresto-display", serif;
  font-size: var(--step-1);
  font-weight: 300;
}
@media (min-width: 1024px) {
  body.single-product .product .summary {
    flex: 0 0 calc(50% - 2rem);
  }
}
body.single-product .product .summary .product_meta {
  display: none;
}
body.single-product .product .woocommerce-tabs,
body.single-product .product .related {
  flex: 0 0 100%;
}
body.single-product .product .related {
  flex: 0 0 100%;
  width: 100%;
  margin-top: var(--step-2);
  padding-top: var(--step-2);
  padding-bottom: 3.5rem;
  border-top: 1px solid #dcdcdc;
}
@media (min-width: 1024px) {
  body.single-product .product .related {
    padding-bottom: 5rem;
  }
}
body.single-product .product .related > h2 {
  margin: 0 0 var(--step-1);
  text-align: left;
  font-size: var(--step-2);
}
body.single-product .product .related ul.products {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  clear: both;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.single-product .product .related ul.products::before, body.single-product .product .related ul.products::after {
  display: none;
}
body.single-product .product .related ul.products.columns-1, body.single-product .product .related ul.products.columns-2, body.single-product .product .related ul.products.columns-3, body.single-product .product .related ul.products.columns-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.single-product .product .related ul.products.columns-1::before, body.single-product .product .related ul.products.columns-2::before, body.single-product .product .related ul.products.columns-3::before, body.single-product .product .related ul.products.columns-4::before {
  display: none;
}
body.single-product .product .related ul.products > li.product {
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
}
body.single-product .product .related ul.products > li.product a {
  width: 100%;
}
body.single-product .product .related ul.products > li.product .card__body {
  padding: var(--step--1);
}
@media (min-width: 1024px) {
  body.single-product .product .related ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  body.single-product .product .related ul.products.columns-1, body.single-product .product .related ul.products.columns-2, body.single-product .product .related ul.products.columns-3, body.single-product .product .related ul.products.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  body.single-product .product {
    margin-top: 0;
    margin-bottom: 0;
  }
}
body.single-product .summary .product_meta {
  display: none;
}
body.single-product .summary .product_meta span.sku_wrapper {
  font-size: var(--step--1);
  text-transform: uppercase;
}
body.single-product .summary .product_meta span.posted_in {
  display: none;
}
body.single-product .woocommerce-tabs {
  margin-top: var(--step-3);
  padding-top: var(--step-2);
  border-top: 1px solid #dcdcdc;
}
body.single-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.35rem 0.75rem;
  list-style: none;
  margin: 0 0 var(--step-1);
  padding: 0;
}
body.single-product .woocommerce-tabs ul.tabs::before, body.single-product .woocommerce-tabs ul.tabs::after {
  display: none;
}
body.single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
body.single-product .woocommerce-tabs ul.tabs li::before {
  display: none;
}
body.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  font-family: "ivypresto-display", serif;
  font-size: var(--step-0);
  font-weight: 400;
  color: #0A0F1F;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  line-height: 1.2;
  border: 0;
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
}
body.single-product .woocommerce-tabs ul.tabs li.active a {
  font-weight: 600;
  text-decoration: underline;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 75ch;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
  display: none;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel p,
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel li {
  font-size: var(--step--1);
  line-height: 1.5;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes th,
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dcdcdc;
  font-size: var(--step--1);
  vertical-align: top;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes th {
  font-family: "ivypresto-display", serif;
  font-weight: 600;
  width: 40%;
  padding-right: 1rem;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes tr:last-child th,
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes tr:last-child td {
  border-bottom: 0;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments {
  margin-top: 0;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel #reviews .woocommerce-Reviews-title {
  font-size: var(--step-1);
  margin: 0 0 var(--step--1);
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel #reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.single-product .woocommerce-tabs .woocommerce-Tabs-panel #reviews .comment-text p {
  font-size: var(--step--1);
}
body.single-product form.cart .bw-single-price-area .bw-select-price {
  display: flex;
}
body.single-product form.cart .bw-single-price-area .bw-select-price button {
  font-size: var(--step-0);
  font-weight: 600;
  height: 40px;
  display: flex;
  text-align: center;
  color: #fff;
  min-width: auto;
  border: 2px solid #000;
}
body.single-product form.cart .bw-single-price-area .bw-select-price button:hover {
  background-color: black;
}
body.single-product form.cart .bw-single-price-area .bw-select-price button.price-selected {
  background-color: black;
  border: 2px dashed #000;
}
body.single-product form.cart .quantity,
body.single-product form.cart #quantity-wrapper,
body.single-product form.variations_form .quantity,
body.single-product form.variations_form #quantity-wrapper {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}
body.single-product form.cart .quantity .quantity-label,
body.single-product form.cart #quantity-wrapper .quantity-label,
body.single-product form.variations_form .quantity .quantity-label,
body.single-product form.variations_form #quantity-wrapper .quantity-label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  margin: 0;
}
body.single-product form.cart .quantity .quantity-controls,
body.single-product form.cart #quantity-wrapper .quantity-controls,
body.single-product form.variations_form .quantity .quantity-controls,
body.single-product form.variations_form #quantity-wrapper .quantity-controls {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #cdcdcd;
  border-radius: 0;
  background: #fff;
}
body.single-product form.cart .quantity .qty-btn:first-child,
body.single-product form.cart #quantity-wrapper .qty-btn:first-child,
body.single-product form.variations_form .quantity .qty-btn:first-child,
body.single-product form.variations_form #quantity-wrapper .qty-btn:first-child {
  border-right: 1px solid #cdcdcd;
}
body.single-product form.cart .quantity .qty-btn:last-child,
body.single-product form.cart #quantity-wrapper .qty-btn:last-child,
body.single-product form.variations_form .quantity .qty-btn:last-child,
body.single-product form.variations_form #quantity-wrapper .qty-btn:last-child {
  border-left: 1px solid #cdcdcd;
}
body.single-product form.cart .quantity .qty-btn,
body.single-product form.cart #quantity-wrapper .qty-btn,
body.single-product form.variations_form .quantity .qty-btn,
body.single-product form.variations_form #quantity-wrapper .qty-btn {
  width: 2rem;
  min-width: 2rem;
  height: 45px;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0A0F1F;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
}
body.single-product form.cart .quantity .qty-btn::before,
body.single-product form.cart #quantity-wrapper .qty-btn::before,
body.single-product form.variations_form .quantity .qty-btn::before,
body.single-product form.variations_form #quantity-wrapper .qty-btn::before {
  display: none !important;
}
body.single-product form.cart .quantity .qty-btn:hover,
body.single-product form.cart #quantity-wrapper .qty-btn:hover,
body.single-product form.variations_form .quantity .qty-btn:hover,
body.single-product form.variations_form #quantity-wrapper .qty-btn:hover {
  background-color: #1DAC07;
  color: #fff;
}
body.single-product form.cart .quantity input.qty,
body.single-product form.cart #quantity-wrapper input.qty,
body.single-product form.variations_form .quantity input.qty,
body.single-product form.variations_form #quantity-wrapper input.qty {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  margin: 0;
  padding: 0 0.25rem;
  border: 0;
  background: #F5F5F5;
  text-align: center;
  font-size: var(--step-0);
  appearance: textfield;
  -moz-appearance: textfield;
  box-sizing: border-box;
  border-radius: 0;
}
body.single-product form.cart .quantity input.qty::-webkit-outer-spin-button, body.single-product form.cart .quantity input.qty::-webkit-inner-spin-button,
body.single-product form.cart #quantity-wrapper input.qty::-webkit-outer-spin-button,
body.single-product form.cart #quantity-wrapper input.qty::-webkit-inner-spin-button,
body.single-product form.variations_form .quantity input.qty::-webkit-outer-spin-button,
body.single-product form.variations_form .quantity input.qty::-webkit-inner-spin-button,
body.single-product form.variations_form #quantity-wrapper input.qty::-webkit-outer-spin-button,
body.single-product form.variations_form #quantity-wrapper input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.single-product form.cart:not(.variations_form) #quantity-wrapper {
  margin-bottom: 1rem;
}
body.single-product form.cart button.single_add_to_cart_button,
body.single-product form.variations_form button.single_add_to_cart_button {
  width: fit-content;
  margin: 0.5rem 0 0;
  margin-left: 0 !important;
}
body.single-product form.variations_form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--step-1);
  border-top: 1px dashed #cdcdcd;
  padding-top: var(--step-0);
}
body.single-product form.variations_form .single_variation_wrap,
body.single-product form.variations_form .woocommerce-variation-add-to-cart {
  display: contents;
}
body.single-product form.variations_form span.price {
  font-family: "ivypresto-display", serif;
  font-size: var(--step-1);
  font-weight: 300;
}
body.single-product form.variations_form .woocommerce-variation {
  order: 0;
  flex-basis: 100%;
}
body.single-product form.variations_form .variations-wrapper {
  order: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
body.single-product form.variations_form .variations-wrapper .variation-select {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
body.single-product form.variations_form .variations-wrapper .variation-select .variation-select__label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  margin: 0;
}
body.single-product form.variations_form .variations-wrapper .variation-select select {
  border: 1px solid #F5F5F5;
  padding: 0 2.25rem 0 0.6rem;
  height: 45px;
  min-width: 10rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2396ADCB' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  font-size: var(--step--1);
  font-weight: 400;
}
body.single-product form.variations_form .variations-wrapper .variation-select a.reset_variations {
  display: none !important;
}
body.single-product form.variations_form .quantity,
body.single-product form.variations_form #quantity-wrapper {
  order: 2;
}
body.single-product form.variations_form button.single_add_to_cart_button {
  order: 3;
  flex-basis: 100%;
}

.woocommerce-account #main {
  padding-left: calc((100vw - min(90vw, 75rem)) / 2.5);
  padding-right: calc((100vw - min(90vw, 75rem)) / 2.5);
}

.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}
.woocommerce-account .woocommerce .woocommerce-notices-wrapper {
  flex-basis: 100%;
}

@media only screen and (min-width: 769px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 22%;
    max-width: 22%;
    border: 1px solid #dcdcdc;
    overflow: visible;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin-bottom: 0;
    overflow: visible;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #dcdcdc;
    overflow: visible;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    flex: 1 1 0;
    min-width: 0;
  }
  .woocommerce-account .woocommerce-MyAccount-content .col2-set {
    display: flex;
    gap: 2rem;
  }
  .woocommerce-account .woocommerce-MyAccount-content .col2-set h3 {
    font-size: var(--step-1);
  }
  .woocommerce-account .woocommerce-MyAccount-content .col2-set .col-1,
  .woocommerce-account .woocommerce-MyAccount-content .col2-set .col-2 {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
  }
}
.woocommerce-account .woocommerce > h2 {
  margin: 0 0 0.25rem;
  display: none;
  font-family: "ivypresto-display", serif;
  font-weight: 300;
  color: #0A0F1F;
}
.woocommerce-account .woocommerce .woocommerce-form-login {
  flex: 1 1 100%;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
  margin: 0 auto;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password {
  margin-top: 0.75rem;
}

.woocommerce-account .woocommerce-MyAccount-content .form-row,
.woocommerce-account #customer_login .form-row,
.woocommerce-account .woocommerce-form-login .form-row {
  margin-bottom: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row label,
.woocommerce-account #customer_login .form-row label,
.woocommerce-account .woocommerce-form-login .form-row label {
  display: block;
  font-size: var(--step--1);
  font-weight: 500;
  color: #0A0F1F;
  margin-bottom: 0.25rem;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row input[type=text],
.woocommerce-account .woocommerce-MyAccount-content .form-row input[type=email],
.woocommerce-account .woocommerce-MyAccount-content .form-row input[type=tel],
.woocommerce-account .woocommerce-MyAccount-content .form-row input[type=number],
.woocommerce-account .woocommerce-MyAccount-content .form-row input[type=password],
.woocommerce-account .woocommerce-MyAccount-content .form-row input[type=url],
.woocommerce-account .woocommerce-MyAccount-content .form-row select,
.woocommerce-account .woocommerce-MyAccount-content .form-row textarea,
.woocommerce-account #customer_login .form-row input[type=text],
.woocommerce-account #customer_login .form-row input[type=email],
.woocommerce-account #customer_login .form-row input[type=tel],
.woocommerce-account #customer_login .form-row input[type=number],
.woocommerce-account #customer_login .form-row input[type=password],
.woocommerce-account #customer_login .form-row input[type=url],
.woocommerce-account #customer_login .form-row select,
.woocommerce-account #customer_login .form-row textarea,
.woocommerce-account .woocommerce-form-login .form-row input[type=text],
.woocommerce-account .woocommerce-form-login .form-row input[type=email],
.woocommerce-account .woocommerce-form-login .form-row input[type=tel],
.woocommerce-account .woocommerce-form-login .form-row input[type=number],
.woocommerce-account .woocommerce-form-login .form-row input[type=password],
.woocommerce-account .woocommerce-form-login .form-row input[type=url],
.woocommerce-account .woocommerce-form-login .form-row select,
.woocommerce-account .woocommerce-form-login .form-row textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  background: #f5f5f5;
  font-size: var(--step--1);
  font-family: "basic-sans", sans-serif;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row select,
.woocommerce-account #customer_login .form-row select,
.woocommerce-account .woocommerce-form-login .form-row select {
  height: auto;
  min-height: 2.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account #customer_login .button,
.woocommerce-account .woocommerce-form-login .button {
  display: block;
  width: fit-content;
  margin-top: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content .col2-set .col-1, .woocommerce-account .woocommerce-MyAccount-content .col2-set .col-2,
.woocommerce-account #customer_login .col2-set .col-1,
.woocommerce-account #customer_login .col2-set .col-2,
.woocommerce-account .woocommerce-form-login .col2-set .col-1,
.woocommerce-account .woocommerce-form-login .col2-set .col-2 {
  display: block;
  margin-bottom: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content .col2-set h2,
.woocommerce-account #customer_login .col2-set h2,
.woocommerce-account .woocommerce-form-login .col2-set h2 {
  font-size: var(--step-1);
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table p,
.woocommerce-account #customer_login .woocommerce-orders-table p,
.woocommerce-account .woocommerce-form-login .woocommerce-orders-table p {
  font-size: inherit;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table .button,
.woocommerce-account #customer_login .woocommerce-orders-table .button,
.woocommerce-account .woocommerce-form-login .woocommerce-orders-table .button {
  margin-top: 0;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-login__rememberme,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form__label-for-checkbox,
.woocommerce-account #customer_login .woocommerce-form-login__rememberme,
.woocommerce-account #customer_login .woocommerce-form__label-for-checkbox,
.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme,
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
  font-size: var(--step--1);
  line-height: 1.3;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-login__rememberme input[type=checkbox],
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form__label-for-checkbox input[type=checkbox],
.woocommerce-account #customer_login .woocommerce-form-login__rememberme input[type=checkbox],
.woocommerce-account #customer_login .woocommerce-form__label-for-checkbox input[type=checkbox],
.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme input[type=checkbox],
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  flex-shrink: 0;
  accent-color: black;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table,
.woocommerce-account #customer_login table.shop_table,
.woocommerce-account .woocommerce-form-login table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: var(--step--1);
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead tr,
.woocommerce-account #customer_login table.shop_table thead tr,
.woocommerce-account .woocommerce-form-login table.shop_table thead tr {
  border-bottom: 1px solid #dcdcdc;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
.woocommerce-account #customer_login table.shop_table th,
.woocommerce-account #customer_login table.shop_table td,
.woocommerce-account .woocommerce-form-login table.shop_table th,
.woocommerce-account .woocommerce-form-login table.shop_table td {
  padding: 0.75rem 0.5rem 0.75rem 0;
  border-bottom: 1px solid #dcdcdc;
  text-align: left;
  vertical-align: top;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th,
.woocommerce-account #customer_login table.shop_table thead th,
.woocommerce-account .woocommerce-form-login table.shop_table thead th {
  font-family: "ivypresto-display", serif;
  font-weight: 600;
  font-size: var(--step--1);
  color: #0A0F1F;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
.woocommerce-account #customer_login table.shop_table td,
.woocommerce-account .woocommerce-form-login table.shop_table td {
  color: #0A0F1F;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table .button,
.woocommerce-account #customer_login table.shop_table .button,
.woocommerce-account .woocommerce-form-login table.shop_table .button {
  white-space: nowrap;
}

nav.woocommerce-MyAccount-navigation {
  overflow: visible;
}

nav.woocommerce-MyAccount-navigation ul {
  background-color: transparent;
  list-style-type: none;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 2rem;
  overflow: visible;
}
@media (max-width: 1023px) {
  nav.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
  }
}

nav.woocommerce-MyAccount-navigation ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  background-color: #f5f5f5;
  overflow: visible;
}
nav.woocommerce-MyAccount-navigation ul li:first-child {
  margin-top: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
nav.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

nav.woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  color: #0A0F1F;
  font-weight: 500;
  transition: none;
}

nav.woocommerce-MyAccount-navigation ul li.is-active {
  z-index: 1;
  background-color: black;
  color: #fff;
}

nav.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: transparent;
  color: #fff;
  font-weight: 600;
}

nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover {
  z-index: 1;
  background: rgb(127.5, 127.5, 127.5);
  color: #fff;
}

nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover > a {
  color: #fff;
}

@media only screen and (min-width: 769px) {
  nav.woocommerce-MyAccount-navigation ul li.is-active::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent black;
    pointer-events: none;
  }
  nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent rgb(127.5, 127.5, 127.5);
    pointer-events: none;
  }
}
.woocommerce-checkout #main {
  padding-left: calc((100vw - min(90vw, 75rem)) / 2.5);
  padding-right: calc((100vw - min(90vw, 75rem)) / 2.5);
}
.woocommerce-checkout section.padding-medium:first-of-type {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.woocommerce-checkout .checkout-coupon-card {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  margin-bottom: 1.5rem;
}
.woocommerce-checkout #order_review .checkout-coupon-card {
  box-shadow: none;
  border: 1px solid #dcdcdc;
  background: #f5f5f5;
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.woocommerce-checkout .checkout-coupon-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: #0A0F1F;
  font-size: var(--step--1);
}
.woocommerce-checkout .checkout-coupon-intro strong {
  font-family: "ivypresto-display", serif;
  font-size: var(--step-0);
  font-weight: 300;
}
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
}
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .form-row {
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
  clear: none;
  display: flex;
  align-items: stretch;
}
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .form-row-first {
  flex: 1 1 220px;
}
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .form-row-last {
  flex: 0 0 auto;
}
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon input#coupon_code {
  width: 100%;
  min-height: 45px;
  padding: 0 0.75rem;
  border: 1px solid #dcdcdc;
  border-right: 0;
  border-radius: 0.75rem 0 0 0.75rem;
  background: #f5f5f5;
  font-size: var(--step--1);
}
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon button[name=apply_coupon] {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  border-radius: 0 0.75rem 0.75rem 0;
  white-space: nowrap;
  border: 0;
}
.woocommerce-checkout #order_review .checkout_coupon.woocommerce-form-coupon input#coupon_code {
  background: #fff;
}
.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper {
  padding: 2rem;
  background-color: #D4E2CF;
  margin-bottom: 1rem;
}
.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper:empty, .woocommerce-checkout .woocommerce .woocommerce-notices-wrapper:not(:has(.woocommerce-error, .woocommerce-info, .woocommerce-message, .woocommerce-notice, ul, li, p)) {
  display: none;
  padding: 0;
  margin-bottom: 0;
}
.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper ul li {
  font-size: var(--step--1);
}
.woocommerce-checkout form.woocommerce-checkout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}
.woocommerce-checkout form.woocommerce-checkout #customer_details {
  align-self: start;
  flex: 1 1 100%;
  min-width: 0;
}
.woocommerce-checkout form.woocommerce-checkout #order_review {
  align-self: start;
  flex: 1 1 100%;
  min-width: 0;
}
.woocommerce-checkout form.woocommerce-checkout ul.woocommerce-error {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgb(229.5, 229.5, 229.5);
  border-radius: 0.5rem;
  border: 1px solid black;
  width: 100%;
}
@media (min-width: 768px) {
  .woocommerce-checkout form.woocommerce-checkout #customer_details,
  .woocommerce-checkout form.woocommerce-checkout #order_review {
    flex: 0 0 calc(50% - 1rem);
  }
  .woocommerce-checkout form.woocommerce-checkout #order_review {
    position: sticky;
    top: 2rem;
  }
}
.woocommerce-checkout #customer_details h3 {
  font-size: var(--step-1);
  font-family: "ivypresto-display", serif;
  font-weight: 300;
  color: #0A0F1F;
  margin: 0 0 var(--step-0);
}
.woocommerce-checkout #customer_details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  flex: 1 1 auto;
  min-width: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
  gap: 0 !important;
}
.woocommerce-checkout #customer_details .col-1 .woocommerce-shipping-fields {
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.woocommerce-checkout #customer_details .col-1 .woocommerce-shipping-fields .shipping_address {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dcdcdc;
}
.woocommerce-checkout #customer_details .col-1 .woocommerce-shipping-fields:not(:has(#ship-to-different-address-checkbox:checked)) .shipping_address {
  display: none;
}
.woocommerce-checkout #customer_details .col-1 #ship-to-different-address {
  margin: 0 0 var(--step-0);
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #0A0F1F;
}
.woocommerce-checkout #customer_details .col-1 #ship-to-different-address label.checkbox {
  position: static;
  width: auto;
  height: auto;
  padding: 0.9rem 1rem;
  margin: 0;
  opacity: 1;
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--step-0);
  line-height: 1.3;
  border: 1px solid #dcdcdc;
  border-radius: 0.75rem;
}
.woocommerce-checkout #customer_details .col-1 #ship-to-different-address span {
  flex: 1 1 auto;
  color: #0A0F1F !important;
}
.woocommerce-checkout #customer_details .col-1 #ship-to-different-address input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  flex-shrink: 0;
  opacity: 1;
  position: static;
  pointer-events: auto;
  accent-color: black;
}
.woocommerce-checkout #customer_details .col-1 .shipping_address .form-row {
  margin-bottom: 1rem;
}
.woocommerce-checkout #customer_details .col-1 .woocommerce-additional-fields {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dcdcdc;
}
.woocommerce-checkout #customer_details .col-1 .woocommerce-additional-fields h3 {
  font-size: var(--step-1);
  font-family: "ivypresto-display", serif;
  font-weight: 300;
  color: #0A0F1F;
  margin: 0 0 var(--step-0);
}
.woocommerce-checkout #customer_details .form-row,
.woocommerce-checkout .woocommerce-additional-fields .form-row {
  margin-bottom: 1rem;
}
.woocommerce-checkout #customer_details .form-row label,
.woocommerce-checkout .woocommerce-additional-fields .form-row label {
  display: block;
  font-size: var(--step--1);
  font-weight: 500;
  color: #0A0F1F;
  margin-bottom: 0.25rem;
}
.woocommerce-checkout #customer_details .form-row input[type=text],
.woocommerce-checkout #customer_details .form-row input[type=email],
.woocommerce-checkout #customer_details .form-row input[type=tel],
.woocommerce-checkout #customer_details .form-row input[type=number],
.woocommerce-checkout #customer_details .form-row select,
.woocommerce-checkout #customer_details .form-row textarea,
.woocommerce-checkout .woocommerce-additional-fields .form-row input[type=text],
.woocommerce-checkout .woocommerce-additional-fields .form-row input[type=email],
.woocommerce-checkout .woocommerce-additional-fields .form-row input[type=tel],
.woocommerce-checkout .woocommerce-additional-fields .form-row input[type=number],
.woocommerce-checkout .woocommerce-additional-fields .form-row select,
.woocommerce-checkout .woocommerce-additional-fields .form-row textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  background: #f5f5f5;
  font-size: var(--step--1);
  font-family: "basic-sans", sans-serif;
}
.woocommerce-checkout #customer_details .form-row select,
.woocommerce-checkout .woocommerce-additional-fields .form-row select {
  height: auto;
  min-height: 2.5rem;
}
.woocommerce-checkout #order_review {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
}
.woocommerce-checkout #order_review #order_review_heading {
  margin: 0 0 var(--step-0);
  font-size: var(--step-1);
  font-family: "ivypresto-display", serif;
  font-weight: 300;
  color: #0A0F1F;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  font-size: var(--step--1);
  margin-bottom: 1rem;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table ul {
  list-style: none;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead tr {
  border-bottom: 1px solid #dcdcdc;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-family: "ivypresto-display", serif;
  font-weight: 600;
  color: #0A0F1F;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #dcdcdc;
  vertical-align: middle;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td#e_deliverydate_0_duplicate {
  font-family: "ivypresto-display", serif;
  font-weight: 600;
  color: #0A0F1F;
  background-color: rgb(191.25, 191.25, 191.25);
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td#e_deliverydate_0_duplicate + td {
  background-color: rgb(191.25, 191.25, 191.25);
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td#e_deliverydate_0_duplicate + td input {
  background-color: #fff !important;
  border-radius: 0;
  border: 0;
  padding: 0.25rem;
  padding: 0.25rem 0.5rem;
  color: #0A0F1F;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td#e_deliverydate_0_duplicate + td p {
  margin: 0;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .order-total td {
  border-bottom: 0;
  font-size: var(--step-0);
  font-weight: 600;
  padding-top: 1rem;
}
.woocommerce-checkout #order_review #payment {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #dcdcdc;
}
.woocommerce-checkout #order_review #payment .payment_methods {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.woocommerce-checkout #order_review #payment .payment_methods li {
  margin-bottom: 0.5rem;
}
.woocommerce-checkout #order_review #payment .place-order {
  margin-top: 1rem;
}
.woocommerce-checkout #order_review #payment #place_order {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-size: var(--step-0);
}

.ui-datepicker {
  background: #fff;
  border: 1px solid #dcdcdc !important;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(255, 234, 149, 0.1);
  font-family: inherit;
  padding: 0 !important;
  overflow: hidden;
}
.ui-datepicker a:hover {
  text-decoration: none !important;
}
.ui-datepicker .ui-datepicker-header {
  background: black !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 10px !important;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  color: #fff;
  font-size: 1rem;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title span {
  font-family: "ivypresto-display", serif !important;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  background: transparent !important;
  border: 1px solid #000 !important;
  cursor: pointer;
  display: flex;
  border-radius: 4px !important;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover {
  background: #000 !important;
  color: black;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover span:before,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover span:before {
  text-decoration: none !important;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  background-image: none !important;
  overflow: visible !important;
  text-indent: 0 !important;
  width: auto !important;
  height: auto !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: auto;
  left: auto;
  margin: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon-circle-triangle-w::before,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon-circle-triangle-w::before {
  content: "←";
  color: #fff;
  font-size: 1.1rem;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon-circle-triangle-e::before,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon-circle-triangle-e::before {
  content: "→";
  color: #fff;
  font-size: 1.1rem;
}
.ui-datepicker .ui-datepicker-calendar {
  border-collapse: collapse;
  margin: 0;
  width: 100%;
}
.ui-datepicker .ui-datepicker-calendar thead th {
  background: rgb(191.25, 191.25, 191.25) !important;
  color: black;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 4px;
  text-align: center;
  text-transform: uppercase;
  border: none;
}
.ui-datepicker .ui-datepicker-calendar tbody td {
  border: 1px solid #dcdcdc;
  padding: 3px;
  background: #fff !important;
}
.ui-datepicker .ui-datepicker-calendar tbody td a.ui-state-default,
.ui-datepicker .ui-datepicker-calendar tbody td span.ui-state-default {
  background: #fff !important;
  border: none !important;
  border-radius: 6px;
  color: #0A0F1F !important;
  display: block;
  font-weight: 500;
  padding: 6px 2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.ui-datepicker .ui-datepicker-calendar tbody td a.ui-state-default:hover {
  background: rgb(191.25, 191.25, 191.25) !important;
  color: black !important;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-today {
  background: #FF9500 !important;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-today a.ui-state-default,
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-today span.ui-state-default {
  background: #FF9500 !important;
  color: #ffea95 !important;
  font-weight: 700;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-current-day {
  background: black !important;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-current-day a.ui-state-active,
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-current-day a.ui-state-default.ui-state-active {
  background: black !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 6px;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-unselectable, .ui-datepicker .ui-datepicker-calendar tbody td.ui-state-disabled {
  background: #fafafa !important;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-unselectable span.ui-state-default, .ui-datepicker .ui-datepicker-calendar tbody td.ui-state-disabled span.ui-state-default {
  background: #fafafa !important;
  color: #dcdcdc !important;
  cursor: not-allowed;
  text-decoration: line-through;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-other-month {
  background: #fafafa !important;
}
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-other-month span.ui-state-default {
  color: #dcdcdc !important;
  background: #fafafa !important;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background: #fff;
  border-top: 1px solid #dcdcdc !important;
  padding: 10px !important;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-close {
  background: #fff !important;
  border: 2px solid #000 !important;
  border-radius: 6px !important;
  color: #000 !important;
  cursor: pointer;
  font-weight: 600;
  padding: 6px 16px !important;
  transition: all 0.15s ease;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current:hover,
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-close:hover {
  background: #000 !important;
  color: #fff !important;
}

.orddd_time_slot_select,
.orddd-time-slot-select {
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  color: #0A0F1F;
  padding: 8px 12px;
  width: 100%;
}
.orddd_time_slot_select:focus,
.orddd-time-slot-select:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.woocommerce-order-received #main {
  padding-left: calc((100vw - min(90vw, 75rem)) / 2.5);
  padding-right: calc((100vw - min(90vw, 75rem)) / 2.5);
}
.woocommerce-order-received section.padding-medium:first-of-type {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.woocommerce-order-received section.padding-medium:first-of-type h2 {
  display: none;
}
.woocommerce-order-received .woocommerce-thankyou-order-received {
  margin-bottom: 1.5rem;
  font-size: var(--step-3);
  font-family: "ivypresto-display", serif;
  text-align: center;
}
.woocommerce-order-received ul.order_details,
.woocommerce-order-received .woocommerce-order-overview {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: var(--step--1);
  color: #0A0F1F;
}
.woocommerce-order-received ul.order_details li,
.woocommerce-order-received .woocommerce-order-overview li {
  margin: 0;
  padding: 0;
  border: 0;
}
.woocommerce-order-received ul.order_details li strong,
.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block;
  font-family: "ivypresto-display", serif;
  font-weight: 600;
  font-size: var(--step--1);
  margin-top: 0.25rem;
}
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
  margin-top: 2rem;
}
.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
  font-family: "ivypresto-display", serif;
  font-size: var(--step-1);
  font-weight: 300;
  margin: 0 0 1rem;
}
.woocommerce-order-received table.shop_table.order_details {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: var(--step--1);
}
.woocommerce-order-received table.shop_table.order_details th,
.woocommerce-order-received table.shop_table.order_details td {
  padding: 0.75rem 0;
  border-bottom: 1px solid #dcdcdc;
  text-align: left;
  vertical-align: top;
}
.woocommerce-order-received table.shop_table.order_details thead th {
  font-family: "ivypresto-display", serif;
  font-weight: 600;
}
.woocommerce-order-received .woocommerce-customer-details .col2-set {
  display: flex;
  justify-content: space-between;
}
.woocommerce-order-received .woocommerce-customer-details .col2-set .col-1, .woocommerce-order-received .woocommerce-customer-details .col2-set .col-2 {
  padding: 0;
  display: block;
  flex: 0 0 50%;
}
.woocommerce-order-received .woocommerce-customer-details .col2-set address {
  font-style: normal;
  line-height: 1.5;
  color: #0A0F1F;
}

.woocommerce-cart #main {
  padding-left: calc((100vw - min(90vw, 75rem)) / 2.5);
  padding-right: calc((100vw - min(90vw, 75rem)) / 2.5);
}
.woocommerce-cart form.woocommerce-cart-form {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  padding: 1rem 2rem;
}
.woocommerce-cart .woocommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
  flex-basis: 100%;
}
.woocommerce-cart .woocommerce form.woocommerce-cart-form {
  flex: 1 1 60%;
  min-width: 0;
}
.woocommerce-cart .woocommerce .cart-collaterals {
  flex: 1 1 280px;
  min-width: 0;
}
.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}
.woocommerce-cart table.shop_table thead tr {
  border-bottom: 1px solid #dcdcdc;
}
.woocommerce-cart table.shop_table th {
  font-size: var(--step-0);
  font-family: "ivypresto-display", serif;
  text-align: left;
  font-style: italic;
  color: #0A0F1F;
}
.woocommerce-cart table.shop_table th.product-remove {
  width: 2rem;
}
.woocommerce-cart table.shop_table td {
  padding: 1rem 0.75rem;
  vertical-align: middle;
  border-bottom: 1px solid #dcdcdc;
  font-size: var(--step--1);
}
.woocommerce-cart table.shop_table td.product-thumbnail {
  width: 80px;
  padding-right: 0;
}
.woocommerce-cart table.shop_table td.product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
}
.woocommerce-cart table.shop_table td.product-name a {
  color: #0A0F1F;
  text-decoration: none;
  font-weight: 500;
}
.woocommerce-cart table.shop_table td.product-name a:hover {
  color: black;
}
.woocommerce-cart table.shop_table td.product-name .variation {
  font-size: var(--step--2);
  margin-top: 0.25rem;
}
.woocommerce-cart table.shop_table td.product-name .variation dt, .woocommerce-cart table.shop_table td.product-name .variation dd {
  display: inline;
  margin: 0;
}
.woocommerce-cart table.shop_table td.product-name .variation dt::after {
  content: ":";
}
.woocommerce-cart table.shop_table td.product-name .variation dd::after {
  content: " ";
}
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
  white-space: nowrap;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper {
  margin: 0;
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper label {
  display: none;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .quantity-controls {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #dcdcdc;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .quantity-controls button {
  border-radius: 0;
  background-color: #fff;
  border: 0;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .quantity-controls button:hover {
  background-color: #1DAC07;
  color: #fff;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .qty-btn {
  width: 2rem;
  height: 40px;
  padding: 0;
  border: 0;
  border-right: 1px solid #dcdcdc;
  background: #f5f5f5;
  color: #0A0F1F;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--step--1);
  transition: none;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .qty-btn:first-child {
  border-right: 1px solid #dcdcdc;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .qty-btn:last-child {
  border-left: 1px solid #dcdcdc;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .qty-btn::before {
  display: none !important;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper .qty-btn:hover {
  background: #000 !important;
  top: 0;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper input.qty {
  width: 2.75rem;
  min-width: 2.75rem;
  max-width: 3.5rem;
  height: 40px;
  text-align: center;
  border: 0;
  background: #f5f5f5;
  font-size: var(--step-0);
  appearance: textfield;
  -moz-appearance: textfield;
}
.woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper input.qty::-webkit-outer-spin-button, .woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media (min-width: 1024px) {
  .woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper {
    display: inline-flex;
  }
}
.woocommerce-cart table.shop_table td.product-remove a.remove {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: black;
  text-decoration: none;
}
.woocommerce-cart table.shop_table td.product-remove a.remove:hover {
  color: #E84545 !important;
  background: transparent;
  text-decoration: none;
}
.woocommerce-cart table.shop_table tr.cart_item + tr td,
.woocommerce-cart table.shop_table td.actions {
  padding-top: 1rem;
}
.woocommerce-cart table.shop_table td.actions {
  border-bottom: 0;
}
.woocommerce-cart table.shop_table td.actions button[name=update_cart] {
  margin-top: 1rem;
  display: block;
  font-size: var(--step--1);
  height: 45px;
}
.woocommerce-cart table.shop_table td.actions::after {
  content: "";
  display: table;
  clear: both;
}
.woocommerce-cart .cart_totals {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  padding: 2rem;
}
.woocommerce-cart .cart_totals .cart-coupon-card {
  box-shadow: none;
  border: 1px solid #dcdcdc;
  background: #f5f5f5;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.woocommerce-cart .cart_totals .checkout-coupon-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: #0A0F1F;
  font-size: var(--step--1);
}
.woocommerce-cart .cart_totals .checkout-coupon-intro strong {
  font-family: "ivypresto-display", serif;
  font-size: var(--step-0);
  font-weight: 300;
}
.woocommerce-cart .cart_totals .cart-totals-coupon-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
}
.woocommerce-cart .cart_totals .cart-totals-coupon-form .form-row {
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
  clear: none;
  display: flex;
  align-items: stretch;
}
.woocommerce-cart .cart_totals .cart-totals-coupon-form .form-row-first {
  flex: 1 1 220px;
}
.woocommerce-cart .cart_totals .cart-totals-coupon-form .form-row-last {
  flex: 0 0 auto;
}
.woocommerce-cart .cart_totals .cart-totals-coupon-form input#cart_coupon_code {
  width: 100%;
  min-height: 45px;
  padding: 0 0.75rem;
  border: 1px solid #dcdcdc;
  border-right: 0;
  border-radius: 0.75rem 0 0 0.75rem;
  background: #fff;
  font-size: var(--step--1);
}
.woocommerce-cart .cart_totals .cart-totals-coupon-form button[name=core_nb_apply_cart_coupon] {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  border-radius: 0 0.75rem 0.75rem 0;
  white-space: nowrap;
  border: 0;
}
.woocommerce-cart .cart_totals ul#shipping_method {
  list-style: none;
}
.woocommerce-cart .cart_totals h2 {
  font-size: var(--step-1);
  font-weight: 300;
  margin-bottom: var(--step-0);
}
.woocommerce-cart .cart_totals table.shop_table th {
  font-size: var(--step--1);
  font-family: "basic-sans", sans-serif;
  padding: 0.75rem 0;
  width: 40%;
}
.woocommerce-cart .cart_totals table.shop_table td {
  padding: 0.75rem 0;
}
.woocommerce-cart .cart_totals table.shop_table tr:last-child td,
.woocommerce-cart .cart_totals table.shop_table tr:last-child th {
  border-bottom: 0;
  font-size: var(--step-0);
  font-weight: 600;
}
.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
  margin-top: var(--step-1);
}
.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-size: var(--step-0);
}
.woocommerce-cart .woocommerce-cart-form ~ p,
.woocommerce-cart p.cart-empty {
  font-size: var(--step-0);
  margin-bottom: var(--step-1);
}
.woocommerce-cart .return-to-shop a.button {
  display: inline-block;
}
@media (max-width: 767px) {
  .woocommerce-cart .cart_totals .cart-totals-coupon-form {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .woocommerce-cart .cart_totals .cart-totals-coupon-form .form-row-first,
  .woocommerce-cart .cart_totals .cart-totals-coupon-form .form-row-last {
    flex: 1 1 100%;
  }
  .woocommerce-cart .cart_totals .cart-totals-coupon-form input#cart_coupon_code {
    border-right: 1px solid #dcdcdc;
    border-radius: 0.75rem;
  }
  .woocommerce-cart .cart_totals .cart-totals-coupon-form button[name=core_nb_apply_cart_coupon] {
    width: 100%;
    border-radius: 0.75rem;
  }
  .woocommerce-cart table.shop_table thead {
    display: table-header-group;
  }
  .woocommerce-cart table.shop_table thead tr {
    display: grid;
    grid-template-columns: auto 50px 1fr;
    grid-template-areas: "remove thumb name";
  }
  .woocommerce-cart table.shop_table thead th {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #dcdcdc;
  }
  .woocommerce-cart table.shop_table thead th.product-remove {
    grid-area: remove;
  }
  .woocommerce-cart table.shop_table thead th.product-thumbnail {
    grid-area: thumb;
  }
  .woocommerce-cart table.shop_table thead th.product-name {
    grid-area: name;
  }
  .woocommerce-cart table.shop_table thead th.product-price, .woocommerce-cart table.shop_table thead th.product-quantity, .woocommerce-cart table.shop_table thead th.product-subtotal {
    display: none;
  }
  .woocommerce-cart table.shop_table tbody tr.cart_item {
    display: grid;
    grid-template-columns: auto 50px 1fr;
    grid-template-areas: "remove thumb name" "remove thumb price" "remove thumb qty" "remove thumb subtotal";
    border-bottom: 1px solid #dcdcdc;
    padding: 1rem 0;
  }
  .woocommerce-cart table.shop_table td {
    border: 0;
    padding: 0.25rem 0.5rem;
  }
  .woocommerce-cart table.shop_table td.product-thumbnail {
    grid-area: thumb;
    width: auto;
    padding-right: 0.5rem;
  }
  .woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 44px;
    height: 44px;
  }
  .woocommerce-cart table.shop_table td.product-name {
    grid-area: name;
  }
  .woocommerce-cart table.shop_table td.product-remove {
    grid-area: remove;
    align-self: start;
    padding-right: 0.25rem;
  }
  .woocommerce-cart table.shop_table td.product-price {
    grid-area: price;
  }
  .woocommerce-cart table.shop_table td.product-quantity {
    grid-area: qty;
  }
  .woocommerce-cart table.shop_table td.product-subtotal {
    grid-area: subtotal;
    text-align: right;
  }
  .woocommerce-cart table.shop_table td.product-quantity #quantity-wrapper {
    display: block;
  }
  .woocommerce-cart table.shop_table td.product-quantity .quantity-controls {
    display: flex;
    align-items: center;
  }
  .woocommerce-cart table.shop_table td.product-quantity .qty-btn {
    display: none;
  }
  .woocommerce-cart table.shop_table td.product-quantity input.qty {
    width: 3.5rem;
    min-width: 3.5rem;
    height: 40px;
    padding: 0 0.5rem;
    text-align: center;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background: #fff;
    font-size: var(--step-0);
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .woocommerce-cart table.shop_table td.product-quantity input.qty::-webkit-outer-spin-button, .woocommerce-cart table.shop_table td.product-quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: auto;
  }
  .woocommerce-cart table.shop_table tr.actions {
    display: block;
    border-top: 1px solid #dcdcdc;
    padding-top: 1rem;
  }
  .woocommerce-cart table.shop_table td.actions {
    display: block;
    width: 100%;
    padding: 1rem 0 0;
  }
  .woocommerce-cart .woocommerce form.woocommerce-cart-form,
  .woocommerce-cart .woocommerce .cart-collaterals {
    flex-basis: 100%;
  }
}

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