*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #e8e8e8;
  font-family: 'Inter', sans-serif;
  color: #111;
  min-width: 320px;
  --theme-color: #5d9f6a;
  --theme-color-soft: rgba(130,191,144,0.26);
  --theme-color-strong: rgba(130,191,144,0.38);
  --theme-color-focus: rgba(130,191,144,0.52);
  --theme-text: #4f825b;
  --theme-text-hover: #3f714b;
}

img, svg {
  max-width: 100%;
}

/* ── HEADER ── */
.header {
  background: #000;
  min-height: 56px;
  padding: 0 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  min-height: 56px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(126px, 168px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.header-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo img {
  display: block;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 596 / 62;
  height: auto;
}

.header-logo--food {
  max-width: 210px;
}

.header-menu-toggle {
  display: none;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-self: end;
  min-height: 56px;
  min-width: 0;
}

.header-nav a,
.header-nav-dropdown-toggle {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 56px;
  white-space: nowrap;
  transition: color 0.15s;
}

.header-nav-dropdown {
  display: flex;
  align-items: stretch;
  position: relative;
}

.header-nav-dropdown-toggle {
  cursor: pointer;
  gap: 7px;
  padding: 0;
}

.header-nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.15s ease;
}

.header-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 10;
  display: grid;
  min-width: 220px;
  padding: 8px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.header-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}

.page-food .header-nav-dropdown-menu {
  background: #e0625c;
}

.header-nav-dropdown-menu a {
  display: flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}

.header-nav-dropdown:hover .header-nav-dropdown-menu,
.header-nav-dropdown.is-open .header-nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.header-nav-dropdown:hover .header-nav-dropdown-toggle::after,
.header-nav-dropdown.is-open .header-nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.back-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.header-nav a:hover,
.header-nav-dropdown-toggle:hover,
.header-nav-dropdown-toggle:focus-visible {
  color: #fff;
}

.header-nav a.active,
.header-nav-dropdown-toggle.active {
  color: #fff;
}

/* ── HERO ── */
.hero {
  background: #fff;
  padding: 52px 24px 42px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-top: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-text-hover);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 13px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero p {
  color: #666;
  font-size: 0.9rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

.hero-quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 999px;
  background: #f7f7f7;
  color: #222;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.hero-quick-links a:hover,
.hero-quick-links a:focus-visible {
  background: var(--theme-color-soft);
  border-color: var(--theme-color-strong);
  transform: translateY(-1px);
}

.author-mini-bio {
  max-width: 720px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid #e1e1e1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  text-align: left;
}

.author-mini-bio-photo {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}

.author-mini-bio-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-mini-bio-content {
  min-width: 0;
}

.author-mini-bio p {
  max-width: none;
  margin: 0;
  color: #111;
  font-size: 0.88rem;
  line-height: 1.42;
  font-weight: 400;
}

.author-mini-bio .author-mini-bio-byline {
  margin-bottom: 4px;
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 900;
}

.author-mini-bio a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.author-mini-bio a:hover,
.author-mini-bio a:focus-visible {
  color: var(--theme-text-hover);
}

/* ── FILTER BAR ── */
.filter-bar {
  background: #fff;
  border-bottom: 2px solid #e8e8e8;
  position: sticky;
  top: 56px;
  z-index: 90;
}

.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
}

.filter-sentence {
  display: block;
  color: #111;
  font-size: clamp(1rem, 1.65vw, 1.34rem);
  font-weight: 750;
  line-height: 1.85;
}

.mobile-filter-summary,
.mobile-filter-overlay,
.mobile-filter-sheet {
  display: none;
}

.clear-filters {
  border: 0;
  background: transparent;
  color: #777;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.clear-filters:hover {
  color: #111;
}

.clear-filters:focus-visible {
  outline: 3px solid rgba(232,48,58,0.36);
  outline-offset: 3px;
  border-radius: 4px;
}

.clear-filters[hidden] {
  display: none;
}

.count-bar .clear-filters::before {
  content: '·';
  margin-right: 8px;
  color: #bbb;
  font-weight: 400;
  text-decoration: none;
}

.filter-group {
  position: relative;
  display: inline-block;
}

.filter-trigger {
  border: 0;
  border-bottom: 2px solid var(--theme-color);
  background: linear-gradient(180deg, transparent 50%, var(--theme-color-soft) 50%);
  color: var(--theme-text);
  border-radius: 0;
  min-height: 28px;
  padding: 0 3px 1px;
  font-size: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.filter-trigger:hover,
.filter-trigger[aria-expanded="true"] {
  color: var(--theme-text-hover);
  border-color: #111;
  background: linear-gradient(180deg, transparent 46%, var(--theme-color-strong) 46%);
}

.filter-trigger:focus-visible {
  outline: 3px solid var(--theme-color-focus);
  outline-offset: 3px;
}

.filter-chevron {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.16s ease;
}

.filter-trigger[aria-expanded="true"] .filter-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(310px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid #111;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  padding: 8px;
  display: grid;
  gap: 2px;
  z-index: 120;
}

.filter-panel--style,
.filter-panel--occasion {
  width: min(360px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 170px));
  overflow-y: auto;
}

.filter-panel[hidden] {
  display: none;
}

.filter-search {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  padding-bottom: 6px;
}

.filter-search-input {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #f7f7f7;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 650;
  outline: 0;
  padding: 8px 10px;
  transition: border-color 0.14s ease, background 0.14s ease, box-shadow 0.14s ease;
}

.filter-search-input::placeholder {
  color: #777;
  opacity: 1;
}

.filter-search-input:focus {
  background: #fff;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(232,48,58,0.16);
}

.filter-search-empty {
  color: #777;
  font-size: 0.78rem;
  font-weight: 650;
  padding: 12px 9px 8px;
  text-align: center;
}

.filter-search-empty[hidden] {
  display: none;
}

.filter-option {
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 9px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #222;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: background 0.14s ease;
}

.filter-option[hidden] {
  display: none;
}

.filter-option:hover:not(:disabled) {
  background: #f5f5f5;
}

.filter-option:focus-visible {
  outline: 3px solid rgba(232,48,58,0.36);
  outline-offset: 2px;
}

.filter-option.is-active {
  background: #111;
  color: #fff;
}

.filter-option:disabled {
  color: #aaa;
  cursor: not-allowed;
  opacity: 0.46;
}

.filter-option:disabled .filter-count {
  background: #f3f3f3;
  color: #b8b8b8;
}

.filter-option-label {
  font-size: 0.82rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.filter-count {
  background: #eee;
  color: #555;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 99px;
  transition: all 0.18s ease;
  min-width: 20px;
  text-align: center;
}

.filter-option.is-active .filter-count {
  background: #fff;
  color: #111;
}

.active-filter-chips {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: -3px;
}

.active-filter-chips[hidden] {
  display: none;
}

.active-filter-chips--mobile {
  display: none;
}

.active-filter-chip {
  border: 1px solid rgba(17,17,17,0.14);
  background: #f6f6f6;
  color: #222;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 9px 5px 11px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease, transform 0.14s ease;
}

.active-filter-chip:hover {
  background: #111;
  border-color: #111;
  color: #fff;
  transform: translateY(-1px);
}

.active-filter-chip:focus-visible {
  outline: 3px solid rgba(232,48,58,0.36);
  outline-offset: 3px;
}

.active-filter-chip-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(17,17,17,0.1);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.active-filter-chip:hover .active-filter-chip-close {
  background: rgba(255,255,255,0.18);
}

/* ── CONTENT AREA ── */
.content-area {
  background: #e8e8e8;
}

.count-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.count-bar-copy {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  order: 1;
}

.count-bar .count-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
}

.count-bar .count-label {
  font-size: 0.78rem;
  color: #bbb;
  font-weight: 400;
}

.count-bar .active-filter-chips {
  flex: 0 1 auto;
  justify-content: flex-start;
  margin-top: 0;
  order: 2;
}

.sort-control {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  order: 3;
  color: #8a8a8a;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.sort-control-label {
  color: #b0b0b0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sort-trigger {
  min-height: 32px;
  min-width: 226px;
  max-width: 230px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
  color: #222;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  padding: 0 14px 0 13px;
}

.sort-trigger:hover,
.sort-trigger[aria-expanded="true"] {
  border-color: #d4d4d4;
  background: #fafafa;
}

.sort-trigger:focus-visible {
  outline: 3px solid rgba(232,48,58,0.24);
  outline-offset: 3px;
}

.sort-chevron {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  margin-right: 1px;
  transform: translateY(-2px) rotate(45deg);
}

.sort-trigger[aria-expanded="true"] .sort-chevron {
  transform: translateY(2px) rotate(-135deg);
}

.sort-panel {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 20;
  width: 230px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.sort-panel[hidden] {
  display: none;
}

.sort-option {
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #222;
  cursor: pointer;
  display: block;
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 750;
  text-align: left;
}

.sort-option:hover,
.sort-option:focus-visible,
.sort-option.is-active {
  background: #f2f2f2;
}

.sort-option.is-active {
  color: #111;
  font-weight: 900;
}

.sort-option:focus-visible {
  outline: 2px solid rgba(232,48,58,0.28);
  outline-offset: 1px;
}

.filter-loader {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2f2f2f;
}

.filter-loader[hidden] {
  display: none;
}

.filter-loader-label {
  flex: 0 0 auto;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.filter-loader-track {
  flex: 1 1 auto;
  min-width: 120px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(47,47,47,0.12);
}

.filter-loader-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left center;
  animation: filter-loader-fill 0.25s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes filter-loader-fill {
  to { transform: scaleX(1); }
}

/* ── GRID ── */
.grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  opacity: 1;
  transition: opacity 0.12s ease, filter 0.12s ease;
}

.grid[aria-busy="true"] {
  min-height: 1180px;
}

.content-area.has-end-list-cta .grid {
  padding-bottom: 28px;
}

.grid.is-filtering {
  opacity: 0.46;
  filter: saturate(0.86);
  pointer-events: none;
}

.grid-loader {
  grid-column: 1 / -1;
}

.card-skeleton {
  min-height: 500px;
  pointer-events: none;
}

.card-skeleton-media {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.62), rgba(255,255,255,0)),
    #eeeeee;
  background-size: 220% 100%, 100% 100%;
  animation: skeleton-shimmer 1.18s ease-in-out infinite;
}

.card-skeleton-body {
  gap: 12px;
}

.card-skeleton-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.68), rgba(255,255,255,0)),
    #ededed;
  background-size: 220% 100%, 100% 100%;
  animation: skeleton-shimmer 1.18s ease-in-out infinite;
}

.card-skeleton-line--badge {
  width: 34%;
  height: 22px;
}

.card-skeleton-line--title {
  width: 58%;
  height: 18px;
}

.card-skeleton-line--short {
  width: 76%;
}

.card-skeleton-line--cta {
  width: 44%;
  height: 30px;
  margin-top: auto;
}

@keyframes skeleton-shimmer {
  to { background-position: -220% 0, 0 0; }
}

/* ── CARD ── */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(0);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.card-link {
  cursor: pointer;
}

.card:hover,
.card:focus-visible {
  box-shadow: 0 20px 40px rgba(0,0,0,0.13), 0 4px 8px rgba(0,0,0,0.06);
  transform: translateY(-5px);
}

.card:focus-visible {
  outline: 3px solid rgba(232,48,58,0.38);
  outline-offset: 4px;
}

.card-img-wrap {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img-wrap img,
.card-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.36s ease;
}

.card-img-wrap img {
  position: relative;
  z-index: 0;
}

.card-img-wrap video.card-video-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.36s ease;
}

.card:hover .card-img-wrap img,
.card:hover .card-img-wrap video,
.card:focus-visible .card-img-wrap img,
.card:focus-visible .card-img-wrap video {
  transform: scale(1.04);
}

.card:hover .card-img-wrap video.card-video-hover,
.card:focus-visible .card-img-wrap video.card-video-hover {
  opacity: 1;
}

.card.card-video-active .card-img-wrap video.card-video-hover {
  opacity: 1;
}

.card-video-indicator,
.card-video-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,17,17,0.86);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.24);
  -webkit-tap-highlight-color: transparent;
}

.card-video-toggle::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: rgba(17,17,17,0.96);
  z-index: -1;
}

.card-video-indicator {
  display: inline-flex;
  pointer-events: none;
}

.card-video-toggle {
  --mobile-video-progress: 0turn;
  cursor: pointer;
  isolation: isolate;
}

.card-video-indicator svg,
.card-video-toggle svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-video-toggle svg {
  position: relative;
  z-index: 1;
}

.card-video-toggle:focus-visible {
  outline: 3px solid rgba(232,48,58,0.45);
  outline-offset: 3px;
}

.card.card-video-active .card-video-toggle {
  background: #e8303a;
}

.card.card-video-active .card-video-toggle::before {
  background: #e8303a;
}

.card-favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,0.34));
  -webkit-tap-highlight-color: transparent;
  transition: color 0.16s ease, transform 0.16s ease, filter 0.16s ease;
}

.card-favorite-toggle::before {
  content: '';
  position: absolute;
  inset: -6px;
}

.card-favorite-toggle svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: rgba(255,255,255,0.08);
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.16s ease, stroke 0.16s ease, transform 0.16s ease;
}

.card-favorite-toggle:hover,
.card-favorite-toggle:focus-visible {
  transform: scale(1.08);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.4));
}

.card-favorite-toggle:focus-visible {
  outline: 3px solid rgba(255,255,255,0.72);
  outline-offset: 2px;
}

.card-favorite-toggle.is-active {
  color: #e8303a;
}

.card-favorite-toggle.is-active svg {
  fill: #e8303a;
  stroke: #fff;
  transform: scale(1.03);
}

.favorites-launcher,
.favorites-mobile-toggle {
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.favorites-mobile-toggle {
  display: none;
}

.favorites-launcher[hidden],
.favorites-mobile-toggle[hidden] {
  display: none;
}

.favorites-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-width: 70px;
  height: 46px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(17,17,17,0.9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.26);
  transition: transform 0.16s ease, background 0.16s ease;
}

.favorites-launcher:hover,
.favorites-launcher:focus-visible {
  background: #111;
  transform: translateY(-2px);
}

.favorites-launcher:focus-visible,
.favorites-mobile-toggle:focus-visible,
.favorites-close:focus-visible,
.favorites-clear:focus-visible,
.favorites-remove:focus-visible {
  outline: 3px solid rgba(232,48,58,0.42);
  outline-offset: 3px;
}

.favorites-launcher svg,
.favorites-mobile-toggle svg,
.favorites-close svg,
.favorites-remove svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.favorites-launcher svg {
  width: 21px;
  height: 21px;
  fill: #e8303a;
  stroke: #fff;
  stroke-width: 2.1;
}

.back-to-top {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 95;
  min-height: 44px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: rgba(17,17,17,0.92);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.16s ease;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #111;
  transform: translate(-50%, -2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(232,48,58,0.42);
  outline-offset: 3px;
}

.back-to-top svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.favorites-launcher-count {
  min-width: 1ch;
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1;
}

.favorites-panel-root {
  position: fixed;
  inset: 0;
  z-index: 220;
  pointer-events: none;
  visibility: hidden;
}

.favorites-panel-root.is-open {
  pointer-events: auto;
  visibility: visible;
}

.favorites-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.favorites-panel-root.is-open .favorites-backdrop {
  opacity: 1;
}

.favorites-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, calc(100vw - 36px));
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -24px 0 48px rgba(0,0,0,0.24);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.favorites-panel-root.is-open .favorites-panel {
  transform: translateX(0);
}

.favorites-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.favorites-panel-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.favorites-count-label {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 0.82rem;
  font-weight: 700;
}

.favorites-close,
.favorites-remove {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.favorites-close svg,
.favorites-remove svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.favorites-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 2px;
}

.favorites-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.favorites-item-link {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}

.favorites-item-link img {
  width: 62px;
  height: 62px;
  border-radius: 6px;
  object-fit: cover;
  background: #eee;
}

.favorites-item-link span {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.favorites-remove {
  background: #fff1f1;
  color: #e8303a;
}

.favorites-clear {
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
  min-height: 42px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.favorites-empty {
  color: #777;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
  padding: 18px 2px;
}

body.favorites-panel-open {
  overflow: hidden;
}

@media (hover: none), (pointer: coarse) {
  .card:hover .card-img-wrap video.card-video-hover,
  .card:focus-visible .card-img-wrap video.card-video-hover {
    opacity: 0;
  }

  .card.card-video-active .card-img-wrap video.card-video-hover {
    opacity: 1;
  }

  .card-video-toggle {
    display: inline-flex;
  }

  .card.card-video-countdown .card-video-toggle {
    animation: mobile-video-countdown 2s linear forwards;
  }

  .card-video-indicator {
    display: none;
  }
}

@keyframes mobile-video-countdown {
  from {
    --mobile-video-progress: 0turn;
    background: conic-gradient(#e8303a var(--mobile-video-progress), rgba(17,17,17,0.86) 0);
  }
  to {
    --mobile-video-progress: 1turn;
    background: conic-gradient(#e8303a var(--mobile-video-progress), rgba(17,17,17,0.86) 0);
  }
}

@property --mobile-video-progress {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0turn;
}

@media (prefers-reduced-motion: reduce) {
  .card.card-video-countdown .card-video-toggle {
    animation-timing-function: steps(4, end);
  }
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  max-width: calc(100% - 24px);
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 7px;
  font-family: 'Inter', sans-serif;
  overflow-wrap: anywhere;
}

.card-desc {
  font-size: 0.78rem;
  color: #5f5f5f;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 13px;
  gap: 12px;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: #111;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.card-cta {
  background: #111;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 99px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.15s;
  text-align: center;
  flex-shrink: 0;
}

.card:hover .card-cta,
.card:focus-visible .card-cta {
  background: #333;
}

.editorial-card {
  border: 1px solid rgba(17,17,17,0.08);
  background: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  min-height: 500px;
}

.editorial-card:hover,
.editorial-card:focus-visible {
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.editorial-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: #f5f5f5;
}

.editorial-card-quote {
  position: absolute;
  top: 26px;
  left: 10px;
  color: rgba(17,17,17,0.07);
  font-family: Georgia, serif;
  font-size: 33rem;
  font-weight: 700;
  line-height: 1;
}

.editorial-card-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 38px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 5px 13px 5px 5px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.editorial-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.28);
}

.editorial-card-body {
  position: relative;
  z-index: 1;
  min-height: 100%;
  justify-content: center;
  gap: 13px;
  padding: 68px 20px 22px;
}

.editorial-card-title {
  margin-bottom: 0;
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.editorial-card-byline {
  color: #777;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.editorial-card-tips {
  display: grid;
  gap: 9px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: editorial-tip;
}

.editorial-card-tips li {
  counter-increment: editorial-tip;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.editorial-card-tip-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.editorial-card-tip-number::before {
  content: counter(editorial-tip);
}

.editorial-card-tip-copy {
  color: #4f4f4f;
  font-size: 0.84rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.editorial-card-tip-copy strong {
  color: #111;
  font-weight: 900;
}

/* ── HIDDEN ── */
.hidden { display: none; }

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

.grid-message {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 8px;
  color: #777;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 28px;
  text-align: center;
}

.grid-message.error {
  color: #b3261e;
}

.grid-loader {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 0 18px;
  color: #2f2f2f;
}

.grid-loader-label {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: #2f2f2f;
  white-space: nowrap;
}

.grid-loader-track {
  flex: 1 1 auto;
  min-width: 120px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(47,47,47,0.12);
}

.grid-loader-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #2f2f2f;
  transform: scaleX(0);
  transform-origin: left center;
  animation: grid-loader-fill 5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes grid-loader-fill {
  to { transform: scaleX(1); }
}

.grid-skeleton {
  height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent),
    linear-gradient(#fff 0 0);
  background-size: 180px 100%, 100% 100%;
  background-position: -180px 0, 0 0;
  background-repeat: no-repeat;
  animation: skeleton-shimmer 1.15s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@keyframes skeleton-shimmer {
  to { background-position: calc(100% + 180px) 0, 0 0; }
}

.end-list-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: calc(100% - 48px);
  max-width: 1152px;
  margin: 0 auto 28px;
  padding: 22px 24px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.grid[aria-busy="true"] + .end-list-cta {
  display: none;
}

.end-list-cta-copy {
  min-width: 0;
}

.end-list-cta-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-bottom: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff1f1;
  color: #e8303a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.end-list-cta p {
  max-width: 620px;
  margin: 0;
  color: #2f2f2f;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.5;
}

.end-list-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.end-list-cta-button:hover,
.end-list-cta-button:focus-visible {
  background: #333;
  transform: translateY(-1px);
}

/* ── SEO CONTENT ── */
.seo-content {
  background: #fff;
  border-top: 1px solid #d8d8d8;
  padding: 46px 24px 50px;
}

.seo-content-inner {
  max-width: 960px;
  margin: 0 auto;
}

.seo-content h2 {
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.seo-content p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0 22px;
}

.seo-content-block h3 {
  color: #111;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.seo-content-block p {
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.brand-submit {
  border-top: 1px solid #e6e6e6;
  color: #777;
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 22px;
  text-align: center;
}

.brand-submit a {
  color: #111;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--theme-color);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.brand-submit a:hover {
  color: var(--theme-text);
  text-decoration-color: currentColor;
}

.brand-submit a:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--theme-color-focus);
  outline-offset: 3px;
}

/* ── RECIPIENT DIRECTORY ── */
.recipient-directory {
  background: #f5f5f5;
  padding: 42px 24px 52px;
}

.recipient-directory-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.recipient-directory-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.recipient-directory-intro h2 {
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.recipient-directory-intro p,
.recipient-directory-note {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.75;
}

.recipient-directory-search {
  display: grid;
  gap: 8px;
  justify-items: center;
  max-width: 520px;
  margin: 0 auto 30px;
}

.recipient-directory-search label {
  color: #111;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.recipient-directory-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 650;
  outline: 0;
  padding: 11px 14px;
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

.recipient-directory-search input::placeholder {
  color: #777;
  opacity: 1;
}

.recipient-directory-search input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px var(--theme-color-focus);
}

.recipient-directory-search p {
  color: #666;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.recipient-directory-section {
  margin-top: 34px;
}

.recipient-directory-section[hidden],
.recipient-link-card[hidden] {
  display: none;
}

.recipient-directory-section h3 {
  color: #111;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.recipient-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.recipient-link-card {
  display: grid;
  gap: 7px;
  min-height: 112px;
  align-content: start;
  padding: 16px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.recipient-link-card span {
  color: #111;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.recipient-link-card small {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.45;
}

.recipient-link-card:hover {
  border-color: var(--theme-color);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.recipient-link-card:focus-visible {
  outline: 3px solid var(--theme-color-focus);
  outline-offset: 3px;
}

.recipient-directory-note {
  border-top: 1px solid #ddd;
  margin-top: 34px;
  padding-top: 22px;
}

.recipient-directory-note a {
  color: #111;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--theme-color);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-food {
  --theme-color: #e0625c;
  --theme-color-soft: rgba(224,98,92,0.24);
  --theme-color-strong: rgba(224,98,92,0.36);
  --theme-color-focus: rgba(224,98,92,0.42);
  --theme-text: #a9443f;
  --theme-text-hover: #873732;
}

.page-food .header {
  background: #e0625c;
}

.page-food .header-inner {
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
}

.page-food .header-logo--food {
  max-width: 208px;
}

.page-food .header-logo--food img {
  width: 208px;
  max-width: 208px;
  aspect-ratio: 598 / 86;
  height: auto;
  transform: translateY(-3px);
}

.page-food .hero-badge {
  color: #fff;
}

.page-food .filter-sentence {
  text-align: center;
}

.page-food [data-filter-group="style"],
.page-food .food-hidden-filter {
  display: none;
}

/* ── FOOTER ── */
.partner-footer {
  background: #fff;
  border-top: 1px solid #d8d8d8;
  padding: 26px 24px 30px;
  text-align: center;
}

.partner-footer-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.partner-footer p {
  color: #666;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
}

.linkaway-logo-bar {
  position: relative;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  margin: 10px auto 0;
}

.linkaway-logo-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  border-radius: 0 999px 999px 0;
}

@keyframes linkaway-flow-green {
  0%, 100% { width: 22%; }
  50% { width: 42%; }
}

@keyframes linkaway-flow-yellow {
  0%, 100% { width: 48%; }
  50% { width: 66%; }
}

@keyframes linkaway-flow-orange {
  0%, 100% { width: 74%; }
  50% { width: 90%; }
}

.linkaway-logo-layer-4 {
  width: 100%;
  background-color: #ff5e4d;
  z-index: 1;
}

.linkaway-logo-layer-3 {
  animation: linkaway-flow-orange 4s ease-in-out infinite alternate;
  background-color: #fa9e4f;
  z-index: 2;
  animation-delay: 0.2s;
}

.linkaway-logo-layer-2 {
  animation: linkaway-flow-yellow 4s ease-in-out infinite alternate;
  background-color: #f9d448;
  z-index: 3;
  animation-delay: 0.1s;
}

.linkaway-logo-layer-1 {
  animation: linkaway-flow-green 4s ease-in-out infinite alternate;
  background-color: #17c3a5;
  z-index: 4;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.55rem;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-content-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .end-list-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .end-list-cta-button {
    justify-self: start;
  }

  .recipient-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 0 16px;
  }

  .header-inner {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 0;
    position: relative;
  }

  .page-food .header-inner {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .header-menu-toggle {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    grid-column: 1;
    align-items: center;
    justify-content: center;
    justify-self: start;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
  }

  .header-menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .header-menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .header-menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .header.is-menu-open .header-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .header.is-menu-open .header-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.is-menu-open .header-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .header-menu-toggle:focus-visible {
    outline: 3px solid rgba(255,255,255,0.48);
    outline-offset: 2px;
  }

  .header-logo {
    grid-column: 2;
    justify-self: center;
    width: min(156px, 100%);
  }

  .favorites-mobile-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .favorites-mobile-toggle svg {
    width: 23px;
    height: 23px;
    stroke-width: 2.25;
  }

  .favorites-mobile-toggle:not(.is-open) svg {
    fill: #e8303a;
    stroke: #fff;
  }

  .favorites-mobile-count {
    position: absolute;
    right: 1px;
    bottom: 4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e8303a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.63rem;
    font-weight: 900;
    line-height: 1;
  }

  .favorites-mobile-toggle.is-open .favorites-mobile-count {
    display: none;
  }

  .page-food .header-logo--food {
    width: 208px;
    max-width: min(208px, 100%);
  }

  .page-food .header-logo--food img {
    width: 100%;
    max-width: 208px;
    aspect-ratio: 598 / 86;
    transform: translateY(-3px);
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    display: grid;
    gap: 0;
    width: auto;
    padding: 6px 16px 10px;
    background: #111;
    border-radius: 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    justify-self: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .page-food .header-nav {
    background: #e0625c;
  }

  .header.is-menu-open .header-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-nav a,
  .header-nav-dropdown-toggle {
    border-radius: 0;
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 0;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .header-nav-dropdown {
    position: static;
    display: grid;
  }

  .header-nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .header-nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 6px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .header-nav-dropdown-menu::before {
    display: none;
  }

  .page-food .header-nav-dropdown-menu {
    background: transparent;
  }

  .header-nav-dropdown.is-open .header-nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .header-nav-dropdown-menu a {
    min-height: 34px;
    padding: 0 0 0 10px;
  }

  .header-nav-dropdown:hover .header-nav-dropdown-menu {
    transform: none;
  }

  .header-nav a:hover,
  .header-nav a:focus-visible,
  .header-nav-dropdown-toggle:hover,
  .header-nav-dropdown-toggle:focus-visible {
    background: rgba(255,255,255,0.1);
  }

  .favorites-launcher {
    display: none;
  }
}

@media (max-width: 640px) {
  .recipient-directory {
    padding: 34px 16px 42px;
  }

  .recipient-directory-intro {
    margin-bottom: 24px;
  }

  .recipient-link-grid {
    grid-template-columns: 1fr;
  }

  .recipient-link-card {
    min-height: 0;
  }

  .back-link::before {
    display: none;
  }

  .hero {
    padding: 38px 18px 32px;
  }

  .hero-badge {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .author-mini-bio {
    max-width: 520px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 13px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .author-mini-bio-photo {
    width: 50px;
    height: 50px;
  }

  .author-mini-bio p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .author-mini-bio .author-mini-bio-byline {
    margin-bottom: 3px;
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .filter-bar-inner {
    padding: 7px 16px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 64px;
  }

  .filter-sentence {
    display: none;
  }

  .filter-group {
    position: static;
  }

  .filter-panel {
    left: 16px;
    right: 16px;
    top: calc(100% - 6px);
    width: auto;
    max-height: min(420px, calc(100vh - 170px));
    overflow-y: auto;
  }

  .clear-filters {
    font-size: 0.76rem;
  }

  .filter-bar.is-mobile-open {
    z-index: 300;
  }

  .mobile-filter-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .active-filter-chips {
    display: none;
  }

  .active-filter-chips--mobile {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    margin-top: -2px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .active-filter-chips::-webkit-scrollbar {
    display: none;
  }

  .active-filter-chip {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 6px 9px 6px 11px;
    font-size: 0.72rem;
  }

  .mobile-filter-open {
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-filter-phrase {
    display: block;
    color: #111;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.25;
  }

  .mobile-filter-summary-copy {
    min-width: 0;
  }

  .mobile-filter-label {
    display: block;
    color: #555;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-filter-actions {
    display: block;
  }

  #mobile-count-display {
    display: none;
  }

  .mobile-clear-filters {
    border: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
  }

  .mobile-clear-filters[hidden] {
    display: none;
  }

  .mobile-filter-open:focus-visible,
  .mobile-clear-filters:focus-visible,
  .mobile-filter-row:focus-visible,
  .mobile-filter-back:focus-visible,
  .mobile-filter-close:focus-visible,
  .mobile-filter-apply:focus-visible {
    outline: 3px solid rgba(232,48,58,0.36);
    outline-offset: 3px;
  }

  .mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.42);
    border: 0;
    padding: 0;
    z-index: 1;
  }

  .filter-bar.is-mobile-open .mobile-filter-overlay {
    display: block;
  }

  .mobile-filter-overlay[hidden],
  .mobile-filter-sheet[hidden] {
    display: none;
  }

  .mobile-filter-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    max-height: min(82vh, 680px);
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -18px 45px rgba(0,0,0,0.24);
    overflow: hidden;
    transform: translateY(105%);
    transition: transform 0.22s ease;
    z-index: 2;
  }

  .filter-bar.is-mobile-open .mobile-filter-sheet {
    transform: translateY(0);
  }

  .mobile-filter-header {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #eee;
  }

  .mobile-filter-title {
    color: #111;
    font-size: 1.05rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-filter-back,
  .mobile-filter-close {
    border: 0;
    background: #f2f2f2;
    color: #111;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 850;
    line-height: 1;
  }

  .mobile-filter-back {
    font-size: 1rem;
  }

  .mobile-filter-back[hidden] {
    visibility: hidden;
  }

  .mobile-filter-body {
    display: grid;
    gap: 0;
    padding: 4px 18px 14px;
    overflow-y: auto;
  }

  .mobile-filter-section {
    display: grid;
    border-bottom: 1px solid #eee;
  }

  .mobile-filter-sheet.is-choosing .mobile-filter-section:not(.is-active-section) {
    display: none;
  }

  .mobile-filter-row {
    border: 0;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    text-align: left;
  }

  .mobile-filter-section-title {
    color: #111;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
  }

  .mobile-filter-section-value {
    display: block;
    color: #888;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 3px;
  }

  .mobile-filter-row .filter-chevron {
    color: #111;
    width: 7px;
    height: 7px;
    transform: rotate(-45deg);
  }

  .mobile-filter-row[aria-expanded="true"] .filter-chevron {
    transform: rotate(-45deg);
  }

  .mobile-filter-options {
    display: grid;
    gap: 6px;
    padding: 10px 0 12px;
  }

  .mobile-filter-options[hidden] {
    display: none;
  }

  .mobile-filter-options .filter-option {
    min-height: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    border: 0;
    border-radius: 6px;
    padding: 8px 10px;
  }

  .mobile-filter-options .filter-option.is-active {
    background: #111;
  }

  .mobile-filter-footer {
    display: grid;
    gap: 10px;
    padding: 12px 18px max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid #eee;
    background: #fff;
  }

  .mobile-filter-apply {
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    min-height: 48px;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .count-bar {
    display: none;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 56px;
  }

  .favorites-launcher {
    display: none;
  }

  .back-to-top {
    bottom: max(16px, env(safe-area-inset-bottom));
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.74rem;
  }

  .favorites-panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 75dvh;
    max-height: 75dvh;
    padding: 18px 16px 16px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -18px 42px rgba(0,0,0,0.26);
    transform: translateY(100%);
  }

  .favorites-panel-root.is-open .favorites-panel {
    transform: translateY(0);
  }

  .favorites-panel-header {
    padding-bottom: 13px;
  }

  .favorites-panel-header h2 {
    font-size: 1.32rem;
  }

  .favorites-list {
    padding: 14px 0;
  }

  .favorites-item-link {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .favorites-item-link img {
    width: 56px;
    height: 56px;
  }

  .grid-loader {
    gap: 10px;
  }

  .grid-loader-label {
    font-size: 0.72rem;
  }

  .card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transform: none;
  }

  .card:hover .card-img-wrap img,
  .card:hover .card-img-wrap video,
  .card:focus-visible .card-img-wrap img,
  .card:focus-visible .card-img-wrap video {
    transform: none;
  }

  .card:hover .card-img-wrap video.card-video-hover,
  .card:focus-visible .card-img-wrap video.card-video-hover {
    opacity: 0;
  }

  .card.card-video-active .card-img-wrap video.card-video-hover {
    opacity: 1;
  }

  .card-video-toggle {
    display: inline-flex;
  }

  .card-video-indicator {
    display: none;
  }

  .card-body {
    padding: 15px 16px 18px;
  }

  .card-footer {
    align-items: stretch;
  }

  .card-cta {
    padding: 9px 13px;
    white-space: nowrap;
  }

  .partner-footer {
    padding: 24px 16px 28px;
  }

  .end-list-cta {
    margin-bottom: 28px;
    width: calc(100% - 36px);
    padding: 18px;
  }

  .end-list-cta p {
    font-size: 0.94rem;
  }

  .end-list-cta-button {
    width: 100%;
    white-space: normal;
  }

  .seo-content {
    padding: 36px 18px 40px;
  }
}

@media (max-width: 380px) {
  .card-footer {
    flex-direction: column;
  }

  .card-cta {
    width: 100%;
  }
}
