.omate-featured-section {
  --omate-accent: #d47d1f;
  --omate-accent-hover: #c7771d;
  --omate-accent-text: #d47d1f;
  --omate-ink: #333333;
  --omate-muted: #66625d;
  --omate-line: #b9b8b5;
  background: #ffffff;
  padding: 30px 0 60px;
}

.omate-featured-section,
.omate-featured-section * {
  box-sizing: border-box;
}

.omate-featured-section[hidden] {
  display: none;
}

.omate-featured__grid {
  --omate-featured-gap: clamp(22px, 2.5vw, 40px);
  overflow: hidden;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  touch-action: pan-y;
}

.omate-featured__track {
  display: flex;
  align-items: stretch;
  gap: var(--omate-featured-gap);
  transition: transform 400ms ease-in-out;
  will-change: transform;
}

.omate-featured__track.is-resetting {
  transition: none;
}

.omate-featured__dots {
  display: none;
}

.omate-featured__empty {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--omate-muted);
  font-family: var(--t-text-font, Arial, sans-serif);
  font-size: 16px;
}

.omate-featured-card {
  display: flex;
  flex: 0 0 calc((100% - (var(--omate-featured-gap) * 3)) / 4);
  min-width: 0;
  flex-direction: column;
  color: var(--omate-ink);
  font-family: var(--t-text-font, Arial, sans-serif);
}

.omate-featured-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 10 / 11;
  margin-bottom: 23px;
  background: #f6f6f4;
}

.omate-featured-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 400ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.omate-featured-card__image--secondary {
  opacity: 0;
}

.omate-featured-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #d57a18;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.omate-featured-card__favorite svg {
  width: 25px;
  height: 25px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: fill 180ms ease;
}

.omate-featured-card__favorite[aria-pressed="true"] svg {
  fill: currentColor;
}

.omate-featured-card__title {
  width: 85%;
  min-height: 2.4em;
  margin: 0 auto 8px;
  color: var(--omate-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.omate-featured-card__price {
  min-height: 1.35em;
  margin-bottom: 24px;
  color: var(--omate-accent-text);
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.omate-featured-card__options {
  display: grid;
  width: 84%;
  gap: 16px;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
}

.omate-featured-card__field {
  display: grid;
  gap: 6px;
}

.omate-featured-card__field:first-child {
  width: 100%;
}

.omate-featured-card__field-label {
  color: #52504c;
  font-size: 14px;
  font-style: normal;
  line-height: 1.15;
}

.omate-featured-card__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 39px;
  padding: 0 38px 0 13px;
  border: 1px solid #d8d7d4;
  border-radius: 7px;
  background-color: #fbfbfa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1h10L6 7z' fill='%23111111'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  color: #55524e;
  font: inherit;
  font-size: 15px;
  font-style: normal;
  cursor: pointer;
}

.omate-featured-card__actions {
  display: grid;
  width: 82%;
  grid-template-columns: 1fr 1.08fr;
  gap: 6px;
  margin: auto auto 0;
  padding-top: 34px;
}

.omate-featured-card__quantity {
  display: grid;
  height: 48px;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid #8d8c89;
  border-radius: 7px;
  background: #ffffff;
}

.omate-featured-card__quantity button,
.omate-featured-card__quantity output {
  display: grid;
  min-width: 0;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #373633;
  font: inherit;
  font-size: 17px;
}

.omate-featured-card__quantity button {
  color: #6d6b67;
  cursor: pointer;
}

.omate-featured-card__quantity button:hover {
  background: #f3f2ef;
  color: #22211f;
}

.omate-featured-card__add {
  min-height: 48px;
  padding: 10px 8px;
  border: 0;
  border-radius: 7px;
  background: var(--omate-accent);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.omate-featured-card__add:hover {
  background: var(--omate-accent-hover);
  transform: translateY(-1px);
}

.omate-featured-card__add:disabled {
  background: #8b8984;
  cursor: not-allowed;
  transform: none;
}

.omate-featured-card__select:focus-visible,
.omate-featured-card__favorite:focus-visible,
.omate-featured-card__quantity button:focus-visible,
.omate-featured-card__add:focus-visible {
  outline: 3px solid rgba(169, 95, 25, 0.35);
  outline-offset: 2px;
}

.omate-featured-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5000;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 18px;
  border-radius: 8px;
  background: #2f2f2b;
  color: #ffffff;
  font-family: var(--t-text-font, Arial, sans-serif);
  font-size: 14px;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.omate-featured-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.omate-featured-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Keep the digest feed on the same fluid 1200px artboard grid as its heading.
   The feed cards retain their native 20px gutters, so the image edges land on
   the artboard's 80px columns at every desktop upscale. */
@media (min-width: 1200px) {
  #rec2091262031 .t-slds__main.t-container {
    width: calc(86.6666667vw + 40px) !important;
    max-width: none !important;
  }

  #rec2091262031 .t-feed__slider-grid__post-wrapper.t-col {
    width: calc(100% - 40px) !important;
    max-width: none !important;
  }
}

@media (hover: hover) {
  .omate-featured-card:hover .omate-featured-card__image {
    transform: scale(1.025);
  }

  .omate-featured-card__favorite:hover {
    transform: scale(1.06);
  }

  .omate-featured-card__media:hover .omate-featured-card__image--secondary {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .omate-featured__grid {
    --omate-featured-gap: 28px;
  }

  .omate-featured-card {
    flex-basis: calc((100% - (var(--omate-featured-gap) * 2)) / 3);
  }
}

@media (max-width: 640px) {
  .omate-featured-section {
    padding: 18px 0 42px;
  }

  .omate-featured__grid {
    --omate-featured-gap: 16px;
    width: calc(100% - 40px);
  }

  .omate-featured-card {
    flex-basis: calc((100% - var(--omate-featured-gap)) / 2);
  }

  .omate-featured__dots {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 22px auto 0;
  }

  .omate-featured__dot {
    position: relative;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .omate-featured__dot::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--omate-ink);
    content: "";
    transform: translate(-50%, -50%);
    transition: background-color 180ms ease, transform 180ms ease;
  }

  .omate-featured__dot.is-active::before {
    background: #e09130;
    transform: translate(-50%, -50%) scale(1.2);
  }

  .omate-featured__dot:focus-visible {
    border-radius: 50%;
    outline: 2px solid #e09130 !important;
    outline-offset: -4px;
  }

  .omate-featured-card__media {
    margin-bottom: 18px;
  }

  .omate-featured-card__title {
    width: 100%;
    min-height: 3.6em;
  }

  .omate-featured-card__actions {
    margin-top: 26px;
    padding-top: 0;
  }

  .omate-featured-card__options,
  .omate-featured-card__actions {
    width: 100%;
  }

  .omate-featured-card__add {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 12px;
  }

  .omate-featured-card__quantity button,
  .omate-featured-card__quantity output {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .omate-featured-card__image,
  .omate-featured__track,
  .omate-featured-card__favorite,
  .omate-featured-card__add,
  .omate-featured-toast {
    transition-duration: 0.01ms;
  }
}
