    @import url("https://fonts.googleapis.com/css2?family=Farro:wght@700;800&family=Fira+Sans:wght@400;500&display=swap");

    :root {
      --line: #c8c8c8;
      --text: #2b2b2b;
      --muted: #606060;
      --bg: #f8f8f8;
      --nordic-section-pair-gap: clamp(24px, 3vw, 52px);
      --nordic-between-sections-gap: clamp(10px, 1.8vw, 18px);
      --active: #e6ba40;
      --brand-deep: #223947;
      --brand-warm: #7d1d1d;
      --brand-accent: #e6ba40;
      --brand-heading: #4d2000;
      --brand-light: #ebebeb;
      --brand-deep-2: #1a2d38;
      --footer-logo-height: 110px;
    }

    #backToTop {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 50;
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 700;
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px) scale(0.9);
      background: var(--btt-bg, #e6ba40) !important;
      color: var(--btt-fg, #223947) !important;
      transition: opacity .4s cubic-bezier(.25,.8,.25,1),
                  transform .4s cubic-bezier(.25,.8,.25,1),
                  background .25s;
      font-family: "Fira Sans", sans-serif;
      box-shadow: 0 4px 16px rgba(75, 122, 8, 0.35);
    }

    #backToTop:hover {
      background: var(--btt-hover-bg, #f0cf71) !important;
      transform: translateY(-2px) scale(1.05) !important;
    }

    #backToTop.visible {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0) scale(1);
    }

    @media (max-width: 479px) {
      #backToTop {
        width: 36px;
        height: 36px;
        right: 16px;
        bottom: 16px;
        font-size: 0.85rem;
      }
    }

    * {
      box-sizing: border-box;
    }

    html {
      background-color: var(--bg);
      background-image: var(--nordic-page-bg, url("../../images/nordic/Korpala-Nordic-Background.png"));
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

    body {
      margin: 0;
      position: relative;
      font-family: "Fira Sans", sans-serif;
      font-weight: 400;
      background: transparent;
      color: var(--text);
    }
    p,
    a,
    button {
      font-family: "Fira Sans", sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Farro", sans-serif;
      font-weight: 700;
    }

    .nordic-header h1,
    .nordic-header h2,
    .nordic-header h3,
    .nordic-header h4,
    .nordic-header h5,
    .nordic-header h6,
    .nordic-footer h1,
    .nordic-footer h2,
    .nordic-footer h3,
    .nordic-footer h4,
    .nordic-footer h5,
    .nordic-footer h6,
    .nordic-logo__title,
    .footer-title {
      font-family: "Farro", sans-serif;
      font-weight: 700;
    }

    .nordic-header,
    .nordic-footer {
      font-family: "Fira Sans", sans-serif;
      font-weight: 400;
    }

    .nordic-header p,
    .nordic-header a,
    .nordic-header button,
    .nordic-footer p,
    .nordic-footer a,
    .nordic-footer button {
      font-family: "Fira Sans", sans-serif;
      font-weight: 400;
    }

    .nordic-header {
      background: linear-gradient(180deg, var(--brand-deep), var(--brand-deep-2));
      border-bottom: 1px solid rgba(230, 186, 64, 0.35);
      position: sticky;
      top: 0;
      z-index: 20;
      width: 100%;
      margin: 0 auto;
      box-shadow: 0 10px 20px rgba(15, 24, 32, 0.2);
      transition:
        border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        transform 0.28s ease,
        opacity 0.28s ease,
        width 0.35s ease;
    }

    .nordic-header.scrolled {
      width: min(calc(100% - 120px), 1400px);
      margin: 0 auto;
      border-radius: 0 0 40px 40px;
      box-shadow: 0 16px 34px rgba(130, 12, 12, 0.16), 0 4px 12px rgba(15, 23, 42, 0.08);
      background: linear-gradient(180deg, rgba(34, 57, 71, 0.98), rgba(26, 45, 56, 0.98));
      backdrop-filter: blur(14px);
    }

    .nordic-header.header-hidden {
      transform: translateY(-110%);
      opacity: 0;
    }

    .nordic-header__inner {
      width: min(1360px, 100% - 40px);
      margin: 0 auto;
      min-height: 74px;
      padding: 10px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .nordic-logo {
      display: inline-flex;
      align-items: center;
      gap: 30px;
      text-decoration: none;
      white-space: nowrap;
      flex: 0 1 auto;
      min-width: 0;
    }

    .nordic-logo__mark {
      width: auto;
      height: clamp(58px, 7vw, 96px);
      max-width: 110px;
      object-fit: contain;
      object-position: left center;
      display: block;
      flex: 0 0 auto;
    }

    .nordic-logo__title-image {
      width: min(500px, 100%);
      height: clamp(42px, 5vw, 72px);
      max-width: min(500px, 42vw);
      object-fit: contain;
      object-position: left center;
      display: block;
      flex: 1 1 auto;
    }

    .nordic-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto;
      margin-right: 10px;
    }

    .nordic-header__nav-group {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .nordic-nav a {
      font-family: "Fira Sans", sans-serif;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(235, 235, 235, 0.9);
      text-decoration: none;
      padding: 8px 0;
      position: relative;
      font-weight: 700;
      line-height: 1.2;
      transition: color 0.2s ease;
    }

    .nordic-nav a:hover {
      color: var(--brand-accent);
    }

    .nordic-nav a.active {
      color: var(--brand-accent);
      font-weight: 700;
    }

    .nordic-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -10px;
      height: 2px;
      background: var(--active);
    }

    .buy-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 0;
      border-radius: 0;
      padding: 8px 0;
      font-family: "Fira Sans", sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(235, 235, 235, 0.92);
      background: transparent;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      position: relative;
      font-weight: 700;
      line-height: 1.2;
      transition: color 0.2s ease;
    }

    .buy-btn:hover {
      color: var(--brand-accent);
    }

    .buy-btn .arrow {
      width: 8px;
      height: 8px;
      margin-top: -3px;
      flex: 0 0 auto;
      font-size: 0;
      line-height: 0;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.24s ease, color 0.24s ease;
    }

    .buy-btn::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -10px;
      height: 2px;
      background: var(--active);
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .buy-dropdown:hover .buy-btn::after,
    .buy-dropdown.open .buy-btn::after {
      opacity: 1;
    }

    .buy-dropdown:hover .buy-btn .arrow,
    .buy-dropdown.open .buy-btn .arrow {
      transform: rotate(225deg);
    }

    .buy-dropdown {
      position: relative;
    }

    .buy-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      min-width: 246px;
      background: linear-gradient(
        180deg,
        rgba(18, 43, 61, 0.98) 0%,
        rgba(12, 33, 48, 0.98) 100%
      );
      border: 1px solid rgba(230, 186, 64, 0.52);
      border-radius: 14px;
      box-shadow: 0 16px 30px rgba(7, 15, 22, 0.4);
      padding: 8px 10px;
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px) scale(0.97);
      transform-origin: top right;
      pointer-events: none;
      transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
      z-index: 30;
    }

    .buy-dropdown:hover .buy-menu,
    .buy-dropdown.open .buy-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .buy-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 10px;
      border-radius: 8px;
      text-decoration: none;
      color: #ffffff !important;
      font-size: 14px;
      letter-spacing: 0.01em;
      text-transform: none;
      font-weight: 600;
      border: 0;
      background: transparent;
      transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    }

    .buy-menu a + a {
      margin-top: 0;
      border-top: 1px solid rgba(230, 186, 64, 0.22);
    }

    .buy-menu a:hover {
      background: linear-gradient(90deg, rgba(230, 186, 64, 0.14), rgba(255, 255, 255, 0.03));
      color: #ffffff;
      transform: translateX(1px);
      box-shadow: inset 0 0 0 1px rgba(230, 186, 64, 0.28);
    }

    .buy-menu a:hover .nordic-buy-icon {
      background: rgba(230, 186, 64, 0.14);
      border-color: rgba(230, 186, 64, 0.42);
      box-shadow: none;
    }

    .buy-menu a:focus-visible {
      outline: 2px solid rgba(230, 186, 64, 0.72);
      outline-offset: 2px;
    }

    .nordic-buy-icon {
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: currentColor;
      border-radius: 999px;
      background: rgba(8, 18, 26, 0.58);
      border: 1px solid rgba(230, 186, 64, 0.24);
    }

    .nordic-buy-icon img,
    .nordic-buy-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .nordic-buy-label {
      min-width: 0;
      line-height: 1.2;
      color: #ffffff !important;
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
    }

    .buy-menu a span,
    .buy-menu a .nordic-buy-label,
    .buy-menu a [data-ve-field] {
      color: #f5f9ff !important;
    }

    .buy-menu a:hover .nordic-buy-label {
      color: #ffffff !important;
    }

    .burger {
      display: none;
      border: 1px solid rgba(235, 235, 235, 0.45);
      background: rgba(255, 255, 255, 0.06);
      width: 36px;
      height: 32px;
      padding: 6px;
      cursor: pointer;
      flex-direction: column;
      justify-content: space-between;
    }

    .burger span {
      display: block;
      height: 2px;
      background: var(--brand-light);
      width: 100%;
    }

    @media (max-width: 900px) {
      .nordic-header {
        border-radius: 0;
      }

      .nordic-header.scrolled {
        width: min(calc(100% - 24px), 1400px);
        border-radius: 0 0 28px 28px;
      }

      .nordic-header__inner {
        width: min(1360px, 100% - 48px);
        min-height: 92px;
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
        align-items: center;
        flex-wrap: nowrap;
      }

      .nordic-logo {
        flex: 1 1 auto;
        max-width: calc(100% - 72px);
        gap: 14px;
        min-width: 0;
      }

      .nordic-logo__mark {
        width: auto;
        height: 72px;
        max-width: 82px;
      }

      .nordic-logo__title-image {
        width: min(100%, 320px);
        height: auto;
        max-width: 100%;
      }

      .burger {
        display: inline-flex;
        margin-left: auto;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        padding: 10px 8px;
        justify-content: center;
        gap: 4px;
      }

      .nordic-nav,
      .buy-dropdown {
        display: none;
      }

      .nordic-header.mobile-open {
        width: 100%;
        border-radius: 0 0 24px 24px;
      }

      .nordic-header.mobile-open .nordic-header__inner {
        position: relative;
        width: min(1360px, 100% - 48px);
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        row-gap: 4px;
        padding-top: 6px;
        padding-bottom: 16px;
        padding-right: 52px;
      }

      .nordic-header.mobile-open .nordic-logo {
        align-self: flex-start;
        max-width: calc(100% - 56px);
      }

      .nordic-header.mobile-open .burger {
        position: absolute;
        top: 8px;
        right: 0;
        margin: 0;
      }

      .nordic-header.mobile-open .nordic-mobile {
        display: flex;
        flex: 0 0 100%;
        order: 3;
        width: 100%;
      }
    }

    .nordic-mobile {
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      width: 100%;
      margin-top: 12px;
      padding: 14px 16px 16px;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background:
        linear-gradient(180deg, rgba(33, 53, 67, 0.92), rgba(23, 39, 52, 0.9));
      backdrop-filter: blur(16px) saturate(1.08);
      -webkit-backdrop-filter: blur(16px) saturate(1.08);
      box-shadow: 0 18px 34px rgba(5, 12, 19, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
      overflow: hidden;
    }

    .nordic-mobile a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: "Fira Sans", sans-serif;
      font-size: calc(0.8rem + 3px);
      color: rgba(246, 250, 255, 0.96);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 14px 14px;
      border-bottom: 0;
      font-weight: 500;
      line-height: 1;
      border-radius: 12px;
      border: 1px solid transparent;
      background: rgba(255, 255, 255, 0.03);
      transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .nordic-mobile a:hover {
      transform: translateY(-1px);
      border-color: rgba(230, 186, 64, 0.36);
      background: linear-gradient(90deg, rgba(230, 186, 64, 0.14), rgba(255, 255, 255, 0.06));
    }

    .nordic-mobile a:last-child {
      border-bottom: 0;
    }

    .nordic-mobile-dropdown {
      width: 100%;
    }

    .nordic-mobile-summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 14px 14px;
      font-family: "Fira Sans", sans-serif;
      font-size: calc(0.8rem + 3px);
      font-weight: 500;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: rgba(246, 250, 255, 0.96);
      cursor: pointer;
      border-radius: 12px;
      border: 1px solid transparent;
      background: rgba(255, 255, 255, 0.03);
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .nordic-mobile-summary:hover {
      border-color: rgba(230, 186, 64, 0.36);
      background: linear-gradient(90deg, rgba(230, 186, 64, 0.14), rgba(255, 255, 255, 0.06));
    }

    .nordic-mobile-summary::-webkit-details-marker {
      display: none;
    }

    .nordic-mobile-summary::after {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: -3px;
      flex: 0 0 auto;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.24s ease;
    }

    .nordic-mobile-dropdown[open] > .nordic-mobile-summary::after {
      transform: rotate(225deg);
    }

    .nordic-mobile-dropdown-menu {
      margin-top: 4px;
      width: 100%;
      border: 1px solid rgba(230, 186, 64, 0.4);
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(15, 29, 40, 0.92), rgba(19, 35, 48, 0.9));
      padding: 8px;
    }

    .nordic-mobile-dropdown-menu a {
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 16px;
      font-family: "Fira Sans", sans-serif;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: none;
      color: rgba(246, 250, 255, 0.95);
      background: transparent;
    }

    .nordic-mobile-dropdown-menu .nordic-buy-label {
      color: rgba(246, 250, 255, 0.98) !important;
      font-weight: 600;
      opacity: 1;
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    }

    .nordic-mobile-dropdown-menu a + a {
      border-top: 1px solid rgba(230, 186, 64, 0.22);
    }

    .nordic-mobile-dropdown-menu a:hover {
      background: linear-gradient(90deg, rgba(230, 186, 64, 0.16), rgba(255, 255, 255, 0.05));
      color: #fff;
    }

    .hero-carousel {
      width: min(1280px, 100% - 24px);
      margin: 40px auto 0;
    }

    .carousel-shell {
      position: relative;
      border: 1px solid rgba(34, 57, 71, 0.22);
      border-radius: 22px;
      background: #fff;
      overflow: hidden;
      touch-action: pan-y;
      aspect-ratio: 16 / 7;
      min-height: 320px;
      box-shadow: 0 18px 34px rgba(20, 30, 38, 0.22);
    }

    .carousel-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 500ms ease-in-out;
    }

    .carousel-slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      background: #f6f1e8;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      transform: none;
      filter: saturate(1.03) brightness(1.04) contrast(1.01);
      transition: transform 520ms ease, filter 520ms ease;
    }

    .carousel-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
      pointer-events: none;
    }

    .hero-carousel .carousel-slide.is-active img {
      transform: none;
      filter: saturate(1.06) brightness(1.08) contrast(1.01);
    }

    .hero-overlay {
      position: absolute;
      left: clamp(18px, 4vw, 54px);
      top: 50%;
      transform: translateY(-50%);
      max-width: min(620px, calc(100% - 40px));
      z-index: 4;
      color: var(--brand-light);
      text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
    }

    .hero-kicker {
      margin: 0 0 8px;
      font-size: clamp(12px, 1vw, 14px);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      opacity: 0.96;
    }

    .hero-overlay h1 {
      margin: 0;
      font-size: clamp(30px, 4.6vw, 58px);
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: 0.01em;
      max-width: 16ch;
    }

    .hero-subtext {
      margin: 14px 0 0;
      font-size: clamp(15px, 1.35vw, 21px);
      line-height: 1.55;
      max-width: 48ch;
      color: rgba(235, 235, 235, 0.96);
    }

    .hero-actions {
      margin-top: 22px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .hero-btn--primary {
      background: var(--brand-accent);
      color: #3e1f02;
      box-shadow: 0 8px 18px rgba(230, 186, 64, 0.28);
    }

    .hero-btn--secondary {
      border: 1px solid rgba(235, 235, 235, 0.6);
      color: var(--brand-light);
      background: rgba(255, 255, 255, 0.08);
    }

    .hero-btn:hover {
      transform: translateY(-1px);
    }

    .hero-btn--primary:hover {
      background: #f0c75a;
      box-shadow: 0 10px 20px rgba(230, 186, 64, 0.36);
    }

    .hero-btn--secondary:hover {
      background: rgba(255, 255, 255, 0.16);
      color: #ffffff;
      border-color: rgba(235, 235, 235, 0.84);
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      background: rgba(35, 35, 35, 0.28);
      color: #fff;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
      z-index: 3;
    }

    .carousel-arrow.prev {
      left: 12px;
    }

    .carousel-arrow.next {
      right: 12px;
    }

    .carousel-dots {
      position: absolute;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 3;
    }

    .carousel-dots .dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, 0.55);
      cursor: pointer;
      padding: 0;
    }

    .carousel-dots .dot.active {
      background: #ffffff;
    }

    @media (max-width: 900px) {
      .hero-carousel {
        width: 100%;
        margin-top: 12px;
        padding-left: 14px;
        padding-right: 14px;
        box-sizing: border-box;
      }

      .carousel-shell {
        border-radius: 28px;
        aspect-ratio: 16 / 7.6;
        min-height: 0;
      }

      .carousel-arrow {
        width: 30px;
        height: 30px;
      }

      .hero-overlay {
        left: 16px;
        right: 16px;
        max-width: none;
      }

      .hero-kicker {
        font-size: 11px;
        margin-bottom: 6px;
      }

      .hero-overlay h1 {
        font-size: clamp(24px, 8vw, 36px);
        max-width: 14ch;
      }

      .hero-subtext {
        margin-top: 10px;
        font-size: 14px;
        max-width: 36ch;
      }

      .hero-actions {
        margin-top: 14px;
        gap: 8px;
      }

      .hero-btn {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 11px;
      }
    }

    .nordic-section {
      margin-top: 40px;
      background: #d7d7d7;
      border-top: 1px solid #cecece;
      border-bottom: 1px solid #cecece;
      padding: 72px 0;
    }

    .oats-benefits {
      position: relative;
      overflow: hidden;
      background: transparent;
      border-top: 0;
      border-bottom: 0;
      margin-top: 0;
      padding-bottom: var(--nordic-between-sections-gap);
    }

    .section-top-edge {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 56px;
      z-index: 2;
      pointer-events: none;
      background:
        radial-gradient(56px 22px at 6% 100%, #f3f3f3 98%, transparent 100%),
        radial-gradient(64px 24px at 18% 100%, #f3f3f3 98%, transparent 100%),
        radial-gradient(58px 22px at 32% 100%, #f3f3f3 98%, transparent 100%),
        radial-gradient(70px 24px at 47% 100%, #f3f3f3 98%, transparent 100%),
        radial-gradient(62px 24px at 63% 100%, #f3f3f3 98%, transparent 100%),
        radial-gradient(72px 24px at 79% 100%, #f3f3f3 98%, transparent 100%),
        radial-gradient(56px 22px at 93% 100%, #f3f3f3 98%, transparent 100%),
        linear-gradient(180deg, #1d5b34 0%, #1b4f2e 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 16px rgba(9, 32, 17, 0.2);
    }

    .oats-benefits-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0;
      pointer-events: none;
    }

    .oats-benefits .section-inner {
      position: relative;
      z-index: 1;
      padding-top: 24px;
    }

    @media (min-width: 901px) {
      :root {
        --nordic-between-sections-gap: 44px;
      }

      .oats-benefits {
        padding: 0 0 var(--nordic-between-sections-gap);
      }

      .oats-benefits .section-inner {
        padding-top: 0;
      }

      .oats-benefits .section-photo {
        order: 1;
      }

      .oats-benefits .section-content {
        order: 2;
      }

      .why-nordic {
        padding: 44px 0 36px;
        margin-bottom: 0;
      }

      .why-nordic .section-inner {
        padding-top: 8px;
        align-items: center;
      }

      .why-nordic .section-photo {
        align-self: center;
      }

      .why-nordic .product-slide img {
        transform: translateY(40px);
      }

      .oats-benefits .product-slide img {
        transform: translateY(18px);
      }

      #connect-with-us.shared-connect {
        margin-top: 0;
      }
    }

    .why-nordic {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background: transparent;
      border-top: 0;
      border-bottom: 0;
      margin-bottom: 0;
    }

    .section-inner {
      width: min(1280px, 100% - 48px);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: var(--nordic-section-pair-gap);
    }

    .section-inner.reverse {
      justify-content: space-between;
    }

    .wire-image {
      position: relative;
      border: 1px solid #9f9f9f;
      background: #efefef;
      flex-shrink: 0;
    }

    .wire-image::before,
    .wire-image::after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 100%;
      border-top: 1px solid #b2b2b2;
      transform-origin: center;
    }

    .wire-image::before {
      transform: rotate(53deg);
    }

    .wire-image::after {
      transform: rotate(-53deg);
    }

    .wire-image.small {
      width: 150px;
      height: 250px;
    }

    .section-photo {
      width: clamp(360px, 45vw, 560px);
      height: clamp(250px, 28vw, 340px);
      flex-shrink: 0;
      border-radius: 0;
      overflow: visible;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .section-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
    }

    .product-carousel {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      touch-action: pan-y;
    }

    .product-carousel-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 500ms ease-in-out;
    }

    .product-slide {
      min-width: 100%;
      height: 100%;
      margin: 0;
      position: relative;
      overflow: hidden;
    }

    .product-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 16px;
      background: transparent;
      transform: none;
    }

    .product-slide::after {
      content: none;
    }

    .product-slide figcaption {
      display: none;
    }

    .product-carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      background: linear-gradient(135deg, rgba(235, 235, 235, 0.88), rgba(255, 255, 255, 0.72));
      -webkit-backdrop-filter: blur(10px) saturate(1.08);
      backdrop-filter: blur(10px) saturate(1.08);
      box-shadow: 0 10px 18px rgba(34, 57, 71, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
      color: var(--brand-heading);
      cursor: pointer;
      display: grid;
      place-items: center;
      padding: 0;
      font-size: 22px;
      font-weight: 700;
      line-height: 1;
      z-index: 3;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .product-carousel-arrow:hover {
      transform: translateY(-50%) scale(1.04);
      background: linear-gradient(135deg, rgba(240, 237, 231, 0.92), rgba(255, 255, 255, 0.78));
      box-shadow: 0 12px 20px rgba(34, 57, 71, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .product-carousel-arrow:focus-visible {
      outline: 2px solid rgba(77, 32, 0, 0.48);
      outline-offset: 2px;
      transform: translateY(-50%) scale(1.04);
    }

    .product-carousel-arrow:active {
      transform: translateY(-50%) scale(0.98);
    }

    .why-nordic .product-carousel-arrow,
    .oats-benefits .product-carousel-arrow {
      top: 58%;
    }

    .product-carousel-arrow.prev {
      left: 10px;
    }

    .product-carousel-arrow.next {
      right: 10px;
    }

    .product-carousel-dots {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 3;
    }

    .product-carousel-dots .dot {
      width: 8.5px;
      height: 8.5px;
      border-radius: 999px;
      border: 2px solid rgba(34, 57, 71, 0.4);
      background: rgba(255, 255, 255, 0.92);
      padding: 0;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(20, 28, 36, 0.18);
      transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
    }

    .product-carousel-dots .dot.active {
      background: var(--brand-accent);
      border-color: rgba(173, 122, 14, 0.85);
      transform: scale(1.1);
    }

    .why-nordic .product-carousel-dots,
    .oats-benefits .product-carousel-dots {
      display: none;
    }

    .section-content {
      flex: 1;
      min-width: 0;
    }

    .section-content h2 {
      margin: 0 0 20px;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 700;
      color: var(--brand-heading);
      text-transform: none;
      letter-spacing: 0.01em;
    }

    .oats-benefits .section-content h2 {
      text-align: left;
    }

    .text-card {
      width: min(760px, 100%);
      border: 1px solid color-mix(in srgb, rgba(34, 57, 71, 0.18) 85%, transparent 15%);
      background: color-mix(in srgb, rgba(235, 235, 235, 0.92) 94%, #ffffff 6%);
      backdrop-filter: none;
      border-radius: 22px;
      min-height: 210px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
      padding: 32px 36px;
      box-shadow: 0 10px 20px rgba(20, 34, 43, 0.08);
      position: relative;
      overflow: hidden;
    }

    .text-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--brand-warm), var(--brand-accent));
    }

    .text-card1,
    .text-card2 {
      margin-left: 0;
    }

    .text-card1 p,
    .text-card2 p {
      margin: 0;
      font-size: clamp(22px, 2vw, 30px);
      line-height: 1.5;
      color: var(--brand-deep);
      max-width: 30ch;
      font-weight: 400;
    }

    .why-nordic .section-content h2 {
      text-align: left;
    }

    .why-nordic .text-card {
      margin-left: 0;
    }

    .text-card2 {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .text-card2 .product-copy-title {
      margin: 0;
      font-size: clamp(20px, 1.8vw, 28px);
      line-height: 1.2;
      font-weight: 500;
      color: var(--brand-deep-2);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .text-card2 .product-copy-text {
      margin: 0;
      max-width: 52ch;
      font-size: clamp(17px, 1.2vw, 21px);
      line-height: 1.55;
      font-weight: 400;
      color: rgba(34, 57, 71, 0.95);
    }

    .nordic-footer {
      --shared-footer-height: 156px;
      background:
        radial-gradient(80% 140% at 100% 0%, rgba(230, 186, 64, 0.16), transparent 60%),
        linear-gradient(180deg, var(--brand-deep), var(--brand-deep-2));
      border-top: 1px solid rgba(230, 186, 64, 0.38);
      margin-top: 76px;
    }

    .footer-inner {
      width: min(1360px, 100% - 40px);
      margin: 0 auto;
      min-height: var(--shared-footer-height);
      height: var(--shared-footer-height);
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) auto auto;
      align-items: start;
      column-gap: 96px;
      row-gap: 12px;
      padding: 14px 20px;
      box-sizing: border-box;
    }

    .footer-left {
      display: grid;
      grid-template-columns: 128px minmax(0, 1fr);
      align-items: start;
      gap: 0 16px;
      min-width: 0;
      justify-content: flex-start;
      justify-self: start;
      align-self: start;
      grid-column: 1;
      grid-row: 1;
    }

    .footer-logo {
      width: 128px;
      height: 128px;
      flex: 0 0 auto;
      margin-left: 0;
      border: 0;
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0;
    }

    .footer-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transform: none;
    }

    .footer-title {
      margin: 0 0 6px;
      font-size: 20px;
      font-weight: 700;
      color: var(--brand-accent);
      text-transform: none;
      letter-spacing: 0;
    }

    .footer-contact p {
      margin: 0;
      font-size: 12px;
      color: rgba(235, 235, 235, 0.95);
      line-height: 1.4;
    }

    .footer-contact strong {
      font-family: "Fira Sans", sans-serif;
      font-weight: 500;
    }

    .footer-contact {
      min-width: 0;
      text-align: left;
      margin-top: 0;
      margin-left: 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-contact .footer-title {
      font-size: 20px;
      color: var(--brand-accent);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.35;
    }

    .contact-item > span {
      display: block;
    }

    .contact-item-icon {
      width: 16px;
      height: 16px;
      color: var(--brand-accent);
      flex-shrink: 0;
      display: block;
      margin-top: 1px;
    }

    .footer-contact a {
      color: rgba(235, 235, 235, 0.95);
      text-decoration: none;
    }

    .footer-contact a:hover {
      color: var(--brand-accent);
    }

    .footer-middle {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
      align-self: flex-start;
      margin-top: 0;
      grid-column: 2;
      grid-row: 1;
      justify-self: start;
      margin-left: 0;
    }

    .footer-social {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      align-items: flex-start;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      color: rgba(235, 235, 235, 0.95);
      text-decoration: none;
      border: 0;
      padding: 0;
      background: transparent;
      width: fit-content;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .social-link svg {
      width: 15px;
      height: 15px;
      display: block;
    }

    .social-link span {
      line-height: 1;
    }

    .social-link:hover {
      color: var(--brand-accent);
      transform: translateX(2px);
    }

    .footer-right {
      display: grid;
      grid-template-columns: repeat(2, auto);
      align-items: flex-start;
      gap: 12px;
      justify-content: flex-end;
      min-width: 0;
      align-self: flex-start;
      grid-column: 3;
      grid-row: 1;
      margin-top: 0;
      justify-self: end;
    }

    .footer-right .footer-title {
      grid-column: 1 / -1;
      width: 100%;
      margin: 0 0 4px;
      text-align: center;
      font-size: 20px;
      font-weight: 400;
      align-self: end;
      white-space: nowrap;
      margin-left: 0;
      justify-self: center;
    }

    .footer-brand-logo {
      width: 110px;
      height: 96px;
      border: 0;
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 2px 4px;
      margin-top: 0;
    }

    .footer-brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 900px) {
      :root {
        --nordic-section-pair-gap: 20px;
      }

      .nordic-footer {
        --shared-footer-height: 330px;
      }

      .nordic-section {
        margin-top: 46px;
        padding: 40px 0;
      }

      .why-nordic {
        padding: 40px 0 0;
        margin-bottom: 0;
      }

      .oats-benefits {
        padding: 0 0 var(--nordic-between-sections-gap);
      }

      .oats-benefits .section-inner {
        padding-top: 0;
      }

      .section-inner,
      .section-inner.reverse {
        flex-direction: column;
        gap: var(--nordic-section-pair-gap);
      }

      .section-top-edge {
        height: 44px;
      }

      .wire-image.small {
        width: 112px;
        height: 180px;
      }

      .section-photo {
        width: 100%;
        max-width: 560px;
        height: 240px;
      }

      .product-slide figcaption {
        font-size: 13px;
        left: 12px;
        bottom: 12px;
      }

      .product-carousel-arrow {
        width: 30px;
        height: 30px;
      }

      .why-nordic .product-carousel-arrow,
      .oats-benefits .product-carousel-arrow {
        display: none;
      }

      .why-nordic .product-carousel-dots,
      .oats-benefits .product-carousel-dots {
        display: flex;
      }

      .section-content h2,
      .why-nordic .section-content h2 {
        text-align: left;
        font-size: 36px;
      }

      .text-card1,
      .text-card2 {
        width: 100%;
        min-height: 0;
        padding: 24px 22px 24px 26px;
      }

      .text-card1 p,
      .text-card2 p {
        font-size: 18px;
        max-width: none;
      }

      .text-card2 .product-copy-title {
        font-size: 19px;
      }

      .text-card2 .product-copy-text {
        font-size: 16px;
      }

      .footer-inner {
        min-height: auto;
        height: auto;
        padding: 12px 14px 14px;
        grid-template-columns: 76px minmax(0, 1fr) auto;
        gap: 8px 12px;
        align-items: start;
      }

      .footer-left {
        width: auto;
        min-width: 0;
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        align-items: start;
        gap: 0 10px;
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
        align-self: start;
      }

      .footer-middle,
      .footer-right {
        width: auto;
        min-width: 0;
        margin-top: 0;
        justify-self: end;
        text-align: right;
      }

      .footer-right {
        grid-column: 3;
        grid-row: 2;
        justify-content: flex-end;
        gap: 6px;
        grid-template-columns: repeat(2, auto);
      }

      .footer-right .footer-title {
        text-align: right;
        margin-bottom: 6px;
      }

      .footer-middle {
        grid-column: 3;
        grid-row: 1;
        align-items: flex-end;
        gap: 6px;
      }

      .footer-social {
        gap: 6px;
        align-items: flex-end;
      }

      .social-link {
        width: 46px;
        height: 46px;
        min-width: 46px;
        padding: 0;
        justify-content: center;
        border: 1px solid rgba(235, 235, 235, 0.45);
        border-radius: 999px;
      }

      .social-link svg {
        width: 24px;
        height: 24px;
      }

      .social-link span {
        display: none;
      }

      .footer-logo {
        width: 56px;
        height: 56px;
        justify-content: center;
      }

      .footer-logo img {
        transform: none;
      }

      .footer-contact {
        margin-top: 0;
      }

      .footer-contact .footer-title,
      .footer-title,
      .footer-right .footer-title {
        font-size: 20px;
      }

      .footer-contact p {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.35;
      }

      .contact-item {
        align-items: flex-start;
      }

      .contact-item-icon {
        width: 10px;
        height: 10px;
        margin-top: 2px;
      }

      .footer-brand-logo {
        width: auto;
        height: auto;
        padding: 0;
      }

      .footer-brand-logo img {
        max-width: 64px;
        max-height: 64px;
        width: auto;
        height: auto;
      }

      .footer-brand-logo:last-child img {
        max-width: 54px;
        max-height: 54px;
      }

    }

    @media (max-width: 640px) {
      :root {
        --nordic-section-pair-gap: 14px;
        --nordic-between-sections-gap: 30px;
      }

      .nordic-header.scrolled {
        width: min(calc(100% - 16px), 1400px);
        border-radius: 0 0 24px 24px;
      }

      .nordic-header__inner {
        min-height: 82px;
      }

      .nordic-header.mobile-open {
        border-radius: 0 0 20px 20px;
      }

      .nordic-logo {
        max-width: calc(100% - 74px);
        gap: 10px;
      }

      .nordic-logo__mark {
        height: 62px;
        max-width: 70px;
      }

      .nordic-logo__title-image {
        width: min(100%, 196px);
      }

      .nordic-mobile {
        padding: 8px 18px 20px;
      }

      .nordic-section {
        margin-top: 24px;
        padding: 24px 0;
      }

      .why-nordic {
        padding: 24px 0 0;
      }

      .why-nordic .section-inner,
      .oats-benefits .section-inner,
      .section-inner.reverse {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(112px, 0.85fr);
        align-items: stretch;
        gap: var(--nordic-section-pair-gap);
      }

      .why-nordic .section-content,
      .oats-benefits .section-content {
        display: contents;
      }

      .oats-benefits .section-inner {
        padding-top: 0;
        grid-template-columns: minmax(112px, 0.85fr) minmax(0, 1.15fr);
      }

      .oats-benefits {
        padding-bottom: var(--nordic-between-sections-gap);
      }

      .oats-benefits .section-content h2 {
        margin-bottom: 10px;
      }

      .why-nordic .section-inner {
        gap: var(--nordic-section-pair-gap);
      }

      .why-nordic .section-content h2 {
        margin-bottom: 10px;
      }

      .why-nordic .section-content h2,
      .oats-benefits .section-content h2 {
        grid-column: 1 / -1;
        grid-row: 1;
        align-self: end;
      }

      .why-nordic .text-card,
      .oats-benefits .text-card {
        grid-column: 1;
        grid-row: 2;
      }

      .oats-benefits .text-card {
        grid-column: 2;
      }

      .why-nordic .section-photo,
      .oats-benefits .section-photo {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 0;
      }

      .why-nordic .product-slide img,
      .oats-benefits .product-slide img {
        padding: 8px;
        transform: scale(1.2);
        transform-origin: center;
      }

      .oats-benefits .section-photo {
        grid-column: 1;
      }

      .why-nordic .product-carousel,
      .oats-benefits .product-carousel {
        height: 100%;
      }

      .why-nordic .text-card,
      .oats-benefits .text-card {
        width: 100%;
        min-height: 0;
        align-self: start;
        padding: 14px 14px 14px 18px;
        border-radius: 16px;
        box-shadow: 0 12px 22px rgba(34, 57, 71, 0.12);
      }

      .why-nordic .text-card2,
      .oats-benefits .text-card2 {
        gap: 8px;
      }

      .why-nordic .text-card2,
      .oats-benefits .text-card2 {
        justify-content: center;
      }

      .why-nordic .text-card2 .product-copy-title,
      .oats-benefits .text-card2 .product-copy-title {
        font-size: 16px;
        line-height: 1.15;
        letter-spacing: 0.04em;
      }

      .why-nordic .text-card2 .product-copy-text,
      .oats-benefits .text-card2 .product-copy-text {
        font-size: 14px;
        line-height: 1.45;
      }

      .why-nordic .product-slide figcaption,
      .oats-benefits .product-slide figcaption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 12px;
        padding: 6px 10px;
      }

      .why-nordic .product-carousel-arrow,
      .oats-benefits .product-carousel-arrow {
        width: 28px;
        height: 28px;
      }

      .why-nordic .product-carousel-dots,
      .oats-benefits .product-carousel-dots {
        bottom: 10px;
        gap: 6px;
      }

      .why-nordic .product-carousel-dots .dot,
      .oats-benefits .product-carousel-dots .dot {
        width: 7px;
        height: 7px;
      }

      .hero-carousel {
        width: min(1280px, 100% - 48px);
        padding-left: 0;
        padding-right: 0;
      }

      .carousel-shell {
        height: auto;
        min-height: 0;
        aspect-ratio: 17.5 / 7.8;
        border-radius: 18px;
      }

      .nordic-footer {
        --shared-footer-height: 300px;
      }

      .footer-inner {
        min-height: auto;
        height: auto;
        padding: 8px 6px 8px;
        grid-template-columns: 76px minmax(0, 1fr) auto;
        gap: 5px 16px;
      }

      .footer-left {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 0 4px;
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
      }

      .footer-contact {
        margin-left: 0;
        gap: 0;
      }

      .footer-middle {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        text-align: center;
        align-items: center;
        align-self: start;
        gap: 6px;
      }

      .footer-right {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
        text-align: center;
        align-self: start;
        justify-items: center;
        gap: 4px;
      }

      .footer-logo {
        width: 56px;
        height: 56px;
        margin-top: 4px;
      }

      .footer-contact p {
        margin-bottom: 2px;
        font-size: 9px;
        line-height: 1.2;
      }

      .footer-title,
      .footer-contact .footer-title,
      .footer-right .footer-title {
        font-size: 11px;
        margin-bottom: 5px;
      }

      .footer-middle .footer-title[data-ve-field="nordic_footer_follow_title"] {
        font-size: 13px !important;
        margin-top: 6px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
      }

      .footer-right .footer-title[data-ve-field="nordic_footer_brands_title"] {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 2px !important;
        transform: translateX(-6px);
      }

      .footer-contact .footer-title[data-ve-field="nordic_footer_contact_title"] {
        font-size: 20px !important;
        margin-top: 6px !important;
        margin-bottom: 10px !important;
      }

      .social-link {
        font-size: 10px;
        gap: 6px;
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0;
        justify-content: center;
        border: 1px solid rgba(235, 235, 235, 0.45);
        border-radius: 999px;
      }

      .social-link svg {
        width: 18px;
        height: 18px;
      }

      .social-link span {
        display: none;
      }

      .footer-social {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: -8px;
      }

      .footer-brand-logo {
        width: auto;
        height: auto;
      }

      .footer-brand-logo img {
        max-width: 64px;
        max-height: 64px;
        width: auto;
        height: auto;
      }

      .footer-brand-logo:last-child img {
        max-width: 54px;
        max-height: 54px;
      }
    }

    @media (max-width: 480px) {
      :root {
        --nordic-section-pair-gap: 12px;
      }

      .nordic-header__inner {
        min-height: 74px;
      }

      .nordic-logo {
        max-width: calc(100% - 70px);
        gap: 8px;
      }

      .nordic-logo__mark {
        height: 54px;
        max-width: 58px;
      }

      .nordic-logo__title-image {
        width: min(100%, 160px);
      }

      .nordic-mobile {
        padding-left: 14px;
        padding-right: 14px;
      }

      .why-nordic .section-inner,
      .oats-benefits .section-inner,
      .section-inner.reverse {
        grid-template-columns: minmax(0, 1.2fr) 108px;
        gap: var(--nordic-section-pair-gap);
      }

      .oats-benefits .section-inner {
        grid-template-columns: 108px minmax(0, 1.2fr);
      }

      .why-nordic .section-content h2,
      .oats-benefits .section-content h2 {
        font-size: 28px;
        margin-bottom: 8px;
      }

      .why-nordic .section-photo,
      .oats-benefits .section-photo {
        min-height: 0;
      }

      .why-nordic .product-slide img,
      .oats-benefits .product-slide img {
        padding: 6px;
        transform: scale(1.24);
      }

      .why-nordic .text-card,
      .oats-benefits .text-card {
        min-height: 150px;
        padding: 12px 12px 12px 16px;
      }

      .why-nordic .text-card::before,
      .oats-benefits .text-card::before {
        width: 5px;
      }

      .why-nordic .text-card2 .product-copy-title,
      .oats-benefits .text-card2 .product-copy-title {
        font-size: 14px;
      }

      .why-nordic .text-card2 .product-copy-text,
      .oats-benefits .text-card2 .product-copy-text {
        font-size: 13px;
        line-height: 1.4;
      }

      .why-nordic .product-slide figcaption,
      .oats-benefits .product-slide figcaption {
        font-size: 11px;
      }

      .nordic-footer {
        --shared-footer-height: 280px;
      }

      .footer-inner {
        padding: 7px 4px 8px;
        min-height: auto;
        height: auto;
        grid-template-columns: 68px minmax(0, 1fr) auto;
        gap: 5px 14px;
      }

      .footer-left {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 0 4px;
      }

      .footer-contact {
        margin-left: 0;
        gap: 0;
      }

      .footer-logo {
        width: 48px;
        height: 48px;
        margin-top: 4px;
      }

      .footer-title,
      .footer-contact .footer-title,
      .footer-right .footer-title {
        font-size: 10px;
      }

      .footer-middle .footer-title[data-ve-field="nordic_footer_follow_title"] {
        font-size: 12px !important;
        margin-top: 6px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
      }

      .footer-right .footer-title[data-ve-field="nordic_footer_brands_title"] {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 2px !important;
        transform: translateX(-6px);
      }

      .footer-contact .footer-title[data-ve-field="nordic_footer_contact_title"] {
        font-size: 18px !important;
        margin-top: 6px !important;
        margin-bottom: 10px !important;
      }

      .footer-contact p {
        margin-bottom: 2px;
        font-size: 9px;
        line-height: 1.2;
      }

      .footer-middle {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        text-align: center;
        align-items: center;
        align-self: start;
      }

      .footer-right {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
        text-align: center;
        align-self: start;
        justify-items: center;
        gap: 4px;
      }

      .footer-social {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: -8px;
      }

      .social-link {
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0;
        justify-content: center;
        border: 1px solid rgba(235, 235, 235, 0.45);
        border-radius: 999px;
      }

      .social-link svg {
        width: 18px;
        height: 18px;
      }

      .social-link span {
        display: none;
      }

      .footer-brand-logo img {
        max-width: 58px;
        max-height: 58px;
      }

      .footer-brand-logo:last-child img {
        max-width: 48px;
        max-height: 48px;
      }
    }
