.vf-product-card {
  background-color: rgb(255 255 255);
  border: 1px solid rgb(229 231 235);
  min-width: calc(265rem / var(--vf-font-size-rem-px));
  max-width: min(calc(340rem / var(--vf-font-size-rem-px)), 100%);
  padding: calc(16rem / var(--vf-font-size-rem-px));
  color: rgb(34 34 34);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
}

.vf-product-card-media {
  margin: 0;
}

.vf-product-card-image {
  display: block;
  min-width: 0;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0 auto calc(20rem / var(--vf-font-size-rem-px));
  object-fit: contain;
  object-position: bottom center;
  cursor: pointer;
}

.vf-product-card-title {
  font-weight: 400;
  font-style: normal;
  font-size: calc(16rem / var(--vf-font-size-rem-px));
  line-height: 1.5;
  color: currentcolor;
  margin: 0;
}

.vf-product-card-link {
  display: block;
  font-weight: 400;
  font-style: normal;
  font-family: var(--vf-font-family-copy);
  font-size: calc(16rem / var(--vf-font-size-rem-px));
  line-height: 1.5;
  color: currentcolor;
  text-decoration: none;
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card-link:hover {
  color: rgb(189 30 30);
}

.vf-product-card-footer {
  align-self: flex-end;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(10rem / var(--vf-font-size-rem-px));
}

* + .vf-product-card-footer {
  margin-top: calc(16rem / var(--vf-font-size-rem-px));
}

.vf-product-card-meta {
  flex: 1 1 auto;
  display: flex;
  flex-flow: row wrap;
  max-width: min-content;
  margin: 0;
}

.vf-product-card-price {
  font-weight: 600;
  font-family: var(--vf-font-family-display);
  font-size: calc(20rem / var(--vf-font-size-rem-px));
  line-height: 1.4;
  color: currentcolor;
}

.vf-product-card-price:has(+ .vf-product-card-price) {
  color: rgb(189 30 30);
}

.vf-product-card-amount {
  white-space: nowrap;
  margin: 0;
}

.vf-product-card-compare-amount {
  font-weight: 400;
  font-size: calc(16rem / var(--vf-font-size-rem-px));
  text-decoration: line-through;
  color: rgb(172 172 175);
  white-space: nowrap;
}

.vf-product-card-actions {
  flex: 0 0 auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.vf-product-card-add {
  align-self: flex-start;
  font-weight: 700;
  font-size: calc(12rem / var(--vf-font-size-rem-px));
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: rgb(21 21 21);
  background-color: rgb(255 255 255);
  border: 1px solid rgb(21 21 21);
  border-radius: 0;
  overflow: hidden;
  min-width: max-content;
  max-width: max-content;
  padding: calc(8rem / var(--vf-font-size-rem-px) + .1875ex) calc(20rem / var(--vf-font-size-rem-px)) calc(8rem / var(--vf-font-size-rem-px));
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card-add:not([disabled]):hover {
  background-color: rgb(189 30 30);
  border-color: rgb(189 30 30);
  color: rgb(255 255 255);
}

.vf-product-card-aside {
  display: block;
  position: absolute;
  opacity: 0;
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card:hover > .vf-product-card-aside,
.vf-product-card:focus-within > .vf-product-card-aside {
  opacity: 1;
}

.vf-product-card-wishlist-form {
  margin: 0;
}

.vf-product-card-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255);
  border: 1px solid rgb(229 231 235);
  font-size: calc(14rem / var(--vf-font-size-rem-px));
  min-width: max-content;
  padding: calc(10rem / var(--vf-font-size-rem-px));
  z-index: 2;
  cursor: pointer;
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card-wishlist:enabled:hover {
  color: rgb(189 30 30);
}

.vf-product-card-quickview {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255);
  border: 1px solid rgb(189 30 30);
  font-size: calc(14rem / var(--vf-font-size-rem-px));
  background-color: rgb(189 30 30);
  color: rgb(255 255 255);
  min-width: max-content;
  padding: calc(10rem / var(--vf-font-size-rem-px));
  z-index: 2;
  cursor: pointer;
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card-quickview:hover {
  background-color: rgb(123 20 20);
  border-color: rgb(123 20 20);
  color: rgb(255 255 255);
}

.vf-product-card-gallery {
  display: flex;
  flex-flow: column nowrap;
  row-gap: calc(2.5rem / var(--vf-font-size-rem-px));
  position: absolute;
  overflow: hidden;
  max-width: max-content;
  right: calc(16rem / var(--vf-font-size-rem-px));
  padding: calc(5rem / var(--vf-font-size-rem-px));
  opacity: 0;
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card:hover > .vf-product-card-gallery,
.vf-product-card:focus-within > .vf-product-card-gallery {
  opacity: 1
}

.vf-product-card-gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: calc(60rem / var(--vf-font-size-rem-px));
  border: 1px solid gray;
  padding: 1px;
  opacity: .5;
  cursor: pointer;
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card-gallery-item:hover,
.vf-product-card-gallery-item[aria-current='true'] {
  opacity: 1;
}

.vf-product-card-thumbnail {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.vf-product-card-compare {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding-right: calc(10rem / var(--vf-font-size-rem-px));
  margin: 0;
  color: rgb(172 172 175);
  opacity: 0;
  transition: all var(--vf-transition-duration) var(--vf-transition-easing);
}

.vf-product-card:hover .vf-product-card-compare,
.vf-product-card:focus-within .vf-product-card-compare {
  opacity: 1;
}

.vf-product-card-compare:hover,
.vf-product-card-compare:focus-within {
  color: rgb(34 34 34);
}

.vf-product-card-compare:has([type='checkbox']:checked) {
  opacity: 1;
  color: rgb(189 30 30);
}

.vf-product-card-compare [type='checkbox'] {
  opacity: 0;
  position: absolute;
  left: -100%;
  padding: 0;
}
