@font-face {
  font-family: "Damion";
  src: url("../fonts/Damion-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.back-to-recipes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.back-to-recipes img {
  transform: rotate(180deg);
}

.recepie-heading {
  padding: 32px;
  background-color: #F2F6FB;
}
.recepie-heading h2 {
  font-size: 40px;
  font-weight: 800;
}
.recepie-heading .categories {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 8px;
  padding: 0;
  margin-top: 32px;
}
.recepie-heading .categories .item {
  min-width: 100px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  border-radius: 24px;
  border: 1px solid black;
}
.recepie-heading .categories .item .name {
  font-size: 14px;
  font-weight: 600;
}
.recepie-heading .categories .item:hover {
  background-color: #183a68;
  border-color: #183a68;
}
.recepie-heading .categories .item:hover .name {
  color: white;
}
.recepie-heading .categories .item:hover .img {
  filter: invert(1);
}
@media (max-width: 768px) {
  .recepie-heading {
    padding: 16px;
  }
  .recepie-heading h2 {
    font-size: 24px;
  }
  .recepie-heading .categories {
    flex-direction: row;
    flex-wrap: unset;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
  .recepie-heading .categories .item {
    min-width: 120px;
    white-space: pre;
  }
}

.search {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.search .input {
  border: 1px solid white;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}
.search .button {
  padding: 11px 31px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  background-color: #F18747;
}

.recipe-count {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  margin-top: 48px;
}

.account-pages .recipes, .single-weekly-menu-content .recipes {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.account-pages .recipes:not(.recipe-list), .single-weekly-menu-content .recipes:not(.recipe-list) {
  gap: 24px;
}
.account-pages .recipes, .single-weekly-menu-content .recipes {
  list-style-type: none;
  width: 100%;
  padding: 0;
}
.account-pages .recipes .recipe .heart-container, .single-weekly-menu-content .recipes .recipe .heart-container {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.account-pages .recipes .recipe, .single-weekly-menu-content .recipes .recipe {
  position: relative;
  overflow: hidden;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 10px;
}
.account-pages .recipes .recipe a, .single-weekly-menu-content .recipes .recipe a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account-pages .recipes .recipe .favorite, .single-weekly-menu-content .recipes .recipe .favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  appearance: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.account-pages .recipes .recipe .favorite.is-favorite svg, .single-weekly-menu-content .recipes .recipe .favorite.is-favorite svg {
  fill: #f18747;
}
.account-pages .recipes .recipe .image, .single-weekly-menu-content .recipes .recipe .image {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.account-pages .recipes .recipe .calories, .single-weekly-menu-content .recipes .recipe .calories {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  color: #0D2345;
}
.account-pages .recipes .recipe .name, .single-weekly-menu-content .recipes .recipe .name {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .account-pages .recipes, .single-weekly-menu-content .recipes {
    grid-template-columns: 1fr 1fr;
  }
}

.filter-search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.filter-search .filter {
  list-style-type: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.filter-search .filter li {
  position: relative;
}
.filter-search .filter .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120px;
  background: #F2F6FB;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.filter-search .filter .item span {
  display: flex;
  gap: 4px;
}
.filter-search .filter .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  border-radius: 4px;
  z-index: 500;
  background-color: white;
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
}
.filter-search .filter .sub-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-search .filter .sub-menu li label::selection {
  background: none;
}
.filter-search .filter .sub-menu .filter-title {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .filter-search .filter .sub-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    top: unset;
    background: white;
    width: 100%;
    padding: 0 20px;
  }
  .filter-search .filter .sub-menu .filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
  }
}
.filter-search .filter li.open .sub-menu {
  padding: 8px;
  max-height: fit-content;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .filter-search .filter li.open::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 500;
    content: "";
  }
  .filter-search .filter li.open .sub-menu {
    padding: 16px 20px;
    z-index: 501;
  }
}
.filter-search .search {
  margin-left: auto;
  margin-top: 0;
  align-items: center;
}
.filter-search .search .input {
  max-width: 200px;
  width: 100%;
  background: #F2F6FB;
}
@media screen and (max-width: 992px) {
  .filter-search {
    display: flex;
    flex-direction: column;
  }
  .filter-search .filter {
    display: flex;
  }
  .filter-search .search {
    margin-left: 0;
  }
}

.active-filters {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.active-filters .clear-all {
  cursor: pointer;
  border: none;
  background: none;
  appearance: none;
  text-decoration: underline;
  font-weight: 600;
  font-size: 12px;
}
.active-filters .active-filter span {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px;
  padding: 10px 15px;
  border: 1px solid #0D2345;
}

.recipes-pagination {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.recipes-pagination span, .recipes-pagination button {
  padding: 6px 11px;
  border-radius: 4px;
  background: #F2F6FB;
  appearance: none;
  border: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  cursor: pointer;
}
.recipes-pagination span:nth-last-child(2), .recipes-pagination button:nth-last-child(2) {
  cursor: default;
}
.recipes-pagination span.active, .recipes-pagination button.active {
  background: #0D2345;
  color: white;
}
@media (max-width: 768px) {
  .recipes-pagination {
    gap: 8px;
  }
}

.category-slider {
  margin: 48px 0;
}
.category-slider .cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-slider .cat-header .left {
  display: flex;
  gap: 16px;
  color: #0D2345;
}
.category-slider .cat-header .left h2 {
  font-size: 18px;
  font-weight: 700;
  align-items: center;
}
.category-slider .cat-header .left a {
  text-decoration: underline;
}
.category-slider .cat-header .right {
  display: flex;
  gap: 13px;
}
.category-slider .cat-header .right .button {
  background-color: #B0C3E0;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.category-slider .cat-header .right .button.right {
  transform: rotate(180deg);
}
.category-slider .slider {
  display: flex;
  gap: 24px;
  overflow: scroll;
  padding: 20px;
  padding-left: 0;
  margin-top: 0;
  scroll-behavior: smooth;
}
.category-slider .slider .recipe {
  min-width: 250px;
}

.page-template-default .single-kunskapsbank-hero .main:has(.main-content) {
  padding-top: 50px;
}
@media screen and (min-width: 992px) {
  .page-template-default .single-kunskapsbank-hero .main {
    padding-top: 0;
  }
  .page-template-default .single-kunskapsbank-hero .main:has(.title-image) {
    height: 400px;
  }
  .page-template-default .single-kunskapsbank-hero .main:has(.main-content) {
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
  }
}

.print-page {
  position: absolute;
  top: 16px;
  right: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  line-height: 1;
  border: none;
  margin: 0;
  margin-bottom: 1rem;
}

.weekly-menu-chip-link {
  background: #F18747;
  border-color: #F18747 !important;
}
.weekly-menu-chip-link span {
  color: white;
}
.weekly-menu-chip-link:hover {
  background-color: #F18747 !important;
  border-color: #F18747 !important;
}
.weekly-menu-chip-link:hover .img {
  filter: inherit !important;
}

.highlighted-courses .qte-custom-swiper-container + .kick-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

.recipes.more-posts .pagination-wrapper:has(#wp_pagination) {
  width: 100%;
}

.pagebreak {
  -webkit-column-break-inside: avoid !important;
  -moz-column-break-inside: avoid !important;
  break-inside: avoid !important;
  page-break-before: always !important;
  -webkit-column-break-before: always !important;
  -moz-column-break-before: always !important;
  break-before: always !important;
}

.buy-button-reco {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .buy-button-reco {
    flex-direction: column-reverse;
    align-items: center;
  }
}

/**
 * Styles for Hero 2026 (section-hero-2026).
 */
.section-hero-2026 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.section-hero-2026__media {
  position: absolute;
  inset: 0;
  background-color: #2f2f2f;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.section-hero-2026--separate-mobile .section-hero-2026__media--desktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .section-hero-2026--separate-mobile .section-hero-2026__media--desktop {
    display: block;
  }
}
.section-hero-2026--separate-mobile .section-hero-2026__media--mobile {
  display: block;
}
@media screen and (min-width: 1025px) {
  .section-hero-2026--separate-mobile .section-hero-2026__media--mobile {
    display: none;
  }
}
.section-hero-2026__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-hero-2026__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.82) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.05) 62%);
  z-index: 1;
}
.section-hero-2026__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 18px;
  padding: 0 144px;
}
.section-hero-2026__title {
  margin: 0;
  color: inherit;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: normal;
}
.section-hero-2026__content {
  margin-top: 14px;
  color: inherit;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 1.02;
  font-weight: 400;
}
.section-hero-2026__content p {
  margin: 0;
}
.section-hero-2026__content p + p {
  margin-top: 10px;
}
.section-hero-2026__title, .section-hero-2026__content, .section-hero-2026__content p {
  color: #fff;
}
.section-hero-2026--custom-color .section-hero-2026__inner, .section-hero-2026--custom-color .section-hero-2026__text, .section-hero-2026--custom-color .section-hero-2026__text * {
  color: inherit;
}
.section-hero-2026__cta {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  align-items: center;
  text-decoration: none;
  padding: 24px;
  border-radius: 8px;
  background: rgba(241, 135, 71, 0.85);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.section-hero-2026__cta:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.section-hero-2026__cta--static {
  cursor: default;
}
.section-hero-2026__cta-primary {
  grid-column: 1;
  grid-row: 1;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: white;
}
.section-hero-2026__cta-secondary {
  grid-column: 1;
  grid-row: 2;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  opacity: 0.95;
  color: white;
}
.section-hero-2026__cta-arrow {
  grid-column: 2;
  grid-row: 1/span 2;
  align-self: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .section-hero-2026__title {
    font-size: 85px;
  }
  .section-hero-2026__content {
    font-size: 20px;
  }
  .section-hero-2026__cta-primary {
    font-size: 18px;
  }
  .section-hero-2026__cta-secondary {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .section-hero-2026 {
    min-height: clamp(560px, 82vh, 860px);
  }
  .section-hero-2026__inner, .section-hero-2026__media {
    min-height: clamp(560px, 82vh, 860px);
  }
  .section-hero-2026__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-hero-2026__inner {
    margin-top: 203px;
    justify-content: unset;
    padding: 0 24px;
  }
  .section-hero-2026__cta {
    margin-top: 24px;
  }
}

/**
 * Styles for Puffar 2026 (section-highlighted-links-2026).
 */
.section-highlighted-links-2026 {
  /* Block styles go here */
  background: #F2F6FB;
  padding: 40px 16px;
}
.section-highlighted-links-2026__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  align-items: stretch;
  max-width: 14400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section-highlighted-links-2026__inner {
    display: flex;
    gap: 16px;
  }
}
.section-highlighted-links-2026__link {
  position: relative;
  padding: 16px;
  background-color: #366361;
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  min-width: 0;
  width: 100%;
  min-height: 118px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.section-highlighted-links-2026__link:hover {
  filter: brightness(0.85);
  text-decoration: underline;
  text-decoration-color: currentColor;
}
.section-highlighted-links-2026__link--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.section-highlighted-links-2026__link-text {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  hyphens: auto;
  overflow-wrap: break-word;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .section-highlighted-links-2026 {
    padding: 64px 40px;
  }
  .section-highlighted-links-2026__link {
    padding: 40px 24px;
  }
  .section-highlighted-links-2026__link-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .section-highlighted-links-2026 {
    padding: 64px 144px;
  }
  .section-highlighted-links-2026__link {
    min-height: 150px;
  }
}

/**
 * Styles for Medlemskap 2026 (section-membership-2026).
 */
.section-membership-2026 {
  background: #F2F6FB;
  padding: 20px 16px 28px;
}
.section-membership-2026__inner {
  max-width: 1460px;
  margin: 0 auto;
}
.section-membership-2026__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  border: 5px solid #1F3A64;
  border-radius: 6px;
  background: var(--Blue, #1F3A64);
  box-shadow: inset 0 0 0 2px #dbe4ef;
  overflow: hidden;
  padding-top: 24px;
}
.section-membership-2026__main {
  order: 1;
}
.section-membership-2026__title {
  padding: 8px 16px;
  background: white;
  color: #1F3A64;
  text-align: center;
  text-transform: capitalize;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.section-membership-2026__title-script {
  display: inline-block;
  margin-right: 10px;
  font-family: "Damion" !important;
  color: #1F3A64;
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 400;
}
.section-membership-2026__title-main {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: #1F3A64;
}
.section-membership-2026__benefits {
  margin: 0;
  padding: 24px;
  padding-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-membership-2026__benefit {
  position: relative;
  margin: 0 0 10px;
  list-style-type: none;
  display: flex;
  gap: 16px;
  align-items: center;
}
.section-membership-2026__benefit-text {
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.5;
  font-weight: 400;
}
.section-membership-2026__benefit svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.section-membership-2026__benefit svg path {
  stroke: white;
}
.section-membership-2026__benefit:last-child {
  margin-bottom: 0;
}
.section-membership-2026__media {
  order: 2;
  overflow: hidden;
  margin: 0 2px;
}
.section-membership-2026__media-window {
  overflow: hidden;
  margin: 0 -2px;
  max-height: 450px;
}
.section-membership-2026__media-track {
  display: flex;
  width: max-content;
  gap: 8px;
  animation: section-membership-2026-marquee-x 15s linear infinite;
  will-change: transform;
}
@media screen and (min-width: 1025px) {
  .section-membership-2026__media-track {
    gap: 16px;
  }
}
.section-membership-2026__media-item {
  width: 130px;
  height: 130px;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 3px;
}
.section-membership-2026__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}
.section-membership-2026__cta {
  order: 3;
  display: grid;
  gap: 10px;
  padding: 24px;
  padding-top: 0;
}
.section-membership-2026__button {
  width: 100%;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-membership-2026__button--primary {
  border-radius: 4px;
  background: var(--Orange, #F18747);
  padding: 16px 8px;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
  /* KS/Button */
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
.section-membership-2026__button--secondary {
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
  background: transparent;
  color: #ecf2f9;
}
.section-membership-2026__small-text {
  margin: 2px 0 0;
  text-align: center;
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .section-membership-2026 {
    padding: 20px 40px 28px;
  }
}
@media screen and (min-width: 1024px) {
  .section-membership-2026 {
    background: #1F3A64;
  }
  .section-membership-2026 svg path {
    stroke: #ec8444;
  }
  .section-membership-2026 {
    padding: 0 80px;
  }
  .section-membership-2026__card {
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr) minmax(250px, 360px);
    max-width: 1240px;
    align-items: center;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    margin: 0 auto;
  }
  .section-membership-2026__card::before {
    display: none;
  }
  .section-membership-2026__media {
    order: 1;
    align-self: center;
  }
  .section-membership-2026__media-window {
    width: min(19.5vw, 340px);
    height: 100%;
    margin: 0;
  }
  .section-membership-2026__media-track {
    flex-direction: column;
    animation: section-membership-2026-marquee-y 34s linear infinite;
  }
  .section-membership-2026__media-item {
    width: min(19.5vw, 340px);
    height: 246px;
    margin-right: 0;
    margin-bottom: 14px;
    border-radius: 16px;
  }
  .section-membership-2026__main {
    order: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    align-self: start;
  }
  .section-membership-2026__title {
    margin: 0 0 34px;
    padding: 0;
    background: none;
    color: #f3f7fc;
    text-align: center;
  }
  .section-membership-2026__title-script {
    margin-right: 14px;
    font-size: 68px;
    color: white;
  }
  .section-membership-2026__title-main {
    color: white;
    font-size: 48px;
    font-weight: 600;
  }
  .section-membership-2026__benefits {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .section-membership-2026__benefit {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-membership-2026__benefit > svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  .section-membership-2026__benefit-text {
    font-size: 18px;
  }
  .section-membership-2026__benefit::before {
    display: none;
  }
  .section-membership-2026__cta {
    order: 3;
    align-self: center;
    gap: 18px;
  }
  .section-membership-2026__button {
    min-height: 56px;
    font-size: 16px;
    padding: 16px 8px;
  }
  .section-membership-2026__button--primary {
    border-color: #ec8444;
    background: #ec8444;
    color: #ffffff;
  }
  .section-membership-2026__button--secondary {
    min-height: unset;
    padding: 0;
    border: none;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #ecf2fa;
    text-align: center;
  }
  .section-membership-2026__button--secondary:hover {
    text-decoration: underline;
  }
  .section-membership-2026__small-text {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-membership-2026__media-track {
    animation: none;
    transform: none;
  }
}

@keyframes section-membership-2026-marquee-x {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes section-membership-2026-marquee-y {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}
/**
 * Styles for Slider 2026 (section-slider-2026).
 */
.section-slider-2026 {
  background: #F2F6FB;
  padding: 88px 144px;
}
.section-slider-2026__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.section-slider-2026__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.section-slider-2026__title {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: none;
}
.section-slider-2026__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(241, 135, 71, 0.4);
  background: #FDF0E8;
  color: #F18747;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}
.section-slider-2026__slider {
  position: relative;
}
.section-slider-2026__swiper {
  overflow: hidden;
  width: 100%;
  padding: 2px 0 8px;
}
.section-slider-2026__swiper .swiper-wrapper {
  align-items: stretch;
}
.section-slider-2026__card.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid #E2E6E8;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08);
  text-decoration: none;
}
.section-slider-2026__image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.section-slider-2026__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-slider-2026__image-label {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  background: rgba(113, 37, 78, 0.78);
  backdrop-filter: blur(7.5px);
}
.section-slider-2026__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 24px 16px;
  margin-bottom: 0px;
}
.section-slider-2026__card-title {
  margin: 0 0 16px;
  color: #111111;
  font-size: 18px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.section-slider-2026__usp-list {
  margin-bottom: 18px;
}
.section-slider-2026__usp-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.section-slider-2026__usp-row:last-child {
  margin-bottom: 0;
}
.section-slider-2026__usp-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}
.section-slider-2026__usp-text {
  margin: 0;
}
.section-slider-2026__usp-text span {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
.section-slider-2026__usp-highlight {
  margin-left: 3px;
  color: #F18747 !important;
  font-weight: 700 !important;
}
.section-slider-2026__description {
  margin: 0;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.4;
  min-height: 58px;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-slider-2026__button {
  margin: 24px 16px;
  padding: 8px 16px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #F18747;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}
.section-slider-2026__card:hover .section-slider-2026__button {
  background: #DD7437;
}
.section-slider-2026__pagination {
  position: relative;
  width: 288px;
  max-width: 100%;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
}
.section-slider-2026__pagination .swiper-pagination-bullet {
  flex: 1;
  height: 4px;
  border-radius: 0;
  background: rgba(54, 99, 97, 0.25);
  opacity: 1;
  margin: 0 !important;
  transition: background-color 0.3s ease;
}
.section-slider-2026__pagination .swiper-pagination-bullet-active {
  background: #366361;
  border-radius: 999px;
}
@media screen and (max-width: 1024px) {
  .section-slider-2026 {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-slider-2026 {
    padding: 56px 16px;
  }
}
@media screen and (max-width: 600px) {
  .section-slider-2026 {
    padding: 56px 16px;
  }
  .section-slider-2026__title {
    font-size: 20px;
  }
  .section-slider-2026__image-wrap {
    min-height: 210px;
  }
  .section-slider-2026__usp-text {
    font-size: 13px;
  }
  .section-slider-2026__description {
    font-size: 13px;
    min-height: 52px;
  }
  .section-slider-2026__button {
    font-size: 13px;
  }
}

/**
 * Styles for Course Slider 2026 (section-course-slider-2026).
 */
.section-course-slider-2026 {
  background: #F2F6FB;
  padding: 88px 144px;
}
.section-course-slider-2026__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.section-course-slider-2026__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.section-course-slider-2026__title {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: none;
}
.section-course-slider-2026__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(241, 135, 71, 0.4);
  background: #FDF0E8;
  color: #F18747;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}
.section-course-slider-2026__slider {
  position: relative;
}
.section-course-slider-2026__swiper {
  overflow: hidden;
  width: 100%;
  padding: 2px 0 8px;
}
.section-course-slider-2026__swiper .swiper-wrapper {
  align-items: stretch;
}
.section-course-slider-2026__card.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid #E2E6E8;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08);
  text-decoration: none;
}
.section-course-slider-2026__image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.section-course-slider-2026__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-course-slider-2026__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 24px 16px;
  margin-bottom: 0px;
}
.section-course-slider-2026__card-title {
  margin: 0 0 16px;
  color: #111111;
  font-size: 18px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.section-course-slider-2026__usp-list {
  margin-bottom: 18px;
}
.section-course-slider-2026__usp-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.section-course-slider-2026__usp-row:last-child {
  margin-bottom: 0;
}
.section-course-slider-2026__usp-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}
.section-course-slider-2026__usp-text {
  margin: 0;
}
.section-course-slider-2026__usp-text span {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
.section-course-slider-2026__usp-highlight {
  margin-left: 3px;
  color: #F18747 !important;
  font-weight: 700 !important;
}
.section-course-slider-2026__description {
  margin: 0;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.4;
  min-height: 58px;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-course-slider-2026__button {
  margin: 24px 16px;
  padding: 8px 16px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #F18747;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}
.section-course-slider-2026__card:hover .section-course-slider-2026__button {
  background: #DD7437;
}
.section-course-slider-2026__pagination {
  position: relative;
  width: 288px;
  max-width: 100%;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
}
.section-course-slider-2026__pagination .swiper-pagination-bullet {
  flex: 1;
  height: 4px;
  border-radius: 0;
  background: rgba(54, 99, 97, 0.25);
  opacity: 1;
  margin: 0 !important;
  transition: background-color 0.3s ease;
}
.section-course-slider-2026__pagination .swiper-pagination-bullet-active {
  background: #366361;
  border-radius: 999px;
}
@media screen and (max-width: 1024px) {
  .section-course-slider-2026 {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-course-slider-2026 {
    padding: 56px 16px;
  }
}
@media screen and (max-width: 600px) {
  .section-course-slider-2026 {
    padding: 56px 16px;
  }
  .section-course-slider-2026__title {
    font-size: 20px;
  }
  .section-course-slider-2026__image-wrap {
    min-height: 210px;
  }
  .section-course-slider-2026__usp-text {
    font-size: 13px;
  }
  .section-course-slider-2026__description {
    font-size: 13px;
    min-height: 52px;
  }
  .section-course-slider-2026__button {
    font-size: 13px;
  }
}

/**
 * Styles for Slider variant 2026 (section-slider-two-2026).
 *
 * Desktop: two-column layout (text left, image right), 1 slide per view.
 * Mobile: stacked card layout similar to section-slider-2026.
 */
.section-slider-two-2026 {
  background: var(--Purple-light, #E8C0D5);
  padding: 48px 144px;
}
.section-slider-two-2026__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-slider-two-2026__slider {
  position: relative;
}
.section-slider-two-2026__swiper {
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 24px;
  margin: 0 auto;
  max-width: 1200px;
}
.section-slider-two-2026__swiper .swiper-wrapper {
  align-items: stretch;
}
.section-slider-two-2026__slide.swiper-slide {
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
}
.section-slider-two-2026__col-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}
.section-slider-two-2026__section-title {
  margin: 0 0 8px;
  color: rgba(151, 54, 107, 0.79);
  font-size: 32px;
  margin-bottom: 1em;
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
  font-family: "Damion", Georgia, "Times New Roman", serif !important;
}
.section-slider-two-2026__section-title--mobile {
  display: none;
}
.section-slider-two-2026__card-title {
  margin: 0 0 12px;
  color: #111111;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-slider-two-2026__description {
  margin: 0 0 40px;
  color: #5C5C5C;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 380px;
}
.section-slider-two-2026__button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #F18747;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
  padding: 16px 24px;
}
.section-slider-two-2026__button:hover {
  background: #DD7437;
}
.section-slider-two-2026__col-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.12);
}
.section-slider-two-2026__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1024px) {
  .section-slider-two-2026__image {
    aspect-ratio: 540/343;
  }
}
.section-slider-two-2026__pagination {
  position: relative;
  width: 288px;
  max-width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
}
.section-slider-two-2026__pagination .swiper-pagination-bullet {
  flex: 1;
  height: 4px;
  border-radius: 0;
  background: rgba(152, 57, 108, 0.23);
  opacity: 1;
  margin: 0 !important;
  transition: background-color 0.3s ease;
}
.section-slider-two-2026__pagination .swiper-pagination-bullet-active {
  background: var(--Purple, #98396C);
  border-radius: 999px;
}
@media screen and (max-width: 1024px) {
  .section-slider-two-2026 {
    padding: 40px 40px;
  }
  .section-slider-two-2026__slide.swiper-slide {
    gap: 24px;
  }
  .section-slider-two-2026__card-title {
    font-size: 20px;
  }
  .section-slider-two-2026__description {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .section-slider-two-2026 {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 600px) {
  .section-slider-two-2026 {
    padding: 40px 24px;
  }
  .section-slider-two-2026__slide.swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
  }
  .section-slider-two-2026__col-text {
    order: 2;
    padding: 20px 0;
    padding-bottom: 24px;
  }
  .section-slider-two-2026__section-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .section-slider-two-2026__col-image {
    order: 1;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .section-slider-two-2026__pagination {
    margin-top: 0;
  }
  .section-slider-two-2026__image {
    aspect-ratio: 16/10;
  }
  .section-slider-two-2026__card-title {
    font-size: 24px;
    margin: 0 0 24px;
  }
  .section-slider-two-2026__description {
    font-size: 16px;
    max-width: none;
    letter-spacing: 0.32px;
    margin: 0 0 24px;
  }
  .section-slider-two-2026__button {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }
}

/**
 * Styles for USP numbers 2026 (section-usp-numbers-2026).
 */
.section-usp-numbers-2026 {
  background: #A6C9BE;
  padding: 32px 144px;
}
@media screen and (max-width: 1024px) {
  .section-usp-numbers-2026 {
    padding: 32px 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-usp-numbers-2026 {
    padding: 32px 16px;
  }
}
.section-usp-numbers-2026__inner {
  display: flex;
  gap: 104px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-usp-numbers-2026__inner {
    flex-direction: column;
    gap: 16px;
  }
}
.section-usp-numbers-2026__number {
  text-align: center;
}
.section-usp-numbers-2026__number-inner {
  display: flex;
  justify-content: center;
}
.section-usp-numbers-2026__number-prefix, .section-usp-numbers-2026__number-suffix, .section-usp-numbers-2026__number-number {
  color: #15363E;
  font-size: 36px;
  font-weight: 700;
}
.section-usp-numbers-2026__number-text {
  font-size: 16px;
  font-weight: 400;
}

/**
 * Styles for Nyhetsbrev 2026 (section-newsletter-2026).
 */
.section-newsletter-2026 {
  background: #15363E;
  color: #FFFFFF;
  padding: 40px 16px;
}
.section-newsletter-2026__inner {
  max-width: 1232px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}
.section-newsletter-2026__content {
  max-width: 560px;
}
.section-newsletter-2026__title {
  color: #FFFFFF;
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
}
.section-newsletter-2026__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-newsletter-2026__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.section-newsletter-2026__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 4px;
  color: #FFFFFF;
}
.section-newsletter-2026__item-title {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.section-newsletter-2026__form {
  width: 100%;
  max-width: 610px;
}
.section-newsletter-2026__form-wrapper {
  width: 100%;
}
.section-newsletter-2026__form-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "email submit" "gdpr gdpr";
  gap: 8px;
  align-items: start;
}
.section-newsletter-2026__form-row {
  margin-bottom: 0 !important;
}
.section-newsletter-2026__form-row:nth-of-type(1) {
  grid-area: email;
}
.section-newsletter-2026__form-row:nth-of-type(2) {
  grid-area: gdpr;
}
.section-newsletter-2026__form-row:nth-of-type(3) {
  grid-area: submit;
  width: auto !important;
}
.section-newsletter-2026__email {
  display: block;
  width: 100%;
  min-width: 0;
  height: 54px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  background: #D9D9D9;
  color: #15363E;
  font-size: 16px;
  line-height: 1;
  padding: 0 22px;
  outline: none;
}
.section-newsletter-2026__email::placeholder {
  color: #8F8F8F;
  opacity: 1;
}
.section-newsletter-2026__email:focus {
  border-color: #F18747;
}
.section-newsletter-2026__submit {
  border: 1px solid #F18747;
  border-radius: 4px;
  background: #F18747;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 16px 8px;
  white-space: nowrap;
  margin-top: 40px;
}
.section-newsletter-2026__gdpr {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}
.section-newsletter-2026__gdpr input[type=checkbox] {
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1px solid #FFFFFF;
  border-radius: 2px;
  margin: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.section-newsletter-2026__gdpr input[type=checkbox]:checked {
  background: #F18747;
  border-color: #F18747;
}
.section-newsletter-2026__gdpr input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 1px;
  width: 5px;
  height: 12px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.section-newsletter-2026__gdpr div {
  color: white;
}
.section-newsletter-2026__gdpr a {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: inherit;
  font-weight: inherit;
}
.section-newsletter-2026 .qterest-success-messages,
.section-newsletter-2026 .qterest-error-messages {
  margin-bottom: 12px;
  border-radius: 4px;
}
.section-newsletter-2026 .qterest-success-messages {
  background-color: #2C8C63;
}
.section-newsletter-2026 .qterest-error-messages {
  background-color: #CF4D4D;
}
@media screen and (min-width: 768px) {
  .section-newsletter-2026 {
    padding: 40px 40px;
  }
  .section-newsletter-2026__submit {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .section-newsletter-2026 {
    padding: 40px 144px;
  }
  .section-newsletter-2026__inner {
    grid-template-columns: 1fr minmax(430px, 610px);
    gap: 64px;
  }
  .section-newsletter-2026__submit {
    height: 54px;
    margin-top: 0;
    padding: 8px 40px;
  }
}
@media screen and (max-width: 991px) {
  .section-newsletter-2026__submit {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  .section-newsletter-2026 {
    padding: 40px 24px;
  }
  .section-newsletter-2026__inner {
    gap: 40px;
  }
  .section-newsletter-2026__title {
    font-size: 28px;
  }
  .section-newsletter-2026__form-fields {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "email" "gdpr" "submit";
  }
  .section-newsletter-2026__form-row:nth-of-type(3) {
    width: 100% !important;
  }
  .section-newsletter-2026__submit {
    width: 100%;
    min-width: 0;
  }
}

/**
 * Styles for Blog 2026 (section-blog-2026).
 */
.section-blog-2026 {
  /* Block styles go here */
  background: #F2F6FB;
}
.section-blog-2026__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-blog-2026__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-blog-2026__title {
  font-size: 20px;
  font-weight: 700;
}
.section-blog-2026__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(241, 135, 71, 0.4);
  background: #FDF0E8;
  color: #F18747;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}
.section-blog-2026__articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-blog-2026__article:hover h3 {
  text-decoration: underline;
}
.section-blog-2026__article-link {
  display: flex;
  gap: 8px;
  text-decoration: none;
}
.section-blog-2026__article-image {
  width: 80px;
  border-radius: 2px;
  overflow: hidden;
  min-width: 80px;
}
.section-blog-2026__article-title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
}
.section-blog-2026__article-date {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
}
.section-blog-2026__separator {
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 728px) {
  .section-blog-2026 {
    padding: 88px 40px;
  }
  .section-blog-2026__inner {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-blog-2026 {
    padding: 88px 144px;
  }
}

/**
 * Styles for Textblock 2026 (section-textblock-2026).
 */
.section-textblock-2026__inner {
  display: block;
  position: relative;
  max-width: none;
  margin: 0;
  color: inherit;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.section-textblock-2026__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.section-textblock-2026__image-container {
  display: none;
}
.section-textblock-2026__image {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.section-textblock-2026__content-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  padding: 40px 24px;
}
@media screen and (min-width: 768px) {
  .section-textblock-2026__content-container {
    padding: 40px 40px;
  }
}
.section-textblock-2026__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-textblock-2026__content {
  color: #fff;
  font-size: 16px;
}
.section-textblock-2026__content p, .section-textblock-2026__content a, .section-textblock-2026__content li, .section-textblock-2026__content strong, .section-textblock-2026__content em, .section-textblock-2026__content span {
  color: inherit;
}
.section-textblock-2026--custom-color .section-textblock-2026__content-container,
.section-textblock-2026--custom-color .section-textblock-2026__title,
.section-textblock-2026--custom-color .section-textblock-2026__content {
  color: inherit;
}
@media screen and (min-width: 1024px) {
  .section-textblock-2026__inner {
    display: grid;
    grid-template-columns: 1fr 3fr;
    max-width: 1200px;
    margin: 0 auto;
    position: static;
    background-image: none !important;
    min-height: 0;
  }
  .section-textblock-2026__inner::before {
    display: none;
  }
  .section-textblock-2026__image-container {
    display: block;
    border-radius: 100%;
    overflow: hidden;
    width: 250px;
    height: 250px;
    margin: auto;
  }
  .section-textblock-2026__content-container {
    position: static;
    color: #000;
    padding: 54px 144px;
  }
  .section-textblock-2026__title {
    color: #000;
    font-size: 38px;
  }
  .section-textblock-2026__content {
    color: #000;
  }
}

/**
 * Styles for Product slider 2026 (section-product-slider-2026).
 */
.section-product-slider-2026 {
  background: #F2F6FB;
  padding: 56px 16px;
  padding-top: 0;
}
.section-product-slider-2026__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.section-product-slider-2026__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section-product-slider-2026__title {
  margin: 0;
  color: #111111;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: none;
}
.section-product-slider-2026__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(241, 135, 71, 0.4);
  background: #FDF0E8;
  color: #F18747;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}
.section-product-slider-2026__slider {
  position: relative;
}
.section-product-slider-2026__swiper {
  overflow: hidden;
  width: 100%;
  padding: 2px 0 8px;
}
.section-product-slider-2026__swiper .swiper-wrapper {
  align-items: stretch;
}
.section-product-slider-2026__card.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid #E2E6E8;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08);
}
.section-product-slider-2026__card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #111111;
  text-decoration: none;
  padding: 14px 8px 0;
}
.section-product-slider-2026__image-wrap {
  max-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.section-product-slider-2026__image {
  max-width: 100%;
  width: auto;
  max-height: 180px;
  object-fit: contain;
}
.section-product-slider-2026__product-title {
  margin: 0 0 16px;
  color: #111111;
  font-size: 20px;
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .section-product-slider-2026__product-title {
    font-size: 18px;
  }
}
.section-product-slider-2026__product-description {
  margin: 0;
  color: #6A6A6A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
  min-height: 78px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-product-slider-2026__card-bottom {
  display: grid;
  grid-template-columns: 2fr 3fr;
  margin-top: 24px;
  gap: 8px;
  padding: 10px 8px;
}
.section-product-slider-2026__price-wrapper {
  flex: 1;
  padding: 8px;
  min-width: 0;
  background-color: rgba(246, 246, 246, 0.9647058824);
  text-align: center;
}
.section-product-slider-2026__price-current {
  color: #111111;
  font-size: 24px;
  line-height: 0.98;
  font-weight: 700;
  white-space: nowrap;
  text-transform: none;
}
.section-product-slider-2026__price-previous {
  min-height: 14px;
  margin-top: 2px;
  color: #707070;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: none;
}
.section-product-slider-2026__button {
  flex: 0 0 102px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  border-radius: 4px;
  background: #F18747;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.section-product-slider-2026__button:hover {
  background: #DD7437;
}
.section-product-slider-2026__pagination {
  position: relative;
  width: 288px;
  max-width: 100%;
  height: 4px;
  margin: 12px auto 0;
  background: rgba(54, 99, 97, 0.25);
  border-radius: 999px;
  overflow: hidden;
}
.section-product-slider-2026__pagination.swiper-pagination-progressbar {
  position: relative;
}
.section-product-slider-2026__pagination .swiper-pagination-progressbar-fill {
  background: #366361;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  .section-product-slider-2026 {
    padding: 56px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .section-product-slider-2026 {
    padding: 88px 144px;
  }
}

.section-success-stories-2026 {
  background: #F2F6FB;
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-success-stories-2026 {
    padding: 40px 0;
  }
}
.section-success-stories-2026__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .section-success-stories-2026__inner {
    padding: 0 40px;
  }
}
.section-success-stories-2026__header {
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0 70px;
}
@media (max-width: 768px) {
  .section-success-stories-2026__header {
    margin: 0;
  }
}
.section-success-stories-2026__title {
  font-size: 24px;
  margin: 0;
}
@media (max-width: 768px) {
  .section-success-stories-2026__title {
    font-size: 24px;
  }
}
.section-success-stories-2026__title--mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-success-stories-2026__title--mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .section-success-stories-2026__title--desktop {
    display: none;
  }
}
.section-success-stories-2026__header-link {
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(241, 135, 71, 0.4);
  background: #FDF0E8;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #F18747;
}
.section-success-stories-2026__header-link--mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-success-stories-2026__header-link--mobile {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .section-success-stories-2026__header-link--desktop {
    display: none;
  }
}
.section-success-stories-2026__swiper {
  overflow: visible;
  padding: 20px 0;
}
.section-success-stories-2026 .swiper-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-success-stories-2026 .swiper-slide-prev,
.section-success-stories-2026 .swiper-slide-next {
  opacity: 0.4;
}
.section-success-stories-2026 .swiper-slide-active {
  opacity: 1;
}
.section-success-stories-2026 .swiper-slide:not(.swiper-slide-active) .section-success-stories-2026__link {
  opacity: 0;
  pointer-events: none;
}
.section-success-stories-2026__card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.section-success-stories-2026__card--clickable {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.section-success-stories-2026__image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  min-height: 280px;
}
.section-success-stories-2026__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-success-stories-2026__content {
  padding: 24px 16px;
  padding-top: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
}
@media (max-width: 768px) {
  .section-success-stories-2026__card--clickable .section-success-stories-2026__content {
    padding: 16px;
  }
}
.section-success-stories-2026__name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 1;
}
.section-success-stories-2026__quote {
  margin: 0 0 16px;
  flex: 1;
  color: #6A6A6A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
@media screen and (min-width: 1025px) {
  .section-success-stories-2026__quote {
    font-size: 16px;
  }
}
.section-success-stories-2026__card--clickable .section-success-stories-2026__quote {
  margin-bottom: 0;
}
.section-success-stories-2026__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F18747;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.4s ease, background-color 0.2s ease;
  align-self: flex-start;
}
.section-success-stories-2026__link:hover {
  background-color: rgb(238.1151515152, 110.2727272727, 33.0848484848);
  color: #fff;
}
.section-success-stories-2026__link--has-image {
  overflow: hidden;
}
.section-success-stories-2026__link-image {
  width: 33.3333333333%;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin: -12px 8px -12px -20px;
}
.section-success-stories-2026__link-arrow {
  font-size: 18px;
  line-height: 1;
  color: #fff;
  margin-left: auto;
}
.section-success-stories-2026__progress {
  height: 4px;
  background: var(--Green-light, #A6C9BE);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-success-stories-2026__progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 0 66px 66px 0;
  background: var(--Green, #366361);
}
.swiper-slide-active .section-success-stories-2026__progress {
  opacity: 1;
}

.section-success-stories-slider-2026 {
  background: #F2F6FB;
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026 {
    padding: 40px 0;
  }
}
.section-success-stories-slider-2026__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .section-success-stories-slider-2026__inner {
    padding: 0 40px;
  }
}
.section-success-stories-slider-2026__header {
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0 70px;
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026__header {
    margin: 0;
  }
}
.section-success-stories-slider-2026__title {
  font-size: 24px;
  margin: 0;
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026__title {
    font-size: 24px;
  }
}
.section-success-stories-slider-2026__title--mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026__title--mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026__title--desktop {
    display: none;
  }
}
.section-success-stories-slider-2026__header-link {
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(241, 135, 71, 0.4);
  background: #FDF0E8;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #F18747;
}
.section-success-stories-slider-2026__header-link--mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026__header-link--mobile {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026__header-link--desktop {
    display: none;
  }
}
.section-success-stories-slider-2026__swiper {
  overflow: visible;
  padding: 20px 0;
}
.section-success-stories-slider-2026 .swiper-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-success-stories-slider-2026 .swiper-slide-prev,
.section-success-stories-slider-2026 .swiper-slide-next {
  opacity: 0.4;
}
.section-success-stories-slider-2026 .swiper-slide-active {
  opacity: 1;
}
.section-success-stories-slider-2026__card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.section-success-stories-slider-2026__card--clickable {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.section-success-stories-slider-2026__image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  min-height: 280px;
}
.section-success-stories-slider-2026__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-success-stories-slider-2026__content {
  padding: 24px 16px;
  padding-top: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
}
@media (max-width: 768px) {
  .section-success-stories-slider-2026__card--clickable .section-success-stories-slider-2026__content {
    padding: 16px;
  }
}
.section-success-stories-slider-2026__name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 1;
}
.section-success-stories-slider-2026__quote {
  margin: 0 0 16px;
  flex: 1;
  color: #6A6A6A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
@media screen and (min-width: 1025px) {
  .section-success-stories-slider-2026__quote {
    font-size: 16px;
  }
}
.section-success-stories-slider-2026__card--clickable .section-success-stories-slider-2026__quote {
  margin-bottom: 0;
}
.section-success-stories-slider-2026__progress {
  height: 4px;
  background: var(--Green-light, #A6C9BE);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-success-stories-slider-2026__progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 0 66px 66px 0;
  background: var(--Green, #366361);
}
.swiper-slide-active .section-success-stories-slider-2026__progress {
  opacity: 1;
}

.section-recipes-slider-2026 {
  background: #F2F6FB;
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-recipes-slider-2026 {
    padding: 40px 0;
  }
}
.section-recipes-slider-2026__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .section-recipes-slider-2026__inner {
    padding: 0 40px;
  }
}
.section-recipes-slider-2026__header {
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0 70px;
}
@media (max-width: 768px) {
  .section-recipes-slider-2026__header {
    margin: 0;
  }
}
.section-recipes-slider-2026__title {
  font-size: 24px;
  margin: 0;
}
@media (max-width: 768px) {
  .section-recipes-slider-2026__title {
    font-size: 24px;
  }
}
.section-recipes-slider-2026__title--mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-recipes-slider-2026__title--mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .section-recipes-slider-2026__title--desktop {
    display: none;
  }
}
.section-recipes-slider-2026__header-link {
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(241, 135, 71, 0.4);
  background: #FDF0E8;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #F18747;
}
.section-recipes-slider-2026__header-link--mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-recipes-slider-2026__header-link--mobile {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .section-recipes-slider-2026__header-link--desktop {
    display: none;
  }
}
.section-recipes-slider-2026__swiper {
  overflow: visible;
  padding: 20px 0;
}
.section-recipes-slider-2026 .swiper-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-recipes-slider-2026 .swiper-slide-prev,
.section-recipes-slider-2026 .swiper-slide-next {
  opacity: 0.4;
}
.section-recipes-slider-2026 .swiper-slide-active {
  opacity: 1;
}
.section-recipes-slider-2026__card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.section-recipes-slider-2026__image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  min-height: 280px;
}
.section-recipes-slider-2026__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-recipes-slider-2026__content {
  padding: 24px 16px;
  padding-top: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
}
.section-recipes-slider-2026__name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 1;
}
.section-recipes-slider-2026__quote {
  margin: 0 0 16px;
  flex: 1;
  color: #6A6A6A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
@media screen and (min-width: 1025px) {
  .section-recipes-slider-2026__quote {
    font-size: 16px;
  }
}
.section-recipes-slider-2026__progress {
  height: 4px;
  background: var(--Green-light, #A6C9BE);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-recipes-slider-2026__progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 0 66px 66px 0;
  background: var(--Green, #366361);
}
.swiper-slide-active .section-recipes-slider-2026__progress {
  opacity: 1;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 24, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 99998;
}

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 390px;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 24px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .mini-cart-drawer {
    max-width: 461px;
  }
}

body.mini-cart-open {
  overflow: hidden;
}
body.mini-cart-open .mini-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.mini-cart-open .mini-cart-drawer {
  transform: translateX(0);
}

.mini-cart-drawer__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.mini-cart-drawer.is-loading .mini-cart-drawer__content {
  opacity: 0.55;
  pointer-events: none;
}

.mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 16px 16px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .mini-cart__header {
    padding: 32px 32px 16px;
  }
}

.mini-cart__title {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #000000;
}

.mini-cart__close {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  color: #000000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mini-cart__close:hover, .mini-cart__close:focus-visible {
  color: #98396C;
  outline: none;
}

.mini-cart__items {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  flex: 1 1 auto;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .mini-cart__items {
    padding: 0 32px;
  }
}

.mini-cart__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 32px 0 16px;
  border-top: 1px solid #DDDDDD;
}
.mini-cart__item:last-child {
  border-bottom: 1px solid #DDDDDD;
}

.mini-cart__item-image {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.mini-cart__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.mini-cart__item-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-cart__item-title {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  word-break: break-word;
}
.mini-cart__item-title:hover, .mini-cart__item-title:focus-visible {
  color: #98396C;
}

.mini-cart__item-price {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000000;
}
.mini-cart__item-price--sale {
  color: #98396C;
}
.mini-cart__item-price .woocommerce-Price-amount,
.mini-cart__item-price .woocommerce-Price-currencySymbol {
  font: inherit;
  color: inherit;
}

.mini-cart__item-price-old {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.37);
  text-decoration: line-through;
}
.mini-cart__item-price-old .woocommerce-Price-amount,
.mini-cart__item-price-old .woocommerce-Price-currencySymbol {
  font: inherit;
  color: inherit;
}

.mini-cart__item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.mini-cart__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.mini-cart__qty-button {
  appearance: none;
  border: 0;
  background: none;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000000;
  padding: 0;
}
.mini-cart__qty-button:hover:not(:disabled), .mini-cart__qty-button:focus-visible {
  color: #98396C;
  outline: none;
}
.mini-cart__qty-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mini-cart__qty-value {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #000000;
  min-width: 1ch;
  text-align: center;
}

.mini-cart__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
.mini-cart__remove:hover, .mini-cart__remove:focus-visible {
  color: #98396C;
  outline: none;
}
.mini-cart__remove svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mini-cart__empty {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.mini-cart__empty-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px 32px;
}
@media (min-width: 768px) {
  .mini-cart__empty-body {
    padding: 48px 32px 32px;
  }
}

.mini-cart__empty-message {
  margin: 0;
  max-width: 272px;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000000;
  text-align: center;
}

.mini-cart__continue {
  appearance: none;
  border: 0;
  cursor: pointer;
  margin: auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  background: #F18747;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mini-cart__continue span {
  color: #ffffff;
}
.mini-cart__continue svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  color: #ffffff;
}
.mini-cart__continue svg path {
  stroke: #ffffff;
}
.mini-cart__continue:hover, .mini-cart__continue:focus-visible {
  background: #d97433;
  color: #ffffff;
  outline: none;
}

.mini-cart__upsell {
  flex-shrink: 0;
  margin-top: auto;
  padding: 24px 0 24px 16px;
}
@media (min-width: 768px) {
  .mini-cart__upsell {
    padding-left: 32px;
  }
}

.mini-cart__upsell-title {
  margin: 0 0 16px;
  padding-right: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000000;
}
@media (min-width: 768px) {
  .mini-cart__upsell-title {
    padding-right: 32px;
  }
}

.mini-cart__upsell-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-right: 16px;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .mini-cart__upsell-track {
    padding-right: 32px;
  }
}

.mini-cart__upsell-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 300px;
  max-width: 80%;
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 4.855px 14.564px rgba(71, 71, 71, 0.12);
  text-decoration: none;
}

.mini-cart__upsell-image {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 2px;
  overflow: hidden;
  display: block;
}
.mini-cart__upsell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.mini-cart__upsell-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  min-width: 0;
}

.mini-cart__upsell-name {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000000;
  text-transform: uppercase;
  word-break: break-word;
}

.mini-cart__upsell-usps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-cart__upsell-usp {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-cart__upsell-usp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.mini-cart__upsell-usp-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #5C5C5C;
}
.mini-cart__upsell-usp-text strong {
  font-weight: 700;
  color: #F18747;
}

.mini-cart__footer {
  flex-shrink: 0;
  background: #F2F6FB;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .mini-cart__footer {
    padding: 32px;
  }
}

.mini-cart__totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.mini-cart__totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #000000;
}
.mini-cart__totals-row > span:first-child {
  font-weight: 700;
}
.mini-cart__totals-row--discount > span:last-child {
  color: #98396C;
  font-weight: 400;
}
.mini-cart__totals-row--total > span {
  font-weight: 700;
}
.mini-cart__totals-row .woocommerce-Price-amount,
.mini-cart__totals-row .woocommerce-Price-currencySymbol {
  font: inherit;
  color: inherit;
}

.mini-cart__checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  padding: 16px 24px;
  border-radius: 4px;
  background: #F18747;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mini-cart__checkout-button:hover, .mini-cart__checkout-button:focus-visible {
  background: #d97433;
  color: #ffffff;
  outline: none;
}

#pco-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: none;
}

#pco-order-review,
#pco-iframe {
  width: 100%;
  max-width: none;
  flex: 0 0 auto;
}

.woocommerce-checkout.woocommerce-page form.woocommerce-checkout.svea-checkout,
.woocommerce-page .wc-svea-checkout-page form.svea-checkout {
  background: transparent !important;
  padding: 0 !important;
  margin: 32px auto !important;
  max-width: 1000px !important;
  border-radius: 0 !important;
  row-gap: 24px;
}
.woocommerce-checkout.woocommerce-page form.woocommerce-checkout.svea-checkout .order-country-wrapper,
.woocommerce-page .wc-svea-checkout-page form.svea-checkout .order-country-wrapper {
  display: none !important;
}
.woocommerce-checkout.woocommerce-page form.woocommerce-checkout.svea-checkout .order-review-wrapper,
.woocommerce-page .wc-svea-checkout-page form.svea-checkout .order-review-wrapper {
  grid-column: 1/-1;
  order: 0;
  width: 100%;
  max-width: none;
}
.woocommerce-checkout.woocommerce-page form.woocommerce-checkout.svea-checkout .order-checkout-wrapper,
.woocommerce-page .wc-svea-checkout-page form.svea-checkout .order-checkout-wrapper {
  grid-column: 1/-1;
  order: 1;
}

.svea-order-review-wrapper {
  width: 100%;
  max-width: none;
}

.checkout-cart-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.checkout-cart-block__heading {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  text-align: left;
}
.checkout-cart-block__steps {
  margin: 0;
  padding-left: 30px;
  list-style: decimal;
}
.checkout-cart-block__steps > li {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.checkout-cart-block__empty {
  margin: 0;
  font-size: 16px;
  color: #6E6E6E;
}
.checkout-cart-block__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.checkout-cart-block__item {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #DDDDDD;
  margin-bottom: -1px;
}
.checkout-cart-block__item:last-child {
  border-bottom: 1px solid #DDDDDD;
}
@media (max-width: 600px) {
  .checkout-cart-block__item {
    grid-template-columns: 72px 1fr auto;
    grid-template-areas: "image body remove" "qty   qty  qty";
    row-gap: 12px;
  }
}
.checkout-cart-block__item-image {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  display: block;
  border-radius: 5.415px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .checkout-cart-block__item-image {
    width: 72px;
    height: 72px;
    grid-area: image;
  }
}
.checkout-cart-block__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5.415px;
}
.checkout-cart-block__item-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 600px) {
  .checkout-cart-block__item-body {
    grid-area: body;
  }
}
.checkout-cart-block__item-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  color: #000000;
  text-transform: uppercase;
  word-break: break-word;
}
.checkout-cart-block__item-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: #6E6E6E;
  word-break: break-word;
}
.checkout-cart-block__item-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout-cart-block__item-price {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000000;
}
.checkout-cart-block__item-price--sale {
  color: #98396C;
}
.checkout-cart-block__item-price .woocommerce-Price-amount,
.checkout-cart-block__item-price .woocommerce-Price-currencySymbol {
  font: inherit;
  color: inherit;
}
.checkout-cart-block__item-price-old {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.37);
  text-decoration: line-through;
}
.checkout-cart-block__item-price-old .woocommerce-Price-amount,
.checkout-cart-block__item-price-old .woocommerce-Price-currencySymbol {
  font: inherit;
  color: inherit;
}
.checkout-cart-block__qty {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .checkout-cart-block__qty {
    grid-area: qty;
    justify-self: start;
  }
}
.checkout-cart-block__qty-button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000000;
}
.checkout-cart-block__qty-button:hover:not(:disabled), .checkout-cart-block__qty-button:focus-visible {
  color: #98396C;
  outline: none;
}
.checkout-cart-block__qty-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.checkout-cart-block__qty-value {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #000000;
  min-width: 1ch;
  text-align: center;
}
.checkout-cart-block__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #000000;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
}
.checkout-cart-block__remove:hover, .checkout-cart-block__remove:focus-visible {
  color: #98396C;
  outline: none;
}
@media (max-width: 600px) {
  .checkout-cart-block__remove {
    grid-area: remove;
  }
}
.checkout-cart-block__remove svg {
  width: 24px;
  height: 24px;
  display: block;
}
.checkout-cart-block__footer {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .checkout-cart-block__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
}
.checkout-cart-block__coupon {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}
.checkout-cart-block__coupon-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  letter-spacing: 0.02em;
}
.checkout-cart-block__coupon-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.checkout-cart-block__coupon-input {
  flex: 1 1 0;
  min-width: 0;
  height: 54px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #6E6E6E;
  border-radius: 4px;
  background: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000000;
  box-sizing: border-box;
  appearance: none;
}
.checkout-cart-block__coupon-input::placeholder {
  color: #6E6E6E;
}
.checkout-cart-block__coupon-input:focus {
  outline: 2px solid #F18747;
  outline-offset: -1px;
  border-color: #F18747;
}
.checkout-cart-block__coupon-button {
  appearance: none;
  border: 0;
  height: 54px;
  margin: 0;
  padding: 0 24px;
  border-radius: 4px;
  background: #F18747;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease;
}
.checkout-cart-block__coupon-button:hover:not(:disabled), .checkout-cart-block__coupon-button:focus-visible {
  background: #d97433;
  outline: none;
}
.checkout-cart-block__coupon-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.checkout-cart-block__info {
  font-size: 14px;
  font-style: italic;
  line-height: 1.4;
  color: #6E6E6E;
}
.checkout-cart-block__info p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.checkout-cart-block__info p + p {
  margin-top: 8px;
}
.checkout-cart-block__coupon-message {
  margin: 0;
  min-height: 0;
  font-size: 14px;
  line-height: 1.3;
  color: #6E6E6E;
}
.checkout-cart-block__coupon-message.is-error {
  color: #98396C;
}
.checkout-cart-block__coupon-message.is-success {
  color: #2c7a3f;
}
.checkout-cart-block__coupon-message:empty {
  display: none;
}
.checkout-cart-block__totals {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  justify-content: flex-end;
}
.checkout-cart-block__totals-divider {
  height: 1px;
  background: #DDDDDD;
  width: 100%;
  margin: 8px 0;
}
.checkout-cart-block__totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000000;
}
.checkout-cart-block__totals-row--discount {
  color: #98396C;
}
.checkout-cart-block__totals-row--total > span:first-child {
  font-weight: 700;
}
.checkout-cart-block__totals-row--tax {
  color: #6E6E6E;
  font-size: 14px;
  letter-spacing: 0;
}
.checkout-cart-block__totals-row .woocommerce-Price-amount,
.checkout-cart-block__totals-row .woocommerce-Price-currencySymbol {
  font: inherit;
  color: inherit;
}
.checkout-cart-block.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.woocommerce-page .wc-svea-checkout-page #order_review_heading {
  display: none !important;
}

.checkout-payment-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.checkout-payment-block__heading {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
}
.checkout-payment-block__heading #sco-change-payment {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #6E6E6E;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: underline;
  text-transform: none;
}
.checkout-payment-block__heading #sco-change-payment:hover, .checkout-payment-block__heading #sco-change-payment:focus {
  background: none;
  color: #444444;
  text-decoration: underline;
}
.checkout-payment-block__steps {
  margin: 0;
  padding-left: 30px;
  list-style: decimal;
}
.checkout-payment-block__steps > li {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.checkout-payment-block .wc-svea-checkout-checkout-module {
  margin: 0;
}
.checkout-payment-block #svea-checkout-iframe-container {
  width: 100%;
}

.home header {
  margin-top: 0 !important;
}

/*# sourceMappingURL=main_2025.css.map */
