.site-header {
  position: relative;
  z-index: 30;

  .header-top-wrp {
    background: linear-gradient(90deg, rgba(194, 0, 0, 1) 0%, rgba(112, 0, 0, 1) 50%, rgba(194, 0, 0, 1) 100%);

    .header-top {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding-top: 6px;
      padding-bottom: 6px;
      gap: 12px;


      @media (max-width: 992px) {
        align-items: center;
      }

      .social-media-links-wrp {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: end;
        padding: 12px 0;
        flex: 1;

        .social-links-trigger {
          display: none;

          @media (max-width: 992px) {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
          }


        }

        .content-wrp {
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: flex-start;
          gap: 20px;

          @media (max-width: 992px) {
            display: none;
          }


          @media (max-width: 1200px) {
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
          }

          .content-label {
            color: #fff;
            font-size: 16px;
          }

          .items-wrp {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 16px;

            .item {
              width: 22px;
              height: 22px;
              cursor: pointer;
              display: block;

              img {
                width: 100%;
                height: 100%;
                object-fit: contain;
              }
            }
          }
        }
      }

      .action-wrp {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 12px 0;
        flex: 1;
        gap: 28px;

        @media (max-width: 992px) {
          gap: 16px;
        }

        .search-wrapper-outlined {
          max-width: 250px;
          display: block;

          @media (max-width: 992px) {
            display: none;
          }
        }

        .advertising-btn {

          @media (max-width: 992px) {
            display: none;
          }

        }

        .language-btn {
          padding: 4px 8px;
          width: fit-content;
          min-width: 0;
        }
      }

      .logo-wrp {
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1/1;
        width: fit-content;

        a {
          display: block;

          img {
            width: 60px;
            height: auto;
            object-fit: contain;


            @media (max-width: 1200px) {
              width: 60px;
            }

            @media (max-width: 768px) {
              width: 60px;
            }
          }
        }
      }
    }
  }

  .navigation-wrp {
    border-top: 1px solid #212121;
    border-bottom: 1px solid #212121;


    @media (max-width: 992px) {
      display: none;
    }

    .navigation {
      .nav-item {
        padding: 14px 40px;
        text-decoration: none;
        font-size: 14px;
        color: #212121;
        position: relative;

        @media (max-width: 1400px) {
          padding: 14px 20px;
        }

        &::after {
          content: '';
          display: block;
          width: 0%;
          height: 2px;
          position: absolute;
          bottom: 4px;
          transform: translateX(-50%);
          left: 50%;
          border-radius: 999px;
          background-color: #212121;
          transition: all 0.3s ease;
        }

        &:hover {
          &::after {
            width: 95%;
          }
        }
      }

      .nav-item.nav-item-active {
        background-color: #212121;
        color: #fff;
      }
    }
  }

  .header-bottom {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .news-ticker-wrp {
    background-color: #212121;
    color: #fff;
    overflow: hidden;

    .news-ticker {
      display: flex;
      flex-direction: row;
      align-items: center;

      .item-wrp {
        display: flex;
        flex-direction: row;
        gap: 8px;
        white-space: nowrap;
        margin-right: 42px;
        font-size: 14px;
      }
    }
  }

  .current-date-wrp {
    border-top: 1px solid #212121;
    border-bottom: 1px solid #212121;

    .current-date {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 8px 0;

      .date-content {
        font-size: 18px;
        color: #212121;

        @media (max-width: 1200px) {
          font-size: 16px;
        }

        @media (max-width: 768px) {
          font-size: 14px;
        }
      }
    }

  }

  .header-bottom.sticky {
    position: fixed;
    top: 0;
  }
}

.search-wrapper-outlined {
  width: 100%;
  max-width: 600px;
  padding: 0;
}

.search-container-outlined {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 8px;
  transition: all 0.3s ease;
}

.search-container-outlined:hover {
  border-color: #999;
}

.search-container-outlined:focus-within {
  border-color: #4285f4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.15);
}

.search-icon-outlined {
  color: #666;
  font-size: 16px;
  margin-right: 12px;
  transition: all 0.3s ease;
  filter: invert(1);
  width: 16px;
  aspect-ratio: 1 / 1;
  height: auto;
}

.search-container-outlined:focus-within .search-icon-outlined {
  color: #4285f4;
}

.search-input-outlined {
  flex: 1;
  border: none;
  outline: none;
  padding: 4px 0;
  font-size: 16px;
  background: transparent;
  color: #333;
}

.search-input-outlined::placeholder {
  color: #aaa;
}

.social-media-float-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: absolute;
  right: 0;
  background: white;
  padding: 10px;
  border-radius: 0 0 0 8px;
  box-shadow: 1px 1px 8px -3px rgba(0, 0, 0, 0.2);

  
    @media (max-width: 560px) {
      top: 60vh;
      transform: translateY(-50%);
    }
  
  @media (max-width: 1200px) {
    gap: 12px;
    align-items: flex-start;
  }
  
  .content-label {
    color: #212121;
    font-size: 16px;
    
    @media (max-width: 560px) {
      display: none;
    }
  }

  .items-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;

    @media (max-width: 560px) {
      flex-direction: column;
    }

    .item {
      width: 22px;
      height: 22px;
      cursor: pointer;
      display: block;

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: invert(1);
      }
    }
  }
}