.ot-product-save-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  min-width: 2.15rem;
  min-height: 2.15rem;
  padding: .48rem .65rem;
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #111;
  font-family: var(--font-label, Arial, sans-serif);
  font-size: .58rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(0,0,0,.08);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
  z-index: 4;
}

.ot-product-save-button svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.7;
}

.ot-product-save-button:hover,
.ot-product-save-button:focus-visible,
.ot-product-save-button.is-saved {
  background: #111;
  color: #fff;
  border-color: #111;
  outline: none;
}

.ot-product-save-button.is-saved svg {
  fill: currentColor;
}

.ot-product-save-button.is-saving {
  opacity: .62;
  pointer-events: none;
}

.ot-block-editors-pick {
  position: relative;
}

.ot-block-editors-pick > .ot-product-save-button {
  position: absolute;
  top: 12px;
  right: 12px;
}

.ot-shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.25rem;
}

.ot-shop-product-card {
  position: relative;
  min-width: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .26s ease, transform .26s ease;
}

.ot-shop-product-card.is-removing {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.ot-shop-product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f6f5f2;
}

.ot-shop-product-card__media > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 1.35rem;
}

.ot-shop-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

.ot-shop-product-card:hover .ot-shop-product-card__media img {
  transform: scale(1.025);
}

.ot-shop-product-card__media .ot-product-save-button {
  position: absolute;
  top: .75rem;
  right: .75rem;
}

.ot-shop-product-card__placeholder {
  display: block;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid rgba(17,17,17,.13);
  border-radius: 50%;
}

.ot-shop-product-card__body {
  padding-top: .95rem;
}

.ot-shop-product-card__brand {
  margin: 0 0 .35rem;
  font-family: var(--font-label, Arial, sans-serif);
  font-size: .62rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #111;
}

.ot-shop-product-card__name {
  margin: 0;
  font-family: var(--font-editorial, Georgia, serif);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
}

.ot-shop-product-card__name a {
  color: inherit;
  text-decoration: none;
}

.ot-shop-product-card__price {
  margin: .5rem 0 0;
  font-family: var(--font-body, Arial, sans-serif);
  font-size: .82rem;
  color: #525252;
}

.ot-shop-product-card__button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: .85rem;
  padding: .65rem 1rem;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-family: var(--font-label, Arial, sans-serif);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.ot-shop-product-card__button:hover,
.ot-shop-product-card__button:focus-visible {
  background: #fff;
  color: #111;
}

.ot-shop-product-card__source {
  display: block;
  margin-top: .7rem;
  overflow: hidden;
  color: #777;
  font-size: .72rem;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .ot-shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .ot-shop-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem .85rem; }
  .ot-shop-product-card__media > a { padding: .85rem; }
}

@media (max-width: 420px) {
  .ot-shop-product-grid { grid-template-columns: 1fr; }
  .ot-shop-product-card__media { aspect-ratio: 1 / 1.08; }
}

.ot-editors-pick-card {
  position: relative;
}

.ot-editors-pick-card > .ot-product-save-button {
  position: absolute;
  top: 12px;
  right: 12px;
}
