@charset "utf-8";

/* **************************************************************************************
* Editor's Pick CSS
Creation Date : 2026-08-26
************************************************************************************** */

:root {
    --black: #151515;
    --header: #202020;
    --ink: #171320;
    --muted: #77717f;
    --page: #f8f5ff;
    --line: #e6ddf4;
    --purple: #7b3fe4;
    --purple-dark: #5422ba;
    --purple-light: #f2efff;
    --warm: #ffb000;
    --placeholder: #888884;
    --placeholder-dark: #30302f;
    --max-width: 1770px;
    --side-padding: 72px;
    --card-radius: 18px;
    --card-shadow: 0 10px 24px rgba(55, 34, 99, 0.14);
  --editor-bg: #f6f3ff;
  --editor-card: #fff;
  --editor-soft: #f4f0ff;
  --editor-line: #e5dcff;
  --editor-purple: var(--purple, #7b3fe4);
  --editor-pink: #ff3d82;

}

#layout_body {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.editors-page {
  color: #111;
  background: #202020;
  box-sizing: border-box;
}

.editors-main {
  background: #202020;
}

.editors-hero {
  position: relative;
  min-height: clamp(280px, 35.15625vw, 675px);
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 23%, rgba(255, 255, 255, 0.88), transparent 4%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.78), transparent 5%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #bde2ff 0%, #d9f0ff 48%, #f0f8ff 100%);
}

.editors-hero::before,
.editors-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.editors-hero::before {
  left: -4%;
  top: -18%;
  width: 34%;
  height: 42%;
  border-radius: 0 0 80% 0;
  background:
    repeating-linear-gradient(112deg, rgba(84, 184, 83, 0.72) 0 16px, transparent 16px 36px),
    linear-gradient(135deg, rgba(64, 168, 80, 0.58), transparent);
  transform: rotate(-8deg);
}

.editors-hero::after {
  right: -3%;
  bottom: 1%;
  width: 19%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 46%, #f8e5cd 0 20%, transparent 21%),
    radial-gradient(circle at 52% 48%, #fff 0 46%, transparent 47%),
    linear-gradient(145deg, #f4e3c7, #f8f2e4);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.72);
}

.editors-breadcrumb {
  position: absolute;
  top: 72px;
  left: clamp(64px, 6vw, 132px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
}

.editors-breadcrumb a {
  color: inherit;
}

.editors-product {
  position: absolute;
  z-index: 1;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(51, 103, 160, 0.18);
}

.editors-product::before,
.editors-product::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.editors-product--blue {
  left: 13%;
  top: -6%;
  width: clamp(90px, 9vw, 170px);
  height: clamp(190px, 18vw, 340px);
  background: linear-gradient(180deg, #2e62d5 0 58%, #fff 58% 100%);
  transform: rotate(18deg);
}

.editors-product--blue::before {
  inset: 46% -18% auto -18%;
  height: 44%;
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(-14deg);
}

.editors-product--yellow {
  left: 6%;
  bottom: 16%;
  width: clamp(64px, 5.8vw, 112px);
  height: clamp(150px, 13vw, 250px);
  background: linear-gradient(180deg, #ffd42a 0%, #ff9e24 100%);
  border-radius: 18px 18px 44px 44px;
  transform: rotate(-18deg);
}

.editors-product--yellow::before {
  left: 30%;
  top: -12%;
  width: 40%;
  height: 22%;
  background: #ffcf19;
}

.editors-product--white {
  right: 10%;
  top: 4%;
  width: clamp(70px, 7vw, 132px);
  height: clamp(188px, 19vw, 360px);
  background: linear-gradient(180deg, #fff 0%, #f6f4f0 100%);
  border-radius: 18px;
  transform: rotate(13deg);
}

.editors-product--white::before {
  inset: auto 16% 10% 16%;
  height: 32%;
  background: linear-gradient(180deg, #efede7, #fff);
}

.editors-hero-copy {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: grid;
  justify-items: center;
  padding-top: clamp(70px, 6vw, 118px);
  text-align: center;
}

.editors-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(38px, 5.3vw, 88px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 20px rgba(49, 104, 170, 0.22);
}

.editors-hero-copy h1 {
  margin: 0;
  color: #2771e8;
  font-size: clamp(44px, 6vw, 100px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.editors-hero-copy h1 span {
  color: #7b3fe4;
}

.editors-hero-copy > span {
  margin-top: 18px;
  color: #436287;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.35;
  font-weight: 600;
}

.editors-hero-cards {
  position: absolute;
  left: 50%;
  bottom: clamp(42px, 4vw, 76px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 310px));
  gap: 22px;
  width: min(100% - 520px, 980px);
  transform: translateX(-50%);
}

.editors-hero-cards article {
  min-height: 118px;
  padding: 22px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.editors-hero-cards b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  background: #3d86f3;
  font-size: 15px;
}

.editors-hero-cards article:nth-child(2) b {
  background: #bdd774;
}

.editors-hero-cards article:nth-child(3) b {
  background: #b687ed;
}

.editors-hero-cards strong,
.editors-hero-cards span {
  display: block;
}

.editors-hero-cards strong {
  margin-bottom: 8px;
  color: #2370de;
  font-size: 12px;
  font-weight: 900;
}

.editors-hero-cards span {
  color: #2b3342;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.editors-shell {
  --editors-shell-inline-padding: 150px;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: -100px auto 0;
  padding: 58px var(--editors-shell-inline-padding) 76px;
  border-radius: 36px 36px 0 0;
  background: var(--editor-bg);
  box-sizing: border-box;
}

.editors-intro {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.editor-profile-carousel,
.editor-picks,
.editor-magazine {
  width: min(100%, 1160px);
  margin-inline: auto;
}

.editors-intro > h2,
.editor-section-heading h2,
.editor-magazine-heading h2 {
  margin: 0;
  color: #111;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
}

.editors-intro > h2 {
  font-style: italic;
  color: var(--purple);
}

.editors-intro > p {
  margin: 12px 0 46px;
  color: #171320;
  font-size: 21px;
}

.editor-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(54px, 7vw, 118px);
  margin-bottom: 58px;
}

.editor-tabs button {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 84px;
  padding: 0;
  border: 0;
  color: #111;
  background: transparent;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
}

.editor-tabs button.is-active {
  color: var(--editor-purple);
}

.editor-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 76%, rgba(44, 38, 36, 0.2) 0 9%, transparent 10%),
    radial-gradient(circle at 40% 42%, #202020 0 6%, transparent 7%),
    radial-gradient(circle at 60% 42%, #202020 0 6%, transparent 7%),
    radial-gradient(circle at 50% 54%, #261f1e 0 8%, transparent 9%),
    radial-gradient(circle at 50% 45%, #c9c1ba 0 48%, transparent 49%),
    #eadde5;
}

/* Added: real profile photo inside the avatar circle (the gradients above
   remain as a fallback background visible only if the image fails to load). */
.editor-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.editor-tabs button.is-active .editor-avatar {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--editor-purple);
}

.editor-avatar--duck {
  background:
    radial-gradient(circle at 43% 46%, #3a2720 0 5%, transparent 6%),
    radial-gradient(circle at 57% 46%, #3a2720 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 63%, #ec9f42 0 11%, transparent 12%),
    radial-gradient(circle at 50% 46%, #eadfb8 0 47%, transparent 48%),
    #d4d0c2;
}

.editor-avatar--cat {
  background:
    radial-gradient(circle at 39% 49%, #141414 0 5%, transparent 6%),
    radial-gradient(circle at 60% 49%, #141414 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 62%, #f0c4c4 0 7%, transparent 8%),
    radial-gradient(circle at 50% 50%, #1d1d1f 0 42%, transparent 43%),
    #d8d8d8;
}

.editor-avatar--dog {
  background:
    radial-gradient(circle at 40% 45%, #141414 0 5%, transparent 6%),
    radial-gradient(circle at 60% 45%, #141414 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 62%, #543e36 0 10%, transparent 11%),
    radial-gradient(circle at 50% 50%, #d2b69b 0 44%, transparent 45%),
    #e4d6c9;
}

.editor-avatar--hedgehog {
  background:
    radial-gradient(circle at 42% 44%, #141414 0 5%, transparent 6%),
    radial-gradient(circle at 58% 44%, #141414 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 60%, #5b3928 0 10%, transparent 11%),
    radial-gradient(circle at 50% 50%, #8d6a4b 0 45%, transparent 46%),
    #d2b188;
}

.flag {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  right: 3px;
  bottom: 24px;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23, 16, 38, 0.12);
}

.flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-profile {
  --editor-profile-hero-bg: linear-gradient(180deg, #dff1ff 0%, #f8fbff 72%, #ffffff 100%);
  --editor-profile-border: rgba(170, 190, 230, 0.58);
  position: relative;
  flex: 0 0 var(--editor-profile-card-width, min(1040px, calc(100% - 144px)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(20px, 2.8vw, 42px);
  align-items: start;
  min-height: 304px;
  width: auto;
  margin: 0;
  overflow: hidden;
  padding: clamp(42px, 3.4vw, 56px) clamp(38px, 3.6vw, 56px) clamp(34px, 3vw, 46px);
  border: 1px solid var(--editor-profile-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(49, 19, 108, 0.1);
  isolation: isolate;
  scroll-snap-align: center;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
  box-sizing: border-box;
}

.editor-profile.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: scale(1);
  /* Let side-card peeks receive clicks through the overlapping active card. */
  pointer-events: none;
}

.editor-profile:not(.is-active) {
  z-index: 1;
  opacity: 0.58;
  filter: blur(1.4px) saturate(0.78) brightness(1.03);
  transform: scale(0.85) translateY(0);
  pointer-events: auto;
  cursor: pointer;
}

.editor-profile-carousel {
  --editor-profile-card-width: min(1040px, calc(100% - 168px));
  --editor-profile-side-overlap: clamp(120px, 11vw, 168px);
  margin-top: 24px;
  margin-bottom: 40px;
  overflow: visible;
}

.editor-profile-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  /* Extra vertical room so card box-shadow is not clipped by overflow. */
  padding-block: 28px 48px;
  padding-inline: max(48px, calc((100% - var(--editor-profile-card-width)) / 2));
  scroll-padding-inline: max(48px, calc((100% - var(--editor-profile-card-width)) / 2));
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.editor-profile-track.is-loop-jumping {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.editor-profile-track.is-loop-jumping .editor-profile {
  transition: none !important;
}

.editor-profile + .editor-profile {
  margin-left: calc(-1 * var(--editor-profile-side-overlap));
}

.editor-profile-track::-webkit-scrollbar {
  display: none;
}

.editor-profile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: clamp(108px, 8.4vw, 142px);
  border-radius: inherit inherit 0 0;
  background: var(--editor-profile-hero-bg);
}

.editor-profile:nth-child(5n+1) {
  --editor-profile-hero-bg: linear-gradient(180deg, #d9f5e3 0%, #f5fbf7 72%, #ffffff 100%);
  --editor-profile-border: rgba(141, 210, 160, 0.56);
}

.editor-profile:nth-child(5n+2) {
  --editor-profile-hero-bg: linear-gradient(180deg, #cfeaff 0%, #f7fbff 72%, #ffffff 100%);
  --editor-profile-border: rgba(153, 202, 237, 0.66);
}

.editor-profile:nth-child(5n+3) {
  --editor-profile-hero-bg: linear-gradient(180deg, #fff0b8 0%, #fff9ec 72%, #ffffff 100%);
  --editor-profile-border: rgba(236, 202, 115, 0.55);
}

.editor-profile:nth-child(5n+4) {
  --editor-profile-hero-bg: linear-gradient(180deg, #e7ddff 0%, #f9f5ff 72%, #ffffff 100%);
  --editor-profile-border: rgba(177, 162, 238, 0.56);
}

.editor-profile:nth-child(5n) {
  --editor-profile-hero-bg: linear-gradient(180deg, #ffe7d8 0%, #fff8f1 72%, #ffffff 100%);
  --editor-profile-border: rgba(235, 175, 142, 0.58);
}

.editor-profile > * {
  position: relative;
  z-index: 1;
}

.editor-profile-main {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px clamp(22px, 2vw, 32px);
  align-items: start;
  min-width: 0;
}

.editor-profile-avatar {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0;
}

.editor-profile-avatar .editor-avatar {
  width: 128px;
  height: 128px;
  border: 10px solid #fff;
  outline: none;
  box-shadow: none;
  filter: none;
}

.editor-profile-avatar .flag {
  right: 4px;
  bottom: 6px;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  box-shadow: none;
}

.editor-profile-avatar h3 {
  display: none;
}

.editor-profile-copy {
  display: contents;
  min-width: 0;
  padding-top: 0;
}

.editor-profile-heading {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: block;
  margin: 0;
}

.editor-profile-title {
  display: grid;
  gap: 12px;
  margin-right: 2px;
}

.editor-profile-title h3 {
  margin: 0;
  color: #24163d;
  font-size: clamp(38px, 3.1vw, 48px);
  line-height: 1;
  font-weight: 700;
}

.editor-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editor-facts li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7a5cc8;
  font-size: 15px;
  font-weight: 600;
}

.editor-facts li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: #b7acc8;
}

.editor-facts img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(42%) saturate(1200%) hue-rotate(230deg) brightness(95%) contrast(92%);
}

.editor-facts li:nth-child(3) img {
  width: 21px;
  height: 21px;
}

.editor-role {
  grid-column: 1 / -1;
  display: block;
  margin: 0;
  color: #231d2e;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.editor-bio {
  grid-column: 1 / -1;
  max-width: 660px;
  margin: -3px 0 0;
  color: #3a3348;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.editor-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -4px;
}

.editor-tags span{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--editor-purple);
  background: #f3eefc;
  font-size: 14px;
  font-weight: 500;
}

.editor-pick-note span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--editor-purple);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
}

.editor-note {
  align-self: center;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px 28px 20px;
  border-radius: 18px;
  background: #f3eefc;
  box-shadow: none;
}

.editor-note h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--editor-purple);
  font-size: 18px;
  font-weight: 700;
}

.editor-note h3::before {
  content: "\201c";
  color: var(--editor-purple);
  font-size: 30px;
  line-height: 0.7;
  font-weight: 700;
}

.editor-note p {
  position: relative;
  flex: 1;
  margin: 0;
  color: #171320;
  font-size: 15px;
  line-height: 1.52;
  font-weight: 500;
}

.editor-note strong {
  display: block;
  margin-top: 18px;
  text-align: right;
  color: #171320;
  font-size: 15px;
  font-weight: 700;
}

.editor-profile-dots {
  display: none;
}

.editor-section-heading h2 span {
  margin-left: 8px;
  color: #777080;
  font-size: 17px;
  font-weight: 600;
}

.editor-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 30px 0 46px;
}

.editor-category-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 32px;
  padding: 0 20px;
  border: 1px solid var(--editor-purple);
  border-radius: 999px;
  color: #111;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.editor-category-tabs button:hover,
.editor-category-tabs button.is-active {
  border-color: #eadfff;
  color: var(--editor-purple);
  background: #eadfff;
}

.editor-pick-rail {
  position: relative;
  display: grid;
  gap: 18px;
}

.editor-pick-viewport {
  min-width: 0;
}

.editor-pick-list {
  display: grid;
  gap: 24px;
  width: min(100%, 1160px);
  margin-inline: auto;
}

.editor-pick-meter {
  display: none;
}

.editor-empty-message {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  margin: 0;
  padding: 28px;
  border-radius: 16px;
  color: #6f687a;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.editor-pick-card {
  --editor-pick-product-pad-y: 28px;
  --editor-pick-product-pad-inline: 34px;
  display: grid;
  grid-template-columns: minmax(0, 25fr) minmax(0, 40fr) minmax(0, 51fr);
  align-items: stretch;
  min-height: 210px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

@media (min-width: 1121px) {
  .editor-profile-carousel {
    --editor-profile-card-width: min(1160px, calc(100% - 104px));
    --editor-profile-side-overlap: clamp(140px, 12vw, 196px);
    width: calc(100% + (var(--editors-shell-inline-padding) * 2));
    max-width: none;
    margin-inline: calc(-1 * var(--editors-shell-inline-padding));
    overflow: visible;
  }

  .editor-profile-track {
    padding-block: 28px 48px;
    padding-inline: max(0px, calc((100% - var(--editor-profile-card-width)) / 2));
    scroll-padding-inline: max(0px, calc((100% - var(--editor-profile-card-width)) / 2));
  }

  .editor-profile {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: clamp(18px, 2.3vw, 34px);
    min-height: 262px;
    padding: clamp(32px, 2.7vw, 44px) clamp(40px, 3.4vw, 56px) clamp(28px, 2.4vw, 36px);
  }

  .editor-profile::before {
    height: clamp(96px, 7.2vw, 122px);
  }

  .editor-profile-main {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px clamp(22px, 2vw, 30px);
  }

  .editor-profile-avatar .editor-avatar {
    width: 112px;
    height: 112px;
    border-width: 8px;
    outline: none;
    box-shadow: none;
    filter: none;
  }

  .editor-profile-avatar .flag {
    width: 27px;
    height: 27px;
  }

  .editor-profile-title {
    gap: 9px;
  }

  .editor-profile-title h3 {
    font-size: clamp(34px, 2.65vw, 42px);
  }

  .editor-facts li {
    font-size: 15px;
  }

  .editor-role {
    font-size: 17px;
  }

  .editor-bio {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.44;
  }

  .editor-tags {
    gap: 8px;
  }

  .editor-tags span {
    min-height: 24px;
    padding: 8px 13px;
    font-size: 15px;
  }

  .editor-note {
    min-height: 178px;
    padding: 22px 24px 18px;
  }

  .editor-note h3 {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .editor-note p {
    font-size: 16px;
    line-height: 1.45;
  }

  .editor-note strong {
    margin-top: 14px;
    font-size: 14px;
  }

  .editor-pick-viewport {
    padding-inline: 56px;
  }

  .editor-pick-card {
    height: clamp(200px, 11vw, 240px);
    min-height: 0;
  }

  .editor-pick-card > * {
    min-height: 0;
  }
}

.editor-pick-image {
  position: relative;
  min-height: 184px;
  background: linear-gradient(145deg, #f7d5db, #fde2df);
  cursor: pointer;
}

.editor-pick-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-pick-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.editor-pick-product h3 a {
  color: inherit;
  text-decoration: none;
}

.editor-pick-image span {
  position: absolute;
  inset: auto 14% 12% 16%;
  height: 54%;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.8) 0 38%, transparent 38% 50%, rgba(17, 17, 17, 0.82) 50% 88%, transparent 89%),
    linear-gradient(180deg, #202020, #5b4750);
  box-shadow: 0 8px 20px rgba(33, 25, 30, 0.18);
}

.editor-pick-image--blue {
  background: linear-gradient(145deg, #dff0f9, #e8f7fb);
}

.editor-pick-image--blue span {
  background:
    linear-gradient(90deg, #eaf9ff 0 28%, transparent 28% 42%, #eaf9ff 42% 68%, transparent 68% 82%, #eaf9ff 82% 100%),
    linear-gradient(180deg, #d7ebf5, #fff);
}

.editor-pick-image--green {
  background: linear-gradient(145deg, #e0ff6f, #bdff3a);
}

.editor-pick-image--green span {
  background:
    radial-gradient(circle at 26% 65%, #fff 0 10%, transparent 11%),
    linear-gradient(135deg, #8ed325 0 52%, #f6ffe2 52% 100%);
}

.editor-pick-product {
  display: flex;
  flex-direction: column;
  padding: var(--editor-pick-product-pad-y) var(--editor-pick-product-pad-inline);
}

.editor-pick-product p {
  margin: 0 0 6px;
  color: #8f86a0;
  font-size: 15px;
  font-weight: 400;
}

.editor-pick-product h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  cursor: pointer;
  transition: color 0.25s ease;
}

.editor-pick-product h3:hover {
  color: var(--editor-purple);
}

.editor-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
}

.editor-rating img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.editor-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 16px;
}

.editor-price strong {
  color: #ff2637;
  font-size: 23px;
  font-weight: 700;
}

.editor-price del {
  color: #8f86a0;
  font-size: 15px;
}

.editor-pick-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
}

.editor-pick-actions button {
  display: grid;
  place-items: center;
  height: 34px;
  padding: 0;
  border: 1px solid var(--editor-purple);
  border-radius: 5px;
  color: var(--editor-purple);
  background: #fff;
}

.editor-cart {
  display: grid !important;
  place-items: center;
  background: var(--editor-purple) !important;
  transition: background 0.25s ease;
}

.editor-cart img {
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.editor-cart:hover{
  background: #31136c !important;
}

.editor-wish {
  position: relative;
}

.editor-wish::before,
.editor-wish::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.25s ease;
}

.editor-wish::before {
  background-image: url("../../images/icon/icon-wish.png");
  opacity: 1;
}

.editor-wish::after {
  background-image: url("../../images/icon/icon-wish-hover.png");
  opacity: 0;
}

.editor-wish.is-active::before,
.editor-wish:not(.is-hover-suppressed):hover::before {
  opacity: 0;
}

.editor-wish.is-active::after,
.editor-wish:not(.is-hover-suppressed):hover::after {
  opacity: 1;
}


.editor-pick-note {
  align-self: stretch;
  box-sizing: border-box;
  /* Top/bottom match product p ↔ actions inset; right matches image↔product gap */
  margin: var(--editor-pick-product-pad-y) var(--editor-pick-product-pad-inline) var(--editor-pick-product-pad-y) 0;
  padding: 24px 32px;
  border-radius: 12px;
  background: #f4f0ff;
}

.editor-pick-note h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #111;
  font-size: 17px;
  font-weight: 600;
}

.editor-pick-note h4 span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  color: transparent;
  background: url("../../images/icon/icon-editor-star.png") center / contain no-repeat;
  font-size: 0;
}

.editor-pick-note p {
  margin: 0 0 18px;
  color: #171320;
  font-size: 15px;
  line-height: 1.45;
}

.editor-pick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 1121px) {
  .editor-pick-card {
    --editor-pick-product-pad-y: clamp(16px, 1.15vw, 22px);
    --editor-pick-product-pad-inline: clamp(18px, 1.45vw, 28px);
  }

  .editor-pick-image {
    min-height: 0;
  }

  .editor-pick-product {
    padding: var(--editor-pick-product-pad-y) var(--editor-pick-product-pad-inline);
  }

  .editor-pick-product p {
    font-size: 14px;
  }

  .editor-pick-product h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .editor-rating {
    margin-bottom: clamp(8px, 0.75vw, 12px);
    font-size: 13px;
  }

  .editor-price {
    margin-bottom: 12px;
  }

  .editor-price strong {
    font-size: clamp(18px, 1.05vw, 21px);
  }

  .editor-price del {
    font-size: 13px;
  }

  .editor-pick-actions {
    grid-template-columns: minmax(0, 1fr) clamp(80px, 5.5vw, 104px);
  }

  .editor-pick-actions button {
    height: 32px;
  }

  .editor-pick-note {
    align-self: stretch;
    padding: clamp(14px, 1.05vw, 20px) clamp(16px, 1.35vw, 24px);
  }

  .editor-pick-note h4 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .editor-pick-note p {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.4;
  }
}

.editor-magazine {
  margin-top: 78px;
}

.editor-magazine-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1160px);
  margin-inline: auto;
  margin-bottom: 46px;
}

.editor-magazine-heading a {
  color: var(--editor-purple);
  font-size: 14px;
  font-weight: 500;
}

.editor-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1160px);
  margin-inline: auto;
}

.editor-magazine-card {
  display: grid;
  align-content: start;
  gap: 4px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 13px 27px rgba(64, 47, 88, 0.08);
  padding-bottom: 15px;
  cursor: pointer;
}

.editor-magazine-card--green {
  background: #b7cd7c;
}

.editor-magazine-card--lavender {
  background: #c9badf;
}

.editor-magazine-image {
  aspect-ratio: 802 / 500;
  border-radius: 14px 14px 0 0;
  margin-bottom: 5px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.editor-magazine-image--fruit {
  background:
    radial-gradient(circle at 12% 18%, #de3225 0 9%, transparent 10%),
    radial-gradient(circle at 30% 30%, #f2592b 0 8%, transparent 9%),
    radial-gradient(circle at 78% 22%, #d92525 0 10%, transparent 11%),
    linear-gradient(135deg, #f9db55 0%, #ef7d32 58%, #ffe57e 100%);
}

.editor-magazine-image--paper {
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, #f7f0de 0%, #e9dec6 100%);
}

.editor-magazine-image--stage {
  background:
    radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.9) 0 3%, transparent 4%),
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.9) 0 3%, transparent 4%),
    linear-gradient(135deg, #2020a6 0%, #7d2ebd 42%, #15152e 100%);
}

/* Category label above the title, in the magazine card's purple style. */
.editor-magazine-category {
  padding: 0 14px;
  color: #7b3fe4;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.editor-magazine-card h3 {
  margin: 0;
  padding: 0 14px;
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  max-height: calc(1.25em * 3);
}

.editor-magazine-card p {
  display: -webkit-box;
  margin: 0;
  padding: 0 14px;
  min-height: calc(1.4em * 2);
  max-height: calc(1.4em * 2);
  overflow: hidden;
  color: #111;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* Date sits below the excerpt. */
.editor-magazine-card small {
  display: block;
  margin: 5px 0 0;
  padding: 0 14px;
  color: #6d657c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Balance title/excerpt like the magazine page popular grid: a 2-line (or
   1-line) title gets a 3-line excerpt, a 3-line title gets a 2-line excerpt,
   so each card stays the same height. The is-title-* classes are toggled by
   editors-pick.js after measuring the rendered title. */
.editor-magazine-card.is-title-one-line p,
.editor-magazine-card.is-title-2-lines p {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  min-height: calc(1.4em * 3);
  max-height: calc(1.4em * 3);
}

.editor-magazine-card.is-title-3-lines p {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: calc(1.4em * 2);
  max-height: calc(1.4em * 2);
}

.editor-magazine-dots {
  display: none;
}

.editors-newsletter {
  width: min(100%, 1500px);
  margin: 110px auto 0;
}

/* The prototype applies its 0.9 desktop calibration at the document level.
   Firstmall must keep the shared document scale at 1, so reproduce that
   visual size only within the editor page's desktop-owned dimensions. */
@media (min-width: 1121px) {
  .editors-hero {
    min-height: clamp(252px, 31.640625vw, 607.5px);
  }

  .editors-breadcrumb {
    top: 64.8px;
    left: clamp(57.6px, 5.4vw, 118.8px);
    gap: 7.2px;
    font-size: 12.6px;
  }

  .editors-product--blue {
    width: clamp(81px, 8.1vw, 153px);
    height: clamp(171px, 16.2vw, 306px);
  }

  .editors-product--yellow {
    width: clamp(57.6px, 5.22vw, 100.8px);
    height: clamp(135px, 11.7vw, 225px);
  }

  .editors-product--white {
    width: clamp(63px, 6.3vw, 118.8px);
    height: clamp(169.2px, 17.1vw, 324px);
  }

  .editors-hero-copy {
    padding-top: clamp(63px, 5.4vw, 106.2px);
  }

  .editors-hero-copy p {
    font-size: clamp(34.2px, 4.77vw, 79.2px);
  }

  .editors-hero-copy h1 {
    font-size: clamp(39.6px, 5.4vw, 90px);
  }

  .editors-hero-copy > span {
    margin-top: 16.2px;
    font-size: clamp(11.7px, 0.9vw, 15.3px);
  }

  .editors-hero-cards {
    bottom: clamp(37.8px, 3.6vw, 68.4px);
    grid-template-columns: repeat(3, minmax(198px, 279px));
    gap: 19.8px;
    width: min(100% - 468px, 882px);
  }

  .editors-hero-cards article {
    min-height: 106.2px;
    padding: 19.8px 16.2px;
  }

  .editors-hero-cards b {
    width: 23.4px;
    height: 23.4px;
    margin-bottom: 9px;
    font-size: 13.5px;
  }

  .editors-hero-cards strong {
    margin-bottom: 7.2px;
    font-size: 10.8px;
  }

  .editors-hero-cards span {
    font-size: 10.8px;
  }

  .editors-shell {
    --editors-shell-inline-padding: 135px;
    max-width: 1593px;
    margin-top: -90px;
    padding: 52.2px var(--editors-shell-inline-padding) 68.4px;
    border-radius: 32.4px 32.4px 0 0;
  }

  .editors-intro {
    width: min(100%, 1188px);
  }

  .editor-picks,
  .editor-magazine {
    width: min(100%, 1044px);
  }

  .editors-intro > h2,
  .editor-section-heading h2,
  .editor-magazine-heading h2 {
    font-size: 27px;
  }

  .editors-intro > p {
    margin: 10.8px 0 41.4px;
    font-size: 18.9px;
  }

  .editor-tabs {
    gap: clamp(48.6px, 6.3vw, 106.2px);
    margin-bottom: 52.2px;
  }

  .editor-tabs button {
    gap: 8.1px;
    min-width: 75.6px;
    font-size: 15.3px;
  }

  .editor-tabs .editor-avatar {
    width: 75.6px;
    height: 75.6px;
  }

  .editor-profile-carousel {
    --editor-profile-card-width: min(1044px, calc(100% - 93.6px));
    --editor-profile-side-overlap: clamp(126px, 10.8vw, 176.4px);
    margin-top: 21.6px;
    margin-bottom: 36px;
  }

  .editor-profile-track {
    padding-block: 25.2px 43.2px;
  }

  .editor-profile {
    grid-template-columns: minmax(0, 1fr) minmax(234px, 306px);
    gap: clamp(16.2px, 2.07vw, 30.6px);
    min-height: 235.8px;
    padding: clamp(28.8px, 2.43vw, 39.6px) clamp(36px, 3.06vw, 50.4px) clamp(25.2px, 2.16vw, 32.4px);
    border-radius: 23.4px;
  }

  .editor-profile::before {
    height: clamp(86.4px, 6.48vw, 109.8px);
  }

  .editor-profile-main {
    grid-template-columns: 100.8px minmax(0, 1fr);
    gap: 16.2px clamp(19.8px, 1.8vw, 27px);
  }

  .editor-profile-avatar .editor-avatar {
    width: 100.8px;
    height: 100.8px;
    border-width: 7.2px;
  }

  .editor-profile-avatar .flag {
    width: 24.3px;
    height: 24.3px;
  }

  .editor-profile-title {
    gap: 8.1px;
  }

  .editor-profile-title h3 {
    font-size: clamp(30.6px, 2.385vw, 37.8px);
  }

  .editor-facts li {
    font-size: 13.5px;
  }

  .editor-role {
    font-size: 15.3px;
  }

  .editor-bio {
    max-width: 558px;
    font-size: 14.4px;
  }

  .editor-tags span {
    min-height: 21.6px;
    padding: 7.2px 11.7px;
    font-size: 13.5px;
  }

  .editor-note {
    min-height: 160.2px;
    padding: 19.8px 21.6px 16.2px;
  }

  .editor-note h3 {
    margin-bottom: 10.8px;
    font-size: 15.3px;
  }

  .editor-note p {
    font-size: 14.4px;
  }

  .editor-note strong {
    margin-top: 12.6px;
    font-size: 12.6px;
  }

  .editor-section-heading h2 span {
    margin-left: 7.2px;
    font-size: 15.3px;
  }

  .editor-category-tabs {
    gap: 10.8px 16.2px;
    margin: 27px 0 41.4px;
  }

  .editor-category-tabs button {
    min-width: 72px;
    height: 28.8px;
    padding-inline: 18px;
    font-size: 12.6px;
  }

  .editor-pick-list,
  .editor-magazine-heading,
  .editor-magazine-grid {
    width: min(100%, 1044px);
  }

  .editor-pick-list {
    gap: 21.6px;
  }

  .editor-pick-card {
    --editor-pick-product-pad-y: clamp(14.4px, 1.035vw, 19.8px);
    --editor-pick-product-pad-inline: clamp(16.2px, 1.305vw, 25.2px);
    min-height: 189px;
    border-radius: 14.4px;
  }

  .editor-pick-product p {
    font-size: 12.6px;
  }

  .editor-pick-product h3 {
    margin-bottom: 5.4px;
    font-size: 16.2px;
  }

  .editor-rating {
    margin-bottom: clamp(7.2px, 0.675vw, 10.8px);
    font-size: 11.7px;
  }

  .editor-price {
    margin-bottom: 10.8px;
  }

  .editor-price strong {
    font-size: clamp(16.2px, 0.945vw, 18.9px);
  }

  .editor-price del {
    font-size: 11.7px;
  }

  .editor-pick-actions {
    grid-template-columns: minmax(0, 1fr) clamp(72px, 4.95vw, 93.6px);
    gap: 10.8px;
  }

  .editor-pick-actions button {
    height: 30.8px;
  }

  .editor-pick-note {
    padding: clamp(12.6px, 0.945vw, 18px) clamp(14.4px, 1.215vw, 21.6px);
  }

  .editor-pick-note h4 {
    margin-bottom: 11.2px;
    font-size: 15.3px;
  }

  .editor-pick-note p {
    margin-bottom: 16.5px;
    font-size: 13.5px;
    font-weight: 400;
  }

  .editor-magazine {
    margin-top: 70.2px;
  }

  .editor-magazine-heading {
    gap: 21.6px;
    margin-bottom: 41.4px;
  }

  .editor-magazine-heading a {
    font-size: 12.6px;
  }

  .editor-magazine-grid {
    gap: 19.8px;
  }

  /* Card internals follow the base rules, which mirror the magazine page card
     (.bo-magazine-post-card): aspect-ratio image, 18px title, 14px excerpt,
     purple meta. No desktop scale-down here so the two match. */

  .editors-newsletter {
    width: min(100%, 1350px);
    margin-top: 99px;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .editors-page .category-nav.is-compact-category-nav {
    justify-content: center;
    gap: clamp(30px, 4.2vw, 54px);
    padding-inline: clamp(20px, 3.5vw, 44px);
  }

  .editors-page .category-nav.is-compact-category-nav a {
    width: auto;
    min-width: max-content;
    padding-inline: 0;
  }

  .editors-shell {
    width: 100%;
    margin-top: calc(-1 * clamp(23px, 5.208vw, 100px));
    padding: 44px clamp(28px, 5vw, 54px) 72px;
  }

  .editor-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 34px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding: 8px 6px 10px;
    scrollbar-width: none;
  }

  .editor-tabs::-webkit-scrollbar {
    display: none;
  }

  .editor-tabs button {
    flex: 0 0 auto;
  }

  .editor-profile {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 18px;
    align-items: start;
    padding: 30px clamp(28px, 4vw, 42px);
  }

  .editor-profile-main {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
  }

  .editor-profile-avatar .editor-avatar {
    width: 92px;
    height: 92px;
    border-width: 5px;
    outline: none;
    box-shadow: none;
    filter: none;
  }

  .editor-profile-copy {
    padding-top: 0;
  }

  .editor-profile-title h3 {
    font-size: 30px;
  }

  .editor-role,
  .editor-bio {
    font-size: 14px;
  }

  .editor-note {
    min-height: 190px;
    padding: 22px;
  }

  .editor-magazine-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.8vw, 22px);
  }
}

.editor-pick-note-copy {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
}

.editor-pick-note-copy p {
  flex: 0 0 auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.editor-pick-tags {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 40px;
  overflow: hidden;
}

@media (max-width: 1120px) {
  .editors-page {
    padding-bottom: 50px;
    background: var(--editor-bg);
  }

  .editors-main {
    background: var(--editor-bg);
  }

  .editors-hero {
    min-height: clamp(280px, 35.15625vw, 675px);
  }

  .editors-hero::before {
    width: 42%;
    height: 52%;
  }

  .editors-product--blue {
    left: 0;
    top: -20%;
    width: clamp(58px, 15vw, 120px);
    height: clamp(140px, 36vw, 260px);
  }

  .editors-product--yellow {
    left: 5%;
    bottom: 9%;
    width: clamp(42px, 11vw, 82px);
    height: clamp(98px, 25vw, 190px);
  }

  .editors-product--white {
    right: 2%;
    top: 5%;
    width: clamp(44px, 12vw, 92px);
    height: clamp(110px, 31vw, 230px);
  }

  .editors-hero-copy {
    padding-top: clamp(18px, 6vw, 54px);
  }

  .editors-hero-copy p {
    font-size: clamp(28px, 10vw, 70px);
  }

  .editors-hero-copy h1 {
    font-size: clamp(31px, 11vw, 80px);
  }

  .editors-hero-copy > span {
    margin-top: 5px;
    font-size: clamp(9px, 2.4vw, 14px);
  }

  .editors-intro > h2,
  .editor-section-heading h2,
  .editor-magazine-heading h2 {
    font-size: 24px;
  }

  .editors-intro > p {
    margin: 6px 0 20px;
    font-size: 13px;
  }

  .editor-tabs {
    margin-bottom: 32px;
  }

  .editor-avatar {
    width: 58px;
    height: 58px;
  }

  .editor-tabs button {
    min-width: 62px;
    gap: 7px;
    font-size: 11px;
  }

  .flag {
    right: 0;
    bottom: 19px;
    width: 20px;
    height: 20px;
  }

  .editor-profile-avatar .flag {
    right: 4px;
    bottom: 4px;
  }

  .editor-section-heading h2 span {
    font-size: 13px;
  }

  .editor-category-tabs {
    flex-wrap: nowrap;
    gap: 12px;
    margin: 16px -14px 18px 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .editor-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .editor-category-tabs button {
    flex: 0 0 auto;
    min-width: 60px;
    height: 30px;
    padding: 0 15px;
    font-size: 12px;
  }

  .editor-pick-rail {
    gap: 14px;
  }

  /* Horizontal category pager: one snap panel per filter.
     Use grid-auto-columns (same as magazine) so panels match the
     previous list width and cards keep their prior dimensions. */
  .editor-pick-viewport {
    overflow: hidden;
    min-width: 0;
  }

  .editor-pick-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    align-items: start;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    transition: height 0.25s ease;
  }

  .editor-pick-list::-webkit-scrollbar {
    display: none;
  }

  .editor-pick-panel {
    display: grid;
    gap: 25px;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    align-content: start;
    justify-items: stretch;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .editor-pick-panel > .editor-pick-card,
  .editor-pick-panel > .editor-empty-message {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .editor-pick-meter {
    display: grid;
    gap: 8px;
    width: min(100%, 360px);
    margin-inline: auto;
    text-align: center;
  }

  .editor-pick-meter-track {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8e0f5;
  }

  .editor-pick-meter-track span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--editor-purple);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .editor-pick-meter-label {
    margin: 0;
    color: #6f687a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 1120px) {
  .editors-page {
    --editor-shell-radius: 24px;
    --editor-shell-margin-top: calc(-1 * clamp(18px, 5.721vw, 23px));
    padding-bottom: 60px;
  }

  .editors-page .category-menu {
    position: relative;
    z-index: 6;
    background: #1f1f1f;
  }

  .editors-page .category-nav {
    justify-content: flex-start;
    gap: 0;
    height: 40px;
    overflow-x: auto;
    padding: 0 4px;
    background: #1f1f1f;
    scrollbar-width: none;
  }

  .editors-page .category-nav::-webkit-scrollbar {
    display: none;
  }

  .editors-page .category-nav a {
    display: grid;
    flex: 0 0 96px;
    width: 96px;
    height: 100%;
    padding: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
  }

  .editors-page .category-nav a:nth-child(-n + 5) {
    display: grid;
  }

  .editors-page .category-nav .accent-warm {
    margin-left: 20px;
    color: #ffc400;
  }

  .editors-page .category-nav .accent {
    color: #b98aff;
  }

  .editors-page .category-nav.is-compact-category-nav {
    gap: clamp(20px, 6vw, 34px);
    padding-inline: 20px;
  }

  .editors-page .category-nav.is-compact-category-nav a {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    padding-inline: 0;
  }

  .editors-page .category-nav.is-compact-category-nav .accent-warm {
    margin-left: 0;
  }

  .editors-page .search-panel {
    z-index: 1000;
  }

  .editors-hero {
    min-height: clamp(200px, 61.692vw, 248px);
    height: auto;
  }

  .editors-hero-copy {
    padding-top: 23px;
  }

  .editors-hero-copy p {
    font-size: 29px;
  }

  .editors-hero-copy h1 {
    font-size: 39px;
  }

  .editors-hero-copy > span {
    width: 190px;
    margin-top: 2px;
    font-size: 7px;
    line-height: 1.28;
  }

  .editors-product--blue {
    left: -8px;
    top: -30px;
    width: 50px;
    height: 118px;
  }

  .editors-product--yellow {
    left: 2px;
    bottom: 10px;
    width: 34px;
    height: 78px;
  }

  .editors-product--white {
    right: 7px;
    top: 5px;
    width: 44px;
    height: 96px;
  }

  .editors-shell {
    box-sizing: border-box;
    width: 100%;
    margin-top: var(--editor-shell-margin-top);
    padding: 20px 16px 48px;
    border-radius: var(--editor-shell-radius) var(--editor-shell-radius) 0 0;
  }

  .editors-intro,
  .editor-picks,
  .editor-magazine {
    width: 100%;
  }

  .editors-intro > h2 {
    color: var(--editor-purple);
    font-size: 22px;
    line-height: 1.15;
  }

  .editor-section-heading h2,
  .editor-magazine-heading h2 {
    font-size: 20px;
  }

  .editors-intro > p {
    margin: 4px 0 25px;
    color: #60596b;
    font-size: 16px;
  }

  .editor-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: clamp(24px, 4.5vw, 34px);
    margin: 0 0 20px;
    padding: 8px 16px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .editor-tabs::-webkit-scrollbar {
    display: none;
  }

  .editor-tabs .editor-avatar {
    width: clamp(50px, 7vw, 70px);
    height: clamp(50px, 7vw, 70px);
  }

  .editor-tabs button {
    flex: 0 0 auto;
    min-width: clamp(52px, 7vw, 74px);
    gap: 8px;
    scroll-snap-align: start;
    font-size: clamp(13px, 1.4vw, 15px);
  }

  .editor-tabs .flag {
    right: -1px;
    bottom: 15px;
    width: clamp(18px, 2.2vw, 22px);
    height: clamp(18px, 2.2vw, 22px);
  }

  .editor-profile-carousel {
    --editor-profile-card-width: min(600px, calc(100vw - 48px));
    --editor-profile-side-overlap: clamp(82px, 22vw, 148px);
    width: calc(100% + 32px);
    margin: 12px -16px 8px;
    overflow: visible;
  }

  .editor-profile-track {
    gap: 0;
    overflow-x: auto;
    padding-block: 24px 36px;
    padding-inline: max(18px, calc((100% - var(--editor-profile-card-width)) / 2));
    scroll-padding-inline: max(18px, calc((100% - var(--editor-profile-card-width)) / 2));
    -webkit-overflow-scrolling: touch;
  }

  .editor-profile {
    display: grid;
    flex-basis: var(--editor-profile-card-width);
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    gap: clamp(20px, 4vw, 30px);
    min-height: 0;
    width: auto;
    margin: 0;
    padding: clamp(28px, 6vw, 38px) clamp(20px, 5vw, 30px) clamp(24px, 5vw, 34px);
    border: 1px solid var(--editor-profile-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(49, 19, 108, 0.1);
    align-content: start;
    align-items: start;
  }

  .editor-profile:not(.is-active) {
    opacity: 0.58;
    filter: blur(1.2px) saturate(0.78) brightness(1.03);
    transform: scale(0.85) translateY(0);
    pointer-events: auto;
    cursor: pointer;
  }

  .editor-profile::before {
    content: "";
    height: clamp(88px, 24vw, 120px);
    background: var(--editor-profile-hero-bg);
  }

  .editor-profile[data-editor-theme="nara"] {
    --editor-profile-hero-bg: linear-gradient(180deg, #cfeaff 0%, #f7fbff 72%, #ffffff 100%);
    --editor-profile-border: rgba(153, 202, 237, 0.66);
  }

  .editor-profile[data-editor-theme="mila"] {
    --editor-profile-hero-bg: linear-gradient(180deg, #fff0b8 0%, #fff9ec 72%, #ffffff 100%);
  }

  .editor-profile[data-editor-theme="jules"] {
    --editor-profile-hero-bg: linear-gradient(180deg, #e7ddff 0%, #f9f5ff 72%, #ffffff 100%);
  }

  .editor-profile[data-editor-theme="pim"] {
    --editor-profile-hero-bg: linear-gradient(180deg, #ffe7d8 0%, #fff8f1 72%, #ffffff 100%);
  }

  .editor-profile[data-editor-theme="ava"] {
    --editor-profile-hero-bg: linear-gradient(180deg, #d9f5e3 0%, #f5fbf7 72%, #ffffff 100%);
  }

  .editor-profile::after {
    content: none;
  }

  .editor-profile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: min(100%, var(--editor-profile-card-width, 430px));
    margin: 0 auto clamp(48px, 6vw, 68px);
  }

  .editor-profile-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #dcd5e8;
    transition: width 0.25s ease, background-color 0.25s ease;
  }

  .editor-profile-dots span.is-active {
    width: 18px;
    background: var(--editor-purple);
  }

  .editor-profile-main {
    display: grid;
    grid-template-columns: clamp(72px, 18vw, 88px) minmax(0, 1fr);
    gap: clamp(10px, 2.6vw, 16px) clamp(16px, 3.5vw, 24px);
    align-items: start;
  }

  .editor-profile-copy {
    display: contents;
    padding-top: 0;
  }

  .editor-profile-heading {
    display: contents;
  }

  .editor-profile-title {
    display: contents;
  }

  .editor-profile-title h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: clamp(24px, 6vw, 30px);
    line-height: 1.06;
    font-weight: 700;
  }

  .editor-profile-avatar {
    align-self: start;
    justify-self: center;
    gap: 0;
    transform: none;
  }

  .editor-profile-avatar .editor-avatar {
    width: clamp(72px, 18vw, 88px);
    height: clamp(72px, 18vw, 88px);
    border: 5px solid #fff;
    outline: none;
    box-shadow: none;
    filter: none;
  }

  .editor-profile-avatar .flag {
    right: -1px;
    bottom: 1px;
    width: clamp(18px, 4.3vw, 23px);
    height: clamp(18px, 4.3vw, 23px);
    border-width: 2px;
    box-shadow: none;
  }

  .editor-profile-avatar h3 {
    display: none;
  }

  .editor-facts {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
    align-self: start;
    margin: clamp(2px, 1.4vw, 6px) 0 0;
    transform: none;
  }

  .editor-facts li {
    min-width: 0;
    gap: 4px;
    color: #7a5cc8;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
  }

  .editor-facts li:not(:last-child)::after {
    margin: 0 clamp(6px, 1.3vw, 9px);
    background: #b7acc8;
  }

  .editor-facts img {
    width: clamp(10px, 1.35vw, 13px);
    height: clamp(10px, 1.35vw, 13px);
    filter: brightness(0) saturate(100%) invert(42%) sepia(42%) saturate(1200%) hue-rotate(230deg) brightness(95%) contrast(92%);
  }

  .editor-facts li:nth-child(3) img {
    width: clamp(15px, 1.9vw, 18px);
    height: clamp(15px, 1.9vw, 18px);
  }

  .editor-role {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: clamp(4px, 1vw, 7px) 0 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
  }

  .editor-bio {
    grid-column: 1 / -1;
    grid-row: 4;
    display: block;
    margin: 2px 0 0;
    color: #342c43;
    font-size: 14px;
    line-height: 1.56;
    font-weight: 500;
  }

  .editor-note {
    min-height: 0;
    margin-top: clamp(2px, 1vw, 6px);
    padding: clamp(15px, 3.2vw, 24px);
    border-radius: clamp(14px, 3vw, 20px);
    background: #f3eefc;
    box-shadow: none;
  }

  .editor-note h3 {
    margin: 0 0 clamp(8px, 1.8vw, 12px);
    color: var(--editor-purple);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
  }

  .editor-note p {
    color: #171320;
    font-size: 14px;
    line-height: 1.52;
    font-weight: 500;
  }

  .editor-note strong {
    margin-top: clamp(12px, 2.2vw, 18px);
    color: #171320;
    font-size: 14px;
  }

  .editor-tags span{
    min-height: clamp(21px, 2.5vw, 24px);
    color: var(--editor-purple);
    background: #f6f0ff;
    font-size: 13px;
    font-weight: 600;
  }
  /* editor-tags */
  .editor-tags {
    grid-column: 1 / -1;
    grid-row: 5;
    gap: 8px;
    margin-top: clamp(4px, 1.2vw, 9px);
  }

  .editor-pick-tags span {
    min-height: clamp(21px, 2.5vw, 24px);
    color: var(--editor-purple);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
  }

  .editor-pick-panel {
    gap: 25px;
    width: 100%;
  }

  .editor-pick-card {
    --editor-pick-product-pad-y: 12px;
    --editor-pick-product-pad-inline: 12px;
    --editor-pick-image-size: clamp(120px, 34vw, 160px);
    position: relative;
    display: grid;
    grid-template-columns: var(--editor-pick-image-size) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 14px;
    row-gap: 8px;
    width: 100%;
    min-height: 0;
    height: auto;
    margin-inline: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ece7f4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(49, 19, 108, 0.06);
  }

  .editor-pick-image {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
    min-width: 0;
    min-height: 0;
    height: auto;
    overflow: hidden;
    border-radius: 13px 0 0 0;
    background:
      radial-gradient(circle at 20% 72%, rgba(255, 255, 255, 0.78) 0 11%, transparent 12%),
      radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.55) 0 15%, transparent 16%),
      linear-gradient(145deg, #efe1ff 0%, #f8eef7 55%, #fff 100%);
  }

  .editor-pick-image span {
    inset: 14% 12%;
    height: auto;
    border-radius: 12px;
  }

  .editor-pick-product {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    padding: 12px 14px 10px 2px;
    overflow: hidden;
    background: #fff;
  }

  .editor-pick-product p {
    margin-bottom: 2px;
    overflow: hidden;
    color: #7a6470;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .editor-pick-product h3 {
    display: -webkit-box;
    margin-bottom: 4px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .editor-rating {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .editor-rating img {
    width: 11px;
    height: 11px;
  }

  .editor-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 8px;
  }

  .editor-price strong {
    order: 2;
    color: var(--editor-purple);
    font-size: 16px;
    line-height: 1;
  }

  .editor-price del {
    order: 1;
    font-size: 12px;
    line-height: 1;
  }

  .editor-pick-actions {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 8px;
    height: 34px;
    margin-top: auto;
    padding: 0;
    background: transparent;
  }

  .editor-pick-actions::after {
    content: none;
  }

  .editor-pick-actions button {
    height: 100%;
    border: 1.5px solid var(--editor-purple) !important;
    border-radius: 8px;
  }

  .editor-cart {
    border: 0 !important;
    border-radius: 8px;
    background: var(--editor-purple) !important;
    color: #fff;
    display: grid !important;
    place-items: center;
  }

  .editor-cart img {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0;
    flex: 0 0 auto;
  }

  .editor-wish {
    position: relative;
    z-index: 1;
    border: 1.5px solid #d9c7ff !important;
    border-radius: 8px;
    background: #fff !important;
    box-shadow: none;
  }

  .editor-wish::before,
  .editor-wish::after {
    width: 16px;
    height: 16px;
  }

  .editor-pick-note {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
    margin: 0;
    padding: 0 10px 10px;
    border-radius: 0;
    background: transparent;
  }

  .editor-pick-note-copy {
    padding: 15px 12px;
    border-radius: 10px;
    background: #f6f0ff;
  }

  .editor-pick-note h4 {
    gap: 6px;
    margin-bottom: 8px;
    color: var(--editor-purple);
    font-size: 15px;
    text-transform: uppercase;
  }

  .editor-pick-note h4 span {
    width: 14px;
    height: 14px;
    min-height: 0;
    padding: 0;
    color: transparent;
    background: url("../../images/icon/icon-editor-star.png") center / contain no-repeat;
    font-size: 0;
  }

  .editor-pick-note p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #4f475d;
    font-size: 16px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .editor-pick-tags {
    gap: 6px;
    margin-top: 0;
  }

  .editor-magazine {
    margin-top: 48px;
  }

  .editor-magazine-heading {
    margin-bottom: 25px;
  }

  .editor-magazine-heading a {
    display: none;
  }

  .editor-magazine-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .editor-magazine-grid::-webkit-scrollbar {
    display: none;
  }

  .editor-magazine-card {
    scroll-snap-align: start;
  }

  /* Card internals inherit the base rules (aspect-ratio image, padded 18px
     title / 14px excerpt / purple meta) so the mobile carousel card matches
     the magazine page card too. */

  .editor-magazine-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .editor-magazine-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #eadfff;
  }

  .editor-magazine-dots span.is-active {
    background: var(--editor-purple);
  }

  .editors-newsletter {
    display: none;
  }

  .editors-page .float-button.chat {
    display: none;
  }

  .editors-page .footer-toggle {
    font-size: 0;
    text-transform: none;
  }

  .editors-page .footer-toggle::before {
    font-size: 12px;
  }

  .editors-page .footer-group:nth-child(2) .footer-toggle::before {
    content: "My Account";
  }

  .editors-page .footer-group:nth-child(3) .footer-toggle::before {
    content: "About Us";
  }

  .editors-page .footer-group:nth-child(4) .footer-toggle::before {
    content: "Policies";
  }

  .editors-page .footer-group:nth-child(5) .footer-toggle::before {
    content: "Contact Us";
  }
}

@media (max-width: 380px) {
  .editor-facts {
    margin-left: 0;
  }

  .editor-pick-card {
    --editor-pick-image-size: 112px;
    column-gap: 12px;
  }

  .editor-pick-product {
    padding: 10px 10px 8px 0;
  }

  .editor-pick-note {
    padding: 0 8px 8px;
  }
}

@media (min-width: 1920px) {
  .editors-hero {
    min-height: 675px;
    height: 675px;
  }
}

@media (max-width: 760px) {
    .desktop-only, .desktop-icon, .today-pick, .share-pick {
        display: none !important;
    }
}
