.woocommerce ul.products,
ul.products.dp-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 34px);
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  clear: both;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products.dp-shop-grid::before,
ul.products.dp-shop-grid::after {
  display: none;
  content: none;
}

.woocommerce ul.products li.product.dp-shop-card,
.woocommerce ul.products li.dp-shop-card,
.dp-shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 10px;
  float: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: clamp(24px, 2vw, 32px);
  background: rgba(8,8,9,.96);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  color: #f7f7f8;
  container-type: inline-size;
  container-name: dp-shop-card;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .dp-shop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 26px 64px rgba(0,0,0,.34);
  }
}

.dp-shop-card__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(20px, 1.8vw, 28px);
  background: #29292a;
  isolation: isolate;
}

.dp-shop-card__gallery {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
}

.dp-shop-card__gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.dp-shop-card__gallery-track::-webkit-scrollbar {
  display: none;
}

.dp-shop-card__gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: clamp(18px, 2.1vw, 30px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-decoration: none;
  background: radial-gradient(circle at 50% 34%, rgba(255,255,255,.055), transparent 58%);
}

.dp-shop-card__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  transform: scale(.94);
  transition: transform .38s cubic-bezier(.22,1,.36,1), filter .38s ease;
}

@media (hover: hover) and (pointer: fine) {
  .dp-shop-card:hover .dp-shop-card__image {
    transform: scale(.985);
    filter: brightness(1.03);
  }
}

.dp-shop-card__wishlist {
  position: absolute;
  top: clamp(12px, 1.3vw, 18px);
  right: clamp(12px, 1.3vw, 18px);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ef4e54;
  box-shadow: none;
  cursor: pointer;
  transition: transform .22s ease, color .22s ease, filter .22s ease;
}

.dp-shop-card__wishlist:hover {
  transform: translateY(-2px) scale(1.08);
  background: transparent;
  color: #ff5960;
  box-shadow: none;
  filter: drop-shadow(0 7px 12px rgba(239,78,84,.22));
}

.dp-shop-card__wishlist.is-active {
  background: transparent;
  color: #ff3542;
  box-shadow: none;
}

.dp-shop-card__wishlist svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.dp-shop-card__wishlist:focus-visible,
.dp-shop-card__gallery-arrow:focus-visible,
.dp-shop-card__gallery-dot:focus-visible,
.dp-shop-card__more:focus-visible,
.dp-shop-card__title a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.dp-shop-card__gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(8,8,9,.74);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%) scale(.94);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.dp-shop-card__gallery-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}

.dp-shop-card__gallery-arrow--prev {
  left: 12px;
}

.dp-shop-card__gallery-arrow--next {
  right: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .dp-shop-card__gallery:not(.is-single):hover .dp-shop-card__gallery-arrow,
  .dp-shop-card__gallery:focus-within .dp-shop-card__gallery-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
  }

  .dp-shop-card__gallery-arrow:hover {
    background: rgba(8,8,9,.94);
  }
}

.dp-shop-card__gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 13px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 110px);
  gap: 6px;
  padding: 6px 8px;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(8,8,9,.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
  scrollbar-width: none;
}

.dp-shop-card__gallery-dots::-webkit-scrollbar {
  display: none;
}

.dp-shop-card__gallery-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.dp-shop-card__gallery-dot.is-active {
  width: 18px;
  background: #fff;
}

.dp-shop-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: clamp(18px, 1.6vw, 24px) clamp(10px, 1vw, 14px) clamp(10px, 1vw, 14px);
}

.dp-shop-card__title {
  display: -webkit-box;
  min-width: 0;
  min-height: 2.48em;
  max-height: 2.48em;
  margin: 0;
  overflow: hidden;
  color: #f7f7f8;
  font-size: clamp(17px, 1.15vw, 21px);
  font-weight: 620;
  line-height: 1.24;
  letter-spacing: -.022em;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dp-shop-card__title a {
  color: inherit;
  text-decoration: none;
}

.dp-shop-card__title a:hover {
  color: #fff;
}

.dp-shop-card__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  margin-top: auto;
  padding-top: clamp(20px, 2vw, 28px);
}

.dp-shop-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
  color: #fff;
}

.dp-shop-card__price-prefix {
  display: block;
  margin-bottom: 3px;
  color: rgba(247,247,248,.7);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
}

.dp-shop-card__price-value,
.dp-shop-card__price-value > .price,
.dp-shop-card__price-value .price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 6px;
  max-width: 100%;
  color: #fff;
  font-size: clamp(21px, 1.6vw, 28px);
  font-weight: 660;
  line-height: 1.04;
  letter-spacing: -.028em;
}

.dp-shop-card__price-value .woocommerce-Price-amount,
.dp-shop-card__price-value .amount,
.dp-shop-card__price-value bdi,
.dp-shop-card__price-value .woocommerce-Price-currencySymbol {
  color: inherit;
  font: inherit;
  white-space: nowrap;
}

.dp-shop-card__price-value .dp-ht-label {
  display: inline-block;
  color: rgba(247,247,248,.68);
  font-size: .54em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .055em;
  white-space: nowrap;
}

.dp-shop-card__price-value del {
  color: rgba(247,247,248,.48);
  font-size: .72em;
  font-weight: 520;
}

.dp-shop-card__price-value ins {
  color: #fff;
  text-decoration: none;
}

.dp-shop-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 3.8vw, 56px);
  min-width: 48px;
  height: clamp(48px, 3.8vw, 56px);
  min-height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: #ef4e54;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.dp-shop-card__more span {
  display: block;
  margin-top: -3px;
}

.dp-shop-card__more:hover {
  transform: translateY(-2px) scale(1.025);
  background: #ff515a;
  box-shadow: 0 16px 34px rgba(0,0,0,.28), 0 0 0 4px rgba(239,78,84,.13);
}

.dp-products-selection,
.dp-linked-products,
.related.products,
.upsells.products {
  position: relative;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin: clamp(46px, 6vw, 88px) 0 0;
  padding: 0;
  overflow: visible;
}

.dp-products-selection > .dp-container,
.dp-linked-products > .dp-container {
  width: min(calc(100% - (2 * var(--dp-gutter, 24px))), var(--dp-container-max, 1440px));
  max-width: 100%;
  margin-inline: auto;
}

.dp-products-selection__head {
  display: block;
  width: min(100%, 760px);
  margin: 0 0 clamp(24px, 3vw, 38px);
}

.dp-products-selection__eyebrow {
  margin: 0 0 10px;
  color: rgba(17,17,17,.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dp-products-selection__title {
  margin: 0;
  max-width: 100%;
  color: #111;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 660;
  line-height: 1;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.dp-products-selection__intro {
  margin: 16px 0 0;
  max-width: 680px;
  color: rgba(17,17,17,.64);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

@container dp-shop-card (max-width: 270px) {
  .dp-shop-card {
    padding: 8px;
  }

  .dp-shop-card__body {
    padding: 16px 8px 8px;
  }

  .dp-shop-card__title {
    font-size: 16px;
  }

  .dp-shop-card__price-value,
  .dp-shop-card__price-value > .price,
  .dp-shop-card__price-value .price {
    font-size: 20px;
  }

  .dp-shop-card__footer {
    gap: 10px;
  }
}

@media (max-width: 1279px) {
  .woocommerce ul.products,
  ul.products.dp-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .woocommerce ul.products,
  ul.products.dp-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 649px) {
  .woocommerce ul.products,
  ul.products.dp-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-inline: 0;
    gap: 12px;
  }

  .dp-shop-card {
    padding: 6px;
    border-radius: 20px;
  }

  .dp-shop-card__media {
    border-radius: 16px;
  }

  .dp-shop-card__gallery {
    aspect-ratio: 1 / 1.04;
  }

  .dp-shop-card__gallery-item {
    padding: clamp(10px, 3.6vw, 16px);
  }

  .dp-shop-card__body {
    padding: 12px 6px 6px;
  }

  .dp-shop-card__title {
    min-height: 2.5em;
    max-height: 2.5em;
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.25;
  }

  .dp-shop-card__footer {
    gap: 8px;
    padding-top: 14px;
  }

  .dp-shop-card__price-prefix {
    margin-bottom: 2px;
    font-size: 9px;
  }

  .dp-shop-card__price-value,
  .dp-shop-card__price-value > .price,
  .dp-shop-card__price-value .price,
  .woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value,
  .woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value > .price,
  .woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value .price {
    gap: 2px 4px;
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1.02;
  }

  .dp-shop-card__price-value .dp-ht-label {
    font-size: .5em;
  }

  .dp-shop-card__more {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 13px;
    font-size: 29px;
  }

  .dp-shop-card__wishlist {
    top: 8px;
    right: 8px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .dp-shop-card__wishlist svg {
    width: 25px;
    height: 25px;
  }

  .dp-shop-card__gallery-arrow {
    display: none;
  }

  .dp-shop-card__gallery-dots {
    bottom: 7px;
    max-width: calc(100% - 54px);
    gap: 4px;
    padding: 4px 6px;
  }

  .dp-shop-card__gallery-dot {
    width: 5px;
    height: 5px;
  }

  .dp-shop-card__gallery-dot.is-active {
    width: 14px;
  }

  .dp-products-selection__head {
    margin-bottom: 22px;
  }

  .dp-products-selection__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .dp-products-selection__intro {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .woocommerce ul.products,
  ul.products.dp-shop-grid {
    gap: 9px;
  }

  .dp-shop-card__title {
    font-size: 12.5px;
  }

  .dp-shop-card__price-value,
  .dp-shop-card__price-value > .price,
  .dp-shop-card__price-value .price,
  .woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value,
  .woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value > .price,
  .woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value .price {
    font-size: 16px;
  }

  .dp-shop-card__more {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dp-shop-card,
  .dp-shop-card__image,
  .dp-shop-card__wishlist,
  .dp-shop-card__gallery-arrow,
  .dp-shop-card__gallery-dot,
  .dp-shop-card__more {
    transition: none;
  }

  .dp-shop-card__gallery-track {
    scroll-behavior: auto;
  }
}

.dp-shop-card__gallery-arrow:disabled {
  opacity: .28;
  cursor: default;
  pointer-events: none;
}

.woocommerce ul.products li.product.dp-shop-card .dp-shop-card__image,
.woocommerce ul.products li.product.dp-shop-card a img.dp-shop-card__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  box-shadow: none;
}

.woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value,
.woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value > .price,
.woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value .price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 6px;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 1.6vw, 28px);
  font-weight: 660;
  line-height: 1.04;
  letter-spacing: -.028em;
}

.woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value del {
  color: rgba(247,247,248,.48);
  font-size: .72em;
  font-weight: 520;
  opacity: 1;
}

.woocommerce ul.products li.product.dp-shop-card .dp-shop-card__price-value ins {
  color: #fff;
  font-weight: inherit;
  text-decoration: none;
}

.dp-shop-card__wishlist,
.dp-shop-card__gallery-arrow,
.dp-shop-card__gallery-dot {
  appearance: none;
  -webkit-appearance: none;
}
