.search-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 50px);
  width: 1480px;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 140px 0px 80px 0px;
  position: relative; }
  @media (max-width: 991px) {
    .search-wrapper {
      padding-top: 90px; } }
  .search-wrapper h1 {
    color: #191d23;
    font-size: 60px;
    margin-bottom: 80px;
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: 2px;
    margin-top: 0px !important; }
  .search-wrapper h2 {
    color: #191d23;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 2.2px;
    margin-top: 0px; }
    @media (max-width: 767px) {
      .search-wrapper h2 {
        display: none; } }

.search-input {
  display: flex;
  position: relative;
  width: 65%;
  height: 48px;
  margin-bottom: 120px; }
  @media (max-width: 991px) {
    .search-input {
      width: 100%;
      height: 56px;
      margin-bottom: 56px; } }
  .search-input .search-inner-mobile {
    display: flex;
    width: 100%; }
    @media (min-width: 991px) {
      .search-input .search-inner-mobile {
        display: none; } }
    .search-input .search-inner-mobile input {
      background-color: #f9fafb;
      border: 1px solid #e7eaee;
      border-radius: 8px;
      margin-right: 10px;
      padding: 16px;
      width: 100%; }
    .search-input .search-inner-mobile .search-button-sp {
      border-radius: 16px;
      height: 56px;
      width: 56px;
      -webkit-box-align: center;
      align-items: center;
      background-color: var(--cloetta-red);
      border: none;
      border-radius: 16px;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 4px, rgba(255, 255, 255, 0.25) 0px 2px 1px inset;
      cursor: pointer;
      color: white;
      display: flex;
      font-size: 16px;
      font-weight: 500;
      -webkit-box-pack: center;
      justify-content: center;
      line-height: 1.5;
      letter-spacing: 0.9px;
      padding: 12px 24px;
      text-transform: none;
      transition: 0.3s ease-in-out; }
    .search-input .search-inner-mobile div {
      -webkit-box-align: center;
      align-items: center;
      display: flex; }
    .search-input .search-inner-mobile svg {
      transform: none; }
  .search-input .search-inner {
    margin-right: 24px;
    position: relative;
    width: 100%;
    display: none; }
    @media (min-width: 991px) {
      .search-input .search-inner {
        display: block; } }
    .search-input .search-inner svg {
      left: 22px;
      position: absolute;
      top: 13px;
      z-index: 1; }
    .search-input .search-inner input {
      background-color: var(--cloetta-gray-lighter);
      border: 0px;
      border-radius: 18px;
      color: #323a46;
      font-size: 16px;
      font-weight: 400;
      height: 100%;
      padding: 10px 100px 10px 80px;
      position: relative;
      width: 100%; }
    .search-input .search-inner button {
      box-shadow: none;
      position: absolute;
      right: 0px;
      top: 0px;
      -webkit-box-align: center;
      align-items: center;
      background-color: var(--cloetta-red);
      border: none;
      border-radius: 16px;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 4px, rgba(255, 255, 255, 0.25) 0px 2px 1px inset;
      cursor: pointer;
      color: white;
      display: flex;
      font-size: 16px;
      font-weight: 500;
      -webkit-box-pack: center;
      justify-content: center;
      line-height: 1.5;
      letter-spacing: 0.9px;
      padding: 12px 24px;
      text-transform: none;
      transition: 0.3s ease-in-out; }
      @media (max-width: 767px) {
        .search-input .search-inner button {
          border-radius: 16px;
          padding: 12px; } }

.search-tabs {
  width: 100%; }
  .search-tabs .desktop-tab-navigation {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%; }
    .search-tabs .desktop-tab-navigation button {
      margin-bottom: 70px;
      background-color: transparent;
      border: none;
      border-radius: 32px;
      color: #191d23;
      cursor: pointer;
      padding: 10px 16px;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.8px;
      box-shadow: none; }
      .search-tabs .desktop-tab-navigation button.active {
        background-color: var(--soft-pink-lighter);
        color: var(--cloetta-red-darker); }
      .search-tabs .desktop-tab-navigation button:not(:last-child) {
        margin-right: 40px; }
        @media (max-width: 991px) {
          .search-tabs .desktop-tab-navigation button:not(:last-child) {
            margin-right: 15px; } }
        @media (max-width: 767px) {
          .search-tabs .desktop-tab-navigation button:not(:last-child) {
            margin-right: 5px; } }
  .search-tabs .mobile-navigation {
    display: none; }

.product-results {
  width: 100%;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 32px; }
  @media (max-width: 991px) {
    .product-results {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px; } }
  @media (max-width: 767px) {
    .product-results {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 16px; } }
  .product-results .product {
    background-color: var(--cloetta-gray-lighter);
    border-radius: 32px;
    transition: 0.3s ease-in-out;
    width: 100%; }
    @media (max-width: 991px) {
      .product-results .product {
        border-radius: 16px; } }
    .product-results .product .product-inner {
      text-decoration: none;
      display: flex;
      flex-direction: column;
      -webkit-box-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      justify-content: space-between;
      border-radius: 32px;
      padding: 24px 16px;
      height: 100%; }
      @media (max-width: 991px) {
        .product-results .product .product-inner {
          padding: 16px 8px;
          border-radius: 16px; } }
    .product-results .product .badge-container {
      display: flex;
      -webkit-box-pack: end;
      justify-content: flex-end;
      margin-bottom: 24px;
      min-height: 42px;
      padding-right: 24px;
      width: 100%; }
      @media (max-width: 991px) {
        .product-results .product .badge-container {
          padding-right: 15px;
          margin-bottom: 13px;
          min-height: 28px; } }
    .product-results .product .product-image {
      -webkit-box-align: center;
      align-items: center;
      display: flex;
      -webkit-box-pack: center;
      justify-content: center;
      height: 250px;
      position: relative;
      width: 80%; }
      @media (max-width: 991px) {
        .product-results .product .product-image {
          height: 120px; } }
      .product-results .product .product-image img {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        color: transparent;
        object-fit: contain; }
    .product-results .product .product-info {
      width: 100%;
      height: 40%;
      -webkit-box-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      align-items: center;
      display: flex;
      flex-direction: column;
      margin-top: 56px; }
      @media (max-width: 991px) {
        .product-results .product .product-info {
          margin-top: 12px; } }
      .product-results .product .product-info .categories {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 16px; }
        .product-results .product .product-info .categories p:not(:first-child) {
          margin-left: 10px; }
        @media (max-width: 991px) {
          .product-results .product .product-info .categories {
            text-align: center;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            margin-bottom: 4px; } }
        .product-results .product .product-info .categories p {
          font-size: 14px;
          font-weight: 450;
          letter-spacing: 0.8px;
          color: #4b5768;
          margin-bottom: 0px; }
      .product-results .product .product-info .product-title {
        margin: 0px;
        letter-spacing: 1.4px;
        font-size: 24px;
        font-weight: 600;
        color: #191d23;
        text-transform: none;
        text-align: center;
        line-height: 1.55; }
        @media (max-width: 991px) {
          .product-results .product .product-info .product-title {
            font-size: 16px;
            letter-spacing: 0.9px; } }
  .product-results .news {
    background-color: var(--soft-pink-lighter);
    border-radius: 24px;
    color: var(--cloetta-red-darker);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.8px;
    padding: 10px 20px; }
  .product-results .delisted {
    background-color: #e7eff2;
    color: #3c5d6a; }

.news-shown-count,
.pages-shown-count,
.products-shown-count {
  margin-bottom: 72px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-align: center; }

.paginate-button,
.paginate-button:focus {
  display: flex;
  min-width: 150px;
  margin: 0px auto;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 1px solid var(--cloetta-red);
  color: var(--cloetta-red);
  font-weight: 600;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 16px;
  font-size: 16px;
  -webkit-box-pack: center;
  justify-content: center;
  line-height: 1.5;
  letter-spacing: 0.9px;
  padding: 12px 24px;
  text-transform: none;
  transition: 0.3s ease-in-out; }
  .paginate-button:hover,
  .paginate-button:focus:hover {
    background: rgba(250, 235, 239, 0.5) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 4px, rgba(0, 0, 0, 0.32) 0px 2px 4px, rgba(255, 255, 255, 0.25) 0px 2px 1px inset !important;
    color: var(--cloetta-red) !important;
    border: 1px solid var(--cloetta-red) !important; }

@media (max-width: 991px) {
  .products-shown-count {
    margin-bottom: 24px !important; } }

@media (max-width: 767px) {
  .paginate-button {
    width: 100% !important; } }

.search-result-pages {
  width: 65%;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center; }
  @media (max-width: 991px) {
    .search-result-pages {
      width: 100%; } }
  .search-result-pages .pages-results .page {
    border-bottom: 1px solid #b8c0cc;
    padding-bottom: 24px;
    margin-bottom: 24px; }
    .search-result-pages .pages-results .page:last-child {
      border-bottom: 0px !important; }
    @media (max-width: 991px) {
      .search-result-pages .pages-results .page {
        padding-bottom: 16px;
        margin-bottom: 16px; } }
    .search-result-pages .pages-results .page a {
      color: var(--cloetta-red);
      font-size: 24px;
      font-weight: 500;
      line-height: 32px;
      letter-spacing: 1.4px;
      text-align: left;
      margin-bottom: 8px;
      display: block; }
      @media (max-width: 991px) {
        .search-result-pages .pages-results .page a {
          font-size: 20px;
          line-height: 30px;
          letter-spacing: 1px; } }
      .search-result-pages .pages-results .page a .link-content {
        -webkit-box-align: center;
        align-items: center;
        display: flex;
        flex-direction: row;
        text-transform: none; }
    .search-result-pages .pages-results .page .description {
      color: #191d23;
      display: -webkit-box;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 1.1px;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2; }
      @media (max-width: 991px) {
        .search-result-pages .pages-results .page .description {
          font-size: 16px;
          line-height: 24px;
          letter-spacing: 0.9px; } }

.news-results {
  width: 100%;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px; }
  @media (max-width: 991px) {
    .news-results {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767px) {
    .news-results {
      grid-template-columns: repeat(1, 1fr);
      gap: 32px; } }
  .news-results .article-card {
    margin-bottom: 0px !important;
    background-color: var(--cloetta-gray-lighter);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: 0.2s ease-in-out; }
    @media (max-width: 767px) {
      .news-results .article-card {
        height: auto; } }
    .news-results .article-card .article-inner {
      text-decoration: none;
      width: 100%;
      height: 100%; }
      .news-results .article-card .article-inner .image {
        width: 100%;
        height: 280px;
        position: relative; }
        @media (max-width: 1024px) {
          .news-results .article-card .article-inner .image {
            height: 200px; } }
        @media (max-width: 767px) {
          .news-results .article-card .article-inner .image {
            height: 270px; } }
        .news-results .article-card .article-inner .image img {
          position: absolute;
          height: 100%;
          width: 100%;
          left: 0;
          top: 0;
          right: 0;
          bottom: 0;
          color: transparent;
          object-fit: cover; }
    .news-results .article-card .text-section {
      display: grid;
      padding: 24px 24px 12px;
      gap: 12px; }
      @media (max-width: 1024px) {
        .news-results .article-card .text-section {
          padding: 16px; } }
      .news-results .article-card .text-section .article-title {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        margin: 0px;
        text-transform: none;
        font-weight: 600;
        line-height: 40px;
        font-size: 30px;
        color: #191d23;
        letter-spacing: 1.6px; }
        @media (max-width: 1024px) {
          .news-results .article-card .text-section .article-title {
            font-size: 22px;
            line-height: 26px;
            letter-spacing: 1px;
            -webkit-line-clamp: 2; } }
      .news-results .article-card .text-section p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        text-transform: none;
        color: #191d23;
        line-height: 28px;
        margin: 0px; }
        @media (max-width: 1024px) {
          .news-results .article-card .text-section p {
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.9px; } }
      .news-results .article-card .text-section .categories {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        flex-wrap: wrap; }
        .news-results .article-card .text-section .categories p:not(:first-child) {
          margin-left: 10px; }
