
    .site-header {
      height: 80px;
      background: #ffffff;
      border-bottom: 1px solid #eeeeF7;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header {
      width: min(1440px, 92%);
      height: 100%;
      margin: 0 auto;

      display: grid;
      grid-template-columns: 220px minmax(350px, 1fr) auto;
      align-items: center;
      gap: 22px;
    }

    /* LOGO */

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      text-decoration: none;

    }

    .logo-icon {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;

      display: grid;
      place-items: center;
    }

    .logo-icon img {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }

    .logo-text {
      min-width: 0;
    }

    .logo-text strong {
      display: block;
      font-size: 21px;
      line-height: 1;
      font-weight: 900;
      color: var(--navy);
      white-space: nowrap;
    }

    .logo-text span {
      display: block;
      margin-top: 4px;
      font-size: 9px;
      line-height: 1;
      font-weight: 700;
      color: #555d82;
      white-space: nowrap;
    }

    /* SEARCH */

    .search {
      width: 100%;
      height: 48px;

      display: flex;
      align-items: center;

      background: #ffffff;
      border: 1px solid #e3e5fa;

      border-radius: 11px;

      padding: 0 16px;

      transition: .2s ease;
    }

    .search:focus-within {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(76, 34, 243, 0.08);
    }

    .search input {
      width: 100%;
      flex: 1;

      border: none;
      outline: none;

      background: transparent;

      font-size: 13px;
      color: var(--text);
    }

    .search input::placeholder {
      color: #8588a4;
    }

    .search::after {
      content: "⌕";
      font-size: 27px;
      line-height: 1;
      color: #20233d;
      transform: rotate(-15deg);
    }

    /* HEADER ACTIONS */

    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 18px;

      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;

    }

    .login-trigger {
      color: var(--navy);
      text-decoration: none;
    }

    .register {
      height: 40px;
      padding: 0 19px;

      border: 0;
      border-radius: 9px;

      background: linear-gradient(135deg,
          #6236ff,
          #4b22ee);

      color: #ffffff;
      font-size: 13px;
      font-weight: 800;

      cursor: pointer;

      box-shadow: 0 8px 20px rgba(76, 34, 243, .20);
    }

    .cart {
      position: relative;

      display: flex;
      align-items: center;
      justify-content: center;

      min-width: 38px;
      height: 40px;

      font-size: 23px;
    }

    #basketItemCount {
      position: absolute;
      top: -3px;
      right: -5px;

      min-width: 18px;
      height: 18px;

      padding: 0 4px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 50%;

      background: #6437f5;
      color: #ffffff;

      font-size: 10px;
      font-weight: 900;
    }

    @media (max-width: 960px) {

      .site-header {
        height: auto;
        padding: 14px 0;
      }

      .header {
        width: 92%;
        grid-template-columns: 1fr auto;
        gap: 14px;
      }

      .search {
        grid-column: 1 / -1;
        grid-row: 2;
      }

      .header-actions {
        gap: 12px;
      }

      .logo-text strong {
        font-size: 18px;
      }

      .logo-text span {
        font-size: 8px;
      }
    }

    @media (max-width: 600px) {

      .header {
        grid-template-columns: 1fr auto;
      }

      .logo-icon,
      .logo-icon img {
        width: 38px;
        height: 38px;
      }

      .logo-text strong {
        font-size: 16px;
      }

      .logo-text span {
        font-size: 7px;
      }

      .login-trigger {
        display: none;
      }

      .register {
        padding: 0 13px;
        font-size: 12px;
      }
    }
