section#collection-grid {
  margin-bottom: var(--spacing-sections-desktop);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid {
    margin-bottom: var(--spacing-sections-mobile);
  }
}
section#collection-grid h1,
section#collection-grid h2 {
  font-size: 24px;
}
section#collection-grid .page-width {
  max-width: 1800px;
}
section#collection-grid #qf-filter-wrapper {
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 3;
  scroll-margin-top: 120px;
}
@media only screen and (min-width: 768px) {
  section#collection-grid #qf-filter-wrapper {
    position: sticky;
    top: 68px;
    background-color: #ffffff;
  }
}
@media only screen and (min-width: 1200px) {
  section#collection-grid #qf-filter-wrapper {
    top: 88px;
  }
}
@media only screen and (min-width: 992px) {
  section#collection-grid #qf-filter-wrapper {
    margin-bottom: 40px;
  }
}
section#collection-grid #qf-filter-wrapper .desktop-filter-heading {
  margin-bottom: 20px;
  text-transform: capitalize;
  display: none;
}
@media (max-width: 1024px) {
  section#collection-grid #qf-filter-wrapper {
    grid-template-columns: 2fr 5fr;
  }
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper {
    grid-template-columns: 1fr;
  }
  section#collection-grid #qf-filter-wrapper .desktop-filter-heading {
    display: none;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  padding: 14px 0;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  border-bottom: 1px solid #e2e1df;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper {
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: rgba(100, 100, 111, 0.7) 0px 7px 29px 0px;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .apply-container {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .apply-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .apply-container a {
    width: -moz-max-content;
    width: max-content;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.84px;
    text-decoration: underline;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open {
  padding-bottom: 50px;
  height: 50%;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .filter-group-display__submit {
    padding-bottom: 15px;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .filter-group-display__submit input {
  width: 100%;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .reset-filter-wrapper {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper {
    z-index: 10;
    position: fixed;
    inset: auto 0 0 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8509803922);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transition: height 300ms linear;
    padding: 20px;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .filter-scroll-wrapper {
    overflow-y: hidden;
    max-height: 0;
    transition: 0.2s ease-in;
    width: 100vw;
    margin-left: -15px;
    padding: 0 15px;
    background-color: var(--primary-color);
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open .mobile-filter-heading {
    padding-bottom: 15px;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open .filter-scroll-wrapper {
    overflow-y: scroll;
    max-height: 60vh;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open .reset-filter-wrapper {
    position: fixed;
    inset: auto 0 15px 0;
    display: none;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading {
  display: none;
  padding-bottom: 0px;
  color: #000;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading > svg {
  scale: 1 -1;
  pointer-events: none;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading.open {
  padding-bottom: 22px;
  border-bottom: 1px solid lightgrey;
  margin-bottom: 15px;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading.open > svg {
  scale: 1 1;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading h2 {
  font-size: 14px;
  margin: 0;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading h2 svg {
  margin-right: 5px;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading h2 {
    font-size: 16px;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading svg {
  cursor: pointer;
  transition: 0.3s ease;
  width: 10px;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading svg.open {
  transform: rotateX(180deg);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading svg path {
    fill: #000;
  }
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper {
    display: none;
    transition: height 300ms linear;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper.open {
    display: block;
    min-height: 50vh;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper .price-filter-container {
  margin: 20px 0;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper .price-filter-container .filter-heading {
  font-weight: 500;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper {
    order: 0 !important;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .reset-filters {
  display: flex;
  align-items: center;
  margin-left: 10px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .reset-filters {
    display: none;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  background: var(--text-primary-color);
  padding: 3px 8px 3px 5px;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter:hover svg {
  rotate: 90deg;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  transition: all 0.3s;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter svg path {
  stroke: #fff;
}
section#collection-grid #qf-filter-wrapper .filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container {
    flex-direction: column;
    gap: 15px;
    max-height: 50vh;
    overflow: auto;
    flex-wrap: nowrap;
  }
}
section#collection-grid #qf-filter-wrapper .custom-filter {
  background-color: white;
  padding: 7.5px 12px;
  border-radius: 5px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  section#collection-grid #qf-filter-wrapper .custom-filter:first-of-type {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .custom-filter {
    background-color: transparent;
    padding: 0;
    margin-bottom: 8px;
  }
}
section#collection-grid #qf-filter-wrapper .custom-filter[data-theme=sale] {
  display: none;
  background-color: transparent;
  border-radius: 0px;
  padding: 0;
}
section#collection-grid #qf-filter-wrapper .custom-filter[data-theme=sale] input {
  position: absolute;
}
section#collection-grid #qf-filter-wrapper .custom-filter label {
  display: block;
  position: relative;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .custom-filter .button {
  width: unset;
  text-align: center;
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-heading {
  margin: 0px;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  color: var(--text-primary-color);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .custom-filter .filter-heading {
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.4px;
  }
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-heading svg {
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  top: 1px;
  width: 10px;
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-heading svg path {
  fill: var(--text-primary-color);
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-body {
  display: none;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-heading svg {
  transform: rotateX(180deg);
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  position: absolute;
  overflow-y: auto;
  top: 33px;
  background: #fff;
  border: 1px solid #ededeb;
  z-index: 2;
  max-height: 147px;
  width: auto;
  width: 150px;
  padding: 4px 2px 7px 0px;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body::-webkit-scrollbar-track {
  background-color: #fff;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body::-webkit-scrollbar-thumb {
  background-color: var(--accent-2-color);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body {
    position: relative;
    top: 0;
    background: transparent;
    border: none;
    max-height: 100%;
    padding: 0;
    width: auto;
    margin-top: 5px;
  }
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 10px;
  font-weight: 300;
  color: var(--text-primary-color);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label {
    border: 1px solid var(--text-primary-color);
    margin: 0;
    padding: 10px;
  }
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label:hover {
  background: var(--primary-color);
  color: var(--accent-2-color);
  cursor: pointer;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label:hover .custom-check {
  background: #ffffff;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input {
  width: 0;
  height: 0;
  display: none;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label .custom-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  padding: 2px;
  margin-right: 5px;
  background: var(--primary-color);
  border-radius: 50%;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label .custom-check svg {
  opacity: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check {
  background: var(--text-primary-color);
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check svg {
  opacity: 1;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check svg path {
  fill: #fff;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
}
section#collection-grid #qf-filter-wrapper .sort-container {
  cursor: pointer;
  position: relative;
  margin-left: auto;
  color: var(--text-primary-color);
  padding-left: 63px;
  background-color: #fff;
  border-radius: 5px;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .sort-container {
    background-color: transparent;
    margin: 0;
    order: 1 !important;
  }
}
section#collection-grid #qf-filter-wrapper .sort-container::before {
  content: attr(data-text);
  position: absolute;
  inset: 0 auto 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .sort-container::before {
    inset: 0 auto 0 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
}
section#collection-grid #qf-filter-wrapper .sort-container select {
  background-color: white;
  padding: 8px 36px 8px 12px;
  border-radius: 5px;
  border: none;
  width: 100%;
  color: var(--text-primary-color);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .sort-container select {
    background-color: transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
}
section#collection-grid #qf-filter-wrapper .sort-container select:focus-visible {
  outline: none;
}
section#collection-grid #qf-filter-wrapper .sort-container svg {
  position: absolute;
  width: 10px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .sort-container svg {
    right: 0;
  }
}
section#collection-grid #qf-filter-wrapper .sort-container select:focus-visible svg {
  transform: rotateX("180deg");
}
section#collection-grid #qf-filter-wrapper .price-wrapper {
  background-color: #fafafa;
  border-radius: 5px;
  padding: 10px 12px;
  padding-top: 10px;
  margin: 5px 0 15px 0;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .filter-heading {
  margin-bottom: 15px;
  font-weight: 600;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range ::-moz-selection {
  color: #fafafa;
  background: #000;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range ::selection {
  color: #fafafa;
  background: #000;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .wrapper {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range header h2 {
  font-size: 24px;
  font-weight: 600;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range header p {
  margin-top: 5px;
  font-size: 12px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .price-input-hidden {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field * {
  font-size: 12px;
  font-weight: 300;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field:first-of-type input {
  text-align: left;
  padding-left: 5px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field:last-of-type input {
  text-align: right;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .field input {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  outline: none;
  font-size: 12px;
  border: none;
  -moz-appearance: textfield;
  background: #fafafa;
  -webkit-appearance: none;
  max-width: 37px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=number]::-webkit-outer-spin-button,
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .slider {
  height: 2px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
  translate: 0 -1px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .slider .progress {
  height: 3px;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
  translate: 0 -1.5px;
  background: var(--accent-2-color);
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .range-input {
  position: relative;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .range-input input.range-min {
  left: -2px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-webkit-slider-thumb {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--accent-2-color);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-moz-range-thumb {
  height: 10px;
  width: 10px;
  border: none;
  border-radius: 50%;
  background: var(--accent-2-color);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-webkit-slider-thumb {
    height: 26px;
    width: 26px;
  }
  section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-moz-range-thumb {
    height: 26px;
    width: 26px;
  }
}
section#collection-grid #qf-filter-wrapper .price-wrapper button {
  margin-top: 8px;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid .collection-grid-wrapper {
    margin-top: 30px;
  }
}
section#collection-grid .collection-grid-wrapper .custom-filter-load-more {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-top: 40px;
  position: relative;
  border-radius: 0px;
}
section#collection-grid .collection-grid-wrapper .custom-filter-load-more .load-more-spinner {
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  right: calc(-50% + 25px);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s all;
}
section#collection-grid .collection-grid-wrapper .custom-filter-load-more .load-more-spinner .spinner-circle-outer {
  width: 100%;
  height: 100%;
}
section#collection-grid .collection-grid-wrapper .custom-filter-load-more .load-more-spinner.show {
  width: 30px;
  height: 30px;
  opacity: 1;
}
section#collection-grid .collection-grid-wrapper .collection-grid {
  display: grid;
  grid-template-columns: repeat(var(--products-per-row), 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 83px;
  position: relative;
}
section#collection-grid .collection-grid-wrapper .collection-grid .spinner {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
}
section#collection-grid .collection-grid-wrapper .collection-grid .spinner .check-circle-outer,
section#collection-grid .collection-grid-wrapper .collection-grid .spinner .spinner-circle-outer {
  --circle-size: 100px;
}
section#collection-grid .collection-grid-wrapper .collection-grid.loading .product-card,
section#collection-grid .collection-grid-wrapper .collection-grid.loading .collection-grid-cta {
  opacity: 0.6;
  filter: blur(2.4px) grayscale(0.2);
}
section#collection-grid .collection-grid-wrapper .collection-grid.loading .spinner {
  display: block;
}
@media only screen and (max-width: 1199.98px) {
  section#collection-grid .collection-grid-wrapper .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 991.98px) {
  section#collection-grid .collection-grid-wrapper .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 50px;
  }
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card {
  position: relative;
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card .wishlist-heart,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card .wishlist-heart {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 15px;
  height: 15px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card .wishlist-heart svg,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card .wishlist-heart svg {
  width: 100%;
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card .wishlist-heart .heart-full svg,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card .wishlist-heart .heart-full svg {
  width: 100%;
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card:hover .wishlist-heart,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card:hover .wishlist-heart {
  opacity: 1;
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card .product-image .product-buttons,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card .product-image .product-buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: all 0.5s;
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card .product-image .product-buttons .quick-add-cart,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card .product-image .product-buttons .quick-add-cart {
  width: -moz-max-content;
  width: max-content;
  padding: 7px 5px !important;
  background: #fff;
  font-size: 12px;
}
@media only screen and (max-width: 991.98px) {
  section#collection-grid .collection-grid-wrapper .collection-grid product-card .product-image .product-buttons .quick-add-cart,
  section#collection-grid .collection-grid-wrapper .collection-grid .product-card .product-image .product-buttons .quick-add-cart {
    display: none;
  }
}
section#collection-grid .collection-grid-wrapper .collection-grid product-card .product-image:hover .product-buttons,
section#collection-grid .collection-grid-wrapper .collection-grid .product-card .product-image:hover .product-buttons {
  opacity: 1;
}
section#collection-grid .collection-grid-cta {
  background-color: var(--primary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 30px;
  min-height: 410px;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  grid-column: var(--grid-column-span);
  grid-row: var(--grid-row-span);
  order: var(--desktop-order);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid .collection-grid-cta {
    grid-column: var(--grid-column-span-mobile);
    grid-row: var(--grid-row-span-mobile);
    order: var(--mobile-order);
  }
  section#collection-grid .collection-grid-cta.span-2 {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
  section#collection-grid .collection-grid-cta.double-height {
    height: 70vh;
  }
}
section#collection-grid .collection-grid-cta .overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 0;
}
section#collection-grid .collection-grid-cta *:not(img) {
  position: relative;
  text-align: center;
}
section#collection-grid .collection-grid-cta img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
section#collection-grid .collection-grid-cta > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}
section#collection-grid .collection-grid-cta > div .banner-heading,
section#collection-grid .collection-grid-cta > div .banner-heading * {
  font-size: 20px;
  font-weight: 700;
}
section#collection-grid .collection-grid-cta > div .banner-text,
section#collection-grid .collection-grid-cta > div .banner-text * {
  font-size: 14px;
}
section#collection-grid .collection-grid-cta > div .banner-text {
  max-width: 424px;
}
section#collection-grid .collection-grid-cta .cta-content.left {
  align-items: flex-start;
}
section#collection-grid .collection-grid-cta .cta-content.left a {
  margin-right: auto;
}
section#collection-grid .collection-grid-cta .cta-content.left * {
  text-align: left;
}
section#collection-grid .collection-grid-cta .cta-content.center {
  align-items: center;
}
section#collection-grid .collection-grid-cta .cta-content.center a {
  margin: 0 auto;
}
section#collection-grid .collection-grid-cta .cta-content.center * {
  text-align: center;
}
section#collection-grid .collection-grid-cta .cta-content.right {
  align-items: flex-end;
}
section#collection-grid .collection-grid-cta .cta-content.right a {
  margin-left: auto;
}
section#collection-grid .collection-grid-cta .cta-content.right * {
  text-align: right;
}
section#collection-grid .collection-grid-cta .cta-content .underlined-button {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6.5px;
  width: 100%;
}
section#collection-grid #collection-grid-cta-2 {
  grid-column-end: span 2;
  background-color: var(--primary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  padding-top: 30px;
  min-height: 410px;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
@media only screen and (max-width: 319.98px) {
  section#collection-grid #collection-grid-cta-2 {
    grid-column-end: span 1;
  }
}
section#collection-grid #collection-grid-cta-2 .overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 1;
}
section#collection-grid #collection-grid-cta-2 *:not(img) {
  position: relative;
  text-align: center;
}
section#collection-grid #collection-grid-cta-2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
section#collection-grid #collection-grid-cta-2 > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}
section#collection-grid #collection-grid-cta-2 > div .banner-heading,
section#collection-grid #collection-grid-cta-2 > div .banner-heading * {
  font-size: 20px;
  font-weight: 700;
}
section#collection-grid #collection-grid-cta-2 > div .banner-text,
section#collection-grid #collection-grid-cta-2 > div .banner-text * {
  font-size: 14px;
}
section#collection-grid #collection-grid-cta-2 > div a {
  margin: 0 auto;
}
