:root {
      --canvas: #ffffff;
      --surface: #ffffff;
      --brand: #4a3f3c;
      --accent: #f0b15c;
      --accent-muted: #f7d9b4;
      --accent-soft: #fdf4e5;
      --neutral: #e4e7ec;
      --text: #111111;
    --text-muted: rgba(17, 17, 17, 0.72);
    --max-width: 1400px;
    --page-padding: 16px;
      --nav-width: 420px;
      --profile-size: 52px;
      --profile-size-mobile: 42px;
      --shadow-soft: 0 6px 16px rgba(0, 0, 0, 0.03);
      --shadow-footer: 0 -4px 18px rgba(0, 0, 0, 0.06);
      --cookie-bg: #fef8f1;
      --cookie-text: #111111;
      --cookie-muted: #4f4f4f;
      --cookie-accept: #f0b15c;
      --cookie-decline: #ffffff;
      --cookie-border: #e4e7ec;
      --cookie-shadow: 0 16px 32px rgba(17, 17, 17, 0.14);
      --products-rail: #ffffff;
      --products-border: rgba(240, 177, 92, 0.4);
      --products-card: #ffffff;
      --products-cta: #f0b15c;
    }

    @font-face {
      font-family: "Inter";
      src: url("/assets/assets/fonts/Inter-Regular.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: "Inter";
      src: url("/assets/assets/fonts/Inter-SemiBold.ttf") format("truetype");
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: "Inter";
      src: url("/assets/assets/fonts/Inter-ExtraBold.ttf") format("truetype");
      font-weight: 800;
      font-style: normal;
      font-display: swap;
    }

    * {
      box-sizing: border-box;
    }

    body {
      overflow-y: scroll;
      margin: 0;
      font-family: "Inter", "Segoe UI", Roboto, "Noto Sans", Helvetica, Arial, sans-serif;
      color: var(--text);
      background: var(--canvas);
      line-height: 1.4;
    }

    .vergleichen-page {
      background: #ffffff;
    }

    .vergleichen-page .hero,
    .vergleichen-page .hero-shell {
      background: #ffffff;
    }

    .vergleichen-page .hero-shell::before {
      background: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--page-padding);
    }

    @media (min-width: 900px) {
      :root {
        --page-padding: 28px;
        --nav-width: 420px;
      }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      padding-top: env(safe-area-inset-top, 0px);
      background: #ffffff;
      border-bottom: 1px solid rgba(228, 231, 236, 0.8);
      box-shadow: var(--shadow-soft);
    }

    .header-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      height: 90px;
      display: grid;
      grid-template-columns: 1fr var(--nav-width) 1fr;
      align-items: center;
      padding: 0 var(--page-padding);
    }
    .header-inner > .header-left,
    .header-inner > .header-center,
    .header-inner > .header-right {
      height: 100%;
    }
    .header-left > *,
    .header-center > *,
    .header-right > * {
      align-self: center;
    }

    .header-left,
    .header-center,
    .header-right {
      display: flex;
      align-items: center;
    }

    .header-left {
      gap: 12px;
    }

    .header-center {
      justify-content: center;
      gap: 24px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .header-right {
      justify-content: flex-end;
      gap: 12px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 40px;
    }

    .logo img {
      height: 40px;
      width: 154px;
      object-fit: contain;
    }

    .nav-link,
    .logo,
    .icon-button {
      position: relative;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.1px;
      color: rgba(17, 17, 17, 0.55);
      padding-bottom: 8px;
      transition: transform 0.2s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 4px;
      height: 4px;
      background: var(--accent);
      border-radius: 999px;
      transform: scaleX(0);
      transform-origin: center;
      opacity: 0;
      transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .nav-link.active {
      color: var(--text);
    }

    .nav-link.active::after {
      transform: scaleX(1);
      opacity: 1;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .logo:hover,
    .logo:focus-within,
    .icon-button:hover,
    .icon-button:focus-visible {
      color: var(--text);
      transform: translateY(-2px);
    }

    .icon-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: none;
      background: transparent;
      cursor: pointer;
      color: var(--text);
    }

    .icon-button svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
    }

    .icon-button img {
      width: 24px;
      height: 24px;
    }

    .menu-button {
      display: none;
    }

    .mobile-logo {
      display: none;
    }
    @media (max-width: 1100px) {
      .header-inner {
        grid-template-columns: auto 1fr auto;
      }
      .menu-button {
        display: inline-flex;
      }
      .header-left {
        justify-content: flex-start;
      }
      .header-center {
        justify-content: center;
      }
      .header-right {
        justify-content: flex-end;
      }
      .nav-links {
        display: none;
      }
      .search-button {
        display: none;
      }
      .logo {
        display: none;
      }
      .mobile-logo {
        display: inline-flex;
      }
      .mobile-logo img {
        height: 30px;
        width: 115px;
      }
      .hero-shell {
        padding: 22px 18px;
      }
      .hero-shell::before {
        width: 540px;
        height: 540px;
        opacity: 0.22;
        transform: translate(-50%, -55%);
      }
      .hero-meta {
        display: none;
      }
      .hero-meta-mobile {
        display: block;
      }
      .hero-title-mobile,
      .hero-subtitle-mobile {
        display: none;
      }
      .hero-categories {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        gap: 12px;
        white-space: nowrap;
      }
      .hero-chip {
        flex: 0 0 auto;
        scroll-snap-align: start;
      }
      .hero-cta .cta-button {
        padding: 10px 14px;
        font-size: 14px;
      }
    }

    .mobile-drawer {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 1200;
    }

    .mobile-drawer.active {
      display: block;
    }

    .mobile-drawer-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
    }

    .mobile-drawer-panel {
      position: absolute;
      top: 0;
      left: 0;
      width: min(320px, 86vw);
      height: 100%;
      background: var(--canvas);
      box-shadow: 6px 0 24px rgba(0, 0, 0, 0.12);
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      transform: translateX(-100%);
      transition: transform 0.25s ease;
    }

    .mobile-drawer.active .mobile-drawer-panel {
      transform: translateX(0);
    }

    .drawer-card {
      padding: 18px 16px;
      border-radius: 20px;
      border: 1px solid var(--neutral);
      background: linear-gradient(135deg, #ffffff, #fdf9f3, #fdf4e5);
      margin-bottom: 16px;
    }

    .drawer-title {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -0.4px;
      margin: 0 0 6px;
    }

    .drawer-subtitle {
      margin: 0;
      font-size: 12px;
      font-weight: 600;
      font-style: italic;
      color: rgba(17, 17, 17, 0.65);
    }

    .drawer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .drawer-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 18px;
      border: 1px solid rgba(228, 231, 236, 0.6);
      color: rgba(17, 17, 17, 0.9);
      font-weight: 500;
    }

    .drawer-link.active {
      background: var(--accent-soft);
      border-color: var(--accent-muted);
      font-weight: 600;
    }

    .drawer-icon {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--surface);
      color: rgba(17, 17, 17, 0.7);
    }

    .drawer-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }

    .drawer-link.active .drawer-icon {
      background: var(--accent-muted);
      color: var(--accent);
    }

    .hero {
      padding: 32px 0 18px;
      background: #ffffff;
    }

    .hero-shell {
      padding: 34px;
      position: relative;
      overflow: hidden;
      background: #ffffff;
    }

    @media (min-width: 900px) {
      .hero-shell {
        min-height: clamp(560px, 85vh, 880px);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-categories {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
        padding-bottom: 0;
      }
      .hero-chip {
        flex: 0 1 auto;
      }
    }

      .hero-shell::before {
        content: "";
        position: absolute;
        width: 820px;
        height: 820px;
        border-radius: 50%;
        background: none;
        opacity: 0;
        top: 0;
        left: 0;
        transform: none;
        z-index: 0;
        pointer-events: none;
      }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: center;
      color: rgba(17, 17, 17, 0.65);
      font-size: 15px;
    }

    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-meta-item svg {
      width: 18px;
      height: 18px;
      stroke: var(--text);
    }

    .hero-title {
      font-size: clamp(28px, 3.2vw, 40px);
      font-weight: 600;
      letter-spacing: -0.5px;
      margin: 0;
    }

    .hero-title-mobile,
    .hero-subtitle-mobile {
      display: none;
    }

    .hero-subtitle {
      margin: 0;
      font-size: clamp(16px, 2vw, 20px);
      color: rgba(17, 17, 17, 0.75);
      line-height: 1.55;
    }

    .hero-meta-mobile {
      display: none;
      font-size: 15px;
      color: rgba(17, 17, 17, 0.7);
      line-height: 1.4;
    }

    .hero-categories {
      width: 100%;
      display: flex;
      flex-wrap: nowrap;
      gap: 12px;
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 6px;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
      white-space: nowrap;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 56px;
      padding: 0 12px;
      min-width: 120px;
      width: clamp(120px, 45vw, 170px);
      border-radius: 20px;
      background: var(--accent-soft);
      border: 1px solid var(--neutral);
      font-weight: 600;
      color: rgba(0, 0, 0, 0.78);
      white-space: nowrap;
      flex: 0 0 auto;
      scroll-snap-align: start;
    }

    @media (min-width: 900px) {
      .hero-categories {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
        padding-bottom: 0;
      }
      .hero-chip {
        flex: 0 1 auto;
      }
    }

    .hero-cta {
      margin-top: 12px;
    }

    .cta-button,
    .load-more-button,
    .cta-shop {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 18px;
      background: var(--accent);
      color: #111111;
      font-weight: 600;
      font-size: 15px;
      border: none;
      min-width: 180px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(204, 138, 55, 0.25);
    }
    .cta-button:not(:disabled):hover,
    .load-more-button:not(:disabled):hover,
    .cta-shop:not(:disabled):hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 35px rgba(204, 138, 55, 0.35);
    }

    .section {
      width: 100%;
    }

    .benefits {
      margin-top: 56px;
      padding: 56px 0;
      background: linear-gradient(180deg, #fdf4e5 0%, #fef6ec 72%, #fefbf6 100%);
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      font-weight: 600;
      letter-spacing: -0.2px;
      margin: 0 0 8px;
    }

    .section-subtitle {
      text-align: center;
      font-size: 18px;
      color: rgba(17, 17, 17, 0.8);
      margin: 0 0 32px;
    }

    .benefits-grid {
      display: grid;
      gap: 18px;
      justify-content: center;
      grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    }

    .benefit-card {
      background: #ffffff;
      border-radius: 22px;
      border: 1px solid var(--accent);
      padding: 22px 20px;
      text-align: center;
    }

    .benefit-title {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 18px;
    }

    .benefit-text {
      margin: 0;
      color: rgba(17, 17, 17, 0.75);
      line-height: 1.5;
    }

    .benefits-cta {
      margin-top: 26px;
      text-align: center;
    }

    .section-gap {
      height: 24px;
    }

    .two-steps {
      background: #ffffff;
      padding: 56px 0 40px;
    }

    .two-steps-title {
      font-size: 30px;
      font-weight: 600;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-align: center;
      margin: 0 0 40px;
    }

    .two-steps-image {
      max-width: 820px;
      margin: 0 auto 24px;
    }

    .two-steps-cta {
      text-align: center;
    }

    .mission {
      background: linear-gradient(180deg, #fdf4e5 0%, #fef6ec 72%, #fefbf6 100%);
      padding: 56px 0;
    }

    .mission-card {
      background: #ffffff;
      border-radius: 22px;
      border: 1px solid var(--accent);
      padding: 40px 52px;
      text-align: center;
    }

    .mission-card h3 {
      margin: 0 0 14px;
      font-size: 26px;
      font-weight: 600;
    }

    .mission-card p {
      margin: 0 0 16px;
      color: rgba(17, 17, 17, 0.9);
      line-height: 1.55;
    }

    .mission-card .mission-highlight {
      font-weight: 600;
      color: rgba(17, 17, 17, 0.7);
    }
    .faq {
      background: linear-gradient(180deg, #ffffff 0%, #fefbf6 100%);
      padding: 56px 0 40px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }

    .faq-item {
      width: min(100%, 860px);
      background: #ffffff;
      border-radius: 20px;
      border: 1px solid rgba(228, 231, 236, 0.6);
      padding: 0;
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 16px 20px;
      font-weight: 600;
      font-size: 18px;
      color: rgba(17, 17, 17, 0.9);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      font-size: 22px;
      color: var(--accent);
      transition: transform 0.2s ease;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-item p {
      margin: 0;
      padding: 0 20px 18px;
      color: rgba(17, 17, 17, 0.78);
      line-height: 1.55;
    }

    .footer {
      background: #ffffff;
      border-top: 1px solid rgba(228, 231, 236, 0.8);
      box-shadow: var(--shadow-footer);
      padding: 12px 0;
    }

    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-divider {
      height: 1px;
      background: rgba(228, 231, 236, 0.6);
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: space-between;
    }

    .footer-col h4 {
      margin: 0 0 8px;
      font-size: 14px;
      font-weight: 600;
    }

    .footer-col a {
      display: block;
      margin-bottom: 6px;
      font-size: 13px;
    }

    .footer-affiliate {
      text-align: center;
      font-size: 13px;
      line-height: 1.4;
    }

    .footer-bottom {
      text-align: center;
      font-size: 12px;
      color: rgba(17, 17, 17, 0.8);
    }

    .footer-social {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

@media (max-width: 640px) {
      .cta-button {
        padding: 11px 16px;
        font-size: 15px;
      }
      .benefits {
        padding: 38px 0;
      }
      .section-title {
        font-size: 26px;
      }
      .section-subtitle {
        font-size: 16px;
      }
      .two-steps {
        padding: 40px 0;
      }
      .two-steps-title {
        font-size: 24px;
        text-align: center;
      }
      .mission-card {
        padding: 24px 16px;
      }
      .faq {
        padding: 40px 0;
      }
      .footer-columns {
        flex-direction: column;
        align-items: flex-start;
  }
}

.seo-explainer-section {
  padding: 32px 0 80px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0) 0%, rgba(247, 248, 250, 0.92) 100%);
}
.seo-explainer-inner {
  display: grid;
  gap: 24px;
}
.seo-explainer-heading {
  max-width: 880px;
}
.seo-explainer-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111111;
}
.seo-explainer-intro {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.78);
}
.seo-explainer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.seo-explainer-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 231, 236, 0.95);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.05);
}
.seo-explainer-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111111;
}
.seo-explainer-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
}
.seo-explainer-card a {
  color: #111111;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
@media (max-width: 899px) {
  .seo-explainer-section {
    padding: 24px 0 64px;
  }
  .seo-explainer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .seo-explainer-card {
    padding: 18px;
    border-radius: 18px;
  }
  .seo-explainer-card h3 {
    font-size: 18px;
  }
  .seo-explainer-card p,
  .seo-explainer-intro {
    font-size: 15px;
  }
}

.product-card__status-tag--profile::before {
  content: "\1F43E";
}

    #cookie-banner {
      position: fixed;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 9999;
      display: none;
      max-width: 560px;
      margin: 0 auto;
      padding: 14px 16px;
      background: var(--cookie-bg);
      color: var(--cookie-text);
      border: 1px solid var(--cookie-border);
      border-radius: 14px;
      box-shadow: var(--cookie-shadow);
      font: 13px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    #cookie-banner p {
      margin: 0 0 14px 0;
      color: var(--cookie-muted);
    }
    #cookie-banner .cookie-title {
      margin: 0 0 6px 0;
      font-size: 16px;
      font-weight: 700;
      color: var(--cookie-text);
    }
    #cookie-banner .cookie-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    #cookie-accept,
    #cookie-decline,
    #cookie-settings {
      border: 1.5px solid transparent;
      padding: 11px 16px;
      border-radius: 10px;
      color: #111111;
      cursor: pointer;
      font-weight: 600;
      letter-spacing: 0.2px;
      font-size: 9px;
    }
    #cookie-accept {
      background: var(--cookie-accept);
      color: #111111;
    }
    #cookie-decline {
      background: var(--cookie-decline);
      border-color: var(--cookie-accept);
    }
    #cookie-settings {
      background: #111111;
      color: #ffffff;
    }

    :root {
      --products-rail: #ffffff;
      --products-border: rgba(228, 231, 236, 0.8);
      --products-card: #ffffff;
      --products-cta: #f0b15c;
    }

    .products-section {
      background: #ffffff;
      padding: 56px 0 64px;
    }
    main {
      background: #ffffff;
    }
    .products-heading {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 14px;
      margin-bottom: 32px;
    }
    .products-heading.centered {
      align-items: center;
      text-align: center;
    }
    .products-heading h1,
    .products-heading h2 {
      margin: 0;
      font-size: clamp(28px, 3vw, 34px);
      font-weight: 600;
    }
    .products-heading-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      width: 100%;
    }
    .products-categories-wrapper {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      flex-wrap: nowrap;
    }
    .products-categories {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      justify-content: flex-start;
      align-items: center;
      overflow-x: auto;
      padding: 2px 2px 4px;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
      white-space: nowrap;
    }
    .products-categories.is-centered {
      justify-content: center;
    }
    .products-food-types-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 4px;
    }
    .products-food-types {
      width: 100%;
      max-width: 760px;
      display: flex;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      gap: 6px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
      padding: 2px 2px 4px;
      white-space: nowrap;
    }
    .products-food-types.is-centered {
      justify-content: center;
    }
    .products-food-type-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--neutral);
      background: #ffffff;
      color: rgba(17, 17, 17, 0.75);
      border-radius: 999px;
      height: 30px;
      padding: 0 10px;
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      cursor: pointer;
      white-space: nowrap;
      flex: 0 0 auto;
      scroll-snap-align: start;
      touch-action: manipulation;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      outline: none;
      transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }
    .products-food-type-chip:hover,
    .products-food-type-chip:focus-visible {
      border-color: var(--products-cta);
      box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.34);
      outline: none;
    }
    .products-food-type-chip.active {
      border-color: var(--products-cta);
      background: var(--accent-soft);
      color: rgba(17, 17, 17, 0.9);
      box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.48);
    }
    .hero-profile-trigger {
      width: var(--profile-size);
      height: var(--profile-size);
      border-radius: 18px;
      border: 1px solid var(--neutral);
      background: var(--accent-soft);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex: 0 0 auto;
      box-shadow: none;
      transition: transform 0.2s ease;
      scroll-snap-align: start;
      margin-left: 0;
      align-self: center;
    }
    .hero-profile-trigger:hover,
    .hero-profile-trigger:focus-visible {
      transform: translateY(-2px);
    }

    .hero-profile-trigger img {
      width: 75%;
      height: 75%;
      object-fit: contain;
    }
    .hero-profile-trigger:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
    }
    .hero-profile-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-price-panel-wrapper {
      position: relative;
      z-index: 1;
    }
    .hero-price-trigger {
      width: var(--profile-size);
      height: var(--profile-size);
      border-radius: 18px;
      border: 1px solid var(--neutral);
      background: var(--accent-soft);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex: 0 0 auto;
      box-shadow: none;
      transition: transform 0.2s ease;
      scroll-snap-align: start;
      margin-left: 0;
      align-self: center;
      position: relative;
      z-index: 1;
      pointer-events: auto;
    }
    .hero-price-trigger--active {
      border-color: rgba(229, 162, 82, 0.62);
      box-shadow: 0 0 0 3px rgba(240, 177, 92, 0.16);
    }
    .hero-price-trigger:hover,
    .hero-price-trigger:focus-visible {
      transform: translateY(-2px);
    }
    .hero-price-trigger-badge {
      position: absolute;
      top: -6px;
      right: -6px;
      min-width: 20px;
      height: 20px;
      padding: 0 6px;
      border-radius: 999px;
      background: #1d140b;
      color: #ffffff;
      border: 2px solid #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0.02em;
      box-shadow: 0 8px 18px rgba(17, 17, 17, 0.16);
    }
    .hero-price-trigger svg {
      width: 65%;
      height: 65%;
      color: #2d1f0f;
    }
    .hero-price-panel {
      display: none;
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      width: min(560px, 96vw);
      max-width: 560px;
      max-height: min(86vh, 760px);
      padding: 20px 20px 18px;
      border-radius: 26px;
      border: 1px solid rgba(17, 17, 17, 0.12);
      background: #ffffff;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
      z-index: 2000;
      flex-direction: column;
      gap: 12px;
      pointer-events: none;
    }
    .hero-price-panel--visible {
      display: flex;
      pointer-events: auto;
    }
    @media (max-width: 899px) {
      :root {
        --products-mobile-control-height: 44px;
        --profile-size: var(--profile-size-mobile);
      }
      .products-categories-wrapper {
        gap: 10px;
        flex-wrap: nowrap;
        align-items: center;
      }
      .products-categories {
        gap: 6px;
        align-items: center;
      }
      .products-categories .products-category-chip {
        height: var(--products-mobile-control-height);
        min-width: 98px;
        width: auto;
        padding: 0 9px;
        border-radius: 14px;
      }
      .products-categories .products-category-chip span:last-child {
        font-size: 11px;
      }
      .hero-profile-actions {
        gap: 8px;
        align-items: center;
      }
      .hero-profile-trigger,
      .hero-price-trigger {
        width: var(--products-mobile-control-height);
        height: var(--products-mobile-control-height);
        border-radius: 14px;
      }
      .hero-price-trigger-badge {
        top: -5px;
        right: -5px;
      }
      .products-food-types-wrapper {
        margin-top: 2px;
      }
      .products-food-types {
        gap: 5px;
        padding: 0 1px 2px;
      }
      .products-food-type-chip {
        height: 28px;
        padding: 0 9px;
        font-size: 10px;
      }
      .hero-price-panel-wrapper::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(17, 17, 17, 0.28);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 2190;
      }
      .hero-price-panel-wrapper.is-open::before {
        opacity: 1;
        pointer-events: auto;
      }
      .hero-price-panel {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-width: none;
        height: min(88vh, 760px);
        max-height: min(88vh, 760px);
        padding: max(18px, env(safe-area-inset-top)) 16px calc(18px + env(safe-area-inset-bottom));
        border-radius: 20px 20px 0 0;
        border: 1px solid rgba(17, 17, 17, 0.12);
        box-shadow: 0 -24px 44px rgba(0, 0, 0, 0.25);
        transform: translateY(102%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
        z-index: 2200;
        pointer-events: none;
      }
      .hero-price-panel-head {
        display: flex;
      }
      .hero-price-panel.hero-price-panel--visible {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
      body.has-price-panel-open {
        overflow: hidden;
      }
    }
    .products-category-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 50px;
      padding: 0 14px;
      min-width: 118px;
      width: clamp(118px, 42vw, 176px);
      border-radius: 18px;
      background: var(--accent-soft);
      border: 1px solid var(--neutral);
      font-weight: 600;
      color: rgba(0, 0, 0, 0.78);
      white-space: nowrap;
      flex: 0 0 auto;
      scroll-snap-align: start;
      cursor: pointer;
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }
    .products-category-chip span:last-child {
      font-size: 12px;
    }
    .products-category-chip:hover,
    .products-category-chip:focus-visible {
      border-color: var(--products-cta);
      box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.34);
      outline: none;
    }
    .products-category-chip.active {
      border-color: var(--products-cta);
      background: #fff7ea;
      color: rgba(17, 17, 17, 0.9);
      box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.48);
    }

    @media (min-width: 1200px) {
      .products-categories-wrapper {
        flex-wrap: wrap;
      }
      .products-categories {
        flex: 0 1 auto;
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
        padding-bottom: 0;
      }
      .products-category-chip {
        flex: 0 0 auto;
        width: 180px;
        min-width: 180px;
        padding: 0 16px;
      }
      .products-category-chip span:last-child {
        font-size: 13px;
      }
      .products-food-type-chip {
        font-size: 11px;
      }
      .products-food-types {
        justify-content: center;
        overflow: visible;
        padding: 2px 0 0;
      }
    }
    .products-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .product-card {
      position: relative;
      display: grid;
      grid-template-rows: auto min-content;
      gap: 12px;
      background: var(--products-card);
      border: 1px dashed var(--products-border);
      border-radius: 26px;
      padding: 20px 24px;
      align-items: flex-start;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
    }
    .product-card__media {
      width: 120px;
      height: 120px;
      border-radius: 16px;
      background: rgba(240, 240, 240, 0.9);
      overflow: hidden;
      border: 1px solid rgba(228, 231, 236, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      margin-bottom: 20px;
    }
    .product-card__dog-check {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 2px solid #2c9d68;
      background: #ecf7f0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      margin-left: auto;
    }
    .product-card__dog-check img {
      width: 24px;
      height: 24px;
      display: block;
    }
    .product-card__info {
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: flex-start;
      justify-self: flex-start;
      align-self: flex-start;
      text-align: left;
      min-width: 0;
      width: 100%;
    }
    .product-card__details-wrapper {
      justify-self: stretch;
      align-self: flex-start;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0;
      align-items: flex-start;
      margin-top: 0;
    }
    .product-card__details-header {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .product-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .product-card__brand {
      margin: 0;
      font-size: 12px;
      letter-spacing: 0.2px;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.65);
      overflow-wrap: anywhere;
    }
    .product-card__info h3 {
      margin: 0;
      font-size: clamp(15px, 1.2vw, 16px);
      font-weight: 600;
      line-height: 1.3;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .product-card__family-meta {
      margin: 2px 0 0;
      font-size: 12px;
      color: rgba(17, 17, 17, 0.6);
      letter-spacing: 0.1px;
      overflow-wrap: anywhere;
    }
    .product-card__details {
      margin: 0;
      color: rgba(17, 17, 17, 0.72);
      font-size: 14px;
      line-height: 1.5;
      max-width: 560px;
    }
    .product-card__protein {
      margin: 0;
      font-size: 13px;
      color: rgba(17, 17, 17, 0.72);
      letter-spacing: 0.1px;
      overflow-wrap: anywhere;
    }
    .product-card__status-tags {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      overflow-y: hidden;
      flex-wrap: nowrap;
      padding: 2px 0 2px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .product-card__status-tags::-webkit-scrollbar {
      display: none;
    }
    .product-card__status-tag {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      white-space: nowrap;
    }
    .product-card__status-tag--profile::before {
      content: 'Ã°Å¸ÂÂ¾';
      font-size: 11px;
      margin-right: 6px;
      line-height: 1;
    }
    .product-card__status-tag--green {
      background: #ecf7f0;
      color: #1d7a4e;
      border: 1px solid rgba(44, 157, 104, 0.24);
    }
    .product-card__status-tag--gray {
      background: rgba(17, 17, 17, 0.06);
      color: rgba(17, 17, 17, 0.66);
      border: 1px solid rgba(17, 17, 17, 0.08);
    }
    .product-card__details-toggle {
      border: none;
      background: transparent;
      color: rgba(17, 17, 17, 0.75);
      font-size: 13px;
      font-weight: 600;
      padding: 4px 0;
      text-align: left;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex: 0 1 auto;
      transition: color 0.2s ease;
    }
    .product-card__details-toggle:hover,
    .product-card__details-toggle:focus-visible {
      color: rgba(17, 17, 17, 0.9);
    }
    .product-card__details-toggle-icon {
      display: inline-flex;
      width: 10px;
      height: 10px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(-45deg);
      transition: transform 0.2s ease;
    }
    .product-card__details-toggle.is-open .product-card__details-toggle-icon {
      transform: rotate(135deg);
    }
    .product-card__details-panel {
      width: 100%;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease;
      pointer-events: none;
      text-align: left;
      margin-top: 0;
      border-radius: 16px;
      background: #fdf7ef;
      border: 1px solid rgba(228, 199, 152, 0.8);
      padding: 12px 14px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .product-card__details-panel.is-open {
      max-height: 500px;
      opacity: 1;
      pointer-events: auto;
    }
    .product-card__details-label {
      margin: 0;
      font-size: 11px;
      letter-spacing: 0.2px;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.55);
    }
    .product-card__details-body {
      margin: 4px 0 0;
      font-size: 13px;
      color: rgba(17, 17, 17, 0.78);
      line-height: 1.6;
    }
    .product-card__details-group--note {
      margin-top: 10px;
      padding: 10px 12px;
      border: 1px solid rgba(44, 157, 104, 0.18);
      border-radius: 12px;
      background: #f4fbf7;
    }
    .product-card__details-note {
      margin: 0;
      font-size: 12px;
      line-height: 1.5;
      color: rgba(17, 17, 17, 0.72);
    }
    .product-card__cta {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 12px;
      width: 100%;
      max-width: 320px;
      align-self: flex-start;
      justify-self: end;
      margin-left: auto;
    }
    .product-card__pricing {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 0;
      margin-bottom: 0.35rem;
      flex-wrap: nowrap;
      align-self: flex-start;
      width: 100%;
      max-width: 320px;
    }
    .product-card__pricing-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-align: left;
      align-items: flex-start;
      flex: 0 0 auto;
    }
    .product-card__pricing-item:nth-child(1) {
      align-items: flex-start;
    }
    .product-card__pricing-item:nth-child(2) {
      text-align: right;
      align-items: flex-end;
      margin-left: auto;
    }
    .product-card__price-label {
      margin: 0;
      font-size: 10px;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.65);
    }
    .product-card__price-value {
      margin: 0;
      font-size: clamp(19px, 1.7vw, 21px);
      font-weight: 700;
      line-height: 1.2;
    }
    .product-card__price-value--kg {
      color: var(--products-cta);
      font-size: clamp(19px, 1.7vw, 21px);
      font-weight: 800;
    }
    .product-card__cta .cta-shop {
      padding: 9px 24px;
      border-radius: 10px;
      display: inline-flex;
      justify-content: center;
      text-transform: none;
      letter-spacing: 0.2px;
      align-self: flex-start;
      width: 320px;
    }
    .product-card__cta-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    .product-card__bookmark-button,
    .product-card__cta-magnifier,
    .product-card__feedback-button {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(17, 17, 17, 0.2);
      background: rgba(255, 255, 255, 0.9);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(17, 17, 17, 0.65);
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .product-card__bookmark-button {
      padding: 0;
      cursor: pointer;
    }
    .product-card__feedback-button {
      position: absolute;
      left: 14px;
      bottom: 14px;
      z-index: 2;
      width: 28px;
      height: 28px;
      min-width: 28px;
      min-height: 28px;
      padding: 0;
      cursor: pointer;
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      color: rgba(17, 17, 17, 0.42);
      background: rgba(255, 255, 255, 0.78);
      border-color: rgba(17, 17, 17, 0.1);
      box-shadow: 0 4px 14px rgba(17, 17, 17, 0.08);
    }
    .product-card__bookmark-button:hover,
    .product-card__bookmark-button:focus-visible,
    .product-card__feedback-button:hover,
    .product-card__feedback-button:focus-visible,
    .product-card__cta-magnifier:hover,
    .product-card__cta-magnifier:focus-visible {
      border-color: var(--products-cta);
      color: var(--products-cta);
      outline: none;
    }
    .product-card__cta-magnifier:hover,
    .product-card__cta-magnifier:focus-visible {
      background: rgba(255, 255, 255, 0.98);
      transform: scale(1.08);
    }
    .product-card__bookmark-icon svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .product-card__bookmark-button.is-saved {
      background: var(--products-cta);
      color: #ffffff;
      border-color: transparent;
    }
    .product-card__bookmark-button.is-saved .product-card__bookmark-icon svg {
      fill: currentColor;
      stroke: none;
    }

    .product-card__status-tag--profile::before {
      content: '\01F43E';
    }

    .product-card__cta-magnifier svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .product-card__cta-remove {
      font-size: 22px;
      font-weight: 600;
      border-color: rgba(215, 28, 29, 0.45);
      color: rgba(215, 28, 29, 0.9);
      background: rgba(215, 28, 29, 0.12);
    }
    .product-card__cta-remove:hover,
    .product-card__cta-remove:focus-visible {
      border-color: #d71c1c;
      background: #d71c1c;
      color: #ffffff;
      outline: none;
    }
    .product-card__price {
      font-size: 20px;
      font-weight: 600;
      color: var(--products-cta);
    }
    .product-card__unit {
      font-size: 12px;
      color: rgba(17, 17, 17, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .products-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 36px;
      gap: 12px;
    }
    .products-footer-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .saved-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 32px;
      z-index: 50;
    }
    .saved-modal.is-open {
      display: flex;
    }
    .saved-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(4px);
    }
    .saved-modal-panel {
      position: relative;
      background: var(--products-card);
      border-radius: 28px;
      width: min(1120px, 100%);
      max-width: 1120px;
      max-height: min(90vh, 1120px);
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      z-index: 1;
    }
    .saved-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .saved-modal-header h2 {
      margin: 0;
      font-size: clamp(20px, 2vw, 24px);
      font-weight: 600;
    }
    .saved-modal-close {
      background: transparent;
      border: none;
      color: rgba(17, 17, 17, 0.7);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      padding: 4px;
    }
    .saved-modal-close:focus-visible {
      outline: 2px solid var(--products-cta);
      border-radius: 50%;
    }
    .saved-status {
      margin: 0;
      font-size: 14px;
      color: rgba(17, 17, 17, 0.6);
      min-height: 1.25rem;
    }
    .saved-products-list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
      overflow-y: auto;
      padding-right: 4px;
    }
    .saved-empty {
      margin: 0;
      font-size: 14px;
      color: rgba(17, 17, 17, 0.6);
      letter-spacing: 0.1px;
      text-align: center;
    }
    body.has-modal-open {
      overflow: hidden;
    }
    body.has-product-detail-open {
      overflow: hidden;
    }
    .product-detail-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 1400;
    }
    .product-detail-modal.is-open {
      display: flex;
    }
    .product-detail-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 17, 17, 0.48);
      backdrop-filter: blur(6px);
    }
    .product-detail-modal__panel {
      position: relative;
      z-index: 1;
      width: min(1040px, 100%);
      max-height: min(calc(100vh - 48px), 920px);
      background: #ffffff;
      border: 1px solid rgba(228, 231, 236, 0.92);
      border-radius: 32px;
      box-shadow: 0 24px 60px rgba(17, 17, 17, 0.24);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .product-detail-modal__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 26px 16px;
      border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    }
    .product-detail-modal__heading {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }
    .product-detail-modal__brand,
    .product-detail-modal__meta,
    .product-detail-modal__status {
      margin: 0;
    }
    .product-detail-modal__brand {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.58);
    }
    .product-detail-modal__title {
      margin: 0;
      font-size: clamp(24px, 2.4vw, 32px);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }
    .product-detail-modal__meta {
      font-size: 13px;
      color: rgba(17, 17, 17, 0.66);
    }
    .product-detail-modal__close {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(17, 17, 17, 0.12);
      background: #ffffff;
      color: rgba(17, 17, 17, 0.78);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .product-detail-modal__close:hover,
    .product-detail-modal__close:focus-visible {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(240, 177, 92, 0.18);
      outline: none;
    }
    .product-detail-modal__content {
      display: grid;
      grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
      gap: 22px;
      padding: 22px 26px 18px;
      overflow-y: auto;
    }
    .product-detail-modal__media {
      position: sticky;
      top: 0;
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }
    .product-detail-modal__media img {
      width: min(100%, 280px);
      aspect-ratio: 1 / 1;
      object-fit: contain;
      border-radius: 22px;
      background: #ffffff;
      border: 1px solid rgba(17, 17, 17, 0.06);
      padding: 16px;
    }
    .product-detail-modal__body {
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-width: 0;
    }
    .product-detail-modal__status {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.01em;
    }
    .product-detail-modal__protein {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
      color: rgba(17, 17, 17, 0.92);
    }
    .product-detail-modal__warning {
      margin: 0;
      padding: 10px 12px;
      border-radius: 16px;
      background: #fff6eb;
      border: 1px solid rgba(240, 177, 92, 0.42);
      color: rgba(60, 43, 17, 0.88);
      font-size: 13px;
      line-height: 1.5;
    }
    .product-detail-modal__section {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 16px 18px;
      border-radius: 20px;
      background: #fffaf3;
      border: 1px solid rgba(240, 177, 92, 0.3);
    }
    .product-detail-modal__label {
      margin: 0;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.56);
    }
    .product-detail-modal__text {
      margin: 0;
      font-size: 15px;
      line-height: 1.55;
      color: rgba(17, 17, 17, 0.9);
    }
    .product-detail-modal__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 22px calc(14px + env(safe-area-inset-bottom, 0px));
      border-top: 1px solid rgba(17, 17, 17, 0.08);
      background: #ffffff;
    }
    .product-detail-modal__pager,
    .product-detail-modal__actions,
    .product-detail-modal__pricing {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .product-detail-modal__pricing {
      justify-content: center;
      flex: 1 1 auto;
    }
    .product-detail-modal__price-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 96px;
    }
    .product-detail-modal__price-label,
    .product-detail-modal__price-value {
      margin: 0;
    }
    .product-detail-modal__price-label {
      font-size: 10px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(17, 17, 17, 0.54);
      font-weight: 700;
    }
    .product-detail-modal__price-value {
      font-size: 18px;
      font-weight: 700;
      color: rgba(17, 17, 17, 0.92);
    }
    .product-detail-modal__price-value--accent {
      color: var(--accent);
    }
    .product-detail-modal__arrow {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(17, 17, 17, 0.14);
      background: #ffffff;
      color: rgba(17, 17, 17, 0.85);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .product-detail-modal__arrow svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .product-detail-modal__arrow:disabled {
      opacity: 0.38;
      cursor: not-allowed;
    }
    .product-detail-modal__dots {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .product-detail-modal__dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: none;
      background: rgba(17, 17, 17, 0.16);
      cursor: pointer;
      padding: 0;
      flex: 0 0 auto;
    }
    .product-detail-modal__dot.is-active {
      width: 24px;
      background: var(--accent);
    }
    .product-detail-modal__secondary,
    .product-detail-modal__primary {
      min-height: 46px;
      border-radius: 16px;
      font-size: 15px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      cursor: pointer;
      text-align: center;
    }
    .product-detail-modal__secondary {
      border: 1px solid rgba(17, 17, 17, 0.14);
      background: #ffffff;
      color: rgba(17, 17, 17, 0.86);
    }
    .product-detail-modal__primary {
      min-width: 156px;
      border: none;
      background: var(--products-cta);
      color: #111111;
    }
    .product-detail-modal__secondary:disabled,
    .product-detail-modal__primary[aria-disabled='true'] {
      opacity: 0.45;
      cursor: not-allowed;
      pointer-events: none;
    }
    @media (max-width: 900px) {
      .product-detail-modal {
        align-items: flex-end;
        padding: 0;
      }
      .product-detail-modal__panel {
        width: 100%;
        max-height: min(92vh, 920px);
        border-radius: 28px 28px 0 0;
      }
      .product-detail-modal__header {
        padding: 18px 16px 14px;
      }
      .product-detail-modal__content {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 16px 14px;
      }
      .product-detail-modal__media {
        position: static;
      }
      .product-detail-modal__media img {
        width: min(180px, 100%);
      }
      .product-detail-modal__protein {
        font-size: 16px;
      }
      .product-detail-modal__text {
        font-size: 14px;
      }
      .product-detail-modal__footer {
        position: sticky;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
        box-shadow: var(--shadow-footer);
      }
      .product-detail-modal__pager,
      .product-detail-modal__actions,
      .product-detail-modal__pricing {
        justify-content: space-between;
      }
      .product-detail-modal__pricing {
        order: 2;
      }
      .product-detail-modal__actions {
        order: 3;
      }
      .product-detail-modal__dots {
        justify-content: center;
        flex: 1 1 auto;
      }
      .product-detail-modal__title {
        font-size: 22px;
      }
      .product-detail-modal__meta,
      .product-detail-modal__status {
        font-size: 11px;
      }
      .product-detail-modal__warning {
        font-size: 12px;
      }
      .product-detail-modal__price-item {
        min-width: 0;
        flex: 1 1 0;
      }
      .product-detail-modal__price-label {
        font-size: 9px;
      }
      .product-detail-modal__price-value {
        font-size: 16px;
      }
      .product-detail-modal__arrow {
        width: 38px;
        height: 38px;
      }
      .product-detail-modal__secondary,
      .product-detail-modal__primary {
        flex: 1 1 0;
        width: 100%;
        min-height: 42px;
        font-size: 14px;
      }
    }
    .products-loader {
      width: 72px;
      height: 72px;
      opacity: 0;
      transition: opacity 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .products-loader img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      animation: products-loader-pulse 1.3s ease-in-out infinite;
    }
    .products-loader--active {
      opacity: 1;
    }
    @keyframes products-loader-pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }
    .load-more-button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
      display: none;
    }
    .products-status {
      font-size: 13px;
      color: rgba(17, 17, 17, 0.65);
      min-height: 16px;
      margin: 0;
      text-align: center;
    }
    .products-empty-actions {
      margin-top: 0;
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .products-empty-action {
      border: 1px solid rgba(229, 162, 82, 0.48);
      background: #fff7ea;
      color: #3d2a15;
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    .products-empty-action:hover,
    .products-empty-action:focus-visible {
      background: #ffeacc;
      border-color: #e5a252;
      transform: translateY(-1px);
      outline: none;
    }
    @media (max-width: 640px) {
      .products-empty-actions {
        justify-content: center;
      }
      .products-empty-action {
        width: auto;
      }
    }
    .products-counter {
      margin: 0;
      font-size: 13px;
      color: rgba(17, 17, 17, 0.75);
      text-align: center;
    }
    .hero-profile-modal {
      --hero-profile-panel-top: 128px;
      --hero-profile-panel-left: 12px;
      --hero-profile-panel-width: min(560px, calc(100vw - 24px));
      position: fixed;
      inset: 0;
      display: none;
      pointer-events: none;
      z-index: 2210;
    }

    .hero-profile-modal::before {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease;
    }

    .hero-profile-modal.visible {
      display: block;
      pointer-events: auto;
    }

    .hero-profile-modal-panel {
      position: fixed;
      top: var(--hero-profile-panel-top);
      left: var(--hero-profile-panel-left);
      width: var(--hero-profile-panel-width);
      max-width: var(--hero-profile-panel-width);
      max-height: min(86vh, 760px);
      min-height: 420px;
      background: #ffffff;
      padding: 24px 22px 18px;
      border-radius: 26px;
      border: 1px solid rgba(17, 17, 17, 0.12);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: left;
      align-items: stretch;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-8px);
      transition: transform 0.2s ease, opacity 0.2s ease;
      pointer-events: auto;
    }

    .hero-profile-modal.visible .hero-profile-modal-panel {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 899px) {
      .hero-profile-modal::before {
        background: rgba(17, 17, 17, 0.28);
      }
      .hero-profile-modal.visible::before {
        opacity: 1;
      }
      .hero-profile-modal-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-width: none;
        min-height: 0;
        height: min(88vh, 760px);
        max-height: min(88vh, 760px);
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
        border-radius: 20px 20px 0 0;
        border: 1px solid rgba(17, 17, 17, 0.12);
        box-shadow: 0 -24px 44px rgba(0, 0, 0, 0.25);
        transform: translateY(102%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
      }
      .hero-profile-modal.visible .hero-profile-modal-panel {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      .hero-profile-pager {
        position: relative;
        z-index: 2;
        width: 100%;
        padding-top: 8px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 70%);
      }
      .hero-profile-nav-wrapper {
        width: 100%;
      }
      .hero-profile-nav-button {
        width: 100%;
      }
      body.has-profile-panel-open {
        overflow: hidden;
      }
    }

    .hero-profile-pages {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 28px;
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
      padding-right: 4px;
      min-height: 0;
      min-height: 360px;
    }

    .hero-profile-pages::-webkit-scrollbar {
      width: 5px;
    }

    .hero-profile-pages::-webkit-scrollbar-thumb {
      background: rgba(17, 17, 17, 0.25);
      border-radius: 999px;
    }

    .hero-profile-page {
      width: 100%;
      display: none;
      flex-direction: column;
      gap: 22px;
      align-items: stretch;
      flex: 1;
      min-height: 0;
      justify-content: flex-start;
      padding-bottom: 4px;
    }

    .hero-profile-page.active {
      display: flex;
    }
    .hero-profile-intro {
      margin: 0;
      font-size: 13px;
      line-height: 1.45;
      color: rgba(17, 17, 17, 0.64);
    }

    .hero-profile-name-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: flex-start;
      text-align: left;
    }

    .hero-profile-name-field label {
      font-size: 14px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.8);
    }

    .hero-profile-input {
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(17, 17, 17, 0.12);
      padding: 12px 16px;
      font-size: 15px;
      font-family: inherit;
      background: #fafafa;
    }

    .hero-profile-age {
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: left;
    }

    .hero-profile-age-heading {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.8);
    }

    .hero-profile-age-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 14px;
    }

    .hero-profile-age-column {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hero-profile-age-label {
      margin: 0;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: rgba(17, 17, 17, 0.6);
    }

    .hero-profile-age-select-wrapper {
      position: relative;
    }

    .hero-profile-age-select {
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(17, 17, 17, 0.2);
      background: #fff;
      padding: 10px 14px;
      font-size: 15px;
      font-family: inherit;
      appearance: none;
    }

    .hero-profile-age-select:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .hero-profile-life-stage {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 4px;
    }

    .hero-profile-life-stage-label {
      margin: 0;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: rgba(17, 17, 17, 0.6);
    }

    .hero-profile-life-stage-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-profile-life-stage-hint {
      margin: 0;
      font-size: 12px;
      color: rgba(17, 17, 17, 0.58);
      line-height: 1.4;
    }

    @media (max-width: 640px) {
      .hero-profile-life-stage-grid {
        grid-template-columns: 1fr;
      }
    }

    .hero-profile-price {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .hero-price-panel-head {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: -2px 0 2px;
      min-height: 34px;
    }
    .hero-price-panel-head-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: center;
      text-align: center;
    }
    .hero-price-panel-subtitle {
      margin: 0;
      font-size: 12px;
      line-height: 1.4;
      color: rgba(17, 17, 17, 0.58);
    }
    .hero-price-panel-title {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.9);
    }
    .hero-price-panel-close {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: 1px solid rgba(17, 17, 17, 0.14);
      border-radius: 999px;
      background: #ffffff;
      color: rgba(17, 17, 17, 0.8);
      font-size: 18px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }
    .hero-filter-pages {
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
      min-height: 0;
      overflow: hidden;
    }
    .hero-filter-page {
      display: none;
      flex-direction: column;
      gap: 14px;
      min-height: 0;
      overflow-y: auto;
      padding-right: 4px;
    }
    .hero-filter-page.active {
      display: flex;
    }
    .hero-filter-question {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.45;
      color: rgba(17, 17, 17, 0.78);
    }
    .hero-filter-section-card {
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
      border-radius: 22px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .hero-filter-section-card--compact {
      gap: 12px;
    }
    .hero-filter-section-head {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .hero-filter-section-step {
      margin: 0;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(229, 162, 82, 0.95);
    }
    .hero-filter-help {
      margin: -4px 0 2px;
      font-size: 12px;
      line-height: 1.45;
      color: rgba(17, 17, 17, 0.62);
    }
    .hero-filter-pager {
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 1px solid rgba(17, 17, 17, 0.08);
      padding-top: 12px;
      margin-top: 8px;
    }
    .hero-filter-page-dots-row {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .hero-filter-page-status {
      margin: 0;
      font-size: 12px;
      line-height: 1.4;
      text-align: center;
      color: rgba(17, 17, 17, 0.58);
    }
    .hero-filter-page-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .hero-filter-page-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: 1px solid rgba(17, 17, 17, 0.32);
      background: rgba(17, 17, 17, 0.1);
      cursor: pointer;
      padding: 0;
      transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .hero-filter-page-dot.active {
      background: var(--accent);
      border-color: var(--accent);
      transform: scale(1.2);
    }
    .hero-filter-pager-arrow {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(17, 17, 17, 0.18);
      background: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.16s ease;
    }
    .hero-filter-pager-arrow svg {
      width: 16px;
      height: 16px;
      stroke: #1c1209;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .hero-filter-pager-arrow:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      transform: none;
    }
    .hero-filter-footer-actions {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .hero-filter-footer-actions .hero-profile-nav-button {
      min-width: 120px;
    }
    .hero-filter-footer-actions .hero-profile-clear-button {
      margin: 0;
    }
    @media (max-width: 899px) {
      .hero-price-panel-head {
        min-height: 40px;
        padding-top: 2px;
      }
      .hero-price-panel-close {
        width: 38px;
        height: 38px;
      }
      .hero-filter-pager {
        position: sticky;
        bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, #ffffff 28%);
        backdrop-filter: blur(6px);
        margin: 0 -16px calc(-18px - env(safe-area-inset-bottom)) -16px;
        padding: 12px 16px calc(18px + env(safe-area-inset-bottom));
      }
      .hero-filter-footer-actions {
        align-items: stretch;
      }
      .hero-filter-footer-actions .hero-profile-clear-button,
      .hero-filter-footer-actions .hero-profile-nav-button {
        flex: 1 1 0;
      }
      .hero-filter-page {
        padding-right: 2px;
        padding-bottom: 12px;
      }
    }
    @media (max-width: 640px) {
      .hero-filter-footer-actions {
        flex-direction: column-reverse;
      }
      .hero-filter-footer-actions .hero-profile-nav-button,
      .hero-filter-footer-actions .hero-profile-clear-button {
        width: 100%;
      }
    }

    .hero-profile-price-heading {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.87);
    }

    .hero-profile-price-slider {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .hero-profile-price-slider-label {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.8);
    }

    .hero-profile-price-slider-track {
      position: relative;
      height: 4px;
      background: rgba(17, 17, 17, 0.15);
      border-radius: 999px;
      pointer-events: none;
    }

    .hero-profile-price-slider-input {
      width: 100%;
      margin: -12px 0 0;
      background: none;
      appearance: none;
      height: 4px;
      border-radius: 999px;
      outline: none;
      position: relative;
      z-index: 1;
    }

    .hero-profile-price-slider-input::-webkit-slider-runnable-track {
      height: 4px;
      border-radius: 999px;
      background: transparent;
    }

    .hero-profile-price-slider-input::-webkit-slider-thumb {
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--accent);
      border: 3px solid #ffffff;
      margin-top: -8px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
      cursor: pointer;
    }

    .hero-profile-price-slider-input::-moz-range-thumb {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: none;
      background: var(--accent);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
      cursor: pointer;
    }

    .hero-profile-price-slider-labels {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: rgba(17, 17, 17, 0.65);
    }

    .hero-profile-price-cap {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hero-profile-price-cap-label {
      margin: 0;
      font-size: 13px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.78);
    }

    .hero-profile-price-cap-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hero-profile-price-cap-input {
      display: flex;
      align-items: center;
      gap: 6px;
      border-radius: 14px;
      border: 1px solid rgba(17, 17, 17, 0.16);
      padding: 10px 14px;
      background: #fafafa;
      max-width: 220px;
    }

    .hero-profile-price-cap-input input {
      width: 100%;
      border: none;
      background: transparent;
      font-size: 16px;
      outline: none;
      font-family: inherit;
      color: rgba(17, 17, 17, 0.95);
    }

    .hero-profile-price-cap-suffix {
      font-size: 14px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.7);
    }

    .hero-profile-price-cap-error {
      margin: 0;
      font-size: 12px;
      color: #c03333;
      min-height: 16px;
    }

    .hero-profile-page-dots-row {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .hero-profile-pager-arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(17, 17, 17, 0.18);
      background: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-profile-pager-arrow svg {
      width: 18px;
      height: 18px;
      stroke: #1c1209;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-profile-pager-arrow:disabled {
      opacity: 0.4;
      box-shadow: none;
      cursor: not-allowed;
    }

    .hero-profile-modal.hero-profile-modal--initial .hero-profile-pager-arrow {
      display: none;
    }

    .hero-profile-page-dots {
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;
    }

    .hero-profile-page-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      border: 1px solid rgba(17, 17, 17, 0.3);
      background: rgba(17, 17, 17, 0.1);
      cursor: pointer;
      padding: 0;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    }

    .hero-profile-page-dot.active {
      background: var(--accent);
      border-color: var(--accent);
      transform: scale(1.2);
    }

    .hero-profile-pager {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    .hero-profile-nav-button {
      border: none;
      background: #f0b15c;
      color: #111;
      border-radius: 999px;
      padding: 10px 26px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.2s ease;
      box-shadow: 0 10px 20px rgba(204, 138, 55, 0.25);
    }

    .hero-profile-nav-button:hover,
    .hero-profile-nav-button:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(204, 138, 55, 0.35);
    }

    .hero-profile-nav-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 12px;
      width: 100%;
    }

    .hero-profile-storage-note {
      margin: 6px auto 0;
      font-size: 12px;
      line-height: 1.4;
      color: rgba(17, 17, 17, 0.6);
      text-align: center;
      max-width: 420px;
    }

    .hero-profile-modal-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      position: relative;
    }

    .hero-profile-modal-header h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
    }

    .hero-profile-close {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: 1px solid rgba(17, 17, 17, 0.14);
      border-radius: 999px;
      background: #ffffff;
      color: rgba(17, 17, 17, 0.8);
      font-size: 18px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .hero-profile-close:hover,
    .hero-profile-close:focus-visible {
      background: #f8f8f8;
      border-color: rgba(17, 17, 17, 0.2);
    }

    .hero-profile-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      width: 100%;
    }

    .hero-profile-mode-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: center;
      width: 100%;
    }

    .hero-profile-protein-prompt {
      margin: 0;
      font-size: 11px;
      font-weight: 500;
      color: rgba(17, 17, 17, 0.5);
      text-align: center;
      line-height: 1.35;
    }
    .hero-profile-mode-hint {
      margin: 2px 0 0;
      font-size: 12px;
      line-height: 1.4;
      color: rgba(17, 17, 17, 0.62);
      text-align: center;
      max-width: 520px;
    }

    .hero-profile-mode {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
    }

      .hero-profile-mode-btn {
        border: 1px solid #e5a252;
        background: #ffe9cd;
        border-radius: 16px;
        padding: 6px 22px;
        font-size: 14px;
        font-weight: 600;
        color: #1c1209;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        box-shadow: none;
      }

      .hero-profile-mode-btn.active {
        background: #eea94c;
        border-color: #eea94c;
        color: #111;
        transform: translateY(-2px);
      }

      .hero-profile-mode-btn:hover,
      .hero-profile-mode-btn:focus-visible {
        transform: none;
        box-shadow: 0 10px 24px rgba(204, 138, 55, 0.25);
        border-color: #e5a252;
      }

    .hero-profile-loader {
      display: flex;
      gap: 6px;
      align-items: center;
      justify-content: flex-start;
    }

    .hero-profile-loader[aria-hidden="true"] {
      display: none;
      visibility: hidden;
      opacity: 0;
    }

    .hero-profile-loader-paw {
      width: 28px;
      height: 28px;
      background-image: url('/assets/assets/images/paw2.png');
      background-size: contain;
      background-repeat: no-repeat;
      display: inline-block;
      animation: hero-profile-paw-pulse 1.2s ease-in-out infinite;
      opacity: 0.5;
    }

    .hero-profile-loader-paw--delay {
      animation-delay: 0.35s;
    }

    .hero-profile-modal button {
      box-shadow: none !important;
    }

    @keyframes hero-profile-paw-pulse {
      0% {
        transform: translateY(0) scale(0.9);
        opacity: 0.4;
      }
      50% {
        transform: translateY(-4px) scale(1);
        opacity: 1;
      }
      100% {
        transform: translateY(0) scale(0.9);
        opacity: 0.4;
      }
    }

    .hero-profile-protein-chip-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      grid-auto-rows: minmax(48px, auto);
      gap: 10px;
      max-height: 320px;
      overflow-y: auto;
      padding-bottom: 4px;
      width: 100%;
      justify-items: stretch;
      align-items: stretch;
    }

    .hero-profile-protein-chip-grid::-webkit-scrollbar {
      width: 6px;
    }

    .hero-profile-protein-chip-grid::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 999px;
    }

    .hero-profile-allergy {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }

    .hero-profile-allergy-heading {
      width: 100%;
      display: flex;
      justify-content: flex-start;
      text-align: left;
    }

    .hero-profile-allergy-label {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.75);
    }

    .hero-profile-allergy-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
      grid-auto-rows: minmax(44px, auto);
      gap: 10px;
      max-height: 320px;
      overflow-y: auto;
      justify-items: stretch;
      align-items: stretch;
      padding-bottom: 4px;
    }

    .hero-profile-allergy-grid::-webkit-scrollbar {
      width: 6px;
    }

    .hero-profile-allergy-grid::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.15);
      border-radius: 999px;
    }

    .hero-profile-special-diet {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }

    .hero-profile-special-diet-heading {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-start;
      text-align: left;
    }

    .hero-profile-special-diet-title-row {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-profile-special-diet-reset {
      border: none;
      background: transparent;
      color: var(--accent);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      padding: 4px 0;
      min-width: 0;
      transition: color 0.2s ease;
    }

    .hero-profile-special-diet-reset:hover,
    .hero-profile-special-diet-reset:focus-visible {
      text-decoration: underline;
    }

    .hero-profile-special-diet-reset:disabled {
      color: rgba(17, 17, 17, 0.45);
      cursor: not-allowed;
    }

    .hero-profile-special-diet-label {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.85);
    }

    .hero-profile-special-diet-note {
      margin: 0;
      font-size: 13px;
      color: rgba(17, 17, 17, 0.65);
      line-height: 1.5;
    }

    .hero-profile-special-diet-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 10px;
      justify-items: stretch;
      align-items: stretch;
      padding-bottom: 4px;
    }

      .hero-profile-allergy-chip {
        border: 1px solid #a4d5dd;
        border-radius: 16px;
        padding: 8px 14px;
        font-size: 14px;
        background: #f0fbff;
        color: #0f3747;
        font-weight: 600;
        cursor: pointer;
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 46px;
        min-width: 0;
        width: auto;
        white-space: normal;
        line-height: 1.4;
        box-shadow: none;
        outline: none;
      }

      .hero-profile-allergy-chip.active {
        background: #d3edfa;
        border-color: var(--accent);
        color: #0c2b3d;
        box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.48);
      }
      .hero-profile-allergy-chip:hover,
      .hero-profile-allergy-chip:focus-visible {
        border-color: var(--accent);
        box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.34);
        outline: none;
      }

      .hero-profile-chip {
        border: 1px solid #e5a252;
        border-radius: 16px;
        padding: 10px 16px;
        font-size: 15px;
        background: #ffe9cd;
        color: #1c1209;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        text-align: center;
        text-transform: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 48px;
        min-width: 0;
        width: auto;
        white-space: normal;
        line-height: 1.2;
        box-shadow: none;
        outline: none;
      }

      .hero-profile-chip.active {
        background: #eea94c;
        color: #111;
        border-color: var(--accent);
        box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.48);
      }
      .hero-profile-chip:hover,
      .hero-profile-chip:focus-visible {
        border-color: var(--accent);
        box-shadow: inset 0 0 0 1px rgba(240, 177, 92, 0.34);
        outline: none;
      }

    .hero-profile-exclude-accordion {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 12px;
    }

    .hero-profile-exclude-toggle {
      width: 100%;
      border: 1px solid rgba(17, 17, 17, 0.15);
      border-radius: 16px;
      background: #ffffff;
      padding: 12px 16px;
      font-size: 15px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.9);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      gap: 12px;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.12s ease;
    }

    .hero-profile-exclude-toggle:hover,
    .hero-profile-exclude-toggle:focus-visible {
      border-color: var(--accent);
    }

    .hero-profile-exclude-toggle[aria-expanded='true'] {
      border-color: var(--accent);
      background: #fff7f0;
    }

    .hero-profile-exclude-toggle-icon {
      font-size: 18px;
      transition: transform 0.25s ease;
      line-height: 1;
    }

    .hero-profile-exclude-toggle[aria-expanded='true'] .hero-profile-exclude-toggle-icon {
      transform: rotate(45deg);
    }

    .hero-profile-exclude-panel {
      border: 1px solid rgba(17, 17, 17, 0.12);
      border-radius: 16px;
      padding: 14px 16px 12px;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.35s ease;
    }

    .hero-profile-exclude-panel.hero-profile-exclude-panel--open {
      max-height: 420px;
      opacity: 1;
    }

    .hero-profile-exclude-description {
      margin: 0;
      font-size: 14px;
      color: rgba(17, 17, 17, 0.68);
      line-height: 1.5;
      max-width: 100%;
    }

    .hero-profile-exclude-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
      grid-auto-rows: minmax(44px, auto);
      gap: 10px;
      max-height: 320px;
      overflow-y: auto;
      justify-items: stretch;
      align-items: stretch;
      padding-bottom: 4px;
    }

    .hero-profile-exclude-grid::-webkit-scrollbar {
      width: 6px;
    }

    .hero-profile-exclude-grid::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.15);
      border-radius: 999px;
    }

    .hero-profile-range {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hero-profile-range-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .hero-profile-range-label {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
    }
    .hero-profile-range-value {
      margin: 0;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
    }
    .hero-profile-range-inputs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      align-items: stretch;
    }
    .hero-profile-bound-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .hero-profile-bound-label {
      margin: 0;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: rgba(17, 17, 17, 0.6);
      text-transform: uppercase;
    }
    .hero-profile-bound-input-wrap {
      display: flex;
      align-items: center;
      gap: 6px;
      border-radius: 12px;
      border: 1px solid rgba(17, 17, 17, 0.16);
      background: #fafafa;
      padding: 8px 10px;
    }
    .hero-profile-bound-input {
      width: 100%;
      border: none;
      background: transparent;
      padding: 0;
      margin: 0;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.92);
      outline: none;
    }
    .hero-profile-bound-input::-webkit-outer-spin-button,
    .hero-profile-bound-input::-webkit-inner-spin-button {
      margin: 0;
    }
    .hero-profile-bound-suffix {
      font-size: 13px;
      font-weight: 600;
      color: rgba(17, 17, 17, 0.62);
    }
    @media (max-width: 640px) {
      .hero-profile-range-inputs {
        grid-template-columns: 1fr;
      }
    }
    .hero-profile-footer {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: auto;
    }

    .hero-profile-clear-button {
      border: 1px solid rgba(17, 17, 17, 0.15);
      background: #f5f5f5;
      color: var(--text);
      border-radius: 14px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: none;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .hero-profile-clear-button:hover,
    .hero-profile-clear-button:focus-visible {
      transform: translateY(-1px);
      background: #ececec;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .hero-profile-clear-button:disabled {
      background: rgba(17, 17, 17, 0.08);
      border-color: rgba(17, 17, 17, 0.05);
      color: rgba(17, 17, 17, 0.45);
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
      opacity: 0.7;
    }

    .hero-profile-modal-panel h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
    }
    #cookie-banner a {
      color: var(--cookie-text);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    #cookie-settings-overlay {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(17, 17, 17, 0.45);
      z-index: 10001;
    }
    #cookie-settings-overlay.visible {
      display: flex;
    }
    #cookie-settings-modal {
      width: 100%;
      max-width: 720px;
      background: #ffffff;
      border-radius: 18px;
      border: 1px solid var(--cookie-border);
      box-shadow: var(--cookie-shadow);
      padding: 20px 22px;
      font: 15px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .cookie-settings-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    #cookie-settings-title {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      color: var(--cookie-text);
    }
    #cookie-settings-close {
      border: none;
      background: transparent;
      font-size: 22px;
      cursor: pointer;
      color: var(--cookie-muted);
    }
    .cookie-settings-intro {
      margin: 8px 0 16px;
      color: var(--cookie-muted);
    }
    .cookie-settings-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .cookie-settings-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid var(--cookie-border);
      background: #fffaf2;
    }
    .cookie-settings-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      max-width: 520px;
    }
    .cookie-settings-name {
      margin: 0;
      font-weight: 700;
      color: var(--cookie-text);
    }
    .cookie-settings-desc {
      margin: 0;
      color: var(--cookie-muted);
      font-size: 13px;
    }
    .cookie-settings-link {
      font-size: 12px;
    }
    .cookie-switch {
      position: relative;
      width: 46px;
      height: 26px;
      flex-shrink: 0;
    }
    .cookie-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }
    .cookie-slider {
      position: absolute;
      inset: 0;
      border-radius: 999px;
      background: #d0d5dd;
      transition: background 0.2s ease;
    }
    .cookie-slider::before {
      content: "";
      position: absolute;
      height: 20px;
      width: 20px;
      left: 3px;
      top: 3px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 2px 6px rgba(17, 17, 17, 0.18);
      transition: transform 0.2s ease;
    }
    .cookie-switch input:checked + .cookie-slider {
      background: var(--cookie-accept);
    }
    .cookie-switch input:checked + .cookie-slider::before {
      transform: translateX(20px);
    }
    .cookie-switch input:disabled + .cookie-slider {
      background: #e4e7ec;
      cursor: not-allowed;
    }
    .cookie-switch input:disabled + .cookie-slider::before {
      background: #f2f4f7;
    }
    .cookie-settings-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }
    #cookie-settings-save,
    #cookie-settings-accept,
    #cookie-settings-decline {
      border: 1.5px solid transparent;
      padding: 10px 16px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
    }
    #cookie-settings-save {
      background: var(--cookie-accept);
      color: #111111;
    }
    #cookie-settings-accept {
      background: #111111;
      color: #ffffff;
    }
    #cookie-settings-decline {
      background: #ffffff;
      border-color: var(--cookie-accept);
      color: #111111;
    }
    @media (max-width: 640px) {
      #cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px;
        font-size: 12px;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      #cookie-banner .cookie-actions {
        flex-direction: column;
        align-items: stretch;
      }
      #cookie-accept,
      #cookie-decline,
      #cookie-settings {
        width: 100%;
      }
      #cookie-settings-modal {
        padding: 18px 16px;
      }
      .cookie-settings-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .cookie-settings-actions {
        flex-direction: column;
        align-items: stretch;
      }
      #cookie-settings-save,
      #cookie-settings-accept,
      #cookie-settings-decline {
        width: 100%;
      }
    }

@media screen and (min-width: 900px) {
  .product-card {
        grid-template-columns: minmax(120px, 140px) minmax(0, 1fr) minmax(260px, 320px);
        grid-template-rows: auto auto;
        grid-template-areas:
          "media info cta"
          "media details cta";
        gap: 20px;
      }
      .product-card__media {
        grid-area: media;
      }
      .product-card__info {
        grid-area: info;
        min-width: 0;
      }
      .product-card__details-wrapper {
        grid-area: details;
        justify-self: stretch;
        grid-column: 2 / 3;
        align-self: flex-start;
        width: 100%;
      }
      .product-card__cta {
        grid-area: cta;
        justify-self: end;
        align-self: flex-start;
        width: 100%;
        min-width: 260px;
        max-width: 320px;
        margin-left: auto;
      }
      .product-card__cta .cta-shop {
        width: 100%;
        max-width: 320px;
        align-self: flex-start;
        min-width: 0;
      }
      .product-card__pricing {
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 0;
        margin-bottom: 0.35rem;
        flex-wrap: nowrap;
      }
      .product-card__pricing-item {
        display: flex;
        flex-direction: column;
        gap: 2px;
        text-align: left;
        align-items: flex-start;
        flex: 0 0 auto;
        min-width: 0;
      }
      .product-card__pricing-item:nth-child(2) {
        align-items: flex-end;
        text-align: right;
      }
}

@media screen and (max-width: 900px) {
  .products-section .products-list .product-card {
        grid-template-columns: minmax(96px, 120px) 1fr;
        grid-template-rows: repeat(2, auto) auto auto;
        grid-template-areas:
          "media info"
          "media info"
          "details details"
          "cta cta";
        column-gap: 3px;
        row-gap: 12px;
        align-items: flex-start;
        text-align: left;
        padding: 18px 16px;
      }
      .products-section .products-list .product-card__media {
        grid-area: media;
        width: 96px;
        height: 96px;
        margin: 0;
        border-radius: 18px;
      }
      .products-section .products-list .product-card__info {
        grid-area: info;
        padding: 0 3px;
        gap: 4px;
        width: calc(100% - 6px);
      }
      .products-section .products-list .product-card__info h3 {
        margin: 0;
        font-size: clamp(15px, 2.4vw, 17px);
        line-height: 1.3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
      }
      .products-section .products-list .product-card__brand {
        font-size: 10px;
        letter-spacing: 0.3px;
      }
      .products-section .products-list .product-card__protein {
        font-size: 12px;
        letter-spacing: 0.1px;
        color: rgba(17, 17, 17, 0.75);
      }
      .products-section .products-list .product-card__details-wrapper {
        grid-area: details;
        grid-column: 1 / -1;
        width: calc(100% - 6px);
        margin: 0 3px;
        padding: 6px 8px;
      }
      .products-section .products-list .product-card__details-header {
        justify-content: space-between;
      }
      .products-section .products-list .product-card__details-toggle {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        justify-content: flex-start;
        font-size: 13px;
      }
      .products-section .products-list .product-card__details-panel {
        width: 100%;
        max-width: 100%;
        margin: 6px 0 0;
        border-radius: 16px;
        padding: 12px 14px;
      }
      .products-section .products-list .product-card__cta {
        grid-area: cta;
        grid-column: 1 / -1;
        width: calc(100% - 6px);
        max-width: none;
        margin: 0 3px;
        gap: 12px;
        align-items: stretch;
        justify-content: flex-start;
        justify-self: stretch;
      }
      .products-section .products-list .product-card__cta .cta-shop,
      .products-section .products-list .product-card__cta .cta-shop.align-fixed {
        width: 100%;
        max-width: none;
        margin: 0;
        align-self: stretch;
        border-radius: 12px;
        padding: 10px 16px;
      }
      .products-section .products-list .product-card__pricing {
        width: 100%;
        max-width: none;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 8px;
      }
      .products-section .products-list .product-card__pricing-item {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
        text-align: left;
      }
      .products-section .products-list .product-card__pricing-item:nth-child(2) {
        text-align: right;
        align-items: flex-end;
        margin-left: auto;
        padding-right: 0;
      }
      .products-section .products-list .product-card__cta-actions {
        width: 100%;
        justify-content: flex-start;
      }
      .products-section .products-list .product-card__feedback-button {
        position: static;
        left: auto;
        bottom: auto;
        z-index: auto;
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        font-size: 12px;
        box-shadow: none;
      }
      @media (max-width: 600px) {
        .products-section .products-list .product-card {
          padding: 16px 14px;
        }
        .products-section .products-list .product-card__media {
          width: 90px;
          height: 90px;
        }
        .products-section .products-list .product-card__info h3 {
          font-size: clamp(14px, 3vw, 16px);
        }
        .products-section .products-list .product-card__pricing {
          gap: 6px;
        }
        .products-section .products-list .product-card__cta .cta-shop {
          padding: 12px 14px;
          font-size: 16px;
        }
      }
}
